#!/usr/bin/perl

# This chunk of stuff was generated by App::FatPacker. To find the original
# file's code, look for the end of this BEGIN block or the string 'FATPACK'
BEGIN {
my %fatpacked;

$fatpacked{"App/Monitoring/Plugin/CheckRaid.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID';
  package App::Monitoring::Plugin::CheckRaid;
  
  use Carp qw(croak);
  use Module::Pluggable instantiate => 'new', sub_name => '_plugins';
  use strict;
  use warnings;
  
  # constructor
  sub new {
  	my $class = shift;
  
  	croak 'Odd number of elements in argument hash' if @_ % 2;
  
  	my $self = {
  		@_,
  	};
  
  	my $obj = bless $self, $class;
  
  	# setup search path for Module::Pluggable
  	$self->search_path(add => __PACKAGE__ . '::Plugins');
  
  	# setup only certain plugins
  	if ($self->{enable_plugins}) {
  		my @plugins = map {
  			__PACKAGE__ . '::Plugins::' . $_
  		} @{$self->{enable_plugins}};
  		$self->only(\@plugins);
  	}
  
  	return $obj;
  }
  
  # create list of plugins
  sub plugins {
  	my ($this) = @_;
  
  	# call this once
  	if (!defined $this->{plugins}) {
  		my @plugins = $this->_plugins(%$this);
  		$this->{plugins} = \@plugins;
  	}
  
  	wantarray ? @{$this->{plugins}} : $this->{plugins};
  }
  
  # get plugin by name
  sub plugin {
  	my ($this, $name) = @_;
  
  	if (!defined $this->{plugin_names}) {
  		my %names;
  		foreach my $plugin ($this->plugins) {
  			my $name = $plugin->{name};
  			$names{$name} = $plugin;
  		}
  		$this->{plugin_names} = \%names;
  	}
  
  	croak "Plugin '$name' Can not be created" unless exists $this->{plugin_names}{$name};
  
  	$this->{plugin_names}{$name};
  }
  
  # Get active plugins.
  # Returns the plugin objects
  sub active_plugins {
  	my $this = shift;
  
  	my @plugins = ();
  
  	# go over all registered plugins
  	foreach my $plugin ($this->plugins) {
  		# skip if no check method (not standalone checker)
  		next unless $plugin->can('check');
  
  		# skip inactive plugins (disabled or no tools available)
  		next unless $plugin->active;
  
  		push(@plugins, $plugin);
  	}
  
  	return wantarray ? @plugins : \@plugins;
  }
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID

$fatpacked{"App/Monitoring/Plugin/CheckRaid/Plugin.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_PLUGIN';
  package App::Monitoring::Plugin::CheckRaid::Plugin;
  
  use Carp qw(croak);
  use App::Monitoring::Plugin::CheckRaid::Utils;
  use strict;
  use warnings;
  
  # Nagios standard error codes
  my (%ERRORS) = (OK => 0, WARNING => 1, CRITICAL => 2, UNKNOWN => 3);
  
  # default plugin options
  our %options = (
  	# status to set when RAID is in resync state
  	resync_status => $ERRORS{WARNING},
  
  	# Status code to use when no raid was detected
  	noraid_state => $ERRORS{UNKNOWN},
  
  	# status to set when RAID is in check state
  	check_status => $ERRORS{OK},
  
  	# status to set when PD is spare
  	spare_status => $ERRORS{OK},
  
  	# status to set when BBU is in learning cycle.
  	bbulearn_status => $ERRORS{WARNING},
  
  	# status to set when Write Cache has failed.
  	cache_fail_status => $ERRORS{WARNING},
  
  	# check status of BBU
  	bbu_monitoring => 0,
  );
  
  # return list of programs this plugin needs
  # @internal
  sub program_names {
  }
  
  # return hash of canonical commands that plugin can use
  # @internal
  sub commands {
  	{}
  }
  
  # return sudo rules if program needs it
  # may be SCALAR or LIST of scalars
  # @internal
  sub sudo {
  	();
  }
  
  # constructor for plugins
  sub new {
  	my $class = shift;
  
  	croak 'Odd number of elements in argument hash' if @_ % 2;
  	croak 'Class is already a reference' if ref $class;
  
  	# convert to hash
  	my %args = @_;
  
  	# merge 'options' from param and class defaults
  	my %opts = %options;
  	%opts = (%options, %{$args{options}}) if $args{options};
  	delete $args{options};
  
  	# merge commands
  	my %commands = %{$class->commands};
  	%commands = (%commands, %{$args{commands}}) if $args{commands};
  	delete $args{commands};
  
  	my $self = {
  		commands => \%commands,
  		sudo => $class->sudo ? find_sudo() : '',
  		options => \%opts,
  		%args,
  
  		# name of the plugin, without package namespace
  		name => ($class =~ /.*::([^:]+)$/),
  
  		status => undef,
  		message => undef,
  		perfdata => undef,
  		longoutput => undef,
  	};
  
  	my $this = bless $self, $class;
  
  	# lookup program, if not defined by params
  	if (!$self->{program}) {
  		$self->{program} = which($this->program_names);
  	}
  
  	return $this;
  }
  
  # see if plugin is active (disabled or no tools available)
  sub active {
  	my $this = shift;
  
  	# no tool found, return false
  	return 0 unless $this->{program};
  
  	# program file must exist, don't check for execute bit. #104
  	-f $this->{program};
  }
  
  # set status code for plugin result
  # does not overwrite status with lower value
  # returns the current status code
  sub status {
  	my ($this, $status) = @_;
  
  	if (defined $status) {
  		$this->{status} = $status unless defined($this->{status}) and $status < $this->{status};
  	}
  	$this->{status};
  }
  
  sub set_critical_as_warning {
  	$ERRORS{CRITICAL} = $ERRORS{WARNING};
  }
  
  # helper to set status to WARNING
  # returns $this to allow fluent api
  sub warning {
  	my ($this) = @_;
  	$this->status($ERRORS{WARNING});
  	return $this;
  }
  
  # helper to set status to CRITICAL
  # returns $this to allow fluent api
  sub critical {
  	my ($this) = @_;
  	$this->status($ERRORS{CRITICAL});
  	return $this;
  }
  
  # helper to set status to UNKNOWN
  # returns $this to allow fluent api
  sub unknown {
  	my ($this) = @_;
  	$this->status($ERRORS{UNKNOWN});
  	return $this;
  }
  
  # helper to set status to OK
  sub ok {
  	my ($this) = @_;
  	$this->status($ERRORS{OK});
  	return $this;
  }
  
  # helper to set status for resync
  # returns $this to allow fluent api
  sub resync {
  	my ($this) = @_;
  	$this->status($this->{options}{resync_status});
  	return $this;
  }
  
  # helper to set status for check
  # returns $this to allow fluent api
  sub check_status {
  	my ($this) = @_;
  	$this->status($this->{options}{check_status});
  	return $this;
  }
  
  # helper to set status for spare
  # returns $this to allow fluent api
  sub spare {
  	my ($this) = @_;
  	$this->status($this->{options}{spare_status});
  	return $this;
  }
  
  # helper to set status for BBU learning cycle
  # returns $this to allow fluent api
  sub bbulearn {
  	my ($this) = @_;
  	$this->status($this->{options}{bbulearn_status});
  	return $this;
  }
  
  # helper to set status when Write Cache fails
  # returns $this to allow fluent api
  sub cache_fail {
  	my ($this) = @_;
  	$this->status($this->{options}{cache_fail_status});
  	return $this;
  }
  
  # helper to get/set bbu monitoring
  sub bbu_monitoring {
  	my ($this, $val) = @_;
  
  	if (defined $val) {
  		$this->{options}{bbu_monitoring} = $val;
  	}
  	$this->{options}{bbu_monitoring};
  }
  
  # setup status message text
  sub message {
  	my ($this, $message) = @_;
  	if (defined $message) {
  		# TODO: append if already something there
  		$this->{message} = $message;
  	}
  	$this->{message};
  }
  
  # Set performance data output.
  sub perfdata {
  	my ($this, $perfdata) = @_;
  	if (defined $perfdata) {
  		# TODO: append if already something there
  		$this->{perfdata} = $perfdata;
  	}
  	$this->{perfdata};
  }
  
  # Set plugin long output.
  sub longoutput {
  	my ($this, $longoutput) = @_;
  	if (defined $longoutput) {
  		# TODO: append if already something there
  		$this->{longoutput} = $longoutput;
  	}
  	$this->{longoutput};
  }
  
  # a helper to join similar statuses for items
  # instead of printing
  #  0: OK, 1: OK, 2: OK, 3: NOK, 4: OK
  # it would print
  #  0-2,4: OK, 3: NOK
  # takes as input list:
  #  { status => @items }
  sub join_status {
  	my $this = shift;
  	my %status = %{$_[0]};
  
  	my @status;
  	for my $status (sort {$a cmp $b} keys %status) {
  		my $disks = $status{$status};
  		my @s;
  		foreach my $disk (@$disks) {
  			push(@s, $disk);
  		}
  		push(@status, join(',', @s).'='.$status);
  	}
  
  	return join ' ', @status;
  }
  
  # return true if parameter is not in ignore list
  sub valid {
  	my $this = shift;
  	my ($v) = lc $_[0];
  
  	foreach (@utils::ignore) {
  		return 0 if lc $_ eq $v;
  	}
  	return 1;
  }
  
  use constant K => 1024;
  use constant M => K * 1024;
  use constant G => M * 1024;
  use constant T => G * 1024;
  
  sub format_bytes {
  	my $this = shift;
  
  	my ($bytes) = @_;
  	if ($bytes > T) {
  		return sprintf("%.2f TiB", $bytes / T);
  	}
  	if ($bytes > G) {
  		return sprintf("%.2f GiB", $bytes / G);
  	}
  	if ($bytes > M) {
  		return sprintf("%.2f MiB", $bytes / M);
  	}
  	if ($bytes > K) {
  		return sprintf("%.2f KiB", $bytes / K);
  	}
  	return "$bytes B";
  }
  
  # disable sudo temporarily
  sub nosudo_cmd {
  	my ($this, $command, $cb) = @_;
  
  	my ($res, @res);
  
  	my $sudo = $this->{sudo};
  	$this->{sudo} = 0;
  
  	if (wantarray) {
  		@res = $this->cmd($command, $cb);
  	} else {
  		$res = $this->cmd($command, $cb);
  	}
  
  	$this->{sudo} = $sudo;
  
  	return wantarray ? @res : $res;
  }
  
  # build up command for $command
  # returns open filehandle to process output
  # if command fails, program is exited (caller needs not to worry)
  sub cmd {
  	my ($this, $command, $cb) = @_;
  
  	my $debug = $App::Monitoring::Plugin::CheckRaid::Utils::debug;
  
  	# build up command
  	my @CMD = $this->{program};
  
  	# add sudo if program needs
  	unshift(@CMD, @{$this->{sudo}}) if $> and $this->{sudo};
  
  	my $args = $this->{commands}{$command} or croak "command '$command' not defined";
  
  	# callback to replace args in command
  	my $cb_ = sub {
  		my $param = shift;
  		if ($cb) {
  			if (ref $cb eq 'HASH' and exists $cb->{$param}) {
  				return wantarray ? @{$cb->{$param}} : $cb->{$param};
  			}
  			return &$cb($param) if ref $cb eq 'CODE';
  		}
  
  		if ($param eq '@CMD') {
  			# command wanted, but not found
  			croak "Command for $this->{name} not found" unless defined $this->{program};
  			return @CMD;
  		}
  		return $param;
  	};
  
  	# add command arguments
  	my @cmd;
  	for my $arg (@$args) {
  		local $_ = $arg;
  		# can't do arrays with s///
  		# this limits that @arg must be single argument
  		if (/@/) {
  			push(@cmd, $cb_->($_));
  		} else {
  			s/([\$]\w+)/$cb_->($1)/ge;
  			push(@cmd, $_);
  		}
  	}
  
  	my $op = shift @cmd;
  	my $fh;
  	if ($op eq '=' and ref $cb eq 'SCALAR') {
  		# Special: use open2
  		use IPC::Open2;
  		warn "DEBUG EXEC: $op @cmd" if $debug;
  		my $pid = open2($fh, $$cb, @cmd) or croak "open2 failed: @cmd: $!";
  	} elsif ($op eq '>&2') {
  		# Special: same as '|-' but reads both STDERR and STDOUT
  		use IPC::Open3;
  		warn "DEBUG EXEC: $op @cmd" if $debug;
  		my $pid = open3(undef, $fh, $cb, @cmd);
  
  	} else {
  		warn "DEBUG EXEC: @cmd" if $debug;
  		open($fh, $op, @cmd) or croak "open failed: @cmd: $!";
  	}
  
  	# for dir handles, reopen as opendir
  	if (-d $fh) {
  		undef($fh);
  		warn "DEBUG OPENDIR: $cmd[0]" if $debug;
  		opendir($fh, $cmd[0]) or croak "opendir failed: @cmd: $!";
  	}
  
  	return $fh;
  }
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID_PLUGIN

$fatpacked{"App/Monitoring/Plugin/CheckRaid/Plugins/aaccli.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_AACCLI';
  package App::Monitoring::Plugin::CheckRaid::Plugins::aaccli;
  
  # Adaptec ServeRAID
  
  use base 'App::Monitoring::Plugin::CheckRaid::Plugin';
  use strict;
  use warnings;
  
  sub program_names {
  	shift->{name};
  }
  
  sub commands {
  	{
  		'container list' => ['=', '@CMD'],
  	}
  }
  
  sub sudo {
  	my ($this, $deep) = @_;
  
  	# quick check when running check
  	return 1 unless $deep;
  
  	my $cmd = $this->{program};
  	"CHECK_RAID ALL=(root) NOPASSWD: $cmd container list /full"
  }
  
  sub check {
  	my $this = shift;
  
  	# status messages pushed here
  	my @status;
  
  	my $write = "";
  	$write .= "open aac0\n";
  	$write .= "container list /full\n";
  	$write .= "exit\n";
  	my $read = $this->cmd('container list', \$write);
  
  #File foo receiving all output.
  #
  #AAC0>
  #COMMAND: container list /full=TRUE
  #Executing: container list /full=TRUE
  #Num          Total  Oth Stripe          Scsi   Partition                                       Creation
  #Label Type   Size   Ctr Size   Usage   C:ID:L Offset:Size   State   RO Lk Task    Done%  Ent Date   Time
  #----- ------ ------ --- ------ ------- ------ ------------- ------- -- -- ------- ------ --- ------ --------
  # 0    Mirror 74.5GB            Open    0:02:0 64.0KB:74.5GB Normal                        0  051006 13:48:54
  # /dev/sda             Auth             0:03:0 64.0KB:74.5GB Normal                        1  051006 13:48:54
  #
  #
  #AAC0>
  #COMMAND: logfile end
  #Executing: logfile end
  	while (<$read>) {
  		if (my($dsk, $stat) = /(\d:\d\d?:\d+)\s+\S+:\S+\s+(\S+)/) {
  			next unless $this->valid($dsk);
  			$dsk =~ s#:#/#g;
  			next unless $this->valid($dsk);
  
  			push(@status, "$dsk:$stat");
  
  			$this->critical if ($stat eq "Broken");
  			$this->warning if ($stat eq "Rebuild");
  			$this->warning if ($stat eq "Bld/Vfy");
  			$this->critical if ($stat eq "Missing");
  			if ($stat eq "Verify") {
  				$this->resync;
  			}
  			$this->warning if ($stat eq "VfyRepl");
  		}
  	}
  	close $read;
  
  	return unless @status;
  
  	$this->message(join(', ', @status));
  }
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_AACCLI

$fatpacked{"App/Monitoring/Plugin/CheckRaid/Plugins/afacli.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_AFACLI';
  package App::Monitoring::Plugin::CheckRaid::Plugins::afacli;
  
  # Adaptec AACRAID
  
  use base 'App::Monitoring::Plugin::CheckRaid::Plugin';
  use strict;
  use warnings;
  
  sub program_names {
  	shift->{name};
  }
  
  sub commands {
  	{
  		'container list' => ['=', '@CMD'],
  	}
  }
  
  sub check {
  	my $this = shift;
  
  	# status messages pushed here
  	my @status;
  
  	my $write = "";
  	$write .= "open afa0\n";
  	$write .= "container list /full\n";
  	$write .= "exit\n";
  
  	my $read = $this->cmd('container list', \$write);
  	while (<$read>) {
  		# 0    Mirror  465GB            Valid   0:00:0 64.0KB: 465GB Normal                        0  032511 17:55:06
  		# /dev/sda             root             0:01:0 64.0KB: 465GB Normal                        1  032511 17:55:06
  		if (my($dsk, $stat) = /(\d:\d\d?:\d+)\s+\S+:\s?\S+\s+(\S+)/) {
  			next unless $this->valid($dsk);
  			$dsk =~ s#:#/#g;
  			next unless $this->valid($dsk);
  			push(@status, "$dsk:$stat");
  
  			$this->critical if ($stat eq "Broken");
  			$this->warning if ($stat eq "Rebuild");
  			$this->warning if ($stat eq "Bld/Vfy");
  			$this->critical if ($stat eq "Missing");
  			if ($stat eq "Verify") {
  				$this->resync;
  			}
  			$this->warning if ($stat eq "VfyRepl");
  		}
  	}
  	close $read;
  
  	return unless @status;
  
  	$this->ok->message(join(', ', @status));
  }
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_AFACLI

$fatpacked{"App/Monitoring/Plugin/CheckRaid/Plugins/arcconf.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_ARCCONF';
  package App::Monitoring::Plugin::CheckRaid::Plugins::arcconf;
  
  # Adaptec AAC-RAID
  # check designed from check-aacraid.py, Anchor System - <http://www.anchor.com.au>
  # Oliver Hookins, Paul De Audney, Barney Desmond.
  # Perl port (check_raid) by Elan Ruusamäe.
  
  use base 'App::Monitoring::Plugin::CheckRaid::Plugin';
  use strict;
  use warnings;
  
  sub program_names {
  	shift->{name};
  }
  
  sub commands {
  	{
  		'getstatus' => ['-|', '@CMD', 'GETSTATUS', '1'],
  		# 'nologs' does not exist in arcconf 6.50. #118
  		'getconfig' => ['-|', '@CMD', 'GETCONFIG', '$ctrl', 'AL'],
  	}
  }
  
  sub sudo {
  	my ($this, $deep) = @_;
  	# quick check when running check
  	return 1 unless $deep;
  
  	my $cmd = $this->{program};
  	(
  		"CHECK_RAID ALL=(root) NOPASSWD: $cmd GETSTATUS 1",
  		"CHECK_RAID ALL=(root) NOPASSWD: $cmd GETCONFIG * AL",
  	);
  }
  
  sub parse_error {
  	my ($this, $message) = @_;
  	warn "arcconf: parse error: $message";
  	$this->unknown->message("Parse Error: $message");
  }
  
  # parse GETSTATUS command
  # parses
  # - number of controllers
  # - logical device tasks (if any running)
  sub parse_status {
  	my ($this) = @_;
  
  	my $count = 0;
  	my $ok = 0;
  	my $fh = $this->cmd('getstatus');
  	my %s;
  	# controller task
  	my %task;
  	while (<$fh>) {
  		chomp;
  		# empty line
  		next if /^$/;
  
  		# termination
  		if (/^Command completed successfully/) {
  			$ok = 1;
  			last;
  		}
  
  		if (my($c) = /^Controllers found: (\d+)/) {
  			$count = int($c);
  			next;
  		}
  
  		# termination
  		if (/^(\S.+) Task:$/) {
  			$task{type} = $1;
  			next;
  		}
  
  		if (/^\s+Logical device\s+: (\d+)/) {
  			$task{device} = $1;
  		} elsif (/^\s+Task ID\s+: (\d+)/) {
  			$task{id} = $1;
  		} elsif (/^\s+Current operation\s+: (.+)/) {
  			$task{operation} = $1;
  		} elsif (/^\s+Status\s+: (.+)/) {
  			$task{status} = $1;
  		} elsif (/^\s+Priority\s+: (.+)/) {
  			$task{priority} = $1;
  		} elsif (/^\s+Percentage complete\s+: (\d+)/) {
  			$task{percent} = $1;
  		} elsif (/^Invalid controller number/) {
  			;
  		} else {
  			warn "Unknown line: [$_]";
  			# FIXME: ->message() gets overwritten later on
  			$this->unknown->message("Unknown line: [$_]");
  		}
  	}
  	close($fh);
  
  	# Tasks seem to be Controller specific, but as we don't support over one controller, let it be global
  	$s{tasks} = { %task } if %task;
  
  	if ($count == 0) {
  		# if command completed, but no controllers,
  		# assume no hardware present
  		if (!$ok) {
  			$this->unknown->message("No controllers found!");
  		}
  		return undef;
  	}
  
  	$s{ctrl_count} = $count;
  
  	return \%s;
  }
  
  # parse GETCONFIG for all controllers
  sub parse_config {
  	my ($this, $status) = @_;
  
  	my %c;
  	for (my $i = 1; $i <= $status->{ctrl_count}; $i++) {
  		$c{$i} = $this->parse_ctrl_config($i, $status->{ctrl_count});
  	}
  
  	return { controllers => \%c };
  }
  
  # parse GETCONFIG command for specific controller
  sub parse_ctrl_config {
  	my ($this, $ctrl, $ctrl_count) = @_;
  
  	# Controller information, Logical/Physical device info
  	my (%c, @ld, $ld, @pd, $ch, $pd);
  
  	my $fh = $this->cmd('getconfig', { '$ctrl' => $ctrl });
  	my ($section, $subsection, $ok);
  	while (<$fh>) {
  		chomp;
  		# empty line
  		if (/^$/) {
  			next;
  		}
  
  		if (/^Command completed successfully/) {
  			$ok = 1;
  			last;
  		}
  
  		if (my($c) = /^Controllers found: (\d+)/) {
  			if ($c != $ctrl_count) {
  				# internal error?!
  				$this->unknown->message("Controller count mismatch");
  			}
  			next;
  		}
  
  		# section start
  		if (/^---+/) {
  			if (my($s) = <$fh> =~ /^(\w.+)$/) {
  				$section = $s;
  				unless (<$fh> =~ /^---+/) {
  					$this->parse_error($_);
  				}
  				undef($ld);
  				$ch = 0;
  				undef($pd);
  				undef($subsection);
  				next;
  			}
  			$this->parse_error($_);
  		}
  
  		# sub section start
  		# there are also sections in subsections, but currently section names
  		# are unique enough
  		if (/^\s+---+/) {
  			if (my($s) = <$fh> =~ /^\s+(\S.+?)\s*?$/) {
  				$subsection = $s;
  				unless (<$fh> =~ /^\s+---+/) {
  					$this->parse_error($_);
  				}
  				next;
  			}
  			$this->parse_error($_);
  		}
  
  		next unless defined $section;
  
  		if ($section eq 'Controller information') {
  			if (not defined $subsection) {
  				# TODO: battery stuff is under subsection "Controller Battery Information"
  				if (my($s) = /Controller Status\s*:\s*(.+)/) {
  					$c{status} = $s;
  
  				} elsif (my($df) = /Defunct disk drive count\s+:\s*(\d+)/) {
  					$c{defunct_count} = int($df);
  
  				} elsif (my($td, $fd, $dd) = m{Logical devices/Failed/Degraded\s*:\s*(\d+)/(\d+)/(\d+)}) {
  					$c{logical_count} = int($td);
  					$c{logical_failed} = int($fd);
  					$c{logical_degraded} = int($fd);
  
  				} elsif (my($td2, $fd2, $dd2) = m{Logical drives/Offline/Critical\s*:\s*(\d+)/(\d+)/(\d+)}) {
  					# ARCCONF 9.30
  					$c{logical_count} = int($td2);
  					$c{logical_offline} = int($fd2);
  					$c{logical_critical} = int($fd2);
  				}
  
  			} elsif ($subsection eq 'Controller Battery Information') {
  				if (my($bs) = /^\s+Status\s*:\s*(.*)$/) {
  					$c{battery_status} = $bs;
  
  				} elsif (my($bt) = /Over temperature\s*:\s*(.+)$/) {
  					$c{battery_overtemp} = $bt;
  
  				} elsif (my($bc) = /Capacity remaining\s*:\s*(\d+)\s*percent.*$/) {
  					$c{battery_capacity} = int($bc);
  
  				} elsif (my($d, $h, $m) = /Time remaining \(at current draw\)\s*:\s*(\d+) days, (\d+) hours, (\d+) minutes/) {
  					$c{battery_time} = int($d) * 1440 + int($h) * 60 + int($m);
  					$c{battery_time_full} = "${d}d${h}h${m}m";
  
  				} else {
  					warn "Battery not parsed: [$_]";
  				}
  
  			} elsif ($subsection eq 'Controller ZMM Information') {
  				if (my($bs) = /^\s+Status\s*:\s*(.*)$/) {
  					$c{zmm_status} = $bs;
  				} else {
  					warn "ZMM not parsed: [$_]";
  				}
  
  			} elsif ($subsection eq 'Controller Version Information') {
  				# not parsed yet
  			} elsif ($subsection eq 'Controller Vital Product Data') {
  				# not parsed yet
  			} elsif ($subsection eq 'Controller Cache Backup Unit Information') {
  				# not parsed yet
  			} elsif ($subsection eq 'Supercap Information') {
  				# this is actually sub section of cache backup unit
  				# not parsed yet
  			} elsif ($subsection eq 'Controller Vital Product Data') {
  				# not parsed yet
  			} elsif ($subsection eq 'RAID Properties') {
  				# not parsed yet
  			} elsif ($subsection eq 'Controller BIOS Setting Information') {
  				# not parsed yet
  			} else {
  				warn "SUBSECTION of [$section] NOT PARSED: [$subsection] [$_]";
  			}
  
  		} elsif ($section eq 'Physical Device information') {
  			if (my($c) = /Channel #(\d+)/) {
  				$ch = int($c);
  				undef($pd);
  			} elsif (my($n) = /Device #(\d+)/) {
  				$pd = int($n);
  			} elsif (not defined $pd) {
  				if (/Transfer Speed\s+:\s+(.+)/) {
  					# not parsed yet
  				} elsif (/Initiator at SCSI ID/) {
  					# not parsed yet
  				} elsif (/No physical drives attached/) {
  					# ignored
  				} else {
  					warn "Unparsed Physical Device data: [$_]";
  				}
  			} else {
  				if (my($ps) = /Power State\s+:\s+(.+)/) {
  					$pd[$ch][$pd]{power_state} = $ps;
  				} elsif (my($st) = /^\s+State\s+:\s+(.+)/) {
  					$pd[$ch][$pd]{status} = $st;
  				} elsif (my($su) = /Supported\s+:\s+(.+)/) {
  					$pd[$ch][$pd]{supported} = $su;
  				} elsif (my($sf) = /Dedicated Spare for\s+:\s+(.+)/) {
  					$pd[$ch][$pd]{spare} = $sf;
  				} elsif (my($vnd) = /Vendor\s+:\s*(.*)/) {
  					# allow edits, i.e removed 'Vendor' value from test data
  					$pd[$ch][$pd]{vendor} = $vnd;
  				} elsif (my($mod) = /Model\s+:\s+(.+)/) {
  					$pd[$ch][$pd]{model} = $mod;
  				} elsif (my($fw) = /Firmware\s+:\s*(.*)/) {
  					$pd[$ch][$pd]{firmware} = $fw;
  				} elsif (my($sn) = /Serial number\s+:\s+(.+)/) {
  					$pd[$ch][$pd]{serial} = $sn;
  				} elsif (my($wwn) = /World-wide name\s+:\s+(.+)/) {
  					$pd[$ch][$pd]{wwn} = $wwn;
  				} elsif (my($sz) = /Size\s+:\s+(.+)/) {
  					$pd[$ch][$pd]{size} = $sz;
  				} elsif (my($wc) = /Write Cache\s+:\s+(.+)/) {
  					$pd[$ch][$pd]{write_cache} = $wc;
  				} elsif (my($ssd) = /SSD\s+:\s+(.+)/) {
  					$pd[$ch][$pd]{ssd} = $ssd;
  				} elsif (my($fru) = /FRU\s+:\s+(.+)/) {
  					$pd[$ch][$pd]{fru} = $fru;
  				} elsif (my($esd) = /Reported ESD(?:\(.+\))?\s+:\s+(.+)/) {
  					$pd[$ch][$pd]{esd} = $esd;
  				} elsif (my($ncq) = /NCQ status\s+:\s+(.+)/) {
  					$pd[$ch][$pd]{ncq} = $ncq;
  				} elsif (my($pfa) = /PFA\s+:\s+(.+)/) {
  					$pd[$ch][$pd]{pfa} = $pfa;
  				} elsif (my($eid) = /Enclosure ID\s+:\s+(.+)/) {
  					$pd[$ch][$pd]{enclosure} = $eid;
  				} elsif (my($t) = /Type\s+:\s+(.+)/) {
  					$pd[$ch][$pd]{type} = $t;
  				} elsif (my($smart) = /S\.M\.A\.R\.T\.(?:\s+warnings)?\s+:\s+(.+)/) {
  					$pd[$ch][$pd]{smart} = $smart;
  				} elsif (my($speed) = /Transfer Speed\s+:\s+(.+)/) {
  					$pd[$ch][$pd]{speed} = $speed;
  				} elsif (my($e, $s) = /Reported Location\s+:\s+(?:Enclosure|Connector) (\d+), (?:Slot|Device) (\d+)/) {
  					$pd[$ch][$pd]{location} = "$e:$s";
  				} elsif (my($sps) = /Supported Power States\s+:\s+(.+)/) {
  					$pd[$ch][$pd]{power_states} = $sps;
  				} elsif (my($cd) = /Reported Channel,Device(?:\(.+\))?\s+:\s+(.+)/) {
  					$pd[$ch][$pd]{cd} = $cd;
  				} elsif (my($type) = /Device is an?\s+(.+)/) {
  					$pd[$ch][$pd]{devtype} = $type;
  				} elsif (/Status of Enclosure/) {
  					# ignored
  				} elsif (my($temp) = /Temperature.*:\s+(.+)/) {
  					$pd[$ch][$pd]{temperature} = $temp;
  				} elsif (/(Fan \d+|Speaker) status/) {
  					# not parsed yet
  				} elsif (/Expander ID\s+:/) {
  					# not parsed yet
  				} elsif (/Enclosure Logical Identifier\s+:/) {
  					# not parsed yet
  				} elsif (/Expander SAS Address\s+:/) {
  					# not parsed yet
  				} elsif (/[Mm]axCache (Capable|Assigned)\s+:\s+(.+)/) {
  					# not parsed yet
  				} elsif (/Power supply \d+ status/) {
  					# not parsed yet
  				} else {
  					warn "Unparsed Physical Device data: [$_]";
  				}
  			}
  
  		} elsif ($section =~ /Logical (device|drive) information/) {
  			if (my($n) = /Logical (?:device|drive) number (\d+)/) {
  				$ld = int($n);
  				$ld[$ld]{id} = $n;
  
  			} elsif (my($s) = /Status of logical (?:device|drive)\s+:\s+(.+)/) {
  				$ld[$ld]{status} = $s;
  
  			} elsif (my($ln) = /Logical (?:device|drive) name\s+:\s+(.+)/) {
  				$ld[$ld]{name} = $ln;
  
  			} elsif (my($rl) = /RAID level\s+:\s+(.+)/) {
  				$ld[$ld]{raid} = $rl;
  
  			} elsif (my($sz) = /Size\s+:\s+(.+)/) {
  				$ld[$ld]{size} = $sz;
  
  			} elsif (my($fs) = /Failed stripes\s+:\s+(.+)/) {
  				$ld[$ld]{failed_stripes} = $fs;
  
  			} elsif (my($ds) = /Defunct segments\s+:\s+(.+)/) {
  				$ld[$ld]{defunct_segments} = $ds;
  
  			} else {
  				#   Write-cache mode                         : Not supported]
  				#   Partitioned                              : Yes]
  				#   Number of segments                       : 2]
  				#   Drive(s) (Channel,Device)                : 0,0 0,1]
  				#   Defunct segments                         : No]
  			}
  		} elsif ($section =~ /MaxCache 3\.0 information/) {
  			# not parsed yet
  		} else {
  			warn "NOT PARSED: [$section] [$_]";
  		}
  	}
  	close $fh;
  
  	$this->unknown->message("Command did not succeed") unless defined $ok;
  
  	return { controller => \%c, logical => \@ld, physical => \@pd };
  }
  
  # NB: side effect: ARCCONF changes current directory to /var/log
  sub parse {
  	my ($this) = @_;
  
  	# we chdir to /var/log, as tool is creating 'UcliEvt.log'
  	# this can be disabled with 'nologs' parameter, but not sure do all versions support it
  	chdir('/var/log') || chdir('/');
  
  	my ($status, $config);
  	$status = $this->parse_status or return;
  	$config = $this->parse_config($status) or return;
  
  	return { %$status, %$config };
  }
  
  # check for controller status
  sub check_controller {
  	my ($this, $c) = @_;
  
  	my @status;
  
  	$this->critical if $c->{status} !~ /Optimal|Okay/;
  	push(@status, "Controller:$c->{status}");
  
  	if ($c->{defunct_count} > 0) {
  		$this->critical;
  		push(@status, "Defunct drives:$c->{defunct_count}");
  	}
  
  	if (defined $c->{logical_failed} && $c->{logical_failed} > 0) {
  		$this->critical;
  		push(@status, "Failed drives:$c->{logical_failed}");
  	}
  
  	if (defined $c->{logical_degraded} && $c->{logical_degraded} > 0) {
  		$this->critical;
  		push(@status, "Degraded drives:$c->{logical_degraded}");
  	}
  
  	if (defined $c->{logical_offline} && $c->{logical_offline} > 0) {
  		$this->critical;
  		push(@status, "Offline drives:$c->{logical_offline}");
  	}
  
  	if (defined $c->{logical_critical} && $c->{logical_critical} > 0) {
  		$this->critical;
  		push(@status, "Critical drives:$c->{logical_critical}");
  	}
  
  	if (defined $c->{logical_degraded} && $c->{logical_degraded} > 0) {
  		$this->critical;
  		push(@status, "Degraded drives:$c->{logical_degraded}");
  	}
  
  	# ZMM (Zero-Maintenance Module) status
  	if (defined($c->{zmm_status})) {
  		push(@status, "ZMM Status: $c->{zmm_status}");
  	}
  
  	# Battery status
  	if ($this->bbu_monitoring) {
  		my @s = $this->battery_status($c);
  		push(@status, @s) if @s;
  	}
  
  	return @status;
  }
  
  # check for physical devices
  sub check_physical {
  	my ($this, $p) = @_;
  
  	my %pd;
  	$this->{pd_resync} = 0;
  	for my $ch (@$p) {
  		for my $pd (@{$ch}) {
  			# skip not disks
  			next if not defined $pd;
  			next if $pd->{devtype} =~ m/Enclosure/;
  
  			if ($pd->{status} eq 'Rebuilding') {
  				$this->resync;
  				$this->{pd_resync}++;
  
  			} elsif ($pd->{status} eq 'Dedicated Hot-Spare') {
  				$this->spare;
  				$pd->{status} = "$pd->{status} for $pd->{spare}";
  
  			} elsif ($pd->{status} !~ /^Online|Hot[- ]Spare|Ready/) {
  				$this->critical;
  			}
  
  			my $id = $pd->{serial} || $pd->{wwn} || $pd->{location};
  			push(@{$pd{$pd->{status}}}, $id);
  		}
  	}
  
  	return \%pd;
  }
  
  # check for logical devices
  sub check_logical {
  	my ($this, $l) = @_;
  
  	my @status;
  	for my $ld (@$l) {
  		next unless $ld; # FIXME: fix that script assumes controllers start from '0'
  
  		if ($ld->{status} eq 'Degraded' && $this->{pd_resync}) {
  			$this->warning;
  		} elsif ($ld->{status} !~ /Optimal|Okay/) {
  			$this->critical;
  		}
  
  		my $id = $ld->{id};
  		if ($ld->{name}) {
  			$id = "$id($ld->{name})";
  		}
  		push(@status, "Logical Device $id:$ld->{status}");
  
  		if (defined $ld->{failed_stripes} && $ld->{failed_stripes} ne 'No') {
  			push(@status, "Failed stripes: $ld->{failed_stripes}");
  		}
  		if (defined $ld->{defunct_segments} && $ld->{defunct_segments} ne 'No') {
  			push(@status, "Defunct segments: $ld->{defunct_segments}");
  		}
  	}
  
  	return @status;
  }
  
  sub check {
  	my $this = shift;
  
  	my $data = $this->parse;
  	$this->unknown,return unless $data;
  
  	my @status;
  
  	for my $i (sort {$a cmp $b} keys %{$data->{controllers}}) {
  		my $c = $data->{controllers}->{$i};
  
  		push(@status, $this->check_controller($c->{controller}));
  
  		# current (logical device) tasks
  		if ($data->{tasks}->{operation} ne 'None') {
  			# just print it. no status change
  			my $task = $data->{tasks};
  			push(@status, "$task->{type} #$task->{device}: $task->{operation}: $task->{status} $task->{percent}%");
  		}
  
  		# check physical first, as it setups pd_resync flag
  		my $pd = $this->check_physical($c->{physical});
  
  		push(@status, $this->check_logical($c->{logical}));
  
  		# but report after logical devices
  		push(@status, "Drives: ".$this->join_status($pd)) if $pd;
  	}
  
  	$this->ok->message(join(', ', @status));
  }
  
  # check battery status in $c
  sub battery_status {
  	my ($this, $c) = @_;
  
  	my @status;
  
  	if (!defined($c->{battery_status}) || $c->{battery_status} eq 'Not Installed') {
  		return;
  	}
  
  	push(@status, "Battery Status: $c->{battery_status}");
  
  	# if battery status is 'Failed', none of the details below are available. #105
  	if ($c->{battery_status} eq 'Failed') {
  		$this->critical;
  		return @status;
  	}
  
  	# detailed battery checks
  	if ($c->{battery_overtemp} ne 'No') {
  		$this->critical;
  		push(@status, "Battery Overtemp: $c->{battery_overtemp}");
  	}
  
  	push(@status, "Battery Capacity Remaining: $c->{battery_capacity}%");
  	if ($c->{battery_capacity} < 50) {
  		$this->critical;
  	}
  	if ($c->{battery_capacity} < 25) {
  		$this->warning;
  	}
  
  	if ($c->{battery_time} < 1440) {
  		$this->warning;
  	}
  	if ($c->{battery_time} < 720) {
  		$this->critical;
  	}
  
  	if ($c->{battery_time} < 60) {
  		push(@status, "Battery Time: $c->{battery_time}m");
  	} else {
  		push(@status, "Battery Time: $c->{battery_time_full}");
  	}
  
  	return @status;
  }
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_ARCCONF

$fatpacked{"App/Monitoring/Plugin/CheckRaid/Plugins/areca.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_ARECA';
  package App::Monitoring::Plugin::CheckRaid::Plugins::areca;
  
  ## Areca SATA RAID Support
  ## requires cli64 or cli32 binaries
  ## For links to manuals and binaries, see this issue:
  ## https://github.com/glensc/nagios-plugin-check_raid/issues/10
  
  use base 'App::Monitoring::Plugin::CheckRaid::Plugin';
  use strict;
  use warnings;
  
  sub program_names {
  	qw(areca-cli areca_cli64 areca_cli32 cli64 cli32);
  }
  
  sub commands {
  	{
  		'rsf info' => ['-|', '@CMD', 'rsf', 'info'],
  		'disk info' => ['-|', '@CMD', 'disk', 'info'],
  	}
  }
  
  sub sudo {
  	my ($this, $deep) = @_;
  	# quick check when running check
  	return 1 unless $deep;
  
  	my $cmd = $this->{program};
  	(
  		"CHECK_RAID ALL=(root) NOPASSWD: $cmd rsf info",
  		"CHECK_RAID ALL=(root) NOPASSWD: $cmd disk info",
  	);
  }
  
  # plugin check
  # can store its exit code in $this->status
  # can output its message in $this->message
  sub check {
  	my $this = shift;
  
  	## Check Array Status
  	my (@status, %arrays);
  	my $fh = $this->cmd('rsf info');
  	while (<$fh>) {
  =cut
   #  Name             Disks TotalCap  FreeCap MinDiskCap         State
   #  Name             Disks TotalCap  FreeCap DiskChannels       State
  ===============================================================================
   1  Raid Set # 000      23 34500.0GB    0.0GB   1500.0GB         Normal
   1  Raid Set # 00       15 15000.0GB    0.0GB 123G567C9AB48EF    Normal
   1  data                15 11250.0GB    0.0GB 123456789ABCDEF    Normal
   1  data                15 11250.0GB    0.0GB 123456789ABCDEF    Initializing
  ===============================================================================
  =cut
  		next unless (my($id, $n, $s) = m{^
  			\s*(\d+)    # Id
  			\s+(.+)     # Name
  			\s+\d+      # Disks
  			\s+\S+      # TotalCap
  			\s+\S+      # FreeCap
  			\s+\S+      # MinDiskCap/DiskChannels
  			\s+(\S+)\s* # State
  		$}x);
  
  		# trim trailing spaces from name
  		$n =~ s/\s+$//;
  
  		if ($s =~ /[Rr]e[Bb]uild/) {
  			$this->warning;
  		} elsif ($s !~ /[Nn]ormal|[Rr]e[Bb]uild|Checking|Initializing/) {
  			$this->critical;
  		}
  
  		push(@status, "Array#$id($n): $s");
  
  		$arrays{$n} = [ $id, $s ];
  	}
  	close $fh;
  
  	## Check Drive Status
  	$fh = $this->cmd('disk info');
  	my %drivestatus;
  	while (<$fh>) {
  		chomp;
  =cut
    # Enc# Slot#   ModelName                        Capacity  Usage
  ===============================================================================
    1  01  Slot#1  N.A.                                0.0GB  N.A.
    8  01  Slot#8  N.A.                                0.0GB  N.A.
    9  02  SLOT 01 ST31500341AS                     1500.3GB  Raid Set # 000
   11  02  SLOT 03 ST31500341AS                     1500.3GB  Raid Set # 000
  
    # Ch# ModelName                       Capacity  Usage
  ===============================================================================
    1  1  ST31000340NS                    1000.2GB  Raid Set # 00
    6  6  ST31000340NS                    1000.2GB  Raid Set # 00
    3  3  WDC WD7500AYYS-01RCA0            750.2GB  data
    4  4  WDC WD7500AYYS-01RCA0            750.2GB  data
   16 16  WDC WD7500AYYS-01RCA0            750.2GB  HotSpare[Global]
  =cut
  		next unless my($id, $model, $usage) = m{^
  			\s*(\d+)      # Id
  			\s+\d+        # Channel/Enclosure (not reliable, tests 1,2,12 differ)
  			\s+(.+)       # ModelName
  			\s+\d+.\d\S+  # Capacity
  			\s+(.+)       # Usage (Raid Name)
  		}x;
  
  		# trim trailing spaces from name
  		$usage =~ s/\s+$//;
  
  		# Asssume model N.A. means the slot not in use
  		# we could also check for Capacity being zero, but this seems more
  		# reliable.
  		next if $usage eq 'N.A.';
  
  		# use array id in output: shorter
  		my $array_id = defined($arrays{$usage}) ? ($arrays{$usage})->[0] : undef;
  		my $array_name = defined $array_id ? "Array#$array_id" : $usage;
  
  		# assume critical if Usage is not one of:
  		# - existing Array name
  		# - HotSpare
  		# - Rebuild
  		if (defined($arrays{$usage})) {
  			# Disk in Array named $usage
  			push(@{$drivestatus{$array_name}}, $id);
  		} elsif ($usage =~ /[Rr]e[Bb]uild/) {
  			# rebuild marks warning
  			push(@{$drivestatus{$array_name}}, $id);
  			$this->warning;
  		} elsif ($usage =~ /HotSpare/) {
  			# hotspare is OK
  			push(@{$drivestatus{$array_name}}, $id);
  		} elsif ($usage =~ /Pass Through/) {
  			# Pass Through is OK
  			push(@{$drivestatus{$array_name}}, $id);
  		} else {
  			push(@{$drivestatus{$array_name}}, $id);
  			$this->critical;
  		}
  	}
  	close $fh;
  
  	push(@status, "Drive Assignment: ".$this->join_status(\%drivestatus)) if %drivestatus;
  
  	$this->ok->message(join(', ', @status));
  }
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_ARECA

$fatpacked{"App/Monitoring/Plugin/CheckRaid/Plugins/cciss.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_CCISS';
  package App::Monitoring::Plugin::CheckRaid::Plugins::cciss;
  
  use base 'App::Monitoring::Plugin::CheckRaid::Plugin';
  use App::Monitoring::Plugin::CheckRaid::Plugins::lsscsi;
  use strict;
  use warnings;
  
  sub program_names {
  	'cciss_vol_status';
  }
  
  sub commands {
  	{
  		'controller status' => ['-|', '@CMD', '@devs'],
  		'controller status verbose' => ['-|', '@CMD', '-V', '@devs'],
  		'cciss_vol_status version' => ['>&2', '@CMD', '-v'],
  
  		'detect hpsa' => ['<', '/sys/module/hpsa/refcnt'],
  		'detect cciss' => ['<', '/proc/driver/cciss'],
  		'cciss proc' => ['<', '/proc/driver/cciss/$controller'],
  
  		# for lsscsi, issue #109
  		'lsscsi list' => ['-|', '@CMD', '-g'],
  	}
  }
  
  sub sudo {
  	my ($this, $deep) = @_;
  
  	# quick check when running check
  	return 1 unless $deep;
  
  	my $cmd = $this->{program};
  
  	my $v1_10 = $this->cciss_vol_status_version >= 1.10;
  
  	my @sudo;
  	my @cciss_devs = $this->detect;
  	if (@cciss_devs) {
  		my $c = join(' ', @cciss_devs);
  		if ($v1_10) {
  			push(@sudo, "CHECK_RAID ALL=(root) NOPASSWD: $cmd -V $c");
  		} else {
  			push(@sudo, "CHECK_RAID ALL=(root) NOPASSWD: $cmd $c");
  		}
  	}
  
  	my @cciss_disks = $this->detect_disks(@cciss_devs);
  	if (!$v1_10 && @cciss_disks) {
  		my $smartctl = App::Monitoring::Plugin::CheckRaid::Plugins::smartctl->new();
  
  		if ($smartctl->active) {
  			my $cmd = $smartctl->{program};
  			foreach my $ref (@cciss_disks) {
  				my ($dev, $diskopt, $disk) = @$ref;
  				# escape comma for sudo
  				$diskopt =~ s/,/\\$&/g;
  				push(@sudo, "CHECK_RAID ALL=(root) NOPASSWD: $cmd -H $dev $diskopt$disk");
  			}
  		}
  	}
  
  	return @sudo;
  }
  
  # detects if hpsa (formerly cciss) is present in system
  sub detect {
  	my $this = shift;
  
  	my ($fh, @devs);
  
  	# try lsscsi first if enabled and allowed
  	my $lsscsi = App::Monitoring::Plugin::CheckRaid::Plugins::lsscsi->new('commands' => $this->{commands});
  	my $use_lsscsi = defined($this->{use_lsscsi}) ? $this->{use_lsscsi} : $lsscsi->active;
  	if ($use_lsscsi) {
  		# for cciss_vol_status < 1.10 we need /dev/sgX nodes, columns which are type storage
  		@devs = $lsscsi->list_sg;
  
  		# cciss_vol_status 1.10 can process disk nodes too even if sg is not present
  		my $v1_10 = $this->cciss_vol_status_version >= 1.10;
  		if (!@devs && $v1_10) {
  			@devs = $lsscsi->list_dd;
  		}
  
  		return wantarray ? @devs : \@devs if @devs;
  	}
  
  	# check hpsa devs
  	eval { $fh = $this->cmd('detect hpsa'); };
  	if ($fh) {
  		my $refcnt = <$fh>;
  		close $fh;
  
  		if ($refcnt) {
  			# TODO: how to figure which sgX is actually in use?
  			# for now we collect all, and expect cciss_vol_status to ignore unknowns
  			# refcnt seems to match number of sg devs: /sys/class/scsi_generic/sg*
  			for (my $i = 0; $i < $refcnt; $i++) {
  				my $dev = "/dev/sg$i";
  				# filter via valid() so could exclude devs
  				push(@devs, $dev) if $this->valid($dev);
  			}
  		}
  	}
  	undef($fh);
  
  	# check legacy cciss devs
  	eval { $fh = $this->cmd('detect cciss'); };
  	if ($fh) {
  		my @c = grep { !/^\./ } readdir($fh);
  		close($fh);
  
  		# find controllers
  		#	cciss0: HP Smart Array P400i Controller
  		#	Board ID: 0x3235103c
  		#	Firmware Version: 4.06
  		#	IRQ: 98
  		#	Logical drives: 1
  		#	Current Q depth: 0
  		#	Current # commands on controller: 0
  		#	Max Q depth since init: 249
  		#	Max # commands on controller since init: 275
  		#	Max SG entries since init: 31
  		#	Sequential access devices: 0
  		#
  		#	cciss/c0d0:      220.12GB       RAID 1(1+0)
  		for my $c (@c) {
  			my $fh = $this->cmd('cciss proc', { '$controller' => $c });
  			while (<$fh>) {
  				# check "c*d0" - iterate over each controller
  				next unless (my($dev) = m{^(cciss/c\d+d0):});
  				$dev = "/dev/$dev";
  				# filter via valid() so could exclude devs
  				push(@devs, $dev) if $this->valid($dev);
  			}
  			close $fh;
  		}
  	}
  	undef($fh);
  
  	return wantarray ? @devs : \@devs;
  }
  
  # build list of cciss disks
  # used by smartctl check
  # just return all disks (0..15) for each cciss dev found
  sub detect_disks {
  	my $this = shift;
  
  	my @devs;
  	# build devices list for smartctl
  	foreach my $scsi_dev (@_) {
  		foreach my $disk (0..15) {
  			push(@devs, [ $scsi_dev, '-dcciss,', $disk ]);
  		}
  	}
  	return wantarray ? @devs : \@devs;
  }
  
  # parse version out of "cciss_vol_status version 1.09"
  # NOTE: it prints the output to stderr, but may print to stdout in the future
  sub cciss_vol_status_version {
  	my $this = shift;
  
  	# cache inside single run
  	return $this->{cciss_vol_status_version} if defined $this->{cciss_vol_status_version};
  
  	my $version = sub {
  		my $fh = $this->nosudo_cmd('cciss_vol_status version');
  		my ($line) = <$fh>;
  		close $fh;
  		return 0 unless $line;
  
  		if (my($v) = $line =~ /^cciss_vol_status version ([\d.]+)$/) {
  			return 0 + $v;
  		}
  		return 0;
  	};
  
  	return $this->{cciss_vol_status_version} = &$version();
  }
  
  sub trim { my $s = shift; $s =~ s/^\s+|\s+$//g; return $s };
  
  # we process until we find end of sentence (dot at the end of the line)
  sub consume_diagnostic {
  	my ($this, $fh) = @_;
  
  	my $diagnostic = '';
  	while (1) {
  		my $s = <$fh>;
  		last unless $s;
  		chomp;
  		$diagnostic .= ' '. trim($s);
  		last if $s =~ /\.$/;
  	}
  	return trim($diagnostic);
  }
  
  # process to skip lines with physical location:
  # "         connector 1I box 1 bay 4 ..."
  sub consume_disk_map {
  	my ($this, $fh) = @_;
  
  	while (my $s = <$fh>) {
  		chomp $s;
  		# connector 1I box 1 bay 4
  		last unless $s =~ /^\s+connector\s/;
  	}
  }
  
  sub parse {
  	my $this = shift;
  	my @devs = @_;
  
  	my (%c, $cdev);
  
  	# cciss_vol_status 1.10 has -V option to print more info about controller and disks.
  	my $v1_10 = $this->cciss_vol_status_version >= 1.10;
  
  	# add all devs at once to commandline, cciss_vol_status can do that
  	my $fh = $this->cmd($v1_10 ? 'controller status verbose' : 'controller status', { '@devs' => \@devs });
  	while (<$fh>) {
  		chomp;
  
  		if (/Controller:/) {
  			# this is first item when new controller is found
  			# reset previous state
  			undef $cdev;
  			next;
  		}
  
  		# catch enclosures, print_bus_status()
  		# /dev/cciss/c1d0: (Smart Array P800) Enclosure MSA70 (S/N: SGA651004J) on Bus 2, Physical Port 1E status: OK.
  		# /dev/cciss/c0d0: (Smart Array 6i) Enclosure PROLIANT 6L2I (S/N: ) on Bus 0, Physical Port J1 status: OK.
  		if (my($file, $board_name, $name, $sn, $bus, $port1, $port2, $status) = m{
  			^(/dev/[^:]+):\s        # File
  			\(([^)]+)\)\s           # Board Name
  			Enclosure\s(.*?)\s      # Enclosure Name
  			\(S/N:\s(\S*)\)\s       # Enclosure SN
  			on\sBus\s(\d+),\s       # Bus Number
  			Physical\sPort\s(.)     # physical_port1
  			(.)\s                   # physical_port2
  			status:\s(.*?)\.        # status (without a dot)
  		}x) {
  			$c{$file}{enclosures}{$bus} = {
  				board_name => $board_name,
  				name => $name,
  				sn => $sn,
  				bus => int($bus),
  				phys1 => $port1,
  				phys2 => $port2,
  				status => $status,
  			};
  			next;
  		}
  
  		# volume status, print_volume_status()
  		# /dev/cciss/c0d0: (Smart Array P400i) RAID 1 Volume 0 status: OK
  		# /dev/sda: (Smart Array P410i) RAID 1 Volume 0 status: OK.
  		# /dev/sda: (Smart Array P410i) RAID 5 Volume 0 status: OK.   At least one spare drive designated.  At least one spare drive has failed.
  		if (my($file, $board_name, $raid_level, $volume_number, $certain, $status, $spare_drive_status) = m{
  			^(/dev/[^:]+):\s        # File
  			\(([^)]+)\)\s           # Board Name
  			(RAID\s\d+|\([^)]+\))\s # RAID level
  			Volume\s(\d+)           # Volume number
  			(\(\?\))?\s             # certain?
  			status:\s(.*?)\.        # status (without a dot)
  			(.*)?                   # spare drive status messages
  		}x) {
  			$cdev = $file;
  			$c{$file}{volumes}{$volume_number} = {
  				board_name => $board_name,
  				raid_level => $raid_level,
  				volume_number => $volume_number,
  				certain => int(not defined $certain),
  				status => $status,
  				spare_drive_status => trim($spare_drive_status),
  			};
  
  			$c{$file}{board_name} = $board_name;
  			next;
  		}
  
  		next unless $cdev;
  
  		if (my ($count) = /Physical drives: (\d+)/) {
  			$c{$cdev}{'pd count'} = $count;
  			next;
  		}
  
  		# check_physical_drives(file, fd);
  		# NOTE: check for physical drives is enabled with -V or -s option (-V enables -s)
  		# cciss_vol_status.c format_phys_drive_location()
  		if (my ($phys1, $phys2, $box, $bay, $model, $serial_no, $fw_rev, $status) = m{
  			\sconnector\s(.)(.)\s # Phys connector 1&2
  			box\s(\d+)\s          # phys_box_on_bus
  			bay\s(\d+)\s          # phys_bay_in_box
  			(.{40})\s             # model
  			(.{40})\s             # serial no
  			(.{8})\s              # fw rev
  			(.+)                  # status
  		$}x) {
  			my $slot = "$phys1$phys2-$box-$bay";
  			$c{$cdev}{drives}{$slot} = {
  				'slot' => $slot,
  				'phys1' => $phys1,
  				'phys2' => $phys2,
  				'box' => int($box),
  				'bay' => int($bay),
  
  				'model' => trim($model),
  				'serial' => trim($serial_no),
  				'fw' => trim($fw_rev),
  				'status' => $status,
  			};
  			next;
  		}
  
  		# TODO
  		# check_fan_power_temp(file, ctlrtype, fd, num_controllers);
  
  		# check_nonvolatile_cache_status(file, ctlrtype, fd, num_controllers);
  		# /dev/cciss/c0d0(Smart Array P400i:0): Non-Volatile Cache status:
  		if (my($file, $board_name, $instance) = m{^(/dev/[^(]+)\((.+):(\d+)\): Non-Volatile Cache status}) {
  			# $file and $dev may differ, so store it
  			$c{$cdev}{cache} = {
  				'file' => $file,
  				'board' => $board_name,
  				'instance' => int($instance),
  			};
  			next;
  		}
  
  		if (defined($c{$cdev}{cache})) {
  			my $cache = $c{$cdev}{cache};
  			my %map = (
  				configured => qr/Cache configured: (.+)/,
  				read_cache_memory => qr/Read cache memory: (.+)/,
  				write_cache_memory => qr/Write cache memory: (.+)/,
  				write_cache_enabled => qr/Write cache enabled: (.+)/,
  				flash_cache => qr/Flash backed cache present/,
  				disabled_temporarily => qr/Write cache temporarily disabled/,
  				disabled_permanently => qr/Write Cache permanently disabled/,
  			);
  			my $got;
  			while (my($k, $r) = each %map) {
  				next unless (my($v) = $_ =~ $r);
  				$cache->{$k} = $v;
  				$got = 1;
  
  				# consume extended diagnostic
  				if ($k =~ /disabled_(temporari|permanentl)ly/) {
  					$cache->{"$k diagnostic"} = $this->consume_diagnostic($fh);
  				}
  			}
  
  			next if $got;
  		}
  
  		# show_disk_map("  Failed drives:", file, fd, id, controller_lun, ctlrtype,
  		# show_disk_map("  'Replacement' drives:", file, fd, id, controller_lun, ctlrtype,
  		# show_disk_map("  Drives currently substituted for by spares:", file, fd, id, controller_lun, ctlrtype,
  		if (/^  Failed drives:/ ||
  			/^  'Replacement' drives:/ ||
  			/^  Drives currently substituted for by spares:/
  		) {
  			# could store this somewhere, ignore for now
  			$this->consume_disk_map($fh);
  			next;
  		}
  
  		if (my($total_failed) = /Total of (\d+) failed physical drives detected on this logical drive\./) {
  			$c{$cdev}{phys_failed} = $total_failed;
  			next;
  		}
  
  		warn "Unparsed[$_]";
  	}
  	close($fh);
  
  	return \%c;
  }
  
  sub check {
  	my $this = shift;
  	my @devs = $this->detect;
  
  	unless (@devs) {
  		$this->warning;
  		$this->message("No Smart Array Adapters were found on this machine");
  		return;
  	}
  
  	# status messages pushed here
  	my @status;
  
  	my $res = $this->parse(@devs);
  	for my $dev (sort {$a cmp $b} keys %$res) {
  		my $c = $res->{$dev};
  		my @bstatus;
  
  		# check volumes
  		my @vstatus;
  		for my $vn (sort {$a cmp $b} keys %{$c->{volumes}}) {
  			my $v = $c->{volumes}->{$vn};
  			if ($v->{status} !~ '^OK') {
  				$this->critical;
  			}
  			push(@vstatus, "Volume $v->{volume_number} ($v->{raid_level}): $v->{status}");
  		}
  
  		push(@bstatus, @vstatus) if @vstatus;
  
  		# check physical devices
  		if ($c->{'pd count'}) {
  			my %pd;
  			for my $ps (sort {$a cmp $b} keys %{$c->{drives}}) {
  				my $pd = $c->{drives}{$ps};
  				if ($pd->{status} !~ '^OK') {
  					$this->critical;
  					$ps .= "($pd->{serial})";
  				}
  				push(@{$pd{$pd->{status}}}, $ps);
  			}
  			push(@bstatus, "Drives($c->{'pd count'}): ". $this->join_status(\%pd));
  		}
  
  		# check enclosures
  		if ($c->{enclosures}) {
  			my @e;
  			for my $i (sort {$a cmp $b} keys %{$c->{enclosures}}) {
  				my $e = $c->{enclosures}{$i};
  
  				# enclosure name may be missing, identify by connection
  				my $s = $e->{name} || "$e->{bus}-$e->{phys1}$e->{phys2}";
  				# enclosure S/N may be missing
  				$s .= "($e->{sn})" if $e->{sn};
  				$s .= ": $e->{status}";
  				if ($e->{status} !~ '^OK') {
  					$this->critical;
  				}
  				push(@e, $s);
  			}
  			push(@bstatus, "Enclosures: ". join(', ', @e));
  		}
  
  		# check cache
  		if ($c->{cache} && $c->{cache}->{configured} eq 'Yes') {
  			my $cache = $c->{cache};
  			my @cstatus = 'Cache:';
  
  			if ($cache->{write_cache_enabled} eq 'Yes') {
  				push(@cstatus, "WriteCache");
  
  			} elsif ($cache->{disabled_temporarily} || $cache->{disabled_permanently}) {
  				# disabled diagnostic is available, but it's too long to print here
  				push(@cstatus, "WriteCache:DISABLED");
  				$this->cache_fail;
  			}
  
  			push(@cstatus, "FlashCache") if $cache->{flash_cache};
  			push(@cstatus, "ReadMem:$cache->{read_cache_memory}") if $cache->{read_cache_memory};
  			push(@cstatus, "WriteMem:$cache->{write_cache_memory}") if $cache->{write_cache_memory};
  
  			push(@bstatus, join(' ', @cstatus));
  		}
  
  		push(@status, "$dev($c->{board_name}): ". join(', ', @bstatus));
  	}
  
  	unless (@status) {
  		return;
  	}
  
  	# denote this plugin as ran ok
  	$this->ok;
  
  	$this->message(join(', ', @status));
  
  	# cciss_vol_status 1.10 with -V (or -s) checks individual disk health anyway
  	my $v1_10 = $this->cciss_vol_status_version >= 1.10;
  
  	# no_smartctl: allow skip from tests
  	if (!$v1_10 && !$this->{no_smartctl}) {
  		# check also individual disk health
  		my @disks = $this->detect_disks(@devs);
  		if (@disks) {
  			# inherit smartctl command from our commands (testing)
  			my %params = ();
  			$params{commands}{smartctl} = $this->{commands}{smartctl} if $this->{commands}{smartctl};
  
  			my $smartctl = App::Monitoring::Plugin::CheckRaid::Plugins::smartctl->new(%params);
  			# do not perform check if smartctl is missing
  			if ($smartctl->active) {
  				$smartctl->check_devices(@disks);
  
  				# XXX this is hack, as we have no proper subcommand check support
  				$this->message($this->message . " " .$smartctl->message);
  				if ($smartctl->status > 0) {
  					$this->critical;
  				}
  			}
  		}
  	}
  }
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_CCISS

$fatpacked{"App/Monitoring/Plugin/CheckRaid/Plugins/cmdtool2.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_CMDTOOL2';
  package App::Monitoring::Plugin::CheckRaid::Plugins::cmdtool2;
  
  use base 'App::Monitoring::Plugin::CheckRaid::Plugin';
  use strict;
  use warnings;
  
  sub program_names {
  	'CmdTool2';
  }
  
  sub commands {
  	{
  		'adapter list' => ['-|', '@CMD', , '-AdpAllInfo', '-aALL', '-nolog'],
  		'adapter config' => ['-|', '@CMD', '-CfgDsply', '-a$adapter', '-nolog'],
  	}
  }
  
  sub sudo {
  	my ($this, $deep) = @_;
  	# quick check when running check
  	return 1 unless $deep;
  
  	my $cmd = $this->{program};
  	(
  		"CHECK_RAID ALL=(root) NOPASSWD: $cmd -AdpAllInfo -aALL -nolog",
  		"CHECK_RAID ALL=(root) NOPASSWD: $cmd -CfgDsply -a* -nolog",
  	);
  }
  
  sub check {
  	my $this = shift;
  
  	# status messages pushed here
  	my @status;
  
  	# get adapters
  	my $fh = $this->cmd('adapter list');
  	my @c;
  	while (<$fh>) {
  		if (my($c) = /^Adapter #(\d+)/) {
  			push(@c, $c);
  		}
  	}
  	close $fh;
  
  	unless (@c) {
  		$this->warning;
  		$this->message("No LSI adapters were found on this machine");
  		return;
  	}
  
  	foreach my $c (@c) {
  		my $fh = $this->cmd('adapter config', { '$adapter' => $c });
  		my ($d);
  		while (<$fh>) {
  			# DISK GROUPS: 0
  			if (my($s) = /^DISK GROUPS: (\d+)/) {
  				$d = int($s);
  				next;
  			}
  
  			# State: Optimal
  			if (my($s) = /^State: (\S+)$/) {
  				if ($s ne 'Optimal') {
  					$this->critical;
  				}
  				push(@status, "Logical Drive $c,$d: $s");
  			}
  		}
  	}
  
  	return unless @status;
  
  	# denote this plugin as ran ok
  	$this->ok;
  
  	$this->message(join(', ', @status));
  }
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_CMDTOOL2

$fatpacked{"App/Monitoring/Plugin/CheckRaid/Plugins/dmraid.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_DMRAID';
  package App::Monitoring::Plugin::CheckRaid::Plugins::dmraid;
  
  use base 'App::Monitoring::Plugin::CheckRaid::Plugin';
  use strict;
  use warnings;
  
  sub program_names {
  	shift->{name};
  }
  
  sub commands {
  	{
  		'dmraid' => ['-|', '@CMD', '-r'],
  	}
  }
  
  sub active {
  	my ($this) = @_;
  
  	# easy way out. no executable
  	return 0 unless -e $this->{commands}{dmraid}[1];
  
  	# check if dmraid is empty
  	return keys %{$this->parse} > 0;
  }
  
  sub sudo {
  	my ($this, $deep) = @_;
  	# quick check when running check
  	return 1 unless $deep;
  
  	my $cmd = $this->{program};
  	"CHECK_RAID ALL=(root) NOPASSWD: $cmd -r";
  }
  
  # parse arrays, return data indexed by array name
  sub parse {
  	my $this = shift;
  
  	my (%arrays);
  	my $fh = $this->cmd('dmraid');
  	while (<$fh>) {
  		chomp;
  		next unless (my($device, $format, $name, $type, $status, $sectors) = m{^
  			# /dev/sda: jmicron, "jmicron_JRAID", mirror, ok, 781385728 sectors, data@ 0
  			(/dev/\S+):\s # device
  			(\S+),\s # format
  			"([^"]+)",\s # name
  			(mirror|stripe[d]?),\s # type
  			(\w+),\s # status
  			(\d+)\ssectors,.* # sectors
  		$}x);
  		next unless $this->valid($device);
  
  		# trim trailing spaces from name
  		$name =~ s/\s+$//;
  
  		my $member = {
  			'device' => $device,
  			'format' => $format,
  			'type' => $type,
  			'status' => $status,
  			'size' => $sectors,
  		};
  
  		push(@{$arrays{$name}}, $member);
  	}
  	close $fh;
  
  	return \%arrays;
  }
  
  
  # plugin check
  # can store its exit code in $this->status
  # can output its message in $this->message
  sub check {
  	my $this = shift;
  	my (@status);
  
  	## Check Array and Drive Status
  	my $arrays = $this->parse;
  	while (my($name, $array) = each(%$arrays)) {
  		my @s;
  		foreach my $dev (@$array) {
  			if ($dev->{status} =~ m/sync|rebuild/i) {
  				$this->warning;
  			} elsif ($dev->{status} !~ m/ok/i) {
  				$this->critical;
  			}
  			my $size = $this->format_bytes($dev->{size});
  			push(@s, "$dev->{device}($dev->{type}, $size): $dev->{status}");
  		}
  		push(@status, "$name: " . join(', ', @s));
  	}
  
  	return unless @status;
  
  	# denote that this plugin as ran ok, not died unexpectedly
  	$this->ok->message(join(' ', @status));
  }
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_DMRAID

$fatpacked{"App/Monitoring/Plugin/CheckRaid/Plugins/dpt_i2o.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_DPT_I2O';
  package App::Monitoring::Plugin::CheckRaid::Plugins::dpt_i2o;
  
  use base 'App::Monitoring::Plugin::CheckRaid::Plugin';
  use strict;
  use warnings;
  
  sub commands {
  	{
  		'proc' => ['<', '/proc/scsi/dpt_i2o'],
  		'proc entry' => ['<', '/proc/scsi/dpt_i2o/$controller'],
  	}
  }
  
  sub active {
  	my ($this) = @_;
  	return -d $this->{commands}{proc}[1];
  }
  
  sub check {
  	my $this = shift;
  	# status messages pushed here
  	my @status;
  
  	my $fh = $this->cmd('proc');
  	my @c = grep { !/^\./ } readdir($fh);
  	close($fh);
  
  	# TODO: check for failed disks!
  	for my $c (@c) {
  		my $fh = $this->cmd('proc entry', { '$controller' => $c });
  
  		while (<$fh>) {
  			if (my ($c, $t, $l, $s) = m/TID=\d+,\s+\(Channel=(\d+),\s+Target=(\d+),\s+Lun=(\d+)\)\s+\((\S+)\)/) {
  				if ($s ne "online") {
  					$this->critical;
  				}
  				push(@status, "$c,$t,$l:$s");
  			}
  		}
  		close($fh);
  	}
  
  	return unless @status;
  
  	# denote this plugin as ran ok
  	$this->ok;
  
  	$this->message(join(', ', @status));
  }
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_DPT_I2O

$fatpacked{"App/Monitoring/Plugin/CheckRaid/Plugins/gdth.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_GDTH';
  package App::Monitoring::Plugin::CheckRaid::Plugins::gdth;
  
  # Linux gdth RAID
  
  use base 'App::Monitoring::Plugin::CheckRaid::Plugin';
  use strict;
  use warnings;
  
  sub commands {
  	{
  		'proc' => ['<', '/proc/scsi/gdth'],
  		'proc entry' => ['<', '/proc/scsi/gdth/$controller'],
  	}
  }
  
  sub active {
  	my ($this) = @_;
  	return -d $this->{commands}{proc}[1];
  }
  
  sub parse {
  	my $this = shift;
  
  	my $fh = $this->cmd('proc');
  	my @c = grep { !/^\./ } readdir($fh);
  	close($fh);
  
  	my %c;
  	for my $c (@c) {
  		my (%ld, %ad, %pd, %l, %a, %p, $section);
  
  		my $fh = $this->cmd('proc entry', { '$controller' => $c });
  		while (<$fh>) {
  			chomp;
  
  			# new section start
  			if (my($s) = /^(\w.+):$/) {
  				$section = $s;
  				%a = %l = %p = ();
  				next;
  			}
  
  			# skip unknown sections
  			next unless /^\s/ or /^$/;
  
  			# process each section
  			if ($section eq 'Driver Parameters') {
  				# nothing useful
  			} elsif ($section eq 'Disk Array Controller Information') {
  				# nothing useful
  			} elsif ($section eq 'Physical Devices') {
  				# Chn/ID/LUN:        B/05/0          Name:           FUJITSU MAX3147NC       0104
  				# Capacity [MB]:     140239          To Log. Drive:  5
  				# Retries:           1               Reassigns:      0
  				# Grown Defects:     1
  
  				if (my($id, $n, $rv) = m{^\s+Chn/ID/LUN:\s+(\S+)\s+Name:\s+(.+)(.{4})$}) {
  					$n =~ s/\s+$//;
  					$p{id} = $id;
  					$p{name} = $n;
  					$p{revision} = $rv;
  				} elsif (my($unit, $c, $d) = m/^\s+Capacity\s\[(.B)\]:\s+(\d+)\s+To Log\. Drive:\s+(\d+|--)/) {
  					$p{capacity} = int($c);
  					$p{capacity_unit} = $unit;
  					$p{drive} = $d;
  				} elsif (my($r, $ra) = m/^\s+Retries:\s+(\d+)\s+Reassigns:\s+(\d+)/) {
  					$p{retries} = int($r);
  					$p{reassigns} = int($ra);
  				} elsif (my($gd) = m/^\s+Grown Defects:\s+(\d+)/) {
  					$p{defects} = int($gd);
  				} elsif (/^$/) {
  					if ($p{capacity} == 0 and $p{name} =~ /SCA HSBP/) {
  						# HSBP is not a disk, so do not consider this an error
  						# http://support.gateway.com/s/Servers/COMPO/MOTHERBD/4000832/4000832si69.shtml
  						# Raid Hot Swap Backplane driver (recognized as "ESG-SHV SCA HSBP M16 SCSI Processor Device")
  						# Chn/ID/LUN:    B/06/0          Name:           ESG-SHV SCA HSBP M16    0.05
  						# Capacity [MB]: 0               To Log. Drive:  --
  						next;
  					}
  
  					$pd{$p{id}} = { %p };
  				} else {
  					warn "[$section] [$_]";
  					$this->unknown;
  				}
  
  			} elsif ($section eq 'Logical Drives') {
  				# Number:              3               Status:         ok
  				# Slave Number:        15              Status:         ok (older kernels)
  				# Capacity [MB]:       69974           Type:           Disk
  				if (my($num, $s) = m/^\s+(?:Slave )?Number:\s+(\d+)\s+Status:\s+(\S+)/) {
  					$l{number} = int($num);
  					$l{status} = $s;
  				} elsif (my($unit, $c, $t) = m/^\s+Capacity\s\[(.B)\]:\s+(\d+)\s+Type:\s+(\S+)/) {
  					$l{capacity} = "$c $unit";
  					$l{type} = $t;
  				} elsif (my($md, $id) = m/^\s+Missing Drv\.:\s+(\d+)\s+Invalid Drv\.:\s+(\d+|--)/) {
  					$l{missing} = int($md);
  					$l{invalid} = int($id);
  				} elsif (my($n) = m/^\s+To Array Drv\.:\s+(\d+|--)/) {
  					$l{array} = $n;
  				} elsif (/^$/) {
  					$ld{$l{number}} = { %l };
  				} else {
  					warn "[$section] [$_]";
  					$this->unknown;
  				}
  
  			} elsif ($section eq 'Array Drives') {
  				# Number:        0               Status:         fail
  				# Capacity [MB]: 349872          Type:           RAID-5
  				if (my($num, $s) = m/^\s+Number:\s+(\d+)\s+Status:\s+(\S+)/) {
  					$a{number} = int($num);
  					$a{status} = $s;
  				} elsif (my($unit, $c, $t) = m/^\s+Capacity\s\[(.B)\]:\s+(\d+)\s+Type:\s+(\S+)/) {
  					$a{capacity} = "$c $unit";
  					$a{type} = $t;
  				} elsif (/^(?: --)?$/) {
  					if (%a) {
  						$ad{$a{number}} = { %a };
  					}
  				} else {
  					warn "[$section] [$_]";
  					$this->unknown;
  				}
  
  			} elsif ($section eq 'Host Drives') {
  				# nothing useful
  			} elsif ($section eq 'Controller Events') {
  				# nothing useful
  			}
  		}
  		close($fh);
  
  		$c{$c} = { id => $c, array => { %ad }, logical => { %ld }, physical => { %pd } };
  	}
  
  	return \%c;
  }
  
  sub check {
  	my $this = shift;
  
  	# status messages pushed here
  	my @status;
  
  	my $controllers = $this->parse;
  
  	# process each controller separately
  	for my $c (values %$controllers) {
  		# array status
  		my @ad;
  		for my $n (sort {$a cmp $b} keys %{$c->{array}}) {
  			my $ad = $c->{array}->{$n};
  			if ($ad->{status} ne "ready") {
  				$this->critical;
  			}
  			push(@ad, "Array $ad->{number}($ad->{type}) $ad->{status}");
  		}
  
  		# older raids have no Array drives, Look into Logical Drives for type!=Disk
  		unless (@ad) {
  			for my $n (sort {$a cmp $b} keys %{$c->{logical}}) {
  				my $ld = $c->{logical}->{$n};
  				if ($ld->{type} eq "Disk") {
  					next;
  				}
  
  				# emulate Array Drive
  				my $s = "Array($ld->{type}) $ld->{status}";
  				# check for missing drives
  				if ($ld->{missing} > 0) {
  					$this->warning;
  					$s .= " ($ld->{missing} missing drives)";
  				}
  
  				push(@ad, $s);
  			}
  		}
  
  		# logical drive status
  		my %ld;
  		for my $n (sort {$a cmp $b} keys %{$c->{logical}}) {
  			my $ld = $c->{logical}->{$n};
  			if ($ld->{status} ne "ok") {
  				$this->critical;
  			}
  			push(@{$ld{$ld->{status}}}, $ld->{number});
  		}
  
  		# physical drive status
  		my @pd;
  		for my $n (sort {$a cmp $b} keys %{$c->{physical}}) {
  			my $pd = $c->{physical}->{$n};
  
  			my @ds;
  			# TODO: make tresholds configurable
  			if ($pd->{defects} > 300) {
  				$this->critical;
  				push(@ds, "grown defects critical: $pd->{defects}");
  			} elsif ($pd->{defects} > 30) {
  				$this->warning;
  				push(@ds, "grown defects warning: $pd->{defects}");
  			}
  
  			# report disk being not assigned
  			if ($pd->{drive} eq '--') {
  				push(@ds, "not assigned");
  			}
  
  			if (@ds) {
  				push(@pd, "Disk $pd->{id}($pd->{name}) ". join(', ', @ds));
  			}
  		}
  
  		my @cd;
  		push(@cd, @ad) if @ad;
  		push(@cd, "Logical Drives: ". $this->join_status(\%ld));
  		push(@cd, @pd) if @pd;
  		push(@status, "Controller $c->{id}: ". join('; ', @cd));
  	}
  
  	return unless @status;
  
  	# denote this plugin as ran ok
  	$this->ok;
  
  	$this->message(join('; ', @status));
  }
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_GDTH

$fatpacked{"App/Monitoring/Plugin/CheckRaid/Plugins/hp_msa.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_HP_MSA';
  package App::Monitoring::Plugin::CheckRaid::Plugins::hp_msa;
  
  use base 'App::Monitoring::Plugin::CheckRaid::Plugin';
  use App::Monitoring::Plugin::CheckRaid::SerialLine;
  use strict;
  use warnings;
  
  sub active {
  	my $this = shift;
  	return $this->detect;
  }
  
  # check from /sys if there are any MSA VOLUME's present.
  sub detect {
  	my $this = shift;
  
  	# allow --plugin-option=hp_msa-enabled to force this plugin to be enabled
  	return 1 if exists $this->{options}{'hp_msa-enabled'};
  
  	for my $file (</sys/block/*/device/model>) {
  		open my $fh, '<', $file or next;
  		my $model = <$fh>;
  		close($fh);
  		return 1 if ($model =~ /^MSA.+VOLUME/);
  	}
  	return 0;
  }
  
  sub check {
  	my $this = shift;
  
  	#  allow --plugin-option=hp_msa-serial=/dev/ttyS2 to specify serial line
  	my $ctldevice = $this->{options}{'hp_msa-serial'} || '/dev/ttyS0';
  
  	# status messages pushed here
  	my @status;
  
  	my %opts = ();
  	$opts{lockdir} = $this->{lockdir} if $this->{lockdir};
  
  	my $modem = App::Monitoring::Plugin::CheckRaid::SerialLine->new($ctldevice, %opts);
  	my $fh = $modem->open();
  	unless ($fh) {
  		$this->warning;
  		$this->message("Can't open $ctldevice");
  		return;
  	}
  
  	# check first controller
  	print $fh "\r";
  	print $fh "show globals\r";
  	print $fh "show this_controller\r";
  	print $fh "show other_controller\r";
  	# this will issue termination match, ie. invalid command
  	print $fh "exit\r";
  
  	my ($c, %c, %t);
  	while (<$fh>) {
  		chomp;
  		s/[\n\r]$//;
  		last if /Invalid CLI command/;
  
  		# Temperature:
  		# EMU: 23 Celsius,  73 Fahrenheit
  		# PS1: 22 Celsius,  71 Fahrenheit
  		# PS2: 22 Celsius,  71 Fahrenheit
  		if (my($s, $c) = /(\S+): (\d+) Celsius,\s+\d+ Fahrenheit/) {
  			$t{$s} = int($c);
  			next;
  		}
  
  		# Controller 1 (right controller):
  		if (my($s) = /^(Controller \d+)/) {
  			$c = $s;
  			$c{$c} = [];
  			next;
  		}
  		# Surface Scan: Running, LUN 10 (68% Complete)
  		if (my($s, $m) = /Surface Scan:\s+(\S+)[,.]\s*(.*)/) {
  			if ($s eq 'Running') {
  				my ($l, $p) = $m =~ m{(LUN \d+) \((\d+)% Complete\)};
  				push(@{$c{$c}}, "Surface: $l ($p%)");
  				$this->warning;
  			} elsif ($s ne 'Complete') {
  				push(@{$c{$c}}, "Surface: $s, $m");
  				$this->warning;
  			}
  			next;
  		}
  		# Rebuild Status: Running, LUN 0 (67% Complete)
  		if (my($s, $m) = /Rebuild Status:\s+(\S+)[,.]\s*(.*)/) {
  			if ($s eq 'Running') {
  				my ($l, $p) = $m =~ m{(LUN \d+) \((\d+)% Complete\)};
  				push(@{$c{$c}}, "Rebuild: $l ($p%)");
  				$this->warning;
  			} elsif ($s ne 'Complete') {
  				push(@{$c{$c}}, "Rebuild: $s, $m");
  				$this->warning;
  			}
  			next;
  		}
  		# Expansion: Complete.
  		if (my($s, $m) = /Expansion:\s+(\S+)[.,]\s*(.*)/) {
  			if ($s eq 'Running') {
  				my ($l, $p) = $m =~ m{(LUN \d+) \((\d+)% Complete\)};
  				push(@{$c{$c}}, "Expansion: $l ($p%)");
  				$this->warning;
  			} elsif ($s ne 'Complete') {
  				push(@{$c{$c}}, "Expansion: $s, $m");
  				$this->warning;
  			}
  			next;
  		}
  	}
  	$modem->close();
  
  	foreach $c (sort { $a cmp $b } keys %c) {
  		my $s = $c{$c};
  		$s = join(', ', @$s);
  		$s = 'OK' unless $s;
  		push(@status, "$c: $s");
  	}
  
  	# check that no temp is over the treshold
  	my $warn = 28;
  	my $crit = 33;
  	while (my($t, $c) = each %t) {
  		if ($c > $crit) {
  			push(@status, "$t: ${c}C");
  			$this->critical;
  		} elsif ($c > $warn) {
  			push(@status, "$t: ${c}C");
  			$this->warning;
  		}
  	}
  
  	return unless @status;
  
  	$this->message(join(', ', @status));
  }
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_HP_MSA

$fatpacked{"App/Monitoring/Plugin/CheckRaid/Plugins/hpacucli.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_HPACUCLI';
  package App::Monitoring::Plugin::CheckRaid::Plugins::hpacucli;
  
  ## hpacucli/hpssacli support
  #
  # driver developers recommend to use cciss_vol_status for monitoring,
  # hpacucli/hpssacli shouldn't be used for monitoring due they obtaining global
  # kernel lock while cciss_vol_status does not. cciss_vol_status is designed for
  # monitoring
  # https://github.com/glensc/nagios-plugin-check_raid/issues/114#issuecomment-138866801
  
  use base 'App::Monitoring::Plugin::CheckRaid::Plugin';
  use strict;
  use warnings;
  
  sub program_names {
  	shift->{name};
  }
  
  sub commands {
  	{
  		'controller status' => ['-|', '@CMD', 'controller', 'all', 'show', 'status'],
  		'logicaldrive status' => ['-|', '@CMD', 'controller', '$target', 'logicaldrive', 'all', 'show'],
  	}
  }
  
  sub sudo {
  	my ($this, $deep) = @_;
  	# quick check when running check
  	return 1 unless $deep;
  
  	my $cmd = $this->{program};
  	(
  		"CHECK_RAID ALL=(root) NOPASSWD: $cmd controller all show status",
  		"CHECK_RAID ALL=(root) NOPASSWD: $cmd controller * logicaldrive all show",
  	);
  }
  
  sub scan_targets {
  	my $this = shift;
  
  	# TODO: allow target customize:
  	# hpacucli <target> is of format:
  	#  [controller all|slot=#|wwn=#|chassisname="AAA"|serialnumber=#|chassisserialnumber=#|ctrlpath=#:# ]
  	#  [array all|<id>]
  	#  [physicaldrive all|allunassigned|[#:]#:#|[#:]#:#-[#:]#:#]
  	#  [logicaldrive all|#]
  	#  [enclosure all|#:#|serialnumber=#|chassisname=#]
  	#  [licensekey all|<key>]
  
  	# Scan controllers
  	my (%targets);
  	my $fh = $this->cmd('controller status');
  	while (<$fh>) {
  		# Numeric slot
  		if (my($model, $slot) = /^(\S.+) in Slot (.+)/) {
  			$slot =~ s/ \(RAID Mode\)//;
  			$slot =~ s/ \(Embedded\)//;
  			$targets{"slot=$slot"} = $model;
  			$this->unknown if $slot !~ /^\d+$/;
  			next;
  		}
  		# Named Entry
  		if (my($model, $cn) = /^(\S.+) in (.+)/) {
  			$targets{"chassisname=$cn"} = $cn;
  			next;
  		}
  	}
  	close $fh;
  
  	return \%targets;
  }
  
  # Scan logical drives
  sub scan_luns {
  	my ($this, $targets) = @_;
  
  	my %luns;
  	while (my($target, $model) = each %$targets) {
  		# check each controller
  		my $fh = $this->cmd('logicaldrive status', { '$target' => $target });
  
  		my ($array, %array);
  		while (<$fh>) {
  			# "array A"
  			# "array A (Failed)"
  			# "array B (Failed)"
  			if (my($a, $s) = /^\s+array (\S+)(?:\s*\((\S+)\))?$/) {
  				$array = $a;
  				# Offset 0 is Array own status
  				# XXX: I don't like this one: undef could be false positive
  				$array{$array}[0] = $s || 'OK';
  			}
  
  			# skip if no active array yet
  			next unless $array;
  
  			# logicaldrive 1 (68.3 GB, RAID 1, OK)
  			# capture only status
  			if (my($drive, $s) = /^\s+logicaldrive (\d+) \([\d.]+ .B, [^,]+, ([^\)]+)\)$/) {
  				# Offset 1 is each logical drive status
  				$array{$array}[1]{$drive} = $s;
  				next;
  			}
  
  			# Error: The controller identified by "slot=attr_value_slot_unknown" was not detected.
  			if (/Error:/) {
  				$this->unknown;
  			}
  		}
  		$this->unknown unless close $fh;
  
  		$luns{$target} = { %array };
  	}
  
  	return \%luns;
  }
  
  # parse hpacucli output into logical structure
  sub parse {
  	my $this = shift;
  
  	my $targets = $this->scan_targets;
  	if (!$targets) {
  		return $targets;
  	}
  	my $luns = $this->scan_luns($targets);
  	return { 'targets' => $targets, 'luns' => $luns };
  }
  
  sub check {
  	my $this = shift;
  
  	my $ctrl = $this->parse;
  	unless ($ctrl) {
  		$this->warning->message("No Controllers were found on this machine");
  		return;
  	}
  
  	# status messages pushed here
  	my @status;
  
  	for my $target (sort {$a cmp $b} keys %{$ctrl->{targets}}) {
  		my $model = $ctrl->{targets}->{$target};
  
  		my @cstatus;
  		foreach my $array (sort { $a cmp $b } keys %{$ctrl->{luns}->{$target}}) {
  			my ($astatus, $ld) = @{$ctrl->{luns}->{$target}{$array}};
  
  			# check array status
  			if ($astatus ne 'OK') {
  				$this->critical;
  			}
  
  			my @astatus;
  			# extra details for non-normal arrays
  			foreach my $lun (sort { $a cmp $b } keys %$ld) {
  				my $s = $ld->{$lun};
  				push(@astatus, "LUN$lun:$s");
  
  				if ($s eq 'OK' or $s eq 'Disabled') {
  				} elsif ($s eq 'Failed' or $s eq 'Interim Recovery Mode') {
  					$this->critical;
  				} elsif ($s eq 'Rebuild' or $s eq 'Recover') {
  					$this->warning;
  				}
  			}
  			push(@cstatus, "Array $array($astatus)[". join(',', @astatus). "]");
  		}
  
  		push(@status, "$model: ".join(', ', @cstatus));
  	}
  
  	return unless @status;
  
  	$this->ok->message(join(', ', @status));
  }
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_HPACUCLI

$fatpacked{"App/Monitoring/Plugin/CheckRaid/Plugins/hpssacli.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_HPSSACLI';
  package App::Monitoring::Plugin::CheckRaid::Plugins::hpssacli;
  
  # This plugin extends hpacucli plugin,
  # with the only difference that different program name will be used.
  
  use base 'App::Monitoring::Plugin::CheckRaid::Plugins::hpacucli';
  use strict;
  use warnings;
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_HPSSACLI

$fatpacked{"App/Monitoring/Plugin/CheckRaid/Plugins/ips.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_IPS';
  package App::Monitoring::Plugin::CheckRaid::Plugins::ips;
  
  # Serveraid IPS
  # Tested on IBM xSeries 346 servers with Adaptec ServeRAID 7k controllers.
  # The ipssend version was v7.12.14.
  
  use base 'App::Monitoring::Plugin::CheckRaid::Plugin';
  use strict;
  use warnings;
  
  sub program_names {
  	qw(ipssend);
  }
  
  sub commands {
  	{
  		'list logical drive' => ['-|', '@CMD', 'GETCONFIG', '1', 'LD'],
  	}
  }
  
  sub sudo {
  	my ($this, $deep) = @_;
  	# quick check when running check
  	return 1 unless $deep;
  
  	my $cmd = $this->{program};
  	"CHECK_RAID ALL=(root) NOPASSWD: $cmd getconfig 1 LD"
  }
  
  sub check {
  	my $this = shift;
  
  	# status messages pushed here
  	my @status;
  
  	my $n;
  	my $fh = $this->cmd('list logical drive');
  	while (<$fh>) {
  		if (/drive number (\d+)/i){
  			$n = $1;
  			next;
  		}
  
  		next unless $n;
  		next unless $this->valid($n);
  		next unless (my($s, $c) = /Status .*: (\S+)\s+(\S+)/);
  
  		if ($c =~ /SYN|RBL/i) { # resynching
  			$this->resync;
  		} elsif ($c !~ /OKY/i) { # not OK
  			$this->critical;
  		}
  
  		push(@status, "$n:$s");
  	}
  	close $fh;
  
  	return unless @status;
  
  	$this->ok->message(join(', ', @status));
  }
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_IPS

$fatpacked{"App/Monitoring/Plugin/CheckRaid/Plugins/lsraid.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_LSRAID';
  package App::Monitoring::Plugin::CheckRaid::Plugins::lsraid;
  
  # Linux, software RAID
  # Broken: missing test data
  
  use base 'App::Monitoring::Plugin::CheckRaid::Plugin';
  use strict;
  use warnings;
  
  sub program_names {
  	shift->{name};
  }
  
  sub commands {
  	{
  		'list' => ['-|', '@CMD', '-A', '-p'],
  	}
  }
  
  sub sudo {
  	my ($this, $deep) = @_;
  	# quick check when running check
  	return 1 unless $deep;
  
  	my $cmd = $this->{program};
  	"CHECK_RAID ALL=(root) NOPASSWD: $cmd -A -p"
  }
  
  sub check {
  	my $this = shift;
  
  	# status messages pushed here
  	my @status;
  
  	my $fh = $this->cmd('list');
  	while (<$fh>) {
  		next unless (my($n, $s) = m{/dev/(\S+) \S+ (\S+)});
  		next unless $this->valid($n);
  		if ($s =~ /good|online/) {
  			# no worries
  		} elsif ($s =~ /sync/) {
  			$this->warning;
  		} else {
  			$this->critical;
  		}
  		push(@status, "$n:$s");
  	}
  	close $fh;
  
  	return unless @status;
  
  	$this->message(join(', ', @status));
  }
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_LSRAID

$fatpacked{"App/Monitoring/Plugin/CheckRaid/Plugins/lsscsi.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_LSSCSI';
  package App::Monitoring::Plugin::CheckRaid::Plugins::lsscsi;
  
  use base 'App::Monitoring::Plugin::CheckRaid::Plugin';
  use strict;
  use warnings;
  
  sub program_names {
  	shift->{name};
  }
  
  sub commands {
  	{
  		'lsscsi list' => ['-|', '@CMD', '-g'],
  	}
  }
  
  # lists contoller devices (type=storage)
  # this will fail (return empty list) if sg module is not present
  # return /dev/sgX nodes
  sub list_sg {
  	my $this = shift;
  
  	my @scan = $this->scan;
  
  	my @devs = map { $_->{sgnode} } grep { $_->{type} eq 'storage' && $_->{sgnode} ne '-' } @scan;
  	return wantarray ? @devs : \@devs;
  }
  
  # list disk nodes one for each controller
  # return /dev/sdX nodes
  sub list_dd {
  	my $this = shift;
  
  	my @scan = $this->scan;
  	my @devs = map { $_->{devnode} } grep { $_->{type} eq 'disk' && $_->{devnode} ne '-' && $_->{sgnode} } @scan;
  	return wantarray ? @devs : \@devs;
  }
  
  # scan lsscsi output
  sub scan {
  	my $this = shift;
  
  	# cache inside single run
  	return wantarray ? @{$this->{sdevs}} : $this->{sdevs} if $this->{sdevs};
  
  	# Scan such output:
  	# [0:0:0:0]    disk    HP       LOGICAL VOLUME   3.00  /dev/sda   /dev/sg0
  	# [0:3:0:0]    storage HP       P410i            3.00  -          /dev/sg1
  	# or without sg driver:
  	# [0:0:0:0]    disk    HP       LOGICAL VOLUME   3.00  /dev/sda   -
  	# [0:3:0:0]    storage HP       P410i            3.00  -          -
  
  	my $fh = $this->cmd('lsscsi list');
  	my @sdevs;
  	while (<$fh>) {
  		chop;
  		if (my($hctl, $type, $vendor, $model, $rev, $devnode, $sgnode) = m{^
  			\[([\d:]+)\] # SCSI Controller, SCSI bus, SCSI target, and SCSI LUN
  			\s+(\S+) # type
  			\s+(\S+) # vendor
  			\s+(.*?) # model, match everything as it may contain spaces
  			\s+(\S+) # revision
  			\s+((?:/dev/\S+|-)) # /dev node
  			\s+((?:/dev/\S+|-)) # /dev/sg node
  		}x) {
  			push(@sdevs, {
  				'hctl' => $hctl,
  				'type' => $type,
  				'vendor' => $vendor,
  				'model' => $model,
  				'rev' => $rev,
  				'devnode' => $devnode,
  				'sgnode' => $sgnode,
  			});
  		}
  	}
  	close $fh;
  
  	$this->{sdevs} = \@sdevs;
  	return wantarray ? @sdevs : \@sdevs;
  }
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_LSSCSI

$fatpacked{"App/Monitoring/Plugin/CheckRaid/Plugins/lsvg.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_LSVG';
  package App::Monitoring::Plugin::CheckRaid::Plugins::lsvg;
  
  # AIX LVM
  # Status: broken (no test data)
  
  use base 'App::Monitoring::Plugin::CheckRaid::Plugin';
  use strict;
  use warnings;
  
  sub program_names {
  	shift->{name};
  }
  
  sub commands {
  	{
  		'lsvg' => ['-|', '@CMD'],
  		'lsvg list' => ['-|', '@CMD', '-l', '$vg'],
  	}
  }
  
  sub sudo {
  	my ($this, $deep) = @_;
  	# quick check when running check
  	return 1 unless $deep;
  
  	my $cmd = $this->{program};
  	(
  		"CHECK_RAID ALL=(root) NOPASSWD: $cmd",
  		"CHECK_RAID ALL=(root) NOPASSWD: $cmd -l *",
  	)
  }
  
  sub check {
  	my $this = shift;
  
  	# status messages pushed here
  	my @status;
  
  	my @vg;
  	my $fh = $this->cmd('lsvg');
  	while (<$fh>) {
  		chomp;
  		push @vg, $_;
  	}
  	close $fh;
  
  	foreach my $vg (@vg) {
  		next unless $this->valid($vg); # skip entire VG
  
  		my $fh = $this->cmd('lsvg list', { '$vg' => $vg });
  
  		while (<$fh>) {
  			my @f = split /\s/;
  			my ($n, $s) = ($f[0], $f[5]);
  			next if (!$this->valid($n) or !$s);
  			next if ($f[3] eq $f[2]); # not a mirrored LV
  
  			if ($s =~ m#open/(\S+)#i) {
  				$s = $1;
  				if ($s ne 'syncd') {
  					$this->critical;
  				}
  				push(@status, "lvm:$n:$s");
  			}
  		}
  		close $fh;
  	}
  
  	return unless @status;
  
  	$this->message(join(', ', @status));
  }
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_LSVG

$fatpacked{"App/Monitoring/Plugin/CheckRaid/Plugins/mdstat.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_MDSTAT';
  package App::Monitoring::Plugin::CheckRaid::Plugins::mdstat;
  
  # Linux Multi-Device (md)
  
  use base 'App::Monitoring::Plugin::CheckRaid::Plugin';
  use strict;
  use warnings;
  
  sub commands {
  	{
  		'mdstat' => ['<', '/proc/mdstat'],
  	}
  }
  
  sub active {
  	my ($this) = @_;
  	# easy way out. no /proc/mdstat
  	return 0 unless -e $this->{commands}{mdstat}[1];
  
  	# extra check if mdstat is empty
  	my @md = $this->parse;
  	return $#md >= 0;
  }
  
  sub parse {
  	my $this = shift;
  
  	my (@md, %md);
  	my $fh = $this->cmd('mdstat');
  	my $arr_checking = 0;
  	while (<$fh>) {
  		chomp;
  
  		# skip first line
  		next if (/^Personalities : /);
  
  		# kernel-3.0.101/drivers/md/md.c, md_seq_show
  		# md1 : active raid1 sdb2[0] sda2[1]
  		if (my($dev, $active, $ro, $rest) = m{^
  			(\S+)\s+:\s+ # mdname
  			(\S+)\s+     # active: "inactive", "active"
  			(\((?:auto-)?read-only\)\s+)? # readonly
  			(.+)         # personality name + disks
  		}x) {
  			my @parts = split /\s/, $rest;
  			my $re = qr{^
  				(\S+)           # devname
  				(?:\[(\d+)\])   # desc_nr
  				(?:\((.)\))?    # flags: (W|F|S) - WriteMostly, Faulty, Spare
  			$}x;
  			my @disks = ();
  			my $personality;
  			while (my($disk) = pop @parts) {
  				last if !$disk;
  				if ($disk !~ $re) {
  					$personality = $disk;
  					last;
  				}
  				my($dev, $number, $flags) = $disk =~ $re;
  				push(@disks, {
  					'dev' => $dev,
  					'number' => int($number),
  					'flags' => $flags || '',
  				});
  			}
  
  			die "Unexpected parse" if @parts;
  
  			# first line resets %md
  			%md = (dev => $dev, personality => $personality, readonly => $ro, active => $active, disks => [ @disks ]);
  
  			next;
  		}
  
  		# variations:
  		#"      8008320 blocks [2/2] [UU]"
  		#"      58291648 blocks 64k rounding" - linear
  		#"      5288 blocks super external:imsm"
  		#"      20969472 blocks super 1.2 512k chunks"
  		#
  		# Metadata version:
  		# This is one of
  		# - 'none' for arrays with no metadata (good luck...)
  		# - 'external' for arrays with externally managed metadata,
  		# - or N.M for internally known formats
  		#
  		if (my($b, $mdv, $status) = m{^
  			\s+(\d+)\sblocks\s+ # blocks
  			# metadata version
  			(super\s(?:
  				(?:\d+\.\d+) | # N.M
  				(?:external:\S+) |
  				(?:non-persistent)
  			))?\s*
  			(.+) # mddev->pers->status (raid specific)
  		$}x) {
  			# linux-2.6.33/drivers/md/dm-raid1.c, device_status_char
  			# A => Alive - No failures
  			# D => Dead - A write failure occurred leaving mirror out-of-sync
  			# S => Sync - A sychronization failure occurred, mirror out-of-sync
  			# R => Read - A read failure occurred, mirror data unaffected
  			# U => for the rest
  			my ($s) = $status =~ /\s+\[([ADSRU_]+)\]/;
  
  			$md{status} = $s || '';
  			$md{blocks} = int($b);
  			$md{md_version} = $mdv;
  
  			# if external try to parse dev
  			if ($mdv) {
  				($md{md_external}) = $mdv =~ m{external:(\S+)};
  			}
  			next;
  		}
  
  		# linux-2.6.33/drivers/md/md.c, md_seq_show
  		if (my($action) = m{(resync=(?:PENDING|DELAYED))}) {
  			$md{resync_status} = $action;
  			next;
  		}
  		# linux-2.6.33/drivers/md/md.c, status_resync
  		# [==>..................]  resync = 13.0% (95900032/732515712) finish=175.4min speed=60459K/sec
  		# [=>...................]  check =  8.8% (34390144/390443648) finish=194.2min speed=30550K/sec
  		if (my($action, $perc, $eta, $speed) = m{(resync|recovery|reshape)\s+=\s+([\d.]+%) \(\d+/\d+\) finish=([\d.]+min) speed=(\d+K/sec)}) {
  			$md{resync_status} = "$action:$perc $speed ETA: $eta";
  			next;
  		} elsif (($perc, $eta, $speed) = m{check\s+=\s+([\d.]+%) \(\d+/\d+\) finish=([\d.]+min) speed=(\d+K/sec)}) {
  			$md{check_status} = "check:$perc $speed ETA: $eta";
  			$arr_checking = 1;
  			next;
  		}
  
  		# we need empty line denoting end of one md
  		next unless /^\s*$/;
  
  		next unless $this->valid($md{dev});
  
  		push(@md, { %md } ) if %md;
  	}
  	close $fh;
  
  	# One of the arrays is in checking state, which could be because there is a scheduled sync of all MD arrays
  	# In such a case, all of the arrays are scheduled to by checked, but only one of them is actually running the check
  	# while the others are in "resync=DELAYED" state.
  	# We don't want to receive notifications in such case, so we check for this particular case here
  	if ($arr_checking && scalar(@md) >= 2) {
  		foreach my $dev (@md) {
  			if ($dev->{resync_status} && $dev->{resync_status} eq "resync=DELAYED") {
  				delete $dev->{resync_status};
  				$dev->{check_status} = "check=DELAYED";
  			}
  		}
  	}
  
  	return wantarray ? @md : \@md;
  }
  
  sub check {
  	my $this = shift;
  
  	my (@status);
  	my @md = $this->parse;
  
  	foreach (@md) {
  		my %md = %$_;
  
  		# common status
  		my $size = $this->format_bytes($md{blocks} * 1024);
  		my $personality = $md{personality} ? " $md{personality}" : "";
  		my $s = "$md{dev}($size$personality):";
  
  		# failed disks
  		my @fd = map { $_->{dev} } grep { $_->{flags} =~ /F/ } @{$md{disks}};
  
  		# raid0 is just there or its not. raid0 can't degrade.
  		# same for linear, no $md_status available
  		if ($personality =~ /linear|raid0/) {
  			$s .= "OK";
  
  		} elsif ($md{resync_status}) {
  			$this->resync;
  			$s .= "$md{status} ($md{resync_status})";
  
  		} elsif ($md{check_status}) {
  			$this->check_status;
  			$s .= "$md{status} ($md{check_status})";
  
  		} elsif ($md{status} =~ /_/) {
  			$this->critical;
  			my $fd = join(',', @fd);
  			$s .= "F:$fd:$md{status}";
  
  		} elsif (@fd > 0) {
  			# FIXME: this is same as above?
  			$this->warning;
  			$s .= "hot-spare failure:". join(",", @{$md{failed_disks}}) .":$md{status}";
  
  		} else {
  			$s .= "$md{status}";
  		}
  		push(@status, $s);
  	}
  
  	return unless @status;
  
  	# denote this plugin as ran ok
  	$this->ok;
  
  	$this->message(join(', ', @status));
  }
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_MDSTAT

$fatpacked{"App/Monitoring/Plugin/CheckRaid/Plugins/megacli.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_MEGACLI';
  package App::Monitoring::Plugin::CheckRaid::Plugins::megacli;
  
  # MegaRAID SAS 8xxx controllers
  # based on info from here:
  # http://www.bxtra.net/Articles/2008-09-16/Dell-Perc6i-RAID-Monitoring-Script-using-MegaCli-LSI-CentOS-52-64-bits
  # TODO: http://www.techno-obscura.com/~delgado/code/check_megaraid_sas
  # TODO: process several adapters
  # TODO: process drive temperatures
  # TODO: check error counts
  # TODO: hostspare information
  
  use base 'App::Monitoring::Plugin::CheckRaid::Plugin';
  use strict;
  use warnings;
  
  sub program_names {
  	qw(MegaCli64 MegaCli megacli);
  }
  
  sub commands {
  	{
  		'pdlist' => ['-|', '@CMD', '-PDList', '-aALL', '-NoLog'],
  		'ldinfo' => ['-|', '@CMD', '-LdInfo', '-Lall', '-aALL', '-NoLog'],
  		'battery' => ['-|', '@CMD', '-AdpBbuCmd', '-GetBbuStatus', '-aALL', '-NoLog'],
  	}
  }
  
  # TODO: process from COMMANDS
  sub sudo {
  	my ($this, $deep) = @_;
  	# quick check when running check
  	return 1 unless $deep;
  
  	my $cmd = $this->{program};
  
  	(
  		"CHECK_RAID ALL=(root) NOPASSWD: $cmd -PDList -aALL -NoLog",
  		"CHECK_RAID ALL=(root) NOPASSWD: $cmd -LdInfo -Lall -aALL -NoLog",
  		"CHECK_RAID ALL=(root) NOPASSWD: $cmd -AdpBbuCmd -GetBbuStatus -aALL -NoLog",
  	);
  }
  
  # parse physical devices
  sub parse_pd {
  	my $this = shift;
  
  	my (@pd, %pd);
  	my $rc = -1;
  	my $fh = $this->cmd('pdlist');
  	while (<$fh>) {
  		if (my($s) = /Device Id: (\S+)/) {
  			push(@pd, { %pd }) if %pd;
  			%pd = ( dev => $s, state => undef, name => undef, predictive => undef );
  			next;
  		}
  
  		if (my($s) = /Firmware state: (.+)/) {
  			# strip the extra state:
  			# 'Hotspare, Spun Up'
  			# 'Hotspare, Spun down'
  			# 'Online, Spun Up'
  			# 'Online, Spun Up'
  			# 'Online, Spun down'
  			# 'Unconfigured(bad)'
  			# 'Unconfigured(good), Spun Up'
  			# 'Unconfigured(good), Spun down'
  			$s =~ s/,.+//;
  			$pd{state} = $s;
  
  			if (defined($pd{predictive})) {
  				$pd{state} = $pd{predictive};
  			}
  			next;
  		}
  
  		if (my($s) = /Predictive Failure Count: (\d+)/) {
  			if ($s > 0) {
  				$pd{predictive} = 'Predictive';
  			}
  			next;
  		}
  
  		if (my($s) = /Inquiry Data: (.+)/) {
  			# trim some spaces
  			$s =~ s/\s+/ /g; $s =~ s/^\s+|\s+$//g;
  			$pd{name} = $s;
  			next;
  		}
  
  		if (my($s) = /Exit Code: (\d+x\d+)/) {
  			$rc = hex($s);
  		}
  		else {
  			$rc = 0;
  		}
  	}
  	push(@pd, { %pd }) if %pd;
  
  	$this->critical unless close $fh;
  	$this->critical if $rc;
  
  	return \@pd;
  }
  
  sub parse_ld {
  	my $this = shift;
  
  	my (@ld, %ld);
  	my $rc = -1;
  	my $fh = $this->cmd('ldinfo');
  	while (<$fh>) {
  		if (my($drive_id, $target_id) = /Virtual (?:Disk|Drive)\s*:\s*(\d+)\s*\(Target Id:\s*(\d+)\)/i) {
  			push(@ld, { %ld }) if %ld;
  			# Default to DriveID:TargetID in case no Name is given ...
  			%ld = ( name => "DISK$drive_id.$target_id", state => undef );
  			next;
  		}
  
  		if (my($name) = /Name\s*:\s*(\S+)/) {
  			# Add a symbolic name, if given
  			$ld{name} = $name;
  			next;
  		}
  
  		if (my($s) = /Virtual Drive Type\s*:\s*(\S+)/) {
  			$ld{type} = $s;
  			next;
  		}
  
  		if (my($s) = /State\s*:\s*(\S+)/) {
  			$ld{state} = $s;
  			next;
  		}
  
  		if (my($s) = /Default Cache Policy\s*:\s*(.+)/) {
  			$ld{default_cache} = [split /,\s*/, $s];
  			next;
  		}
  
  		if (my($s) = /Current Cache Policy\s*:\s*(.+)/) {
  			$ld{current_cache} = [split /,\s*/, $s];
  			next;
  		}
  
  		if (my($s) = /Exit Code: (\d+x\d+)/) {
  			$rc = hex($s);
  		} else {
  			$rc = 0;
  		}
  	}
  	push(@ld, { %ld }) if %ld;
  
  	$this->critical unless close $fh;
  	$this->critical if $rc;
  
  	return \@ld;
  }
  
  # check battery
  sub parse_bbu {
  	my $this = shift;
  
  	return undef unless $this->bbu_monitoring;
  
  	my %default_bbu = (
  		name => undef, state => '???', charging_status => '???', missing => undef,
  		learn_requested => undef, replacement_required => undef,
  		learn_cycle_requested => undef, learn_cycle_active => '???',
  		pack_will_fail => undef, temperature => undef, temperature_state => undef,
  		voltage => undef, voltage_state => undef
  	);
  
  	my (@bbu, %bbu);
  	my $fh = $this->cmd('battery');
  	while (<$fh>) {
  		# handle when bbu status get gives an error. see issue #32
  		if (my($s) = /Get BBU Status Failed/) {
  			last;
  		}
  
  		if (my($s) = /BBU status for Adapter: (.+)/) {
  			push(@bbu, { %bbu }) if %bbu;
  			%bbu = %default_bbu;
  			$bbu{name} = $s;
  			next;
  		}
  #=cut
  # according to current sample data, Battery State never has value
  		if (my($s) = /Battery State\s*: ?(.*)/i) {
  			if (!$s) { $s = 'Faulty'; };
  			$bbu{state} = $s;
  			next;
  		}
  #=cut
  		if (my($s) = /Charging Status\s*: (\w*)/) {
  			$bbu{charging_status} = $s;
  			next;
  		}
  		if (my($s) = /Battery Pack Missing\s*: (\w*)/) {
  			$bbu{missing} = $s;
  			next;
  		}
  		if (my($s) = /Battery Replacement required\s*: (\w*)/) {
  			$bbu{replacement_required} = $s;
  			next;
  		}
  		if (my($s) = /Learn Cycle Requested\s*: (\w*)/) {
  			$bbu{learn_cycle_requested} = $s;
  			next;
  		}
  		if (my($s) = /Learn Cycle Active\s*: (\w*)/) {
  			$bbu{learn_cycle_active} = $s;
  			next;
  		}
  		if (my($s) = /Pack is about to fail & should be replaced\s*: (\w*)/) {
  			$bbu{pack_will_fail} = $s;
  			next;
  		}
  		# Temperature: 18 C
  		if (my($s) = /Temperature: (\d+) C/) {
  			$bbu{temperature} = $s;
  			next;
  		}
  		# Temperature : OK
  		if (my($s) = /  Temperature\s*: (\w*)/) {
  			$bbu{temperature_state} = $s;
  			next;
  		}
  		# Voltage: 4074 mV
  		if (my($s) = /Voltage: (\d+) mV/) {
  			$bbu{voltage} = $s;
  			next;
  		}
  		# Voltage : OK
  		if (my($s) = /Voltage\s*: (\w*)/) {
  			$bbu{voltage_state} = $s;
  			next;
  		}
  
  	}
  	$this->critical unless close $fh;
  
  	push(@bbu, { %bbu }) if %bbu;
  
  	return \@bbu;
  }
  
  sub parse {
  	my $this = shift;
  
  	my $pd = $this->parse_pd;
  	my $ld = $this->parse_ld;
  	my $bbu = $this->parse_bbu;
  
  	my @devs = @$pd if $pd;
  	my @vols = @$ld if $ld;
  	my @bats = @$bbu if $bbu;
  
  	return {
  		logical => $ld,
  		physical => $pd,
  		battery => $bbu,
  	};
  }
  
  sub check {
  	my $this = shift;
  
  	my $c = $this->parse;
  
  	my @vstatus;
  	foreach my $vol (@{$c->{logical}}) {
  		# skip CacheCade for now. #91
  		if ($vol->{type} && $vol->{type} eq 'CacheCade') {
  			next;
  		}
  
  		push(@vstatus, sprintf "%s:%s", $vol->{name}, $vol->{state});
  		if ($vol->{state} ne 'Optimal') {
  			$this->critical;
  		}
  
  		# check cache policy, #65
  		my @wt = grep { /WriteThrough/ } @{$vol->{current_cache}};
  		if (@wt) {
  			my @default = grep { /WriteThrough/ } @{$vol->{default_cache}};
  			# alert if WriteThrough is configured in default
  			$this->cache_fail unless @default;
  			push(@vstatus, "WriteCache:DISABLED");
  		}
  	}
  
  	my %dstatus;
  	foreach my $dev (@{$c->{physical}}) {
  		if ($dev->{state} eq 'Online' || $dev->{state} eq 'Hotspare' || $dev->{state} eq 'Unconfigured(good)' || $dev->{state} eq 'JBOD') {
  			push(@{$dstatus{$dev->{state}}}, sprintf "%02d", $dev->{dev});
  
  		} elsif ($dev->{state} eq 'Predictive') {
  			$this->warning;
  			push(@{$dstatus{$dev->{state}}}, sprintf "%02d (%s)", $dev->{dev}, $dev->{name});
  		} else {
  			$this->critical;
  			# TODO: process other statuses
  			push(@{$dstatus{$dev->{state}}}, sprintf "%02d (%s)", $dev->{dev}, $dev->{name});
  		}
  	}
  
  	my (%bstatus, @bpdata, @blongout);
  	foreach my $bat (@{$c->{battery}}) {
  		if ($bat->{state} !~ /^(Operational|Optimal)$/) {
  			# BBU learn cycle in progress.
  			if ($bat->{charging_status} =~ /^(Charging|Discharging)$/ && $bat->{learn_cycle_active} eq 'Yes') {
  				$this->bbulearn;
  			} else {
  				$this->critical;
  			}
  		}
  		if ($bat->{missing} ne 'No') {
  			$this->critical;
  		}
  		if ($bat->{replacement_required} ne 'No') {
  			$this->critical;
  		}
  		if (defined($bat->{pack_will_fail}) && $bat->{pack_will_fail} ne 'No') {
  			$this->critical;
  		}
  		if ($bat->{temperature_state} ne 'OK') {
  			$this->critical;
  		}
  		if ($bat->{voltage_state} ne 'OK') {
  			$this->critical;
  		}
  
  		# Short output.
  		#
  		# CRITICAL: megacli:[Volumes(1): NoName:Optimal; Devices(2): 06,07=Online; Batteries(1): 0=Non Operational]
  		push(@{$bstatus{$bat->{state}}}, sprintf "%d", $bat->{name});
  		# Performance data.
  		# Return current battery temparature & voltage.
  		#
  		# Battery0=18;4074
  		push(@bpdata, sprintf "Battery%s_T=%s;;;; Battery%s_V=%s;;;;", $bat->{name}, $bat->{temperature}, $bat->{name}, $bat->{voltage});
  
  		# Long output.
  		# Detailed plugin output.
  		#
  		# Battery0:
  		#  - State: Non Operational
  		#  - Missing: No
  		#  - Replacement required: Yes
  		#  - About to fail: No
  		#  - Temperature: OK (18 °C)
  		#  - Voltage: OK (4015 mV)
  		push(@blongout, join("\n", grep {/./}
  			"Battery$bat->{name}:",
  			" - State: $bat->{state}",
  			" - Charging status: $bat->{charging_status}",
  			" - Learn cycle requested: $bat->{learn_cycle_requested}",
  			" - Learn cycle active: $bat->{learn_cycle_active}",
  			" - Missing: $bat->{missing}",
  			" - Replacement required: $bat->{replacement_required}",
  			defined($bat->{pack_will_fail}) ? " - About to fail: $bat->{pack_will_fail}" : "",
  			" - Temperature: $bat->{temperature_state} ($bat->{temperature} C)",
  			" - Voltage: $bat->{voltage_state} ($bat->{voltage} mV)",
  		));
  	}
  
  	my @cstatus;
  	push(@cstatus, 'Volumes(' . ($#{$c->{logical}} + 1) . '): ' . join(',', @vstatus));
  	push(@cstatus, 'Devices(' . ($#{$c->{physical}} + 1) . '): ' . $this->join_status(\%dstatus));
  	push(@cstatus, 'Batteries(' . ($#{$c->{battery}} + 1) . '): ' . $this->join_status(\%bstatus)) if @{$c->{battery}};
  	my @status = join('; ', @cstatus);
  
  	my @pdata;
  	push(@pdata,
  		join('\n', @bpdata)
  	);
  	my @longout;
  	push(@longout,
  		join('\n', @blongout)
  	);
  	return unless @status;
  
  	# denote this plugin as ran ok
  	$this->ok;
  
  	$this->message(join(' ', @status));
  	$this->perfdata(join(' ', @pdata));
  	$this->longoutput(join(' ', @longout));
  }
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_MEGACLI

$fatpacked{"App/Monitoring/Plugin/CheckRaid/Plugins/megaide.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_MEGAIDE';
  package App::Monitoring::Plugin::CheckRaid::Plugins::megaide;
  
  # MegaIDE RAID controller
  # Status: BROKEN: no test data
  
  use base 'App::Monitoring::Plugin::CheckRaid::Plugin';
  use strict;
  use warnings;
  
  sub sudo {
  	my ($this) = @_;
  	my $cat = $this->which('cat');
  
  	"CHECK_RAID ALL=(root) NOPASSWD: $cat /proc/megaide/0/status";
  }
  
  sub check {
  	my $this = shift;
  	my $fh;
  
  	# status messages pushed here
  	my @status;
  
  	foreach my $f (</proc/megaide/*/status>) { # / silly comment to fix vim syntax hilighting
  		if (-r $f) {
  			open $fh, '<', $f or next;
  =cut
  		} else {
  			my @CMD = ($cat, $f);
  			unshift(@CMD, $sudo) if $> and $sudo;
  			open($fh , '-|', @CMD) or next;
  =cut
  		}
  		while (<$fh>) {
  			next unless (my($s, $n) = /Status\s*:\s*(\S+).*Logical Drive.*:\s*(\d+)/i);
  			next unless $this->valid($n);
  			if ($s ne 'ONLINE') {
  				$this->critical;
  				push(@status, "$n:$s");
  			} else {
  				push(@status, "$n:$s");
  			}
  			last;
  		}
  		close $fh;
  	}
  
  	return unless @status;
  
  	$this->message(join(' ', @status));
  }
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_MEGAIDE

$fatpacked{"App/Monitoring/Plugin/CheckRaid/Plugins/megaraid.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_MEGARAID';
  package App::Monitoring::Plugin::CheckRaid::Plugins::megaraid;
  
  # MegaRAID
  # Status: BROKEN: no test data
  
  use base 'App::Monitoring::Plugin::CheckRaid::Plugin';
  use strict;
  use warnings;
  
  sub sudo {
  	my ($this) = @_;
  	my $cat = $this->which('cat');
  
  	my @sudo;
  	foreach my $mr (</proc/mega*/*/raiddrives*>) {
  		push(@sudo, "CHECK_RAID ALL=(root) NOPASSWD: $cat $mr") if -d $mr;
  	}
  
  	@sudo;
  }
  
  sub check {
  	my $this = shift;
  	# status messages pushed here
  	my @status;
  
  	foreach my $f (</proc/megaraid/*/raiddrives*>) { # vim/
  		my $fh;
  		if (-r $f) {
  			open $fh, '<', $f or next;
  =cut
  		} else {
  			my @CMD = ($cat, $f);
  			unshift(@CMD, $sudo) if $> and $sudo;
  			open($fh , '-|', @CMD) or next;
  =cut
  		}
  		my ($n) = $f =~ m{/proc/megaraid/([^/]+)};
  		while (<$fh>) {
  			if (my($s) = /logical drive\s*:\s*\d+.*, state\s*:\s*(\S+)/i) {
  				if ($s ne 'optimal') {
  					$this->critical;
  				}
  				push(@status, "$n: $s");
  				last;
  			}
  		}
  		close $fh;
  	}
  
  	return unless @status;
  
  	$this->message(join(', ', @status));
  }
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_MEGARAID

$fatpacked{"App/Monitoring/Plugin/CheckRaid/Plugins/megarc.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_MEGARC';
  package App::Monitoring::Plugin::CheckRaid::Plugins::megarc;
  
  # LSI MegaRaid or Dell Perc arrays
  # Check the status of all arrays on all Lsi MegaRaid controllers on the local
  # machine. Uses the megarc program written by Lsi to get the status of all
  # arrays on all local Lsi MegaRaid controllers.
  #
  # check designed from check_lsi_megaraid:
  # http://www.monitoringexchange.org/cgi-bin/page.cgi?g=Detailed/2416.html;d=1
  # Perl port (check_raid) by Elan Ruusamäe.
  
  use base 'App::Monitoring::Plugin::CheckRaid::Plugin';
  use strict;
  use warnings;
  
  sub program_names {
  	shift->{name};
  }
  
  sub commands {
  	{
  		'controller list' => ['-|', '@CMD', '-AllAdpInfo', '-nolog'],
  		'controller config' => ['-|', '@CMD', '-dispCfg', '-a$controller', '-nolog'],
  	}
  }
  
  sub sudo {
  	my ($this, $deep) = @_;
  	# quick check when running check
  	return 1 unless $deep;
  
  	my $cmd = $this->{program};
  	(
  		"CHECK_RAID ALL=(root) NOPASSWD: $cmd -AllAdpInfo -nolog",
  		"CHECK_RAID ALL=(root) NOPASSWD: $cmd -dispCfg -a* -nolog",
  	);
  }
  
  sub check {
  	my $this = shift;
  
  	# status messages pushed here
  	my @status;
  
  	# get controllers
  	my $fh = $this->cmd('controller list');
  	my @lines = <$fh>;
  	close $fh;
  
  	if ($lines[11] =~ /No Adapters Found/) {
  		$this->warning;
  		$this->message("No LSI adapters were found on this machine");
  		return;
  	}
  
  	my @c;
  	foreach (@lines[12..$#lines]) {
  		if (my ($id) = /^\s*(\d+)/) {
  			push(@c, int($id));
  		}
  	}
  	unless (@c) {
  		$this->warning;
  		$this->message("No LSI adapters were found on this machine");
  		return;
  	}
  
  	foreach my $c (@c) {
  		my $fh = $this->cmd('controller config', { '$controller' => $c });
  		my (%d, %s, $ld);
  		while (<$fh>) {
  			# Logical Drive : 0( Adapter: 0 ):  Status: OPTIMAL
  			if (my($d, $s) = /Logical Drive\s+:\s+(\d+).+Status:\s+(\S+)/) {
  				$ld = $d;
  				$s{$ld} = $s;
  				next;
  			}
  			# SpanDepth :01     RaidLevel: 5  RdAhead : Adaptive  Cache: DirectIo
  			if (my($s) = /RaidLevel:\s+(\S+)/) {
  				$d{$ld} = $s if defined $ld;
  				next;
  			}
  		}
  		close $fh;
  
  		# now process the details
  		unless (keys %d) {
  			$this->message("No arrays found on controller $c");
  			$this->warning;
  			return;
  		}
  
  		while (my($d, $s) = each %s) {
  			if ($s ne 'OPTIMAL') {
  				# The Array number here is incremented by one because of the
  				# inconsistent way that the LSI tools count arrays.
  				# This brings it back in line with the view in the bios
  				# and from megamgr.bin where the array counting starts at
  				# 1 instead of 0
  				push(@status, "Array ".(int($d) + 1)." status is ".$s{$d}." (Raid-$s on adapter $c)");
  				$this->critical;
  				next;
  			}
  
  			push(@status, "Logical Drive $d: $s");
  		}
  	}
  
  	return unless @status;
  
  	$this->ok->message(join(', ', @status));
  }
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_MEGARC

$fatpacked{"App/Monitoring/Plugin/CheckRaid/Plugins/metastat.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_METASTAT';
  package App::Monitoring::Plugin::CheckRaid::Plugins::metastat;
  
  # Solaris, software RAID
  
  use base 'App::Monitoring::Plugin::CheckRaid::Plugin';
  use strict;
  use warnings;
  
  sub program_names {
  	shift->{name};
  }
  
  sub commands {
  	{
  		'metastat' => ['>&2', '@CMD'],
  	}
  }
  
  sub sudo {
  	my ($this, $deep) = @_;
  	# quick check when running check
  	return 1 unless $deep;
  
  	my $cmd = $this->{program};
  	"CHECK_RAID ALL=(root) NOPASSWD: $cmd"
  }
  
  sub active {
  	my ($this) = @_;
  
  	# program not found
  	return 0 unless $this->{program};
  
  	my $output = $this->get_metastat;
  	return !!@$output;
  }
  
  sub get_metastat {
  	my $this = shift;
  
  	# cache inside single run
  	return $this->{output} if defined $this->{output};
  
  	my $fh = $this->cmd('metastat');
  	my @data;
  	while (<$fh>) {
  		chomp;
  		last if /there are no existing databases/;
  		push(@data, $_);
  	}
  
  	return $this->{output} = \@data;
  }
  
  sub check {
  	my $this = shift;
  
  	my ($d, $sd);
  
  	# status messages pushed here
  	my @status;
  	my $output = $this->get_metastat;
  
  	foreach (@$output) {
  		if (/^(\S+):/) { $d = $1; $sd = ''; next; }
  		if (/Submirror \d+:\s+(\S+)/) { $sd = $1; next; }
  		if (/Device:\s+(\S+)/) { $sd = $1; next; }
  		if (my($s) = /State: (\S.+\w)/) {
  			if ($sd and $this->valid($sd) and $this->valid($d)) {
  				if ($s =~ /Okay/i) {
  					# no worries...
  				} elsif ($s =~ /Resync/i) {
  					$this->resync;
  				} else {
  					$this->critical;
  				}
  				push(@status, "$d:$sd:$s");
  			}
  		}
  
  		if (defined $d && $d =~ /hsp/) {
  			if (/(c[0-9]+t[0-9]+d[0-9]+s[0-9]+)\s+(\w+)/) {
  				$sd = $1;
  				my $s = $2;
  				$this->warning if ($s !~ /Available/);
  				push(@status, "$d:$sd:$s");
  			}
  		}
  	}
  
  	return unless @status;
  
  	$this->ok->message(join(', ', @status));
  }
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_METASTAT

$fatpacked{"App/Monitoring/Plugin/CheckRaid/Plugins/mpt.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_MPT';
  package App::Monitoring::Plugin::CheckRaid::Plugins::mpt;
  
  use base 'App::Monitoring::Plugin::CheckRaid::Plugin';
  use strict;
  use warnings;
  
  sub program_names {
  	qw(mpt-status);
  }
  
  sub commands {
  	{
  		'get_controller_no' => ['-|', '@CMD', '-p'],
  		'status' => ['-|', '@CMD', '-i', '$id'],
  		'sync status' => ['-|', '@CMD', '-n'],
  	}
  }
  
  sub sudo {
  	my ($this, $deep) = @_;
  	# quick check when running check
  	return 1 unless $deep;
  
  	my $cmd = $this->{program};
  	(
  	"CHECK_RAID ALL=(root) NOPASSWD: $cmd -i [0-9]",
  	"CHECK_RAID ALL=(root) NOPASSWD: $cmd -i [1-9][0-9]",
  	"CHECK_RAID ALL=(root) NOPASSWD: $cmd -n",
  	"CHECK_RAID ALL=(root) NOPASSWD: $cmd -p",
  	);
  }
  
  sub active {
  	my ($this) = @_;
  
  	# return if parent said NO
  	my $res = $this->SUPER::active(@_);
  	return $res unless $res;
  
  	# there should be a controller. #95
  	my $id = $this->get_controller;
  	return defined($id);
  }
  
  # get controller from mpt-status -p
  # FIXME: could there be multiple controllers?
  sub get_controller {
  	my $this = shift;
  
  	my $fh = $this->cmd('get_controller_no');
  	my $id;
  	while (<$fh>) {
  		chomp;
  		if (/^Found.*id=(\d{1,2}),.*/) {
  			$id = $1;
  			last;
  		}
  	}
  	close $fh;
  
  	return $id;
  }
  
  sub parse {
  	my ($this, $id) = @_;
  
  	my (%ld, %pd);
  
  	my $fh = $this->cmd('status', { '$id' => $id });
  
  	my %VolumeTypesHuman = (
  		IS => 'RAID-0',
  		IME => 'RAID-1E',
  		IM => 'RAID-1',
  	);
  
  	while (<$fh>) {
  		chomp;
  		# mpt-status.c __print_volume_classic
  		# ioc0 vol_id 0 type IM, 2 phy, 136 GB, state OPTIMAL, flags ENABLED
  		if (my($vioc, $vol_id, $type, $disks, $vol_size, $vol_state, $vol_flags) =
  			/^ioc(\d+)\s+ vol_id\s(\d+)\s type\s(\S+),\s (\d+)\sphy,\s (\d+)\sGB,\s state\s(\S+),\s flags\s(.+)/x) {
  			$ld{$vol_id} = {
  				ioc => int($vioc),
  				vol_id => int($vol_id),
  				# one of: IS, IME, IM
  				vol_type => $type,
  				raid_level => $VolumeTypesHuman{$type},
  				phy_disks => int($disks),
  				size => int($vol_size),
  				# one of: OPTIMAL, DEGRADED, FAILED, UNKNOWN
  				status => $vol_state,
  				# array of: ENABLED, QUIESCED, RESYNC_IN_PROGRESS, VOLUME_INACTIVE or NONE
  				flags => [ split ' ', $vol_flags ],
  			};
  		}
  
  		# ./include/lsi/mpi_cnfg.h
  		# typedef struct _RAID_PHYS_DISK_INQUIRY_DATA
  		# {
  		#   U8 VendorID[8];            /* 00h */
  		#   U8 ProductID[16];          /* 08h */
  		#   U8 ProductRevLevel[4];     /* 18h */
  		#   U8 Info[32];               /* 1Ch */
  		# }
  		# mpt-status.c __print_physdisk_classic
  		# ioc0 phy 0 scsi_id 0 IBM-ESXS PYH146C3-ETS10FN RXQN, 136 GB, state ONLINE, flags NONE
  		# ioc0 phy 0 scsi_id 1 ATA      ST3808110AS      J   , 74 GB, state ONLINE, flags NONE
  		# ioc0 phy 0 scsi_id 1 ATA      Hitachi HUA72101 AJ0A, 931 GB, state ONLINE, flags NONE
  		elsif (my($pioc, $num, $phy_id, $vendor, $prod_id, $rev, $size, $state, $flags) =
  			/^ioc(\d+)\s+ phy\s(\d+)\s scsi_id\s(\d+)\s (.{8})\s+(.{16})\s+(.{4})\s*,\s (\d+)\sGB,\s state\s(\S+),\s flags\s(.+)/x) {
  			$pd{$num} = {
  				ioc => int($pioc),
  				num => int($num),
  				phy_id => int($phy_id),
  				vendor => $vendor,
  				prod_id => $prod_id,
  				rev => $rev,
  				size => int($size),
  				# one of: ONLINE, MISSING, NOT_COMPATIBLE, FAILED, INITIALIZING, OFFLINE_REQUESTED, FAILED_REQUESTED, OTHER_OFFLINE, UNKNOWN
  				status => $state,
  				# array of: OUT_OF_SYNC, QUIESCED or NONE
  				flags => [ split ' ', $flags ],
  			};
  		} else {
  			warn "mpt unparsed: [$_]";
  			$this->unknown;
  		}
  	}
  	close $fh;
  
  	# extra parse, if mpt-status has -n flag, can process also resync state
  	# TODO: if -n becames default can do this all in one run
  	my $resyncing = grep {/RESYNC_IN_PROGRESS/} map { @{$_->{flags}} } values %ld;
  	if ($resyncing) {
  		my $fh = $this->cmd('sync status');
  		while (<$fh>) {
  			if (/^ioc:\d+/) {
  				# ignore
  			}
  			# mpt-status.c GetResyncPercentage
  			# scsi_id:0 70%
  			elsif (my($scsi_id, $percent) = /^scsi_id:(\d+) (\d+)%/) {
  				$pd{$scsi_id}{resync} = int($percent);
  			} else {
  				warn "mpt unparsed: [$_]";
  				$this->unknown;
  			}
  		}
  		close $fh;
  	}
  
  	return {
  		'logical' => { %ld },
  		'physical' => { %pd },
  	};
  }
  
  sub check {
  	my $this = shift;
  
  	# status messages pushed here
  	my @status;
  
  	my $id = $this->get_controller;
  	my $status = $this->parse($id);
  
  	# process logical units
  	while (my($d, $u) = each %{$status->{logical}}) {
  		next unless $this->valid($d);
  
  		my $s = $u->{status};
  		if ($s =~ /INITIAL|INACTIVE/) {
  			$this->warning;
  		} elsif ($s =~ /RESYNC/) {
  			$this->resync;
  		} elsif ($s =~ /DEGRADED|FAILED/) {
  			$this->critical;
  		} elsif ($s !~ /ONLINE|OPTIMAL/) {
  			$this->unknown;
  		}
  
  		# FIXME: this resync_in_progress is separate state of same as value in status?
  		if (grep { /RESYNC_IN_PROGRESS/ } @{$u->{flags}}) {
  			# find matching disks
  			my @disks = grep {$_->{ioc} eq $u->{ioc} } values %{$status->{physical}};
  			# collect percent for each disk
  			my @percent = map { $_->{resync}.'%'} @disks;
  			$s .= ' RESYNCING: '.join('/', @percent);
  		}
  		push(@status, "Volume $d ($u->{raid_level}, $u->{phy_disks} disks, $u->{size} GiB): $s");
  	}
  
  	# process physical units
  	while (my($d, $u) = each %{$status->{physical}}) {
  		my $s = $u->{status};
  		# remove uninteresting flags
  		my @flags = grep {!/NONE/} @{$u->{flags}};
  
  		# skip print if nothing in flags and disk is ONLINE
  		next unless @flags and $s eq 'ONLINE';
  
  		$s .= ' ' . join(' ', @flags);
  		push(@status, "Disk $d ($u->{size} GiB):$s");
  		$this->critical;
  	}
  
  	return unless @status;
  
  	$this->ok->message(join(', ', @status));
  }
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_MPT

$fatpacked{"App/Monitoring/Plugin/CheckRaid/Plugins/mvcli.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_MVCLI';
  package App::Monitoring::Plugin::CheckRaid::Plugins::mvcli;
  
  # Status: BROKEN: not finished
  
  use base 'App::Monitoring::Plugin::CheckRaid::Plugin';
  use strict;
  use warnings;
  
  sub program_names {
  	shift->{name};
  }
  
  sub commands {
  	{
  		'mvcli blk' => ['-|', '@CMD'],
  		'mvcli smart' => ['-|', '@CMD'],
  	}
  }
  
  sub sudo {
  	my ($this, $deep) = @_;
  	# quick check when running check
  	return 1 unless $deep;
  
  	my $cmd = $this->{program};
  	"CHECK_RAID ALL=(root) NOPASSWD: $cmd"
  }
  
  sub parse_blk {
  	my $this = shift;
  
  	my (@blk, %blk);
  
  	my $fh = $this->cmd('mvcli blk');
  	while (<$fh>) {
  		chomp;
  
  		if (my ($blk_id) = /Block id:\s+(\d+)/) {
  			# block id is first item, so push previous item to list
  			if (%blk) {
  				push(@blk, { %blk });
  				%blk = ();
  			}
  			$blk{blk_id} = int($blk_id);
  		} elsif (my($pd_id) = /PD id:\s+(\d+)/) {
  			$blk{pd_id} = int($pd_id);
  		} elsif (my($vd_id) = /VD id:\s+(\d+)/) {
  			$blk{vd_id} = int($vd_id);
  		} elsif (my($bstatus) = /Block status:\s+(.+)/) {
  			$blk{block_status} = $bstatus;
  		} elsif (my($size) = /Size:\s+(\d+) K/) {
  			$blk{size} = int($size);
  		} elsif (my($offset) = /Starting offset:\s+(\d+) K/) {
  			$blk{offset} = int($offset);
  		} else {
  #			warn "[$_]\n";
  		}
  	}
  	close $fh;
  
  	if (%blk) {
  		push(@blk, { %blk });
  	}
  
  	return wantarray ? @blk : \@blk;
  }
  
  sub parse_smart {
  	my ($this, $blk) = @_;
  
  	# collect pd numbers
  	my @pd = map { $_->{pd_id} } @$blk;
  
  	my %smart;
  	foreach my $pd (@pd) {
  		my $fh = $this->cmd('mvcli smart', { '$pd' => $pd });
  		my %attrs = ();
  		while (<$fh>) {
  			chomp;
  
  			if (my($id, $name, $current, $worst, $treshold, $raw) = /
  				([\dA-F]{2})\s+ # attr
  				(.*?)\s+        # name
  				(\d+)\s+        # current
  				(\d+)\s+        # worst
  				(\d+)\s+        # treshold
  				([\dA-F]+)      # raw
  			/x) {
  				my %attr = ();
  				$attr{id} = $id;
  				$attr{name} = $name;
  				$attr{current} = int($current);
  				$attr{worst} = int($worst);
  				$attr{treshold} = int($treshold);
  				$attr{raw} = $raw;
  				$attrs{$id} = { %attr };
  			} else {
  #				warn "[$_]\n";
  			}
  		}
  
  		$smart{$pd} = { %attrs };
  	}
  
  	return \%smart;
  }
  
  sub parse {
  	my $this = shift;
  
  	my $blk = $this->parse_blk;
  	my $smart = $this->parse_smart($blk);
  
  	return {
  		blk => $blk,
  		smart => $smart,
  	};
  }
  
  sub check {
  	my $this = shift;
  
  	my (@status);
  	my @d = $this->parse;
  
  	# not implemented yet
  	$this->unknown;
  
  	$this->message(join('; ', @status));
  }
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_MVCLI

$fatpacked{"App/Monitoring/Plugin/CheckRaid/Plugins/sas2ircu.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_SAS2IRCU';
  package App::Monitoring::Plugin::CheckRaid::Plugins::sas2ircu;
  
  # LSI SAS-2 controllers using the SAS-2 Integrated RAID Configuration Utility (SAS2IRCU)
  # Based on the SAS-2 Integrated RAID Configuration Utility (SAS2IRCU) User Guide
  # http://www.lsi.com/downloads/Public/Host%20Bus%20Adapters/Host%20Bus%20Adapters%20Common%20Files/SAS_SATA_6G_P12/SAS2IRCU_User_Guide.pdf
  
  use base 'App::Monitoring::Plugin::CheckRaid::Plugin';
  use strict;
  use warnings;
  
  sub program_names {
  	shift->{name};
  }
  
  sub commands {
  	{
  		'controller list' => ['-|', '@CMD', 'LIST'],
  		'controller status' => ['-|', '@CMD', '$controller', 'STATUS'],
  		'device status' => ['-|', '@CMD', '$controller', 'DISPLAY'],
  	}
  }
  
  sub sudo {
  	my ($this, $deep) = @_;
  	# quick check when running check
  	return 1 unless $deep;
  
  	my $cmd = $this->{program};
  	(
  		"CHECK_RAID ALL=(root) NOPASSWD: $cmd LIST",
  		"CHECK_RAID ALL=(root) NOPASSWD: $cmd * STATUS",
  		"CHECK_RAID ALL=(root) NOPASSWD: $cmd * DISPLAY",
  	);
  }
  
  # detect controllers for sas2ircu
  sub detect {
  	my $this = shift;
  
  	my @ctrls;
  	my $fh = $this->cmd('controller list');
  
  	my $success = 0;
  	my $state="";
  	my $noctrlstate="No Controllers";
  	while (<$fh>) {
  		chomp;
  
  		#         Adapter     Vendor  Device                        SubSys  SubSys
  		# Index    Type          ID      ID    Pci Address          Ven ID  Dev ID
  		# -----  ------------  ------  ------  -----------------    ------  ------
  		#   0     SAS2008     1000h    72h     00h:03h:00h:00h      1028h   1f1eh
  		if (my($c) = /^\s*(\d+)\s+\S+\s+\S+\s+\S+\s+\S+\s+\S+\s+\S+\s*$/) {
  			push(@ctrls, $c);
  		}
  		$success = 1 if /SAS2IRCU: Utility Completed Successfully/;
  
  		# handle the case where there's no hardware present.
  		# when there is no controller, we get
  		# root@i41:/tmp$ /usr/sbin/sas2ircudsr LIST
  		# LSI Corporation SAS2 IR Configuration Utility.
  		# Version 18.00.00.00 (2013.11.18)
  		# Copyright (c) 2009-2013 LSI Corporation. All rights reserved.
  
  		# SAS2IRCU: MPTLib2 Error 1
  		# root@i41:/tmp$ echo $?
  		# 1
  
  		if (/SAS2IRCU: MPTLib2 Error 1/) {
  			$state = $noctrlstate;
  			$success = 1 ;
  		}
  
  	}
  
  	unless (close $fh) {
  		#sas2ircu exits 1 (but close exits 256) when we close fh if we have no controller, so handle that, too
  		if ($? != 256 && $state eq $noctrlstate) {
  			$this->critical;
  		}
  	}
  	unless ($success) {
  		$this->critical;
  	}
  
  	return wantarray ? @ctrls : \@ctrls;
  }
  
  sub  trim { my $s = shift; $s =~ s/^\s+|\s+$//g; return $s };
  sub ltrim { my $s = shift; $s =~ s/^\s+//;       return $s };
  sub rtrim { my $s = shift; $s =~ s/\s+$//;       return $s };
  
  sub check {
  	my $this = shift;
  
  	my @ctrls = $this->detect;
  
  	my @status;
  	my $numvols=0;
  	# determine the RAID states of each controller
  	foreach my $c (@ctrls) {
  		my $fh = $this->cmd('controller status', { '$controller' => $c });
  
  		my $novolsstate="No Volumes";
  		my $state;
  		my $success = 0;
  		while (<$fh>) {
  			chomp;
  
  			# match adapter lines
  			if (my($s) = /^\s*Volume state\s*:\s*(\w+)\s*$/) {
  				$state = $s;
  				$numvols++;
  				if ($state ne "Optimal") {
  					$this->critical;
  				}
  			}
  			$success = 1 if /SAS2IRCU: Utility Completed Successfully/;
  
  			##handle the case where there are no volumes configured
  			#
  			# SAS2IRCU: there are no IR volumes on the controller!
  			# SAS2IRCU: Error executing command STATUS.
  
  			if (/SAS2IRCU: there are no IR volumes on the controller/
  				or /The STATUS command is not supported by the firmware currently loaded on controller/
  			) {
  				# even though this isn't the last line, go ahead and set success.
  				$success = 1;
  				$state = $novolsstate;
  			}
  
  		}
  
  		unless (close $fh) {
  			#sas2ircu exits 256 when we close fh if we have no volumes, so handle that, too
  			if ($? != 256 && $state eq $novolsstate) {
  				$this->critical;
  				$state = $!;
  			}
  		}
  
  		unless ($success) {
  			$this->critical;
  			$state = "SAS2IRCU Unknown exit";
  		}
  
  		unless ($state) {
  			$state = "Unknown Error";
  		}
  
  		my $finalvolstate=$state;
  		#push(@status, "ctrl #$c: $numvols Vols: $state");
  
  
  		#####  now look at the devices.
  		# Device is a Hard disk
  		#   Enclosure #                             : 2
  		#   Slot #                                  : 0
  		#   SAS Address                             : 500065b-3-6789-abe0
  		#   State                                   : Ready (RDY)
  		#   Size (in MB)/(in sectors)               : 3815447/7814037167
  		#   Manufacturer                            : ATA
  		#   Model Number                            : ST4000DM000-1F21
  		#   Firmware Revision                       : CC52
  		#   Serial No                               : S30086G4
  		#   GUID                                    : 5000c5006d27b344
  		#   Protocol                                : SATA
  		#   Drive Type                              : SATA_HDD
  
  		$fh = $this->cmd('device status', { '$controller' => $c });
  		$state="";
  		$success = 0;
  		my $enc="";
  		my $slot="";
  		my @data;
  		my $device="";
  		my $numslots=0;
  		my $finalstate;
  		my $finalerrors="";
  
  		while (my $line = <$fh>) {
  			chomp $line;
  			# Device is a Hard disk
  			# Device is a Hard disk
  			# Device is a Enclosure services device
  			#
  			#lets make sure we're only checking disks.  we dont support other devices right now
  			if ("$line" eq 'Device is a Hard disk') {
  				$device='disk';
  			} elsif ($line =~ /^Device/) {
  				$device='other';
  			}
  
  			if ("$device" eq 'disk') {
  				if ($line =~ /Enclosure #|Slot #|State /) {
  					#find our enclosure #
  					if ($line =~ /^  Enclosure # /) {
  						@data = split /:/, $line;
  						$enc=trim($data[1]);
  						#every time we hit a new enclosure line, reset our state and slot
  						undef $state;
  						undef $slot;
  					}
  					#find our slot #
  					if ($line =~ /^  Slot # /) {
  						@data = split /:/, $line;
  						$slot=trim($data[1]);
  						$numslots++
  					}
  					#find our state
  					if ($line =~ /^  State /) {
  						@data = split /:/, $line;
  						$state=ltrim($data[1]);
  
  						#for test
  						#if ($numslots == 10 ) { $state='FREDFISH';}
  
  						#when we get a state, test on it and report it..
  						if ($state =~ /Optimal|Ready/) {
  							#do nothing at the moment.
  						} else {
  							$this->critical;
  							$finalstate=$state;
  							$finalerrors="$finalerrors ERROR:Ctrl$c:Enc$enc:Slot$slot:$state";
  						}
  					}
  				}
  			}
  
  			if ($line =~ /SAS2IRCU: Utility Completed Successfully/) {
  				$success = 1;
  			}
  
  		} #end while
  
  
  		unless (close $fh) {
  			$this->critical;
  			$state = $!;
  		}
  
  		unless ($success) {
  			$this->critical;
  			$state = "SAS2IRCU Unknown exit";
  		}
  
  		unless ($state) {
  			$state = "Unknown Error";
  		}
  
  		unless($finalstate) {
  			$finalstate=$state;
  		}
  
  		#per controller overall report
  		#push(@status, ":$numslots Drives:$finalstate:$finalerrors");
  		push(@status, "ctrl #$c: $numvols Vols: $finalvolstate: $numslots Drives: $finalstate:$finalerrors:");
  
  	}
  
  	##if we didn't get a status out of the controllers and an empty ctrls array, we must not have any.
  	unless (@status && @ctrls) {
  		push(@status, "No Controllers");
  	}
  
  	return unless @status;
  
  	$this->ok->message(join(', ', @status));
  }
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_SAS2IRCU

$fatpacked{"App/Monitoring/Plugin/CheckRaid/Plugins/smartctl.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_SMARTCTL';
  package App::Monitoring::Plugin::CheckRaid::Plugins::smartctl;
  
  # NOTE: not standalone plugin
  
  use base 'App::Monitoring::Plugin::CheckRaid::Plugin';
  use strict;
  use warnings;
  
  sub program_names {
  	shift->{name};
  }
  
  sub commands {
  	{
  		'smartctl' => ['-|', '@CMD', '-H', '$dev', '$diskopt$disk'],
  	}
  }
  
  
  sub sudo {
  	my ($this, $deep) = @_;
  	# quick check when running check
  	return 1 unless $deep;
  
  	# nothing, as not standalone plugin yet
  }
  
  # check for -H parameter for physical disks
  # this is currently called out from cciss plugin
  # @param device list
  # device list being an array of:
  # - device to check (/dev/cciss/c0d0)
  # - disk options (-dcciss)
  # - disk number (0..15)
  sub check_devices {
  	my $this = shift;
  	my @devs = @_;
  
  	unless (@devs) {
  		$this->warning;
  		$this->message("No devices to check");
  		return;
  	}
  
  	# status message for devs, latter just joined for shorter messages
  	my %status;
  
  	foreach my $ref (@devs) {
  		my ($dev, $diskopt, $disk) = @$ref;
  
  		my $fh = $this->cmd('smartctl', { '$dev' => $dev, '$diskopt' => $diskopt => '$disk' => $disk });
  		while (<$fh>) {
  			chomp;
  
  			# SMART Health Status: HARDWARE IMPENDING FAILURE GENERAL HARD DRIVE FAILURE [asc=5d, ascq=10]
  			if (my($s, $sc) = /SMART Health Status: (.*?)(\s*\[asc=\w+, ascq=\w+\])?$/) {
  				# use shorter output, message that hpacucli would use
  				if ($s eq 'HARDWARE IMPENDING FAILURE GENERAL HARD DRIVE FAILURE') {
  					$s = 'Predictive Failure';
  				}
  
  				if ($s eq 'Predictive Failure') {
  					$this->warning;
  				} elsif ($s !~ '^OK') {
  					$this->critical;
  				}
  				push(@{$status{$s}}, $dev.'#'.$disk);
  			}
  		}
  		close($fh);
  	}
  
  	return unless %status;
  
  	$this->ok->message($this->join_status(\%status));
  }
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_SMARTCTL

$fatpacked{"App/Monitoring/Plugin/CheckRaid/Plugins/tw_cli.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_TW_CLI';
  package App::Monitoring::Plugin::CheckRaid::Plugins::tw_cli;
  
  # tw_cli(8) is a Command Line Interface Storage Management Software for
  # AMCC/3ware ATA RAID Controller(s).
  # Owned by LSI currently: https://en.wikipedia.org/wiki/3ware
  #
  # http://www.cyberciti.biz/files/tw_cli.8.html
  
  use base 'App::Monitoring::Plugin::CheckRaid::Plugin';
  use Date::Parse qw(strptime);
  use DateTime;
  use strict;
  use warnings;
  
  sub program_names {
  	qw(tw_cli-9xxx tw_cli tw-cli);
  }
  
  sub commands {
  	{
  		'show' => ['-|', '@CMD', 'show'], # This is 'info' output AND enclosure summary
  		'unitstatus' => ['-|', '@CMD', 'info', '$controller', 'unitstatus'],
  		'drivestatus' => ['-|', '@CMD', 'info', '$controller', 'drivestatus'],
  		'bbustatus' => ['-|', '@CMD', 'info', '$controller', 'bbustatus'],
  		'enc_show_all' => ['-|', '@CMD', '$encid', 'show all'],
  	}
  }
  
  sub sudo {
  	my ($this, $deep) = @_;
  	# quick check when running check
  	return 1 unless $deep;
  
  	my $cmd = $this->{program};
  	(
  		"CHECK_RAID ALL=(root) NOPASSWD: $cmd info",
  		"CHECK_RAID ALL=(root) NOPASSWD: $cmd info *",
  		"CHECK_RAID ALL=(root) NOPASSWD: $cmd show",
  		"CHECK_RAID ALL=(root) NOPASSWD: $cmd * show all",
  	);
  }
  
  sub trim { my $s = shift; $s =~ s/^\s+|\s+$//g; return $s };
  
  sub to_i {
  	my $i = shift;
  	return $i if $i !~ /^\d+$/;
  	return int($i);
  }
  
  sub parse {
  	my $this = shift;
  
  	my (%c);
  	# scan controllers
  	my ($sect_ctl, $sect_enc) = 0;
  	my $fh = $this->cmd('show');
  	while (<$fh>) {
  		# Section break
  		if(/^\s*$/) { ($sect_ctl,$sect_enc) = (0,0); next; };
  		# header line
  		if(/^-+$/) { next; };
  		# section headers: Controller
  		# Ctl   Model  Ports     Drives  Units   NotOpt  RRate VRate  BBU
  		# Ctl   Model  (V)Ports  Drives  Units   NotOpt  RRate VRate  BBU
  		if (/^Ctl.*Model.*Rate/) { $sect_ctl = 1; next; };
  		# section headers: Enclosure
  		#  Encl    Slots   Drives  Fans   TSUnits   Ctls
  		#  Encl    Slots   Drives  Fans   TSUnits  PSUnits
  		#  Enclosure     Slots  Drives  Fans  TSUnits  PSUnits  Alarms
  		if (/^Encl.*Drive/) { $sect_enc = 1; next; };
  
  		# controller section
  		if ($sect_ctl and my($ctl, $model, $ports, $drives, $units, $notopt, $rrate, $vrate, $bbu) = m{^
  			(c\d+)\s+   # Controller
  			(\S+)\s+    # Model
  			(\d+)\s+    # (V)Ports
  			(\d+)\s+    # Drives
  			(\d+)\s+    # Units
  			(\d+)\s+    # NotOpt: Not Optional
  						# Not Optimal refers to any state except OK and VERIFYING.
  						# Other states include INITIALIZING, INIT-PAUSED,
  						# REBUILDING, REBUILD-PAUSED, DEGRADED, MIGRATING,
  						# MIGRATE-PAUSED, RECOVERY, INOPERABLE, and UNKNOWN.
  			(\d+)\s+    # RRate: Rebuild Rate
  			(\d+|-)\s+  # VRate: Verify Rate
  			(\S+|-)?    # BBU
  		}x) {
  			$c{$ctl} = {
  				model => $model,
  				ports => int($ports),
  				drives => int($drives),
  				units => int($units),
  				optimal => int(!$notopt),
  				rrate => int($rrate),
  				vrate => to_i($vrate),
  				bbu => $bbu,
  			};
  		}
  		# enclosure section
  		if ($sect_enc and my($enc, $slots, $drives, $fans, $tsunits, $psunits, $alarms) = m{^
  			((?:/c\d+)?/e\d+)\s+   # Controller, Enclosure
  			  # 9650SE reports enclosures as /eX
  			  # 9690SA+ report enclosures as /cX/eX
  			(\d+)\s+    # Slots
  			(\d+)\s+    # Drives
  			(\d+)\s+    # Fans
  			(\d+)\s+    # TSUnits - Temp Sensor
  			(\d+)?\s+    # PSUnits - Power Supply, not always present!
  			(\d+)?\s+    # Controller OR Alarms, not always present!
  		}x) {
  			# This will be filled in later by the enclosure pass
  			$c{$enc} = {};
  		}
  	}
  	close $fh;
  
  	# no controllers? skip early
  	return unless %c;
  
  	for my $c (grep /^\/?c\d+$/, keys %c) {
  		# get each unit on controllers
  		$fh = $this->cmd('unitstatus', { '$controller' => $c });
  		while (<$fh>) {
  			if (my($u, $type, $status, $p_rebuild, $p_vim, $strip, $size, $cache, $avrify) = m{^
  				(u\d+)\s+ # Unit
  				(\S+)\s+  # UnitType
  				(\S+)\s+  # Status
  				(\S+)\s+  # %RCmpl: The %RCompl reports the percent completion
  						  # of the unit's Rebuild, if this task is in progress.
  				(\S+)\s+  # %V/I/M: The %V/I/M reports the percent completion
  						  # of the unit's Verify, Initialize, or Migrate,
  						  # if one of these are in progress.
  				(\S+)\s+  # Strip
  				(\S+)\s+  # Size(GB)
  				(\S+)\s+  # Cache
  				(\S+)     # AVrify
  			}x) {
  				$c{$c}{unitstatus}{$u} = {
  					type => $type,
  					status => $status,
  					rebuild_percent => $p_rebuild,
  					vim_percent => $p_vim,
  					strip => $strip,
  					size => $size,
  					cache => $cache,
  					avrify => $avrify,
  				};
  				next;
  			}
  
  			if (m{^u\d+}) {
  				$this->unknown;
  				warn "unparsed: [$_]";
  			}
  		}
  		close $fh;
  
  		# get individual disk status
  		$fh = $this->cmd('drivestatus', { '$controller' => $c });
  		# common regexp
  		my $r = qr{^
  			(p\d+)\s+       # Port
  			(\S+)\s+        # Status
  			(\S+)\s+        # Unit
  			([\d.]+\s[TG]B|-)\s+ # Size
  		}x;
  
  		while (<$fh>) {
  			# skip empty line
  			next if /^$/;
  
  			# Detect version
  			if (/^Port/) {
  				# <=9.5.1: Blocks Serial
  				$r .= qr{
  					(\S+)\s+  # Blocks
  					(.+)      # Serial
  				}x;
  				next;
  			} elsif (/^VPort/) {
  				# >=9.5.2: Type Phy Encl-Slot Model
  				$r .= qr{
  					(\S+)\s+ # Type
  					(\S+)\s+ # Phy
  					(\S+)\s+ # Encl-Slot
  					(.+)     # Model
  				}x;
  				next;
  			}
  
  			if (my($port, $status, $unit, $size, @rest) = ($_ =~ $r)) {
  				# do not report disks not present
  				# tw_cli 9.5.2 and above do not list these at all
  				next if $status eq 'NOT-PRESENT';
  				my %p;
  
  				if (@rest <= 2) {
  					my ($blocks, $serial) = @rest;
  					%p = (
  						blocks => to_i($blocks),
  						serial => trim($serial),
  					);
  				} else {
  					my ($type, $phy, $encl, $model) = @rest;
  					%p = (
  						type => $type,
  						phy => to_i($phy),
  						encl => $encl,
  						model => $model,
  					);
  				}
  
  				$c{$c}{drivestatus}{$port} = {
  					status => $status,
  					unit => $unit,
  					size => $size,
  					%p,
  				};
  
  				next;
  			}
  
  			if (m{^p\d+}) {
  				$this->unknown;
  				warn "unparsed: [$_]";
  			}
  		}
  		close $fh;
  
  		# get BBU status
  		$fh = $this->cmd('bbustatus', { '$controller' => $c });
  		while (<$fh>) {
  			next if /^$/;
  			next if /^-{10,}$/;
  			if (my($bbu, $onlinestate, $bbuready, $status, $volt, $temp, $hours, $lastcaptest) = m{^
  				(bbu\d*)\s+     # BBU, possibly numbered (RARE)
  				(\S+)\s+        # OnlineState
  				(\S+)\s+        # BBUReady
  				(\S+)\s+        # Status
  				(\S+)\s+        # Volt
  				(\S+)\s+        # Temp
  				(\d+)\s+        # Hours
  				(\S+)\s+        # LastCapTest
  			}x) {
  				$c{$c}{bbustatus}{$bbu} = {
  					OnlineState => $onlinestate,
  					BBUReady => $bbuready,
  					Status => $status,
  					Volt => $volt,
  					Temp => $temp,
  					Hours => $hours,
  					LastCapTest => $lastcaptest,
  				};
  				next;
  			}
  			if (m{^\S+\+}) {
  				$this->unknown;
  				warn "unparsed: [$_]";
  			}
  		}
  		close $fh;
  	}
  
  	# Do enclosures now, which might NOT be attached the controllers
  	# WARNING: This data section has not always been consistent over versions of tw_cli.
  	# You should try to use the newest version of the driver, as it deliberately uses the newer style of output
  	# rather than the output for the tw_cli versions released with 9550SX/9590SE/9650SE
  	for my $encid (grep /\/e\d+$/, keys %c) {
  		$fh = $this->cmd('enc_show_all', { '$encid' => $encid });
  		# Variable names chose to be 'sect_XXX' explicitly.
  		# This says what section we are in right now
  		my ($sect_enc, $sect_fan, $sect_tmp, $sect_psu, $sect_slt, $sect_alm) = (0,0,0,0,0,0);
  		# This says what section we have seen, it gets reset at the start of each enclosure block;
  		my ($seen_enc, $seen_fan, $seen_tmp, $seen_psu, $seen_slt, $seen_alm) = (0,0,0,0,0,0);
  		while (<$fh>) {
  			# Skip the header break lines
  			next if /^-+$/;
  			# and the partial indented header that is ABOVE the fan header
  			next if /^\s+-+Speed-+\s*$/;
  			# If the line is blank, reset our section headers
  			if(/^\s*$/){
  				($sect_enc, $sect_fan, $sect_tmp, $sect_psu, $sect_slt, $sect_alm) = (0,0,0,0,0,0);
  				# If we have SEEN all of the sections, also reset the seen markers
  				# This is needed when the output contains multiple enclosures
  				if($sect_enc and $sect_fan and $sect_tmp and $sect_psu and $sect_slt and $sect_alm) {
  					($seen_enc, $seen_fan, $seen_tmp, $seen_psu, $seen_slt, $seen_alm) = (0,0,0,0,0,0);
  				}
  				next;
  			}
  			if (/^Encl.*Status/)        { $seen_enc = $sect_enc = 1; next; }
  			if (/^Fan.*Status/)         { $seen_fan = $sect_fan = 1; next; }
  			if (/^TempSensor.*Status/)  { $seen_tmp = $sect_tmp = 1; next; }
  			if (/^PowerSupply.*Status/) { $seen_psu = $sect_psu = 1; next; }
  			if (/^Slot.*Status/)        { $seen_slt = $sect_slt = 1; next; }
  			if (/^Alarm.*Status/)       { $seen_alm = $sect_alm = 1; next; }
  			# ------ Start of new enclosure
  			if ($sect_enc and my($encl, $encl_status) = m{^
  				((?:/c\d+)?/e\d+)\s+   # Controller, Enclosure
  				(\S+)\s+   # Status
  			}x) {
  				# This is a special case for the test environment, as it is
  				# hard to feed MULTI command inputs into the mock.
  				if($ENV{'HARNESS_ACTIVE'} and $encl ne $encid) {
  					$encid = $encl;
  				}
  				$c{$encid} = {
  					encl   => $encl, # Dupe of $encid to verify
  					status => $encl_status,
  					# This is the top-level enclosure object
  					fans => {},
  					tempsensor => {},
  					powersupply => {},
  					slot => {},
  					alarm => {},
  				};
  			}
  			# ------ Fans
  			elsif ($sect_fan and my($fan, $fan_status, $fan_state, $fan_step, $fan_rpm, $fan_identify) = m{^
  				(fan\S+)\s+   # Fan
  				(\S+)\s+   # Status
  				(\S+)\s+   # State
  				(\S+)\s+   # Step
  				(\d+|N/A)\s+   # RPM
  				(\S+)\s+   # Identify
  			}x) {
  				$c{$encid}{fans}{$fan} = {
  					status => $fan_status,
  					state => $fan_state,
  					step => $fan_step,
  					rpm => $fan_rpm,
  					identify => $fan_identify,
  				};
  				next;
  			}
  			# ------ TempSensor
  			elsif ($sect_tmp and my($tmp, $tmp_status, $tmp_temperature, $tmp_identify) = m{^
  				(temp\S+)\s+   # TempSensor
  				(\S+)\s+   # Status
  				(\S+)\s+   # Temperature
  				(\S+)\s+   # Identify
  			}x) {
  				$c{$encid}{tempsensor}{$tmp} = {
  					status => $tmp_status,
  					temperature => $tmp_temperature,
  					identify => $tmp_identify,
  				};
  				next;
  			}
  			# ------ PowerSupply
  			elsif ($sect_psu and my($psu, $psu_status, $psu_state, $psu_voltage, $psu_current, $psu_identify) = m{^
  				((?:pw|psu)\S+)\s+   # PowerSupply
  				(\S+)\s+   # Status
  				(\S+)\s+   # State
  				(\S+)\s+   # Voltage
  				(\S+)\s+   # Current
  				(\S+)\s+   # Identify
  			}x) {
  				$c{$encid}{powersupply}{$psu} = {
  					status => $psu_status,
  					state => $psu_state,
  					voltage => $psu_voltage,
  					current => $psu_current,
  					identify => $psu_identify,
  				};
  				next;
  			}
  			# ------ Slot
  			elsif ($sect_slt and my($slt, $slt_status, $slt_vport, $slt_identify) = m{^
  				(slo?t\S+)\s+   # Slot
  				(\S+)\s+   # Status
  				(\S+)\s+   # (V)Port
  				(\S+)\s+   # Identify
  			}x) {
  				$c{$encid}{slot}{$slt} = {
  					status => $slt_status,
  					vport => $slt_vport,
  					identify => $slt_identify,
  				};
  				next;
  			}
  			# ------ Alarm
  			elsif ($sect_alm and my($alm, $alm_status, $alm_state, $alm_audibility) = m{^
  				(alm\S+)\s+   # Alarm
  				(\S+)\s+   # Status
  				(\S+)\s+   # State
  				(\S+)\s+   # Audibility
  			}x) {
  				$c{$encid}{alarm}{$alm} = {
  					status => $alm_status,
  					state => $alm_state,
  					audibility => $alm_audibility,
  				};
  				next;
  			}
  			# ---- End of known data
  			elsif (m{^\S+\+}) {
  				$this->unknown;
  				warn "unparsed: [$_]";
  			}
  
  		}
  		close $fh;
  	}
  
  	return \%c;
  }
  
  sub check {
  	my $this = shift;
  
  	# status messages pushed here
  	my @status;
  
  	my $c = $this->parse;
  	if (!$c) {
  		$this->unknown;
  		$this->message("No Adapters were found on this machine");
  	}
  
  	# process each controller
  	for my $cid (sort grep !/e\d+/, keys %$c) {
  		my $c = $c->{$cid};
  		my @cstatus;
  
  		for my $uid (sort keys %{$c->{unitstatus}}) {
  			my $u = $c->{unitstatus}->{$uid};
  			my $s = $u->{status};
  
  			if ($s =~ /INITIALIZING|MIGRATING/) {
  				$this->warning;
  				$s .= " $u->{vim_percent}";
  
  			} elsif ($s eq 'VERIFYING') {
  				$this->check_status;
  				$s .= " $u->{vim_percent}";
  
  			} elsif ($s eq 'REBUILDING') {
  				$this->resync;
  				$s .= " $u->{rebuild_percent}";
  
  			} elsif ($s eq 'DEGRADED') {
  				$this->critical;
  
  			} elsif ($s ne 'OK') {
  				$this->critical;
  
  			}
  
  			my @ustatus = $s;
  
  			# report cache, no checking
  			if ($u->{cache} && $u->{cache} ne '-') {
  				push(@ustatus, "Cache:$u->{cache}");
  			}
  
  			push(@status, "$cid($c->{model}): $uid($u->{type}): ".join(', ', @ustatus));
  		}
  
  		# check individual disk status
  		my %ds;
  		foreach my $p (sort { $a cmp $b } keys %{$c->{drivestatus}}) {
  			my $d = $c->{drivestatus}->{$p};
  			my $ds = $d->{status};
  			if ($ds eq 'VERIFYING') {
  				$this->check_status;
  			} elsif ($ds ne 'OK') {
  				$this->critical;
  			}
  
  			if ($d->{unit} eq '-') {
  				$ds = 'SPARE';
  			}
  
  			push(@{$ds{$ds}}, $p);
  		}
  		push(@status, "Drives($c->{drives}): ".$this->join_status(\%ds)) if %ds;
  
  		# check BBU, but be prepared that BBU status might not report anything
  		if ($this->{options}{bbu_monitoring} && $c->{bbu} && $c->{bbu} ne '-') {
  			# On old controllers, bbustatus did not exist; and the only BBU status
  			# you got was on the controller listing.
  			if(scalar(keys %{$c->{bbustatus}}) < 1) {
  				$this->critical if $c->{bbu} ne 'OK';
  				push(@status, "BBU: $c->{bbu}");
  			} else {
  				foreach my $bbuid (sort { $a cmp $b } keys %{$c->{bbustatus}}) {
  					my $bat = $c->{bbustatus}->{$bbuid};
  					my $bs = $bat->{Status}; # We might override this later
  					my @batmsg;
  					if($bs eq 'Testing' or $bs eq 'Charging') {
  						$this->bbulearn;
  					} elsif($bs eq 'WeakBat') {
  						# Time to replace your battery
  						$this->warning;
  					} elsif($bs ne 'OK') {
  						$this->critical;
  					}
  					# We do NOT check BBUReady, as it doesn't private granular
  					# info.
  					# Check OnlineState flag as well
  					# A battery can be GOOD, but disabled; this is only reflected in OnlineState.
  					if($bat->{OnlineState} ne 'On') {
  						push @batmsg, 'OnlineStatus='.$bat->{OnlineState};
  						$this->critical;
  					}
  					# Check voltage & temps
  					push @batmsg, 'Volt='.$bat->{Volt};
  					push @batmsg, 'Temp='.$bat->{Temp};
  					if ($bat->{Volt} =~ /^(LOW|HIGH)$/) {
  						$this->critical;
  					} elsif ($bat->{Volt} =~ /^(LOW|HIGH)$/) {
  						$this->warning;
  					}
  					if ($bat->{Temp} =~ /^(LOW|HIGH)$/) {
  						$this->critical;
  					} elsif ($bat->{Temp} =~ /^(LOW|HIGH)$/) {
  						$this->warning;
  					}
  					# Check runtime estimate
  					# Warn if too low
  					my $bbulearn = '';
  					if ($bat->{Hours} ne '-' and int($bat->{Hours}) <= 1) {
  						# TODO: make this configurable before going live
  						#$this->warning;
  						$this->bbulearn;
  						$bbulearn = '/LEARN';
  					}
  					push @batmsg, 'Hours='.$bat->{Hours};
  
  					# Check date of last capacity test
  					if ($bat->{LastCapTest} eq 'xx-xxx-xxxx') {
  						$this->bbulearn;
  						$bbulearn = '/LEARN';
  					} elsif ($bat->{LastCapTest} ne '-') {
  						# TODO: is the short name of month localized by tw_cli?
  						#my ($mday, $mon, $year) = (strptime($bat->{LastCapTest}, '%d-%b-%Y'))[3,4,5];
  						#my $lastcaptest_epoch = DateTime->new(year => $year, month => $mon, day => $mday, hour => 0, minute => 0, second => 0);
  						#my $present_time = time;
  						## TODO: this value should be configurable before going live, also need to mock system date for testing
  						#if (($present_time-$lastcaptest_epoch) > 86400*365) {
  						#	$this->bbulearn;
  						#}
  					}
  					push @batmsg, 'LastCapTest='.$bat->{LastCapTest};
  					my $msg = join(',', @batmsg);
  					my $bbustatus = $bs.$bbulearn;
  					$bbustatus = "$bbuid=$bs" if $bbuid ne 'bbu'; # If we have multiple BBU, specify which one
  					push(@status, "BBU: $bbustatus($msg)");
  				}
  			}
  		}
  	}
  	# process each enclosure
  	for my $eid (sort grep /\/e\d+/, keys %$c) {
  		my $e = $c->{$eid};
  		# If the enclosure command returned nothing, we have no status to
  		# report.
  		next unless defined($e->{status});
  
  		# Something is wrong, but we are not sure what yet.
  		$this->warning unless $e->{status} eq 'OK';
  		my @estatus;
  		for my $fan_id (sort keys %{$e->{fans}}) {
  			my $f = $e->{fans}->{$fan_id};
  			my $s = $f->{status};
  			next if $s eq 'NOT-REPORTABLE' or $s eq 'NOT-INSTALLED' or $s eq 'NO-DEVICE';
  			$this->warning if $s ne 'OK';
  			push(@estatus, "$fan_id=$s($f->{rpm})");
  		}
  		for my $tmp_id (sort keys %{$e->{tempsensor}}) {
  			my $t = $e->{tempsensor}->{$tmp_id};
  			my $s = $t->{status};
  			next if $s eq 'NOT-REPORTABLE' or $s eq 'NOT-INSTALLED' or $s eq 'NO-DEVICE';
  			$this->warning if $s ne 'OK';
  			$t->{temperature} =~ s/\(\d+F\)//; # get rid of extra units
  			push(@estatus, "$tmp_id=$s($t->{temperature})");
  		}
  		for my $psu_id (sort keys %{$e->{powersupply}}) {
  			my $t = $e->{powersupply}->{$psu_id};
  			my $s = $t->{status};
  			next if $s eq 'NOT-REPORTABLE' or $s eq 'NOT-INSTALLED' or $s eq 'NO-DEVICE';
  			$this->warning if $s ne 'OK';
  			push(@estatus, "$psu_id=$s(status=$t->{state},voltage=$t->{voltage},current=$t->{current})");
  		}
  		for my $slot_id (sort keys %{$e->{slot}}) {
  			my $t = $e->{slot}->{$slot_id};
  			my $s = $t->{status};
  			next if $s eq 'NOT-REPORTABLE' or $s eq 'NOT-INSTALLED' or $s eq 'NO-DEVICE';
  			$this->warning if $s ne 'OK';
  			push(@estatus, "$slot_id=$s");
  		}
  		for my $alarm_id (sort keys %{$e->{alarm}}) {
  			my $t = $e->{alarm}->{$alarm_id};
  			my $s = $t->{status};
  			next if $s eq 'NOT-REPORTABLE' or $s eq 'NOT-INSTALLED' or $s eq 'NO-DEVICE';
  			$this->warning if $s ne 'OK';
  			push(@estatus, "$alarm_id=$s(State=$t->{state},Audibility=$t->{audibility})");
  		}
  		#warn join("\n", @estatus);
  		push(@status, "Enclosure: $eid(".join(',', @estatus).")");
  	}
  
  	return unless @status;
  
  	$this->ok->message(join(', ', @status));
  }
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID_PLUGINS_TW_CLI

$fatpacked{"App/Monitoring/Plugin/CheckRaid/SerialLine.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_SERIALLINE';
  package App::Monitoring::Plugin::CheckRaid::SerialLine;
  
  # Package dealing with connecting to serial line and handling UUCP style locks.
  
  use Carp;
  use strict;
  use warnings;
  
  sub new {
  	my $self = shift;
  	my $class = ref($self) || $self;
  	my $device = shift;
  
  	my $this = {
  		lockdir => "/var/lock",
  
  		@_,
  
  		lockfile => undef,
  		device => $device,
  		fh => undef,
  	};
  
  	bless($this, $class);
  }
  
  sub lock {
  	my $self = shift;
  	# create lock in style: /var/lock/LCK..ttyS0
  	my $device = shift;
  	my ($lockfile) = $self->{device} =~ m#/dev/(.+)#;
  	$lockfile = "$self->{lockdir}/LCK..$lockfile";
  	if (-e $lockfile) {
  		return 0;
  	}
  	open(my $fh, '>', $lockfile) || croak "Can't create lock: $lockfile\n";
  	print $fh $$;
  	close($fh);
  
  	$self->{lockfile} = $lockfile;
  }
  
  sub open {
  	my $self = shift;
  
  	$self->lock or return;
  
  	# open the device
  	open(my $fh, '+>', $self->{device}) || croak "Couldn't open $self->{device}, $!\n";
  
  	$self->{fh} = $fh;
  }
  
  sub close {
  	my $self = shift;
  	if ($self->{fh}) {
  		close($self->{fh});
  		undef($self->{fh});
  		unlink $self->{lockfile} or carp $!;
  	}
  }
  
  sub DESTROY {
  	my $self = shift;
  	$self->close();
  }
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID_SERIALLINE

$fatpacked{"App/Monitoring/Plugin/CheckRaid/Sudoers.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_SUDOERS';
  package App::Monitoring::Plugin::CheckRaid::Sudoers;
  
  use App::Monitoring::Plugin::CheckRaid::Utils;
  use warnings;
  use strict;
  
  use Exporter 'import';
  
  our @EXPORT = qw(sudoers);
  our @EXPORT_OK = @EXPORT;
  
  # update sudoers file
  #
  # if sudoers config has "#includedir" directive, add file to that dir
  # otherwise update main sudoers file
  sub sudoers {
  	my $dry_run = shift;
  	my @plugins = @_;
  
  	# build values to be added
  	# go over all active plugins
  	my @sudo;
  	foreach my $plugin (@plugins) {
  		# collect sudo rules
  		my @rules = $plugin->sudo(1) or next;
  
  		push(@sudo, @rules);
  	}
  
  	unless (@sudo) {
  		warn "Your configuration does not need to use sudo, sudoers not updated\n";
  		return;
  	}
  
  	my @rules = join "\n", (
  		"",
  		# setup alias, so we could easily remove these later by matching lines with 'CHECK_RAID'
  		# also this avoids installing ourselves twice.
  		"# Lines matching CHECK_RAID added by $0 -S on ". scalar localtime,
  		"User_Alias CHECK_RAID=nagios",
  		"Defaults:CHECK_RAID !requiretty",
  
  		# actual rules from plugins
  		join("\n", @sudo),
  		"",
  	);
  
  	if ($dry_run) {
  		warn "Content to be inserted to sudo rules:\n";
  		warn "--- sudoers ---\n";
  		print @rules;
  		warn "--- sudoers ---\n";
  		return;
  	}
  
  	my $sudoers = find_file('/usr/local/etc/sudoers', '/etc/sudoers');
  	my $visudo = which('visudo');
  
  	die "Unable to find sudoers file.\n" unless -f $sudoers;
  	die "Unable to write to sudoers file '$sudoers'.\n" unless -w $sudoers;
  	die "visudo program not found\n" unless -x $visudo;
  
  	# parse sudoers file for "#includedir" directive
  	my $sudodir = parse_sudoers_includedir($sudoers);
  	if ($sudodir) {
  		# sudo will read each file in /etc/sudoers.d, skipping file names that
  		# end in ~ or contain a . character to avoid causing problems with
  		# package manager or editor temporary/backup files
  		$sudoers = "$sudodir/check_raid";
  	}
  
  	warn "Updating file $sudoers\n";
  
  	# NOTE: secure as visudo itself: /etc is root owned
  	my $new = $sudoers.".new.".$$;
  
  	# setup to have sane perm for new sudoers file
  	umask(0227);
  
  	open my $fh, '>', $new or die $!;
  
  	# insert old sudoers
  	if (!$sudodir) {
  		open my $old, '<', $sudoers or die $!;
  		while (<$old>) {
  			print $fh $_;
  		}
  		close $old or die $!;
  	}
  
  	# insert the rules
  	print $fh @rules;
  	close $fh;
  
  	# validate sudoers
  	system($visudo, '-c', '-f', $new) == 0 or unlink($new),exit $? >> 8;
  
  	# check if they differ
  	if (filediff($sudoers, $new)) {
  		# use the new file
  		rename($new, $sudoers) or die $!;
  		warn "$sudoers file updated.\n";
  	} else {
  		warn "$sudoers file not changed.\n";
  		unlink($new);
  	}
  }
  
  # return first "#includedir" directive from $sudoers file
  sub parse_sudoers_includedir {
  	my ($sudoers) = @_;
  
  	open my $fh, '<', $sudoers or die "Can't open: $sudoers: $!";
  	while (<$fh>) {
  		if (my ($dir) = /^#includedir\s+(.+)$/) {
  			return $dir;
  		}
  	}
  	close $fh or die $!;
  
  	return undef;
  }
  
  # return FALSE if files are identical
  # return TRUE if files are different
  # return TRUE if any of the files is missing
  sub filediff {
  	my ($file1, $file2) = @_;
  
  	# return TRUE if neither of them exist
  	return 1 unless -f $file1;
  	return 1 unless -f $file2;
  
  	my $f1 = cat($file1);
  	my $f2 = cat($file2);
  
  	# wipe comments
  	$f1 =~ s/^#.+$//m;
  	$f2 =~ s/^#.+$//m;
  
  	# return TRUE if they differ
  	return $f1 ne $f2;
  }
  
  # get contents of a file
  sub cat {
  	my ($file) = @_;
  	open(my $fh, '<', $file) or die "Can't open $file: $!";
  	local $/ = undef;
  	local $_ = <$fh>;
  	close($fh) or die $!;
  
  	return $_;
  }
  
  # find first existing file from list of file paths
  sub find_file {
  	for my $file (@_) {
  		return $file if -f $file;
  	}
  	return undef;
  }
APP_MONITORING_PLUGIN_CHECKRAID_SUDOERS

$fatpacked{"App/Monitoring/Plugin/CheckRaid/Utils.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_MONITORING_PLUGIN_CHECKRAID_UTILS';
  package App::Monitoring::Plugin::CheckRaid::Utils;
  
  use warnings;
  use strict;
  use Exporter 'import';
  
  our @EXPORT = qw(which find_sudo);
  our @EXPORT_OK = @EXPORT;
  
  # registered plugins
  our @plugins;
  
  # devices to ignore
  our @ignore;
  
  # debug level
  our $debug = 0;
  
  # paths for which()
  our @paths = split /:/, $ENV{'PATH'};
  unshift(@paths, qw(/usr/local/nrpe /usr/local/bin /sbin /usr/sbin /bin /usr/sbin /opt/bin /opt/MegaRAID/MegaCli));
  
  # lookup program from list of possible filenames
  # search is performed from $PATH plus additional hardcoded @paths
  # NOTE: we do not check for execute bit as it may fail for non-root. #104
  sub which {
  	for my $prog (@_) {
  		for my $path (@paths) {
  			return "$path/$prog" if -f "$path/$prog";
  		}
  	}
  	return undef;
  }
  
  our @sudo;
  sub find_sudo {
  	# no sudo needed if already root
  	return [] unless $>;
  
  	# detect once
  	return \@sudo if @sudo;
  
  	my $sudo = which('sudo') or die "Can't find sudo";
  	push(@sudo, $sudo);
  
  	# detect if sudo supports -A, issue #88
  	use IPC::Open3;
  	my $fh;
  	my @cmd = ($sudo, '-h');
  	my $pid = open3(undef, $fh, undef, @cmd) or die "Can't run 'sudo -h': $!";
  	local $/ = undef;
  	local $_ = <$fh>;
  	close($fh) or die $!;
  	push(@sudo, '-A') if /-A/;
  
  	return \@sudo;
  }
  
  1;
APP_MONITORING_PLUGIN_CHECKRAID_UTILS

$fatpacked{"Class/Accessor.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'CLASS_ACCESSOR';
  package Class::Accessor;require 5.00502;use strict;$Class::Accessor::VERSION='0.34';sub new {my($proto,$fields)=@_;my($class)=ref$proto || $proto;$fields={}unless defined$fields;bless {%$fields},$class}sub mk_accessors {my($self,@fields)=@_;$self->_mk_accessors('rw',@fields)}if (eval {require Sub::Name}){Sub::Name->import}{no strict 'refs';sub import {my ($class,@what)=@_;my$caller=caller;for (@what){if (/^(?:antlers|moose-?like)$/i){*{"${caller}::has"}=sub {my ($f,%args)=@_;$caller->_mk_accessors(($args{is}||"rw"),$f)};*{"${caller}::extends"}=sub {@{"${caller}::ISA"}=@_;unless (grep $_->can("_mk_accessors"),@_){push @{"${caller}::ISA"},$class}};&{"${caller}::extends"}(@{"${caller}::ISA"})}}}sub follow_best_practice {my($self)=@_;my$class=ref$self || $self;*{"${class}::accessor_name_for"}=\&best_practice_accessor_name_for;*{"${class}::mutator_name_for"}=\&best_practice_mutator_name_for}sub _mk_accessors {my($self,$access,@fields)=@_;my$class=ref$self || $self;my$ra=$access eq 'rw' || $access eq 'ro';my$wa=$access eq 'rw' || $access eq 'wo';for my$field (@fields){my$accessor_name=$self->accessor_name_for($field);my$mutator_name=$self->mutator_name_for($field);if($accessor_name eq 'DESTROY' or $mutator_name eq 'DESTROY'){$self->_carp("Having a data accessor named DESTROY  in '$class' is unwise.")}if ($accessor_name eq $mutator_name){my$accessor;if ($ra && $wa){$accessor=$self->make_accessor($field)}elsif ($ra){$accessor=$self->make_ro_accessor($field)}else {$accessor=$self->make_wo_accessor($field)}my$fullname="${class}::$accessor_name";my$subnamed=0;unless (defined &{$fullname}){subname($fullname,$accessor)if defined&subname;$subnamed=1;*{$fullname}=$accessor}if ($accessor_name eq $field){my$alias="${class}::_${field}_accessor";subname($alias,$accessor)if defined&subname and not $subnamed;*{$alias}=$accessor unless defined &{$alias}}}else {my$fullaccname="${class}::$accessor_name";my$fullmutname="${class}::$mutator_name";if ($ra and not defined &{$fullaccname}){my$accessor=$self->make_ro_accessor($field);subname($fullaccname,$accessor)if defined&subname;*{$fullaccname}=$accessor}if ($wa and not defined &{$fullmutname}){my$mutator=$self->make_wo_accessor($field);subname($fullmutname,$mutator)if defined&subname;*{$fullmutname}=$mutator}}}}}sub mk_ro_accessors {my($self,@fields)=@_;$self->_mk_accessors('ro',@fields)}sub mk_wo_accessors {my($self,@fields)=@_;$self->_mk_accessors('wo',@fields)}sub best_practice_accessor_name_for {my ($class,$field)=@_;return "get_$field"}sub best_practice_mutator_name_for {my ($class,$field)=@_;return "set_$field"}sub accessor_name_for {my ($class,$field)=@_;return$field}sub mutator_name_for {my ($class,$field)=@_;return$field}sub set {my($self,$key)=splice(@_,0,2);if(@_==1){$self->{$key}=$_[0]}elsif(@_ > 1){$self->{$key}=[@_]}else {$self->_croak("Wrong number of arguments received")}}sub get {my$self=shift;if(@_==1){return$self->{$_[0]}}elsif(@_ > 1){return @{$self}{@_}}else {$self->_croak("Wrong number of arguments received")}}sub make_accessor {my ($class,$field)=@_;return sub {my$self=shift;if(@_){return$self->set($field,@_)}else {return$self->get($field)}}}sub make_ro_accessor {my($class,$field)=@_;return sub {my$self=shift;if (@_){my$caller=caller;$self->_croak("'$caller' cannot alter the value of '$field' on objects of class '$class'")}else {return$self->get($field)}}}sub make_wo_accessor {my($class,$field)=@_;return sub {my$self=shift;unless (@_){my$caller=caller;$self->_croak("'$caller' cannot access the value of '$field' on objects of class '$class'")}else {return$self->set($field,@_)}}}use Carp ();sub _carp {my ($self,$msg)=@_;Carp::carp($msg || $self);return}sub _croak {my ($self,$msg)=@_;Carp::croak($msg || $self);return}1;
CLASS_ACCESSOR

$fatpacked{"Class/Accessor/Fast.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'CLASS_ACCESSOR_FAST';
  package Class::Accessor::Fast;use base 'Class::Accessor';use strict;$Class::Accessor::Fast::VERSION='0.34';sub make_accessor {my($class,$field)=@_;return sub {return $_[0]->{$field}if scalar(@_)==1;return $_[0]->{$field}=scalar(@_)==2 ? $_[1]: [@_[1..$#_]]}}sub make_ro_accessor {my($class,$field)=@_;return sub {return $_[0]->{$field}if @_==1;my$caller=caller;$_[0]->_croak("'$caller' cannot alter the value of '$field' on objects of class '$class'")}}sub make_wo_accessor {my($class,$field)=@_;return sub {if (@_==1){my$caller=caller;$_[0]->_croak("'$caller' cannot access the value of '$field' on objects of class '$class'")}else {return $_[0]->{$field}=$_[1]if @_==2;return (shift)->{$field}=\@_}}}1;
CLASS_ACCESSOR_FAST

$fatpacked{"Class/Accessor/Faster.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'CLASS_ACCESSOR_FASTER';
  package Class::Accessor::Faster;use base 'Class::Accessor';use strict;$Class::Accessor::Faster::VERSION='0.34';my%slot;sub _slot {my($class,$field)=@_;my$n=$slot{$class}->{$field};return$n if defined$n;$n=keys %{$slot{$class}};$slot{$class}->{$field}=$n;return$n}sub new {my($proto,$fields)=@_;my($class)=ref$proto || $proto;my$self=bless [],$class;$fields={}unless defined$fields;for my$k (keys %$fields){my$n=$class->_slot($k);$self->[$n]=$fields->{$k}}return$self}sub make_accessor {my($class,$field)=@_;my$n=$class->_slot($field);return sub {return $_[0]->[$n]if scalar(@_)==1;return $_[0]->[$n]=scalar(@_)==2 ? $_[1]: [@_[1..$#_]]}}sub make_ro_accessor {my($class,$field)=@_;my$n=$class->_slot($field);return sub {return $_[0]->[$n]if @_==1;my$caller=caller;$_[0]->_croak("'$caller' cannot alter the value of '$field' on objects of class '$class'")}}sub make_wo_accessor {my($class,$field)=@_;my$n=$class->_slot($field);return sub {if (@_==1){my$caller=caller;$_[0]->_croak("'$caller' cannot access the value of '$field' on objects of class '$class'")}else {return $_[0]->[$n]=$_[1]if @_==2;return (shift)->[$n]=\@_}}}1;
CLASS_ACCESSOR_FASTER

$fatpacked{"Class/Singleton.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'CLASS_SINGLETON';
  package Class::Singleton;require 5.004;use strict;use warnings;our$VERSION=1.5;my%_INSTANCES=();sub instance {my$class=shift;return$class if ref$class;my$instance=$_INSTANCES{$class};unless(defined$instance){$_INSTANCES{$class}=$instance=$class->_new_instance(@_)}return$instance}sub has_instance {my$class=shift;$class=ref$class || $class;return$_INSTANCES{$class}}sub _new_instance {my$class=shift;my%args=@_ && ref $_[0]eq 'HASH' ? %{$_[0]}: @_;bless {%args },$class}END {undef(%_INSTANCES)}1;
CLASS_SINGLETON

$fatpacked{"Config/Tiny.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'CONFIG_TINY';
  package Config::Tiny;use strict;our$VERSION='2.23';BEGIN {require 5.008001;$Config::Tiny::errstr=''}sub new {return bless {},shift}sub read {my($class)=ref $_[0]? ref shift : shift;my($file,$encoding)=@_;return$class -> _error('No file name provided')if (!defined$file || ($file eq ''));$encoding=$encoding ? "<:$encoding" : '<';local $/=undef;open(CFG,$encoding,$file)or return$class -> _error("Failed to open file '$file' for reading: $!");my$contents=<CFG>;close(CFG);return$class -> _error("Reading from '$file' returned undef")if (!defined$contents);return$class -> read_string($contents)}sub read_string {my($class)=ref $_[0]? ref shift : shift;my($self)=bless {},$class;return undef unless defined $_[0];my$ns='_';my$counter=0;for (split /(?:\015{1,2}\012|\015|\012)/,shift){$counter++;next if /^\s*(?:\#|\;|$)/;s/\s\;\s.+$//g;if (/^\s*\[\s*(.+?)\s*\]\s*$/){$self->{$ns=$1}||= {};next}if (/^\s*([^=]+?)\s*=\s*(.*?)\s*$/){$self->{$ns}->{$1}=$2;next}return$self -> _error("Syntax error at line $counter: '$_'")}return$self}sub write {my($self)=shift;my($file,$encoding)=@_;return$self -> _error('No file name provided')if (!defined$file or ($file eq ''));$encoding=$encoding ? ">:$encoding" : '>';my($string)=$self->write_string;return undef unless defined$string;open(CFG,$encoding,$file)or return$self->_error("Failed to open file '$file' for writing: $!");print CFG$string;close CFG;return 1}sub write_string {my($self)=shift;my($contents)='';for my$section (sort {(($b eq '_')<=> ($a eq '_'))|| ($a cmp $b)}keys %$self){return$self->_error("Illegal whitespace in section name '$section'")if$section =~ /(?:^\s|\n|\s$)/s;my$block=$self->{$section};$contents .= "\n" if length$contents;$contents .= "[$section]\n" unless$section eq '_';for my$property (sort keys %$block){return$self->_error("Illegal newlines in property '$section.$property'")if$block->{$property}=~ /(?:\012|\015)/s;$contents .= "$property=$block->{$property}\n"}}return$contents}sub errstr {$Config::Tiny::errstr}sub _error {$Config::Tiny::errstr=$_[1];undef}1;
CONFIG_TINY

$fatpacked{"Date/Format.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_FORMAT';
  package Date::Format;use strict;use vars qw(@EXPORT @ISA $VERSION);require Exporter;$VERSION="2.24";@ISA=qw(Exporter);@EXPORT=qw(time2str strftime ctime asctime);sub time2str ($;$$) {Date::Format::Generic->time2str(@_)}sub strftime ($\@;$) {Date::Format::Generic->strftime(@_)}sub ctime ($;$) {my($t,$tz)=@_;Date::Format::Generic->time2str("%a %b %e %T %Y\n",$t,$tz)}sub asctime (\@;$) {my($t,$tz)=@_;Date::Format::Generic->strftime("%a %b %e %T %Y\n",$t,$tz)}package Date::Format::Generic;use vars qw($epoch $tzname);use Time::Zone;use Time::Local;sub ctime {my($me,$t,$tz)=@_;$me->time2str("%a %b %e %T %Y\n",$t,$tz)}sub asctime {my($me,$t,$tz)=@_;$me->strftime("%a %b %e %T %Y\n",$t,$tz)}sub _subs {my$fn;$_[1]=~ s/
  		%(O?[%a-zA-Z])
  	   /
                  ($_[0]->can("format_$1") || sub { $1 })->($_[0]);
  	   /sgeox;$_[1]}sub strftime {my($pkg,$fmt,$time);($pkg,$fmt,$time,$tzname)=@_;my$me=ref($pkg)? $pkg : bless [];if(defined$tzname){$tzname=uc$tzname;$tzname=sprintf("%+05d",$tzname)unless($tzname =~ /\D/);$epoch=timegm(@{$time}[0..5]);@$me=gmtime($epoch + tz_offset($tzname)- tz_offset())}else {@$me=@$time;undef$epoch}_subs($me,$fmt)}sub time2str {my($pkg,$fmt,$time);($pkg,$fmt,$time,$tzname)=@_;my$me=ref($pkg)? $pkg : bless [],$pkg;$epoch=$time;if(defined$tzname){$tzname=uc$tzname;$tzname=sprintf("%+05d",$tzname)unless($tzname =~ /\D/);$time += tz_offset($tzname);@$me=gmtime($time)}else {@$me=localtime($time)}$me->[9]=$time;_subs($me,$fmt)}my(@DoW,@MoY,@DoWs,@MoYs,@AMPM,%format,@Dsuf);@DoW=qw(Sunday Monday Tuesday Wednesday Thursday Friday Saturday);@MoY=qw(January February March April May June July August September October November December);@DoWs=map {substr($_,0,3)}@DoW;@MoYs=map {substr($_,0,3)}@MoY;@AMPM=qw(AM PM);@Dsuf=(qw(th st nd rd th th th th th th))x 3;@Dsuf[11,12,13]=qw(th th th);@Dsuf[30,31]=qw(th st);%format=('x'=>"%m/%d/%y",'C'=>"%a %b %e %T %Z %Y",'X'=>"%H:%M:%S",);my@locale;my$locale="/usr/share/lib/locale/LC_TIME/default";local*LOCALE;if(open(LOCALE,"$locale")){chop(@locale=<LOCALE>);close(LOCALE);@MoYs=@locale[0 .. 11];@MoY=@locale[12 .. 23];@DoWs=@locale[24 .. 30];@DoW=@locale[31 .. 37];@format{"X","x","C"}=@locale[38 .. 40];@AMPM=@locale[41 .. 42]}sub wkyr {my($wstart,$wday,$yday)=@_;$wday=($wday + 7 - $wstart)% 7;return int(($yday - $wday + 13)/ 7 - 1)}my@roman=('',qw(I II III IV V VI VII VIII IX));sub roman {my$n=shift;$n =~ s/(\d)$//;my$r=$roman[$1 ];if($n =~ s/(\d)$//){(my$t=$roman[$1])=~ tr/IVX/XLC/;$r=$t .$r}if($n =~ s/(\d)$//){(my$t=$roman[$1])=~ tr/IVX/CDM/;$r=$t .$r}if($n =~ s/(\d)$//){(my$t=$roman[$1])=~ tr/IVX/M../;$r=$t .$r}$r}sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}sub format_P {lc($_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0])}sub format_d {sprintf("%02d",$_[0]->[3])}sub format_e {sprintf("%2d",$_[0]->[3])}sub format_H {sprintf("%02d",$_[0]->[2])}sub format_I {sprintf("%02d",$_[0]->[2]% 12 || 12)}sub format_j {sprintf("%03d",$_[0]->[7]+ 1)}sub format_k {sprintf("%2d",$_[0]->[2])}sub format_l {sprintf("%2d",$_[0]->[2]% 12 || 12)}sub format_L {$_[0]->[4]+ 1}sub format_m {sprintf("%02d",$_[0]->[4]+ 1)}sub format_M {sprintf("%02d",$_[0]->[1])}sub format_q {sprintf("%01d",int($_[0]->[4]/ 3)+ 1)}sub format_s {$epoch=timelocal(@{$_[0]}[0..5])unless defined$epoch;sprintf("%d",$epoch)}sub format_S {sprintf("%02d",$_[0]->[0])}sub format_U {wkyr(0,$_[0]->[6],$_[0]->[7])}sub format_w {$_[0]->[6]}sub format_W {wkyr(1,$_[0]->[6],$_[0]->[7])}sub format_y {sprintf("%02d",$_[0]->[5]% 100)}sub format_Y {sprintf("%04d",$_[0]->[5]+ 1900)}sub format_Z {my$o=tz_local_offset(timelocal(@{$_[0]}[0..5]));defined$tzname ? $tzname : uc tz_name($o,$_[0]->[8])}sub format_z {my$t=timelocal(@{$_[0]}[0..5]);my$o=defined$tzname ? tz_offset($tzname,$t): tz_offset(undef,$t);sprintf("%+03d%02d",int($o / 3600),int(abs($o)% 3600)/ 60)}sub format_c {&format_x ." " .&format_X}sub format_D {&format_m ."/" .&format_d ."/" .&format_y}sub format_r {&format_I .":" .&format_M .":" .&format_S ." " .&format_p}sub format_R {&format_H .":" .&format_M}sub format_T {&format_H .":" .&format_M .":" .&format_S}sub format_t {"\t"}sub format_n {"\n"}sub format_o {sprintf("%2d%s",$_[0]->[3],$Dsuf[$_[0]->[3]])}sub format_x {my$f=$format{'x'};_subs($_[0],$f)}sub format_X {my$f=$format{'X'};_subs($_[0],$f)}sub format_C {my$f=$format{'C'};_subs($_[0],$f)}sub format_Od {roman(format_d(@_))}sub format_Oe {roman(format_e(@_))}sub format_OH {roman(format_H(@_))}sub format_OI {roman(format_I(@_))}sub format_Oj {roman(format_j(@_))}sub format_Ok {roman(format_k(@_))}sub format_Ol {roman(format_l(@_))}sub format_Om {roman(format_m(@_))}sub format_OM {roman(format_M(@_))}sub format_Oq {roman(format_q(@_))}sub format_Oy {roman(format_y(@_))}sub format_OY {roman(format_Y(@_))}sub format_G {int(($_[0]->[9]- 315993600)/ 604800)}1;
DATE_FORMAT

$fatpacked{"Date/Language.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE';
  package Date::Language;use strict;use Time::Local;use Carp;use vars qw($VERSION @ISA);require Date::Format;$VERSION="1.10";@ISA=qw(Date::Format::Generic);sub new {my$self=shift;my$type=shift || $self;$type =~ s/^(\w+)$/Date::Language::$1/;croak "Bad language" unless$type =~ /^[\w:]+$/;eval "require $type" or croak $@;bless [],$type}sub DESTROY {}sub AUTOLOAD {use vars qw($AUTOLOAD);if($AUTOLOAD =~ /::strptime\Z/o){my$self=$_[0];my$type=ref($self)|| $self;require Date::Parse;no strict 'refs';*{"${type}::strptime"}=Date::Parse::gen_parser(\%{"${type}::DoW"},\%{"${type}::MoY"},\@{"${type}::Dsuf"},1);goto &{"${type}::strptime"}}croak "Undefined method &$AUTOLOAD called"}sub str2time {my$me=shift;my@t=$me->strptime(@_);return undef unless@t;my($ss,$mm,$hh,$day,$month,$year,$zone)=@t;my@lt=localtime(time);$hh ||= 0;$mm ||= 0;$ss ||= 0;$month=$lt[4]unless(defined$month);$day=$lt[3]unless(defined$day);$year=($month > $lt[4])? ($lt[5]- 1): $lt[5]unless(defined$year);return defined$zone ? timegm($ss,$mm,$hh,$day,$month,$year)- $zone : timelocal($ss,$mm,$hh,$day,$month,$year)}1;
DATE_LANGUAGE

$fatpacked{"Date/Language/Afar.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_AFAR';
  package Date::Language::Afar;use Date::Language ();use vars qw(@ISA @DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION);@ISA=qw(Date::Language);$VERSION="0.99";@DoW=qw(Acaada Etleeni Talaata Arbaqa Kamiisi Gumqata Sabti);@MoY=("Qunxa Garablu","Kudo","Ciggilta Kudo","Agda Baxis","Caxah Alsa","Qasa Dirri","Qado Dirri","Liiqen","Waysu","Diteli","Ximoli","Kaxxa Garablu");@DoWs=map {substr($_,0,3)}@DoW;@MoYs=map {substr($_,0,3)}@MoY;@AMPM=qw(saaku carra);@Dsuf=(qw(th st nd rd th th th th th th))x 3;@Dsuf[11,12,13]=qw(th th th);@Dsuf[30,31]=qw(th st);@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}1;
DATE_LANGUAGE_AFAR

$fatpacked{"Date/Language/Amharic.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_AMHARIC';
  package Date::Language::Amharic;use Date::Language ();use vars qw(@ISA @DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION);@ISA=qw(Date::Language);$VERSION="1.00";if ($] >= 5.006){@DoW=("\x{12a5}\x{1211}\x{12f5}","\x{1230}\x{129e}","\x{121b}\x{12ad}\x{1230}\x{129e}","\x{1228}\x{1261}\x{12d5}","\x{1210}\x{1219}\x{1235}","\x{12d3}\x{122d}\x{1265}","\x{1245}\x{12f3}\x{121c}");@MoY=("\x{1303}\x{1295}\x{12e9}\x{12c8}\x{122a}","\x{134c}\x{1265}\x{1229}\x{12c8}\x{122a}","\x{121b}\x{122d}\x{127d}","\x{12a4}\x{1355}\x{1228}\x{120d}","\x{121c}\x{12ed}","\x{1301}\x{1295}","\x{1301}\x{120b}\x{12ed}","\x{12a6}\x{1308}\x{1235}\x{1275}","\x{1234}\x{1355}\x{1274}\x{121d}\x{1260}\x{122d}","\x{12a6}\x{12ad}\x{1270}\x{12cd}\x{1260}\x{122d}","\x{1296}\x{126c}\x{121d}\x{1260}\x{122d}","\x{12f2}\x{1234}\x{121d}\x{1260}\x{122d}");@DoWs=map {substr($_,0,3)}@DoW;@MoYs=map {substr($_,0,3)}@MoY;@AMPM=("\x{1320}\x{12cb}\x{1275}","\x{12a8}\x{1230}\x{12d3}\x{1275}");@Dsuf=("\x{129b}" x 31)}else {@DoW=("እሑድ","ሰኞ","ማክሰኞ","ረቡዕ","ሐሙስ","ዓርብ","ቅዳሜ");@MoY=("ጃንዩወሪ","ፌብሩወሪ","ማርች","ኤፕረል","ሜይ","ጁን","ጁላይ","ኦገስት","ሴፕቴምበር","ኦክተውበር","ኖቬምበር","ዲሴምበር");@DoWs=map {substr($_,0,9)}@DoW;@MoYs=map {substr($_,0,9)}@MoY;@AMPM=("ጠዋት","ከሰዓት");@Dsuf=("ኛ" x 31)}@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}1;
DATE_LANGUAGE_AMHARIC

$fatpacked{"Date/Language/Austrian.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_AUSTRIAN';
  package Date::Language::Austrian;use Date::Language ();use vars qw(@ISA @DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION);@ISA=qw(Date::Language);$VERSION="1.01";@MoY=qw(Jnner Feber Mrz April Mai Juni Juli August September Oktober November Dezember);@MoYs=qw(Jn Feb Mr Apr Mai Jun Jul Aug Sep Oct Nov Dez);@DoW=qw(Sonntag Montag Dienstag Mittwoch Donnerstag Freitag Samstag);@DoWs=qw(Son Mon Die Mit Don Fre Sam);use Date::Language::English ();@AMPM=@{Date::Language::English::AMPM};@Dsuf=@{Date::Language::English::Dsuf};@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}1;
DATE_LANGUAGE_AUSTRIAN

$fatpacked{"Date/Language/Brazilian.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_BRAZILIAN';
  package Date::Language::Brazilian;use Date::Language ();use vars qw(@ISA @DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION);@ISA=qw(Date::Language);$VERSION="1.01";@DoW=qw(Domingo Segunda Tera Quarta Quinta Sexta Sbado);@MoY=qw(Janeiro Fevereiro Maro Abril Maio Junho Julho Agosto Setembro Outubro Novembro Dezembro);@DoWs=map {substr($_,0,3)}@DoW;@MoYs=map {substr($_,0,3)}@MoY;@AMPM=qw(AM PM);@Dsuf=(qw(mo ro do ro to to to mo vo no))x 3;@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}1;
DATE_LANGUAGE_BRAZILIAN

$fatpacked{"Date/Language/Bulgarian.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_BULGARIAN';
  package Date::Language::Bulgarian;use strict;use warnings;use utf8;use base qw(Date::Language);our (@DoW,@DoWs,@MoY,@MoYs,@AMPM,@Dsuf,%MoY,%DoW,$VERSION);$VERSION="1.01";@DoW=qw(неделя понеделник вторник сряда четвъртък петък събота);@MoY=qw(януари февруари март април май юни юли август септември октомври ноември декември);@DoWs=qw(нд пн вт ср чт пт сб);@MoYs=map {substr($_,0,3)}@MoY;@AMPM=qw(AM PM);@Dsuf=(qw(ти ви ри ти ти ти ти ми ми ти))x 3;@Dsuf[11,12,13]=qw(ти ти ти);@Dsuf[30,31]=qw(ти ви);@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}sub format_o {($_[0]->[3]<10?' ':'').$_[0]->[3].$Dsuf[$_[0]->[3]]}1;
DATE_LANGUAGE_BULGARIAN

$fatpacked{"Date/Language/Chinese.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_CHINESE';
  package Date::Language::Chinese;use Date::Language ();use vars qw(@ISA @DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION);@ISA=qw(Date::Language);$VERSION="1.00";@DoW=qw(星期日 星期一 星期二 星期三 星期四 星期五 星期 );@MoY=qw(一月 二月 三月 四月 五月  月 七月  月 九月 十月 十一月 十二月);@DoWs=map {$_}@DoW;@MoYs=map {$_}@MoY;@AMPM=qw(上午 下午);@Dsuf=(qw(日 日 日 日 日 日 日 日 日 日))x 3;@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}sub format_o {sprintf("%2d%s",$_[0]->[3],"日")}1;
DATE_LANGUAGE_CHINESE

$fatpacked{"Date/Language/Chinese_GB.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_CHINESE_GB';
  package Date::Language::Chinese_GB;use Date::Language ();use vars qw(@ISA @DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION);@ISA=qw(Date::Language);$VERSION="1.01";@DoW=qw( һ ڶ    );@MoY=qw(һ         ʮ ʮһ ʮ);@DoWs=map {$_}@DoW;@MoYs=map {$_}@MoY;@AMPM=qw( );@Dsuf=(qw(         ))x 3;@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}sub format_o {sprintf("%2d%s",$_[0]->[3],"")}1;
DATE_LANGUAGE_CHINESE_GB

$fatpacked{"Date/Language/Czech.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_CZECH';
  package Date::Language::Czech;use vars qw(@ISA @DoW @DoWs @MoY @MoYs @MoY2 @AMPM %MoY %DoW $VERSION);@ISA=qw(Date::Language Date::Format::Generic);$VERSION="1.01";@MoY=qw(leden nor bezen duben kvten erven ervenec srpen z jen listopad prosinec);@MoYs=qw(led nor be dub kv vn ec srp z j lis pro);@MoY2=@MoY;for (@MoY2){s!en$!na! or s!ec$!ce! or s!ad$!adu! or s!or$!ora!}@DoW=qw(nedle pondl ter steda tvrtek ptek sobota);@DoWs=qw(Ne Po t St t P So);@AMPM=qw(dop. odp.);@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}sub format_d {$_[0]->[3]}sub format_m {$_[0]->[4]+ 1}sub format_o {$_[0]->[3].'.'}sub format_Q {$MoY2[$_[0]->[4]]}sub time2str {my$ref=shift;my@a=@_;$a[0]=~ s/(%[do]\.?\s?)%B/$1%Q/;$ref->SUPER::time2str(@a)}sub strftime {my$ref=shift;my@a=@_;$a[0]=~ s/(%[do]\.?\s?)%B/$1%Q/;$ref->SUPER::time2str(@a)}1;
DATE_LANGUAGE_CZECH

$fatpacked{"Date/Language/Danish.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_DANISH';
  package Date::Language::Danish;use Date::Language ();use vars qw(@ISA @DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION);@ISA=qw(Date::Language);$VERSION="1.01";@MoY=qw(Januar Februar Marts April Maj Juni Juli August September Oktober November December);@MoYs=qw(Jan Feb Mar Apr Maj Jun Jul Aug Sep Okt Nov Dec);@DoW=qw(Sndag Mandag Tirsdag Onsdag Torsdag Fredag Lrdag Sndag);@DoWs=qw(Sn Man Tir Ons Tor Fre Lr Sn);use Date::Language::English ();@AMPM=@{Date::Language::English::AMPM};@Dsuf=@{Date::Language::English::Dsuf};@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}1;
DATE_LANGUAGE_DANISH

$fatpacked{"Date/Language/Dutch.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_DUTCH';
  package Date::Language::Dutch;use Date::Language ();use vars qw(@ISA @DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION);@ISA=qw(Date::Language);$VERSION="1.02";@MoY=qw(januari februari maart april mei juni juli augustus september oktober november december);@MoYs=map(substr($_,0,3),@MoY);$MoYs[2]='mrt';@DoW=map($_ ."dag",qw(zon maan dins woens donder vrij zater));@DoWs=map(substr($_,0,2),@DoW);@AMPM=qw(VM NM);@Dsuf=('e')x 31;@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}sub format_o {sprintf("%2de",$_[0]->[3])}1;
DATE_LANGUAGE_DUTCH

$fatpacked{"Date/Language/English.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_ENGLISH';
  package Date::Language::English;use Date::Language ();use vars qw(@ISA @DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION);@ISA=qw(Date::Language);$VERSION="1.01";@DoW=qw(Sunday Monday Tuesday Wednesday Thursday Friday Saturday);@MoY=qw(January February March April May June July August September October November December);@DoWs=map {substr($_,0,3)}@DoW;@MoYs=map {substr($_,0,3)}@MoY;@AMPM=qw(AM PM);@Dsuf=(qw(th st nd rd th th th th th th))x 3;@Dsuf[11,12,13]=qw(th th th);@Dsuf[30,31]=qw(th st);@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}1;
DATE_LANGUAGE_ENGLISH

$fatpacked{"Date/Language/Finnish.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_FINNISH';
  package Date::Language::Finnish;use Date::Language ();use vars qw(@ISA @DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION);@ISA=qw(Date::Language);$VERSION="1.01";@MoY=map($_ ."kuu",qw(tammi helmi maalis huhti touko kes hein elo syys loka marras joulu));@DoW=qw(sunnuntai maanantai tiistai keskiviikko torstai perjantai lauantai);@MoYs=@MoY;@DoWs=@DoW;@Dsuf=('.')x 31;@AMPM=qw(ap ip);@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}sub format_o {sprintf("%2de",$_[0]->[3])}1;
DATE_LANGUAGE_FINNISH

$fatpacked{"Date/Language/French.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_FRENCH';
  package Date::Language::French;use Date::Language ();use vars qw(@ISA @DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION);@ISA=qw(Date::Language);$VERSION="1.04";@DoW=qw(dimanche lundi mardi mercredi jeudi vendredi samedi);@MoY=qw(janvier fvrier mars avril mai juin juillet aot septembre octobre novembre dcembre);@DoWs=map {substr($_,0,3)}@DoW;@MoYs=map {substr($_,0,3)}@MoY;$MoYs[6]='jul';@AMPM=qw(AM PM);@Dsuf=((qw(er e e e e e e e e e))x 3,'er');@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}1;
DATE_LANGUAGE_FRENCH

$fatpacked{"Date/Language/Gedeo.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_GEDEO';
  package Date::Language::Gedeo;use Date::Language ();use vars qw(@ISA @DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION);@ISA=qw(Date::Language);$VERSION="0.99";@DoW=qw(Sanbbattaa Sanno Masano Roobe Hamusse Arbe Qiddamme);@MoY=("Oritto","Birre'a","Onkkollessa","Saddasa","Arrasa","Qammo","Ella","Waacibajje","Canissa","Addolessa","Bittitotessa","Hegeya");@DoWs=map {substr($_,0,3)}@DoW;$DoWs[0]="Snb";$DoWs[1]="Sno";@MoYs=map {substr($_,0,3)}@MoY;@AMPM=qw(gorsa warreti-udumma);@Dsuf=(qw(th st nd rd th th th th th th))x 3;@Dsuf[11,12,13]=qw(th th th);@Dsuf[30,31]=qw(th st);@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}1;
DATE_LANGUAGE_GEDEO

$fatpacked{"Date/Language/German.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_GERMAN';
  package Date::Language::German;use Date::Language ();use vars qw(@ISA @DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION);@ISA=qw(Date::Language);$VERSION="1.02";@MoY=qw(Januar Februar Mrz April Mai Juni Juli August September Oktober November Dezember);@MoYs=qw(Jan Feb Mr Apr Mai Jun Jul Aug Sep Okt Nov Dez);@DoW=qw(Sonntag Montag Dienstag Mittwoch Donnerstag Freitag Samstag);@DoWs=qw(Son Mon Die Mit Don Fre Sam);use Date::Language::English ();@AMPM=@{Date::Language::English::AMPM};@Dsuf=@{Date::Language::English::Dsuf};@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}sub format_o {sprintf("%2d.",$_[0]->[3])}1;
DATE_LANGUAGE_GERMAN

$fatpacked{"Date/Language/Greek.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_GREEK';
  package Date::Language::Greek;use utf8;use Date::Language ();use vars qw(@ISA @DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION);@ISA=qw(Date::Language);$VERSION="1.00";@DoW=("\x{039a}\x{03c5}\x{03c1}\x{03b9}\x{03b1}\x{03ba}\x{03ae}","\x{0394}\x{03b5}\x{03c5}\x{03c4}\x{03ad}\x{03c1}\x{03b1}","\x{03a4}\x{03c1}\x{03af}\x{03c4}\x{03b7}","\x{03a4}\x{03b5}\x{03c4}\x{03ac}\x{03c1}\x{03c4}\x{03b7}","\x{03a0}\x{03ad}\x{03bc}\x{03c0}\x{03c4}\x{03b7}","\x{03a0}\x{03b1}\x{03c1}\x{03b1}\x{03c3}\x{03ba}\x{03b5}\x{03c5}\x{03ae}","\x{03a3}\x{03ac}\x{03b2}\x{03b2}\x{03b1}\x{03c4}\x{03bf}",);@MoY=("\x{0399}\x{03b1}\x{03bd}\x{03bf}\x{03c5}\x{03b1}\x{03c1}\x{03af}\x{03bf}\x{03c5}","\x{03a6}\x{03b5}\x{03b2}\x{03c1}\x{03bf}\x{03c5}\x{03b1}\x{03c1}\x{03af}\x{03bf}\x{03c5}","\x{039c}\x{03b1}\x{03c1}\x{03c4}\x{03af}\x{03bf}\x{03c5}","\x{0391}\x{03c0}\x{03c1}\x{03b9}\x{03bb}\x{03af}\x{03c5}","\x{039c}\x{03b1}\x{0390}\x{03bf}\x{03c5}","\x{0399}\x{03bf}\x{03c5}\x{03bd}\x{03af}\x{03bf}\x{03c5}","\x{0399}\x{03bf}\x{03c5}\x{03bb}\x{03af}\x{03bf}\x{03c5}","\x{0391}\x{03c5}\x{03b3}\x{03bf}\x{03cd}\x{03c3}\x{03c4}\x{03bf}\x{03c5}","\x{03a3}\x{03b5}\x{03c0}\x{03c4}\x{03b5}\x{03bc}\x{03c4}\x{03bf}\x{03c5}","\x{039f}\x{03ba}\x{03c4}\x{03c9}\x{03b2}\x{03c1}\x{03af}\x{03bf}\x{03c5}","\x{039d}\x{03bf}\x{03b5}\x{03bc}\x{03b2}\x{03c1}\x{03af}\x{03bf}\x{03c5}","\x{0394}\x{03b5}\x{03ba}\x{03b5}\x{03bc}\x{03b2}\x{03c1}\x{03bf}\x{03c5}",);@DoWs=("\x{039a}\x{03c5}","\x{0394}\x{03b5}","\x{03a4}\x{03c1}","\x{03a4}\x{03b5}","\x{03a0}\x{03b5}","\x{03a0}\x{03b1}","\x{03a3}\x{03b1}",);@MoYs=("\x{0399}\x{03b1}\x{03bd}","\x{03a6}\x{03b5}","\x{039c}\x{03b1}\x{03c1}","\x{0391}\x{03c0}\x{03c1}","\x{039c}\x{03b1}","\x{0399}\x{03bf}\x{03c5}\x{03bd}","\x{0399}\x{03bf}\x{03c5}\x{03bb}","\x{0391}\x{03c5}\x{03b3}","\x{03a3}\x{03b5}\x{03c0}","\x{039f}\x{03ba}","\x{039d}\x{03bf}","\x{0394}\x{03b5}",);@AMPM=("\x{03c0}\x{03bc}","\x{03bc}\x{03bc}");@Dsuf=("\x{03b7}" x 31);@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_o {sprintf("%2d%s",$_[0]->[3],"\x{03b7}")}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}1;
DATE_LANGUAGE_GREEK

$fatpacked{"Date/Language/Hungarian.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_HUNGARIAN';
  package Date::Language::Hungarian;use strict;use warnings;use base "Date::Language";use vars qw(@DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION);$VERSION="1.01";@DoW=qw(Vasrnap Htf Kedd Szerda Cstrtk Pntek Szombat);@MoY=qw(Janur Februr Mrcius prilis Mjus Jnius Jlius Augusztus Szeptember Oktber November December);@DoWs=map {substr($_,0,3)}@DoW;@MoYs=map {substr($_,0,3)}@MoY;@AMPM=qw(DE. DU.);@Dsuf=(".")x 31;@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}sub format_P {lc($_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0])}sub format_o {$_[0]->[3].'.'}sub format_D {&format_y ."." .&format_m ."." .&format_d}sub format_y {sprintf("%02d",$_[0]->[5]% 100)}sub format_d {sprintf("%02d",$_[0]->[3])}sub format_m {sprintf("%02d",$_[0]->[4]+ 1)}1;
DATE_LANGUAGE_HUNGARIAN

$fatpacked{"Date/Language/Icelandic.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_ICELANDIC';
  package Date::Language::Icelandic;use Date::Language ();use vars qw(@ISA @DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION);@ISA=qw(Date::Language);$VERSION="1.01";@MoY=qw(Janar Febrar Mars Aprl Ma Jni Jli gst September Oktber Nvember Desember);@MoYs=qw(Jan Feb Mar Apr Ma Jn Jl g Sep Okt Nv Des);@DoW=qw(Sunnudagur Mnudagur rijudagur Mivikudagur Fimmtudagur Fstudagur Laugardagur Sunnudagur);@DoWs=qw(Sun Mn ri Mi Fim Fs Lau Sun);use Date::Language::English ();@AMPM=@{Date::Language::English::AMPM};@Dsuf=@{Date::Language::English::Dsuf};@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}1;
DATE_LANGUAGE_ICELANDIC

$fatpacked{"Date/Language/Italian.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_ITALIAN';
  package Date::Language::Italian;use Date::Language ();use vars qw(@ISA @DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION);@ISA=qw(Date::Language);$VERSION="1.01";@MoY=qw(Gennaio Febbraio Marzo Aprile Maggio Giugno Luglio Agosto Settembre Ottobre Novembre Dicembre);@MoYs=qw(Gen Feb Mar Apr Mag Giu Lug Ago Set Ott Nov Dic);@DoW=qw(Domenica Lunedi Martedi Mercoledi Giovedi Venerdi Sabato);@DoWs=qw(Dom Lun Mar Mer Gio Ven Sab);use Date::Language::English ();@AMPM=@{Date::Language::English::AMPM};@Dsuf=@{Date::Language::English::Dsuf};@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}1;
DATE_LANGUAGE_ITALIAN

$fatpacked{"Date/Language/Norwegian.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_NORWEGIAN';
  package Date::Language::Norwegian;use Date::Language ();use vars qw(@ISA @DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION);@ISA=qw(Date::Language);$VERSION="1.01";@MoY=qw(Januar Februar Mars April Mai Juni Juli August September Oktober November Desember);@MoYs=qw(Jan Feb Mar Apr Mai Jun Jul Aug Sep Okt Nov Des);@DoW=qw(Sndag Mandag Tirsdag Onsdag Torsdag Fredag Lrdag Sndag);@DoWs=qw(Sn Man Tir Ons Tor Fre Lr Sn);use Date::Language::English ();@AMPM=@{Date::Language::English::AMPM};@Dsuf=@{Date::Language::English::Dsuf};@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}1;
DATE_LANGUAGE_NORWEGIAN

$fatpacked{"Date/Language/Oromo.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_OROMO';
  package Date::Language::Oromo;use Date::Language ();use vars qw(@ISA @DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION);@ISA=qw(Date::Language);$VERSION="0.99";@DoW=qw(Dilbata Wiixata Qibxata Roobii Kamiisa Jimaata Sanbata);@MoY=qw(Amajjii Guraandhala Bitooteessa Elba Caamsa Waxabajjii Adooleessa Hagayya Fuulbana Onkololeessa Sadaasa Muddee);@DoWs=map {substr($_,0,3)}@DoW;@MoYs=map {substr($_,0,3)}@MoY;@AMPM=qw(WD WB);@Dsuf=(qw(th st nd rd th th th th th th))x 3;@Dsuf[11,12,13]=qw(th th th);@Dsuf[30,31]=qw(th st);@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}1;
DATE_LANGUAGE_OROMO

$fatpacked{"Date/Language/Romanian.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_ROMANIAN';
  package Date::Language::Romanian;use Date::Language ();use vars qw(@ISA @DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION);@ISA=qw(Date::Language);$VERSION="1.01";@MoY=qw(ianuarie februarie martie aprilie mai iunie iulie august septembrie octombrie noembrie decembrie);@DoW=qw(duminica luni marti miercuri joi vineri sambata);@DoWs=map {substr($_,0,3)}@DoW;@MoYs=map {substr($_,0,3)}@MoY;@AMPM=qw(AM PM);@Dsuf=('')x 31;@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}1;
DATE_LANGUAGE_ROMANIAN

$fatpacked{"Date/Language/Russian.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_RUSSIAN';
  package Date::Language::Russian;use vars qw(@ISA @DoW @DoWs @MoY @MoYs @MoY2 @AMPM %MoY %DoW $VERSION);@ISA=qw(Date::Language Date::Format::Generic);$VERSION="1.01";@MoY=qw(           );@MoY2=qw(           );@MoYs=qw(           );@DoW=qw(      );@DoWs=qw(      );@DoWs2=qw(      );@AMPM=qw( );@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}sub format_d {$_[0]->[3]}sub format_m {$_[0]->[4]+ 1}sub format_o {$_[0]->[3].'.'}sub format_Q {$MoY2[$_[0]->[4]]}sub str2time {my ($self,$value)=@_;map {$value=~s/(\s|^)$DoWs2[$_](\s)/$DoWs[$_]$2/ig}(0..6);$value=~s/(\s+|^)(\s+)/$1$2/;return$self->SUPER::str2time($value)}1;
DATE_LANGUAGE_RUSSIAN

$fatpacked{"Date/Language/Russian_cp1251.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_RUSSIAN_CP1251';
  package Date::Language::Russian_cp1251;use Date::Language ();use vars qw(@ISA @DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION);@ISA=qw(Date::Language);$VERSION="1.01";@DoW=qw(      );@MoY=qw(           );@DoWs=qw(      );@MoYs=map {substr($_,0,3)}@MoY;@AMPM=qw(AM PM);@Dsuf=('e')x 31;@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}sub format_o {sprintf("%2de",$_[0]->[3])}1;
DATE_LANGUAGE_RUSSIAN_CP1251

$fatpacked{"Date/Language/Russian_koi8r.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_RUSSIAN_KOI8R';
  package Date::Language::Russian_koi8r;use Date::Language ();use vars qw(@ISA @DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION);@ISA=qw(Date::Language);$VERSION="1.01";@DoW=qw(      );@MoY=qw(           );@DoWs=qw(      );@MoYs=map {substr($_,0,3)}@MoY;@AMPM=qw(AM PM);@Dsuf=('e')x 31;@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}sub format_o {sprintf("%2de",$_[0]->[3])}1;
DATE_LANGUAGE_RUSSIAN_KOI8R

$fatpacked{"Date/Language/Sidama.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_SIDAMA';
  package Date::Language::Sidama;use Date::Language ();use vars qw(@ISA @DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION);@ISA=qw(Date::Language);$VERSION="0.99";@DoW=qw(Sambata Sanyo Maakisanyo Roowe Hamuse Arbe Qidaame);@MoY=qw(January February March April May June July August September October November December);@DoWs=map {substr($_,0,3)}@DoW;@MoYs=map {substr($_,0,3)}@MoY;@AMPM=qw(soodo hawwaro);@Dsuf=(qw(th st nd rd th th th th th th))x 3;@Dsuf[11,12,13]=qw(th th th);@Dsuf[30,31]=qw(th st);@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}1;
DATE_LANGUAGE_SIDAMA

$fatpacked{"Date/Language/Somali.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_SOMALI';
  package Date::Language::Somali;use Date::Language ();use vars qw(@ISA @DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION);@ISA=qw(Date::Language);$VERSION="0.99";@DoW=qw(Axad Isniin Salaaso Arbaco Khamiis Jimco Sabti);@MoY=("Bisha Koobaad","Bisha Labaad","Bisha Saddexaad","Bisha Afraad","Bisha Shanaad","Bisha Lixaad","Bisha Todobaad","Bisha Sideedaad","Bisha Sagaalaad","Bisha Tobnaad","Bisha Kow iyo Tobnaad","Bisha Laba iyo Tobnaad");@DoWs=map {substr($_,0,3)}@DoW;@MoYs=("Kob","Lab","Sad","Afr","Sha","Lix","Tod","Sid","Sag","Tob","KIT","LIT");@AMPM=qw(SN GN);@Dsuf=(qw(th st nd rd th th th th th th))x 3;@Dsuf[11,12,13]=qw(th th th);@Dsuf[30,31]=qw(th st);@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}1;
DATE_LANGUAGE_SOMALI

$fatpacked{"Date/Language/Spanish.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_SPANISH';
  package Date::Language::Spanish;use Date::Language ();use vars qw(@ISA @DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION);@ISA=qw(Date::Language);$VERSION="1.00";@DoW=qw(domingo lunes martes mircoles jueves viernes sbado);@MoY=qw(enero febrero marzo abril mayo junio julio agosto septiembre octubre noviembre diciembre);@DoWs=map {substr($_,0,3)}@DoW;@MoYs=map {substr($_,0,3)}@MoY;@AMPM=qw(AM PM);@Dsuf=((qw(ro do ro to to to mo vo no mo))x 3,'ro');@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}1;
DATE_LANGUAGE_SPANISH

$fatpacked{"Date/Language/Swedish.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_SWEDISH';
  package Date::Language::Swedish;use Date::Language ();use vars qw(@ISA @DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION);@ISA=qw(Date::Language);$VERSION="1.01";@MoY=qw(januari februari mars april maj juni juli augusti september oktober november december);@MoYs=map {substr($_,0,3)}@MoY;@DoW=map($_ ."dagen",qw(sn mn tis ons tors fre lr));@DoWs=map {substr($_,0,2)}@DoW;@Dsuf=('a' x 2,'e' x 29);use Date::Language::English ();@AMPM=@{Date::Language::English::AMPM};@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}sub format_o {sprintf("%2de",$_[0]->[3])}1;
DATE_LANGUAGE_SWEDISH

$fatpacked{"Date/Language/Tigrinya.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_TIGRINYA';
  package Date::Language::Tigrinya;use Date::Language ();use vars qw(@ISA @DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION);@ISA=qw(Date::Language);$VERSION="1.00";@DoW=("\x{1230}\x{1295}\x{1260}\x{1275}","\x{1230}\x{1291}\x{12ed}","\x{1230}\x{1209}\x{1235}","\x{1228}\x{1261}\x{12d5}","\x{1213}\x{1219}\x{1235}","\x{12d3}\x{122d}\x{1262}","\x{1240}\x{12f3}\x{121d}");@MoY=("\x{1303}\x{1295}\x{12e9}\x{12c8}\x{122a}","\x{134c}\x{1265}\x{1229}\x{12c8}\x{122a}","\x{121b}\x{122d}\x{127d}","\x{12a4}\x{1355}\x{1228}\x{120d}","\x{121c}\x{12ed}","\x{1301}\x{1295}","\x{1301}\x{120b}\x{12ed}","\x{12a6}\x{1308}\x{1235}\x{1275}","\x{1234}\x{1355}\x{1274}\x{121d}\x{1260}\x{122d}","\x{12a6}\x{12ad}\x{1270}\x{12cd}\x{1260}\x{122d}","\x{1296}\x{126c}\x{121d}\x{1260}\x{122d}","\x{12f2}\x{1234}\x{121d}\x{1260}\x{122d}");@DoWs=map {substr($_,0,3)}@DoW;@MoYs=map {substr($_,0,3)}@MoY;@AMPM=("\x{1295}/\x{1230}","\x{12F5}/\x{1230}");@Dsuf=("\x{12ed}" x 31);@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}1;
DATE_LANGUAGE_TIGRINYA

$fatpacked{"Date/Language/TigrinyaEritrean.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_TIGRINYAERITREAN';
  package Date::Language::TigrinyaEritrean;use Date::Language ();use vars qw(@ISA @DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION);@ISA=qw(Date::Language);$VERSION="1.00";if ($] >= 5.006){@DoW=("\x{1230}\x{1295}\x{1260}\x{1275}","\x{1230}\x{1291}\x{12ed}","\x{1230}\x{1209}\x{1235}","\x{1228}\x{1261}\x{12d5}","\x{1213}\x{1219}\x{1235}","\x{12d3}\x{122d}\x{1262}","\x{1240}\x{12f3}\x{121d}");@MoY=("\x{1303}\x{1295}\x{12e9}\x{12c8}\x{122a}","\x{134c}\x{1265}\x{1229}\x{12c8}\x{122a}","\x{121b}\x{122d}\x{127d}","\x{12a4}\x{1355}\x{1228}\x{120d}","\x{121c}\x{12ed}","\x{1301}\x{1295}","\x{1301}\x{120b}\x{12ed}","\x{12a6}\x{1308}\x{1235}\x{1275}","\x{1234}\x{1355}\x{1274}\x{121d}\x{1260}\x{122d}","\x{12a6}\x{12ad}\x{1270}\x{12cd}\x{1260}\x{122d}","\x{1296}\x{126c}\x{121d}\x{1260}\x{122d}","\x{12f2}\x{1234}\x{121d}\x{1260}\x{122d}");@DoWs=map {substr($_,0,3)}@DoW;@MoYs=map {substr($_,0,3)}@MoY;@AMPM=("\x{1295}/\x{1230}","\x{12F5}/\x{1230}");@Dsuf=("\x{12ed}" x 31)}else {@DoW=("ሰንበት","ሰኑይ","ሰሉስ","ረቡዕ","ሓሙስ","ዓርቢ","ቀዳም");@MoY=("ጥሪ","ለካቲት","መጋቢት","ሚያዝያ","ግንቦት","ሰነ","ሓምለ","ነሓሰ","መስከረም","ጥቅምቲ","ሕዳር","ታሕሳስ");@DoWs=map {substr($_,0,9)}@DoW;@MoYs=map {substr($_,0,9)}@MoY;@AMPM=("ን/ሰ","ድ/ሰ");@Dsuf=("ይ" x 31)}@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}1;
DATE_LANGUAGE_TIGRINYAERITREAN

$fatpacked{"Date/Language/TigrinyaEthiopian.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_TIGRINYAETHIOPIAN';
  package Date::Language::TigrinyaEthiopian;use Date::Language ();use vars qw(@ISA @DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION);@ISA=qw(Date::Language);$VERSION="1.00";if ($] >= 5.006){@DoW=("\x{1230}\x{1295}\x{1260}\x{1275}","\x{1230}\x{1291}\x{12ed}","\x{1230}\x{1209}\x{1235}","\x{1228}\x{1261}\x{12d5}","\x{1213}\x{1219}\x{1235}","\x{12d3}\x{122d}\x{1262}","\x{1240}\x{12f3}\x{121d}");@MoY=("\x{1303}\x{1295}\x{12e9}\x{12c8}\x{122a}","\x{134c}\x{1265}\x{1229}\x{12c8}\x{122a}","\x{121b}\x{122d}\x{127d}","\x{12a4}\x{1355}\x{1228}\x{120d}","\x{121c}\x{12ed}","\x{1301}\x{1295}","\x{1301}\x{120b}\x{12ed}","\x{12a6}\x{1308}\x{1235}\x{1275}","\x{1234}\x{1355}\x{1274}\x{121d}\x{1260}\x{122d}","\x{12a6}\x{12ad}\x{1270}\x{12cd}\x{1260}\x{122d}","\x{1296}\x{126c}\x{121d}\x{1260}\x{122d}","\x{12f2}\x{1234}\x{121d}\x{1260}\x{122d}");@DoWs=map {substr($_,0,3)}@DoW;@MoYs=map {substr($_,0,3)}@MoY;@AMPM=("\x{1295}/\x{1230}","\x{12F5}/\x{1230}");@Dsuf=("\x{12ed}" x 31)}else {@DoW=("ሰንበት","ሰኑይ","ሰሉስ","ረቡዕ","ሓሙስ","ዓርቢ","ቀዳም");@MoY=("ጃንዩወሪ","ፌብሩወሪ","ማርች","ኤፕረል","ሜይ","ጁን","ጁላይ","ኦገስት","ሴፕቴምበር","ኦክተውበር","ኖቬምበር","ዲሴምበር");@DoWs=map {substr($_,0,9)}@DoW;@MoYs=map {substr($_,0,9)}@MoY;@AMPM=("ን/ሰ","ድ/ሰ");@Dsuf=("ይ" x 31)}@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {$_[0]->[2]>= 12 ? $AMPM[1]: $AMPM[0]}1;
DATE_LANGUAGE_TIGRINYAETHIOPIAN

$fatpacked{"Date/Language/Turkish.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_LANGUAGE_TURKISH';
  package Date::Language::Turkish;use Date::Language ();use vars qw(@ISA @DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION %DsufMAP);@ISA=qw(Date::Language);$VERSION="1.0";@DoW=qw(Pazar Pazartesi Sal aramba Perembe Cuma Cumartesi);@MoY=qw(Ocak ubat Mart Nisan Mays Haziran Temmuz Austos Eyll Ekim Kasm Aralk);@DoWs=map {substr($_,0,3)}@DoW;$DoWs[1]='Pzt';$DoWs[-1]='Cmt';@MoYs=map {substr($_,0,3)}@MoY;@AMPM=('','');%DsufMAP=((map {$_=>'inci',$_+10=>'inci',$_+20=>'inci'}1,2,5,8),(map {$_=>'nci',$_+10=>'nci',$_+20=>'nci'}7),(map {$_=>'nci',$_+10=>'nci',$_+20=>'nci'}2),(map {$_=>'nc',$_+10=>'nc',$_+20=>'nc'}3,4),(map {$_=>'uncu',$_+10=>'uncu',$_+20=>'uncu'}9),(map {$_=>'nc',$_+10=>'nc',$_+20=>'nc'}6),(map {$_=>'uncu',}10,30),20=>'nci',31=>'inci',);@Dsuf=map{$DsufMAP{$_}}sort {$a <=> $b}keys%DsufMAP;@MoY{@MoY}=(0 .. scalar(@MoY));@MoY{@MoYs}=(0 .. scalar(@MoYs));@DoW{@DoW}=(0 .. scalar(@DoW));@DoW{@DoWs}=(0 .. scalar(@DoWs));sub format_a {$DoWs[$_[0]->[6]]}sub format_A {$DoW[$_[0]->[6]]}sub format_b {$MoYs[$_[0]->[4]]}sub format_B {$MoY[$_[0]->[4]]}sub format_h {$MoYs[$_[0]->[4]]}sub format_p {''}sub format_P {''}sub format_o {sprintf("%2d%s",$_[0]->[3],$Dsuf[$_[0]->[3]-1])}1;
DATE_LANGUAGE_TURKISH

$fatpacked{"Date/Parse.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATE_PARSE';
  package Date::Parse;require 5.000;use strict;use vars qw($VERSION @ISA @EXPORT);use Time::Local;use Carp;use Time::Zone;use Exporter;@ISA=qw(Exporter);@EXPORT=qw(&strtotime &str2time &strptime);$VERSION="2.30";my%month=(january=>0,february=>1,march=>2,april=>3,may=>4,june=>5,july=>6,august=>7,september=>8,sept=>8,october=>9,november=>10,december=>11,);my%day=(sunday=>0,monday=>1,tuesday=>2,tues=>2,wednesday=>3,wednes=>3,thursday=>4,thur=>4,thurs=>4,friday=>5,saturday=>6,);my@suf=(qw(th st nd rd th th th th th th))x 3;@suf[11,12,13]=qw(th th th);map {$month{substr($_,0,3)}=$month{$_}}keys%month;map {$day{substr($_,0,3)}=$day{$_}}keys%day;my$strptime=<<'ESQ';use vars qw($day_ref $mon_ref $suf_ref $obj);sub gen_parser {local($day_ref,$mon_ref,$suf_ref,$obj)=@_;if($obj){my$obj_strptime=$strptime;substr($obj_strptime,index($strptime,"sub")+6,0)=<<'ESQ';my$sub=eval "$obj_strptime" or die $@;return$sub}eval "$strptime" or die $@}*strptime=gen_parser(\%day,\%month,\@suf);sub str2time {my@t=strptime(@_);return undef unless@t;my($ss,$mm,$hh,$day,$month,$year,$zone)=@t;my@lt=localtime(time);$hh ||= 0;$mm ||= 0;$ss ||= 0;my$frac=$ss - int($ss);$ss=int$ss;$month=$lt[4]unless(defined$month);$day=$lt[3]unless(defined$day);$year=($month > $lt[4])? ($lt[5]- 1): $lt[5]unless(defined$year);return undef unless($month <= 11 && $day >= 1 && $day <= 31 && $hh <= 23 && $mm <= 59 && $ss <= 59);my$result;if (defined$zone){$result=eval {local$SIG{__DIE__}=sub {};timegm($ss,$mm,$hh,$day,$month,$year)};return undef if!defined$result or $result==-1 && join("",$ss,$mm,$hh,$day,$month,$year)ne "595923311169";$result -= $zone}else {$result=eval {local$SIG{__DIE__}=sub {};timelocal($ss,$mm,$hh,$day,$month,$year)};return undef if!defined$result or $result==-1 && join("",$ss,$mm,$hh,$day,$month,$year)ne join("",(localtime(-1))[0..5])}return$result + $frac}1;
   my %month = map { lc $_ } %$mon_ref;
   my $daypat = join("|", map { lc $_ } reverse sort keys %$day_ref);
   my $monpat = join("|", reverse sort keys %month);
   my $sufpat = join("|", reverse sort map { lc $_ } @$suf_ref);
  
   my %ampm = (
  	'a' => 0,  # AM
  	'p' => 12, # PM
  	);
  
   my($AM, $PM) = (0,12);
  
  sub {
  
    my $dtstr = lc shift;
    my $merid = 24;
  
    my($year,$month,$day,$hh,$mm,$ss,$zone,$dst,$frac);
  
    $zone = tz_offset(shift) if @_;
  
    1 while $dtstr =~ s#\([^\(\)]*\)# #o;
  
    $dtstr =~ s#(\A|\n|\Z)# #sog;
  
    # ignore day names
    $dtstr =~ s#([\d\w\s])[\.\,]\s#$1 #sog;
    $dtstr =~ s/,/ /g;
    $dtstr =~ s#($daypat)\s*(den\s)?\b# #o;
    # Time: 12:00 or 12:00:00 with optional am/pm
  
    return unless $dtstr =~ /\S/;
    
    if ($dtstr =~ s/\s(\d{4})([-:]?)(\d\d?)\2(\d\d?)(?:[-Tt ](\d\d?)(?:([-:]?)(\d\d?)(?:\6(\d\d?)(?:[.,](\d+))?)?)?)?(?=\D)/ /) {
      ($year,$month,$day,$hh,$mm,$ss,$frac) = ($1,$3-1,$4,$5,$7,$8,$9);
    }
  
    unless (defined $hh) {
      if ($dtstr =~ s#[:\s](\d\d?):(\d\d?)(:(\d\d?)(?:\.\d+)?)?(z)?\s*(?:([ap])\.?m?\.?)?\s# #o) {
        ($hh,$mm,$ss) = ($1,$2,$4);
        $zone = 0 if $5;
        $merid = $ampm{$6} if $6;
      }
  
      # Time: 12 am
      
      elsif ($dtstr =~ s#\s(\d\d?)\s*([ap])\.?m?\.?\s# #o) {
        ($hh,$mm,$ss) = ($1,0,0);
        $merid = $ampm{$2};
      }
    }
      
    if (defined $hh and $hh <= 12 and $dtstr =~ s# ([ap])\.?m?\.?\s# #o) {
      $merid = $ampm{$1};
    }
  
  
    unless (defined $year) {
      # Date: 12-June-96 (using - . or /)
      
      if ($dtstr =~ s#\s(\d\d?)([\-\./])($monpat)(\2(\d\d+))?\s# #o) {
        ($month,$day) = ($month{$3},$1);
        $year = $5 if $5;
      }
      
      # Date: 12-12-96 (using '-', '.' or '/' )
      
      elsif ($dtstr =~ s#\s(\d+)([\-\./])(\d\d?)(\2(\d+))?\s# #o) {
        ($month,$day) = ($1 - 1,$3);
  
        if ($5) {
  	$year = $5;
  	# Possible match for 1995-01-24 (short mainframe date format);
  	($year,$month,$day) = ($1, $3 - 1, $5) if $month > 12;
  	return if length($year) > 2 and $year < 1901;
        }
      }
      elsif ($dtstr =~ s#\s(\d+)\s*($sufpat)?\s*($monpat)# #o) {
        ($month,$day) = ($month{$3},$1);
      }
      elsif ($dtstr =~ s#($monpat)\s*(\d+)\s*($sufpat)?\s# #o) {
        ($month,$day) = ($month{$1},$2);
      }
      elsif ($dtstr =~ s#($monpat)([\/-])(\d+)[\/-]# #o) {
        ($month,$day) = ($month{$1},$3);
      }
  
      # Date: 961212
  
      elsif ($dtstr =~ s#\s(\d\d)(\d\d)(\d\d)\s# #o) {
        ($year,$month,$day) = ($1,$2-1,$3);
      }
  
      $year = $1 if !defined($year) and $dtstr =~ s#\s(\d{2}(\d{2})?)[\s\.,]# #o;
  
    }
  
    # Zone
  
    $dst = 1 if $dtstr =~ s#\bdst\b##o;
  
    if ($dtstr =~ s#\s"?([a-z]{3,4})(dst|\d+[a-z]*|_[a-z]+)?"?\s# #o) {
      $dst = 1 if $2 and $2 eq 'dst';
      $zone = tz_offset($1);
      return unless defined $zone;
    }
    elsif ($dtstr =~ s#\s([a-z]{3,4})?([\-\+]?)-?(\d\d?):?(\d\d)?(00)?\s# #o) {
      my $m = defined($4) ? "$2$4" : 0;
      my $h = "$2$3";
      $zone = defined($1) ? tz_offset($1) : 0;
      return unless defined $zone;
      $zone += 60 * ($m + (60 * $h));
    }
  
    if ($dtstr =~ /\S/) {
      # now for some dumb dates
      if ($dtstr =~ s/^\s*(ut?|z)\s*$//) {
        $zone = 0;
      }
      elsif ($dtstr =~ s#\s([a-z]{3,4})?([\-\+]?)-?(\d\d?)(\d\d)?(00)?\s# #o) {
        my $m = defined($4) ? "$2$4" : 0;
        my $h = "$2$3";
        $zone = defined($1) ? tz_offset($1) : 0;
        return unless defined $zone;
        $zone += 60 * ($m + (60 * $h));
      }
  
      return if $dtstr =~ /\S/o;
    }
  
    if (defined $hh) {
      if ($hh == 12) {
        $hh = 0 if $merid == $AM;
      }
      elsif ($merid == $PM) {
        $hh += 12;
      }
    }
  
    $year -= 1900 if defined $year && $year > 1900;
  
    $zone += 3600 if defined $zone && $dst;
    $ss += "0.$frac" if $frac;
  
    return ($ss,$mm,$hh,$day,$month,$year,$zone);
  }
  ESQ
   shift; # package
  ESQ
DATE_PARSE

$fatpacked{"DateTime.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME';
  package DateTime;use 5.008001;use strict;use warnings;use warnings::register;our$VERSION='1.21';use Carp;use DateTime::Duration;use DateTime::Helpers;use DateTime::Locale 0.41;use DateTime::TimeZone 1.74;use Params::Validate 1.03 qw(validate validate_pos UNDEF SCALAR BOOLEAN HASHREF OBJECT);use POSIX qw(floor);use Try::Tiny;{my$loaded=0;unless ($ENV{PERL_DATETIME_PP}){try {require XSLoader;XSLoader::load(__PACKAGE__,exists$DateTime::{VERSION}&& ${$DateTime::{VERSION}}? ${$DateTime::{VERSION}}: 42);$loaded=1;$DateTime::IsPurePerl=0}catch {die $_ if $_ && $_ !~ /object version|loadable object/}}if ($loaded){require DateTime::PPExtra unless defined&DateTime::_normalize_tai_seconds}else {require DateTime::PP}}use overload ('fallback'=>1,'<=>'=>'_compare_overload','cmp'=>'_string_compare_overload','""'=>'_stringify','-'=>'_subtract_overload','+'=>'_add_overload','eq'=>'_string_equals_overload','ne'=>'_string_not_equals_overload',);require DateTime::Infinite;use constant MAX_NANOSECONDS=>1_000_000_000;use constant INFINITY=>(100**100**100**100);use constant NEG_INFINITY=>-1 * (100**100**100**100);use constant NAN=>INFINITY - INFINITY;use constant SECONDS_PER_DAY=>86400;use constant duration_class=>'DateTime::Duration';my (@MonthLengths,@LeapYearMonthLengths);BEGIN {@MonthLengths=(31,28,31,30,31,30,31,31,30,31,30,31);@LeapYearMonthLengths=@MonthLengths;$LeapYearMonthLengths[1]++}{my$DefaultLocale;sub DefaultLocale {my$class=shift;if (@_){my$lang=shift;$DefaultLocale=DateTime::Locale->load($lang)}return$DefaultLocale}*DefaultLanguage=\&DefaultLocale}__PACKAGE__->DefaultLocale('en_US');my$BasicValidate={year=>{type=>SCALAR,callbacks=>{'is an integer'=>sub {$_[0]=~ /^-?\d+$/}},},month=>{type=>SCALAR,default=>1,callbacks=>{'an integer between 1 and 12'=>sub {$_[0]=~ /^\d+$/ && $_[0]>= 1 && $_[0]<= 12}},},day=>{type=>SCALAR,default=>1,callbacks=>{'an integer which is a possible valid day of month'=>sub {$_[0]=~ /^\d+$/ && $_[0]>= 1 && $_[0]<= 31}},},hour=>{type=>SCALAR,default=>0,callbacks=>{'an integer between 0 and 23'=>sub {$_[0]=~ /^\d+$/ && $_[0]>= 0 && $_[0]<= 23},},},minute=>{type=>SCALAR,default=>0,callbacks=>{'an integer between 0 and 59'=>sub {$_[0]=~ /^\d+$/ && $_[0]>= 0 && $_[0]<= 59},},},second=>{type=>SCALAR,default=>0,callbacks=>{'an integer between 0 and 61'=>sub {$_[0]=~ /^\d+$/ && $_[0]>= 0 && $_[0]<= 61},},},nanosecond=>{type=>SCALAR,default=>0,callbacks=>{'a positive integer'=>sub {$_[0]=~ /^\d+$/ && $_[0]>= 0},}},locale=>{type=>SCALAR | OBJECT,default=>undef },language=>{type=>SCALAR | OBJECT,optional=>1 },formatter=>{type=>UNDEF | SCALAR | OBJECT,optional=>1,callbacks=>{'can format_datetime'=>sub {defined $_[0]? $_[0]->can('format_datetime'): 1},},},};my$NewValidate={%$BasicValidate,time_zone=>{type=>SCALAR | OBJECT,default=>'floating' },};sub new {my$class=shift;my%p=validate(@_,$NewValidate);Carp::croak("Invalid day of month (day = $p{day} - month = $p{month} - year = $p{year})\n")if$p{day}> 28 && $p{day}> $class->_month_length($p{year},$p{month});return$class->_new(%p)}sub _new {my$class=shift;my%p=@_;Carp::croak('Constructor called with reference, we expected a package')if ref$class;$p{month}=1 unless exists$p{month};$p{day}=1 unless exists$p{day};$p{hour}=0 unless exists$p{hour};$p{minute}=0 unless exists$p{minute};$p{second}=0 unless exists$p{second};$p{nanosecond}=0 unless exists$p{nanosecond};$p{time_zone}='floating' unless exists$p{time_zone};my$self=bless {},$class;$p{locale}=delete$p{language}if exists$p{language};$self->_set_locale($p{locale});$self->{tz}=(ref$p{time_zone}? $p{time_zone}: DateTime::TimeZone->new(name=>$p{time_zone}));$self->{local_rd_days}=$class->_ymd2rd(@p{qw(year month day)});$self->{local_rd_secs}=$class->_time_as_seconds(@p{qw(hour minute second)});$self->{offset_modifier}=0;$self->{rd_nanosecs}=$p{nanosecond};$self->{formatter}=$p{formatter};$self->_normalize_nanoseconds($self->{local_rd_secs},$self->{rd_nanosecs});$self->{utc_year}=$p{year}+ 1;$self->_maybe_future_dst_warning($p{year},$p{time_zone});$self->_calc_utc_rd;$self->_handle_offset_modifier($p{second});$self->_calc_local_rd;if ($p{second}> 59){if ($self->{tz}->is_floating || ($self->{utc_rd_secs}- 86399 < $p{second}- 59)){Carp::croak("Invalid second value ($p{second})\n")}}return$self}sub _set_locale {my$self=shift;my$locale=shift;if (defined$locale && ref$locale){$self->{locale}=$locale}else {$self->{locale}=$locale ? DateTime::Locale->load($locale): $self->DefaultLocale()}return}sub _new_from_self {my$self=shift;my%p=@_;my%old=map {$_=>$self->$_()}qw(year month day hour minute second nanosecond locale time_zone);$old{formatter}=$self->formatter()if defined$self->formatter();my$method=delete$p{_skip_validation}? '_new' : 'new';return (ref$self)->$method(%old,%p)}sub _handle_offset_modifier {my$self=shift;$self->{offset_modifier}=0;return if$self->{tz}->is_floating;my$second=shift;my$utc_is_valid=shift;my$utc_rd_days=$self->{utc_rd_days};my$offset =$utc_is_valid ? $self->offset : $self->_offset_for_local_datetime;if ($offset >= 0 && $self->{local_rd_secs}>= $offset){if ($second < 60 && $offset > 0){$self->{offset_modifier}=$self->_day_length($utc_rd_days - 1)- SECONDS_PER_DAY;$self->{local_rd_secs}+= $self->{offset_modifier}}elsif ($second==60 && (($self->{local_rd_secs}==$offset && $offset > 0)|| ($offset==0 && $self->{local_rd_secs}> 86399))){my$mod =$self->_day_length($utc_rd_days - 1)- SECONDS_PER_DAY;unless ($mod==0){$self->{utc_rd_secs}-= $mod;$self->_normalize_seconds}}}elsif ($offset < 0 && $self->{local_rd_secs}>= SECONDS_PER_DAY + $offset){if ($second < 60){$self->{offset_modifier}=$self->_day_length($utc_rd_days - 1)- SECONDS_PER_DAY;$self->{local_rd_secs}+= $self->{offset_modifier}}elsif ($second==60 && $self->{local_rd_secs}==SECONDS_PER_DAY + $offset){my$mod =$self->_day_length($utc_rd_days - 1)- SECONDS_PER_DAY;unless ($mod==0){$self->{utc_rd_secs}-= $mod;$self->_normalize_seconds}}}}sub _calc_utc_rd {my$self=shift;delete$self->{utc_c};if ($self->{tz}->is_utc || $self->{tz}->is_floating){$self->{utc_rd_days}=$self->{local_rd_days};$self->{utc_rd_secs}=$self->{local_rd_secs}}else {my$offset=$self->_offset_for_local_datetime;$offset += $self->{offset_modifier};$self->{utc_rd_days}=$self->{local_rd_days};$self->{utc_rd_secs}=$self->{local_rd_secs}- $offset}$self->_normalize_tai_seconds($self->{utc_rd_days},$self->{utc_rd_secs})}sub _normalize_seconds {my$self=shift;return if$self->{utc_rd_secs}>= 0 && $self->{utc_rd_secs}<= 86399;if ($self->{tz}->is_floating){$self->_normalize_tai_seconds($self->{utc_rd_days},$self->{utc_rd_secs})}else {$self->_normalize_leap_seconds($self->{utc_rd_days},$self->{utc_rd_secs})}}sub _calc_local_rd {my$self=shift;delete$self->{local_c};if ($self->{tz}->is_utc || $self->{tz}->is_floating){$self->{local_rd_days}=$self->{utc_rd_days};$self->{local_rd_secs}=$self->{utc_rd_secs}}else {my$offset=$self->offset;$self->{local_rd_days}=$self->{utc_rd_days};$self->{local_rd_secs}=$self->{utc_rd_secs}+ $offset;$self->_normalize_tai_seconds($self->{local_rd_days},$self->{local_rd_secs});$self->{local_rd_secs}+= $self->{offset_modifier}}$self->_calc_local_components}sub _calc_local_components {my$self=shift;@{$self->{local_c}}{qw(year month day day_of_week day_of_year quarter day_of_quarter) }=$self->_rd2ymd($self->{local_rd_days},1);@{$self->{local_c}}{qw(hour minute second)}=$self->_seconds_as_components($self->{local_rd_secs},$self->{utc_rd_secs},$self->{offset_modifier})}{my$spec={epoch=>{regex=>qr/^-?(?:\d+(?:\.\d*)?|\.\d+)$/ },locale=>{type=>SCALAR | OBJECT,optional=>1 },language=>{type=>SCALAR | OBJECT,optional=>1 },time_zone=>{type=>SCALAR | OBJECT,optional=>1 },formatter=>{type=>SCALAR | OBJECT,can=>'format_datetime',optional=>1 },};sub from_epoch {my$class=shift;my%p=validate(@_,$spec);my%args;my ($int,$dec)=$p{epoch}=~ /^(-?\d+)?(\.\d+)?/;$int ||= 0;$args{nanosecond}=int($dec * MAX_NANOSECONDS)if$dec;@args{qw(second minute hour day month year)}=(gmtime($int))[0 .. 5 ];$args{year}+= 1900;$args{month}++;my$self=$class->_new(%p,%args,time_zone=>'UTC');my$tz=$p{time_zone};$self->_maybe_future_dst_warning($self->year(),$p{time_zone});$self->set_time_zone($p{time_zone})if exists$p{time_zone};return$self}}sub now {my$class=shift;return$class->from_epoch(epoch=>$class->_core_time(),@_)}sub _maybe_future_dst_warning {shift;my$year=shift;my$tz=shift;return unless$year >= 5000 && $tz;my$tz_name=ref$tz ? $tz->name(): $tz;return if$tz_name eq 'floating' || $tz_name eq 'UTC';warnings::warnif("You are creating a DateTime object with a far future year ($year) and a time zone ($tz_name)." .' If the time zone you specified has future DST changes this will be very slow.')}sub _core_time {return scalar time}sub today {shift->now(@_)->truncate(to=>'day')}{my$spec={object=>{type=>OBJECT,can=>'utc_rd_values',},locale=>{type=>SCALAR | OBJECT,optional=>1 },language=>{type=>SCALAR | OBJECT,optional=>1 },formatter=>{type=>SCALAR | OBJECT,can=>'format_datetime',optional=>1 },};sub from_object {my$class=shift;my%p=validate(@_,$spec);my$object=delete$p{object};my ($rd_days,$rd_secs,$rd_nanosecs)=$object->utc_rd_values;$rd_nanosecs ||= 0;my$leap_seconds=0;if ($object->can('time_zone')&&!$object->time_zone->is_floating && $rd_secs > 86399 && $rd_secs <= $class->_day_length($rd_days)){$leap_seconds=$rd_secs - 86399;$rd_secs -= $leap_seconds}my%args;@args{qw(year month day)}=$class->_rd2ymd($rd_days);@args{qw(hour minute second)}=$class->_seconds_as_components($rd_secs);$args{nanosecond}=$rd_nanosecs;$args{second}+= $leap_seconds;my$new=$class->new(%p,%args,time_zone=>'UTC');if ($object->can('time_zone')){$new->set_time_zone($object->time_zone)}else {$new->set_time_zone('floating')}return$new}}my$LastDayOfMonthValidate={%$NewValidate};for (keys %$LastDayOfMonthValidate){my%copy=%{$LastDayOfMonthValidate->{$_}};delete$copy{default};$copy{optional}=1 unless $_ eq 'year' || $_ eq 'month';$LastDayOfMonthValidate->{$_}=\%copy}sub last_day_of_month {my$class=shift;my%p=validate(@_,$LastDayOfMonthValidate);my$day=$class->_month_length($p{year},$p{month});return$class->_new(%p,day=>$day)}sub _month_length {return ($_[0]->_is_leap_year($_[1])? $LeapYearMonthLengths[$_[2]- 1 ]: $MonthLengths[$_[2]- 1 ])}my$FromDayOfYearValidate={%$NewValidate};for (keys %$FromDayOfYearValidate){next if $_ eq 'month' || $_ eq 'day';my%copy=%{$FromDayOfYearValidate->{$_}};delete$copy{default};$copy{optional}=1 unless $_ eq 'year' || $_ eq 'month';$FromDayOfYearValidate->{$_}=\%copy}$FromDayOfYearValidate->{day_of_year}={type=>SCALAR,callbacks=>{'is between 1 and 366'=>sub {$_[0]>= 1 && $_[0]<= 366}}};sub from_day_of_year {my$class=shift;my%p=validate(@_,$FromDayOfYearValidate);Carp::croak("$p{year} is not a leap year.\n")if$p{day_of_year}==366 &&!$class->_is_leap_year($p{year});my$month=1;my$day=delete$p{day_of_year};if ($day > 31){my$length=$class->_month_length($p{year},$month);while ($day > $length){$day -= $length;$month++;$length=$class->_month_length($p{year},$month)}}return$class->_new(%p,month=>$month,day=>$day,)}sub formatter {$_[0]->{formatter}}sub clone {bless {%{$_[0]}},ref $_[0]}sub year {Carp::carp('year() is a read-only accessor')if @_ > 1;return $_[0]->{local_c}{year}}sub ce_year {$_[0]->{local_c}{year}<= 0 ? $_[0]->{local_c}{year}- 1 : $_[0]->{local_c}{year}}sub era_name {$_[0]->{locale}->era_wide->[$_[0]->_era_index()]}sub era_abbr {$_[0]->{locale}->era_abbreviated->[$_[0]->_era_index()]}*era=\&era_abbr;sub _era_index {$_[0]->{local_c}{year}<= 0 ? 0 : 1}sub christian_era {$_[0]->ce_year > 0 ? 'AD' : 'BC'}sub secular_era {$_[0]->ce_year > 0 ? 'CE' : 'BCE'}sub year_with_era {(abs $_[0]->ce_year).$_[0]->era_abbr}sub year_with_christian_era {(abs $_[0]->ce_year).$_[0]->christian_era}sub year_with_secular_era {(abs $_[0]->ce_year).$_[0]->secular_era}sub month {Carp::carp('month() is a read-only accessor')if @_ > 1;return $_[0]->{local_c}{month}}*mon=\&month;sub month_0 {$_[0]->{local_c}{month}- 1}*mon_0=\&month_0;sub month_name {$_[0]->{locale}->month_format_wide->[$_[0]->month_0()]}sub month_abbr {$_[0]->{locale}->month_format_abbreviated->[$_[0]->month_0()]}sub day_of_month {Carp::carp('day_of_month() is a read-only accessor')if @_ > 1;$_[0]->{local_c}{day}}*day=\&day_of_month;*mday=\&day_of_month;sub weekday_of_month {use integer;(($_[0]->day - 1)/ 7)+ 1}sub quarter {$_[0]->{local_c}{quarter}}sub quarter_name {$_[0]->{locale}->quarter_format_wide->[$_[0]->quarter_0()]}sub quarter_abbr {$_[0]->{locale}->quarter_format_abbreviated->[$_[0]->quarter_0()]}sub quarter_0 {$_[0]->{local_c}{quarter}- 1}sub day_of_month_0 {$_[0]->{local_c}{day}- 1}*day_0=\&day_of_month_0;*mday_0=\&day_of_month_0;sub day_of_week {$_[0]->{local_c}{day_of_week}}*wday=\&day_of_week;*dow=\&day_of_week;sub day_of_week_0 {$_[0]->{local_c}{day_of_week}- 1}*wday_0=\&day_of_week_0;*dow_0=\&day_of_week_0;sub local_day_of_week {my$self=shift;return 1 + ($self->day_of_week - $self->{locale}->first_day_of_week)% 7}sub day_name {$_[0]->{locale}->day_format_wide->[$_[0]->day_of_week_0()]}sub day_abbr {$_[0]->{locale}->day_format_abbreviated->[$_[0]->day_of_week_0()]}sub day_of_quarter {$_[0]->{local_c}{day_of_quarter}}*doq=\&day_of_quarter;sub day_of_quarter_0 {$_[0]->day_of_quarter - 1}*doq_0=\&day_of_quarter_0;sub day_of_year {$_[0]->{local_c}{day_of_year}}*doy=\&day_of_year;sub day_of_year_0 {$_[0]->{local_c}{day_of_year}- 1}*doy_0=\&day_of_year_0;sub am_or_pm {$_[0]->{locale}->am_pm_abbreviated->[$_[0]->hour()< 12 ? 0 : 1 ]}sub ymd {my ($self,$sep)=@_;$sep='-' unless defined$sep;return sprintf('%0.4d%s%0.2d%s%0.2d',$self->year,$sep,$self->{local_c}{month},$sep,$self->{local_c}{day})}*date=\&ymd;sub mdy {my ($self,$sep)=@_;$sep='-' unless defined$sep;return sprintf('%0.2d%s%0.2d%s%0.4d',$self->{local_c}{month},$sep,$self->{local_c}{day},$sep,$self->year)}sub dmy {my ($self,$sep)=@_;$sep='-' unless defined$sep;return sprintf('%0.2d%s%0.2d%s%0.4d',$self->{local_c}{day},$sep,$self->{local_c}{month},$sep,$self->year)}sub hour {Carp::carp('hour() is a read-only accessor')if @_ > 1;return $_[0]->{local_c}{hour}}sub hour_1 {$_[0]->{local_c}{hour}==0 ? 24 : $_[0]->{local_c}{hour}}sub hour_12 {my$h=$_[0]->hour % 12;return$h ? $h : 12}sub hour_12_0 {$_[0]->hour % 12}sub minute {Carp::carp('minute() is a read-only accessor')if @_ > 1;return $_[0]->{local_c}{minute}}*min=\&minute;sub second {Carp::carp('second() is a read-only accessor')if @_ > 1;return $_[0]->{local_c}{second}}*sec=\&second;sub fractional_second {$_[0]->second + $_[0]->nanosecond / MAX_NANOSECONDS}sub nanosecond {Carp::carp('nanosecond() is a read-only accessor')if @_ > 1;return $_[0]->{rd_nanosecs}}sub millisecond {floor($_[0]->{rd_nanosecs}/ 1000000)}sub microsecond {floor($_[0]->{rd_nanosecs}/ 1000)}sub leap_seconds {my$self=shift;return 0 if$self->{tz}->is_floating;return DateTime->_accumulated_leap_seconds($self->{utc_rd_days})}sub _stringify {my$self=shift;return$self->iso8601 unless$self->{formatter};return$self->{formatter}->format_datetime($self)}sub hms {my ($self,$sep)=@_;$sep=':' unless defined$sep;return sprintf('%0.2d%s%0.2d%s%0.2d',$self->{local_c}{hour},$sep,$self->{local_c}{minute},$sep,$self->{local_c}{second})}*DateTime::time=\&hms;sub iso8601 {join 'T',$_[0]->ymd('-'),$_[0]->hms(':')}*datetime=\&iso8601;sub is_leap_year {$_[0]->_is_leap_year($_[0]->year)}sub week {my$self=shift;unless (defined$self->{local_c}{week_year}){my$jan_one_dow_m1 =(($self->_ymd2rd($self->year,1,1)+ 6)% 7);$self->{local_c}{week_number}=int((($self->day_of_year - 1)+ $jan_one_dow_m1)/ 7);$self->{local_c}{week_number}++ if$jan_one_dow_m1 < 4;if ($self->{local_c}{week_number}==0){$self->{local_c}{week_year}=$self->year - 1;$self->{local_c}{week_number}=$self->_weeks_in_year($self->{local_c}{week_year})}elsif ($self->{local_c}{week_number}==53 && $self->_weeks_in_year($self->year)==52){$self->{local_c}{week_number}=1;$self->{local_c}{week_year}=$self->year + 1}else {$self->{local_c}{week_year}=$self->year}}return @{$self->{local_c}}{'week_year','week_number' }}sub _weeks_in_year {my$self=shift;my$year=shift;my$dow=$self->_ymd2rd($year,1,1)% 7;return ($dow==4 || ($dow==3 && $self->_is_leap_year($year)))? 53 : 52}sub week_year {($_[0]->week)[0]}sub week_number {($_[0]->week)[1]}sub week_of_month {my$self=shift;my$thu=$self->day + 4 - $self->day_of_week;return int(($thu + 6)/ 7)}sub time_zone {Carp::carp('time_zone() is a read-only accessor')if @_ > 1;return $_[0]->{tz}}sub offset {$_[0]->{tz}->offset_for_datetime($_[0])}sub _offset_for_local_datetime {$_[0]->{tz}->offset_for_local_datetime($_[0])}sub is_dst {$_[0]->{tz}->is_dst_for_datetime($_[0])}sub time_zone_long_name {$_[0]->{tz}->name}sub time_zone_short_name {$_[0]->{tz}->short_name_for_datetime($_[0])}sub locale {Carp::carp('locale() is a read-only accessor')if @_ > 1;return $_[0]->{locale}}*language=\&locale;sub utc_rd_values {@{$_[0]}{'utc_rd_days','utc_rd_secs','rd_nanosecs' }}sub local_rd_values {@{$_[0]}{'local_rd_days','local_rd_secs','rd_nanosecs' }}sub utc_rd_as_seconds {($_[0]->{utc_rd_days}* SECONDS_PER_DAY)+ $_[0]->{utc_rd_secs}}sub local_rd_as_seconds {($_[0]->{local_rd_days}* SECONDS_PER_DAY)+ $_[0]->{local_rd_secs}}sub mjd {my$self=shift;my$mjd=$self->{utc_rd_days}- 678_576;my$day_length=$self->_day_length($self->{utc_rd_days});return ($mjd + ($self->{utc_rd_secs}/ $day_length)+ ($self->{rd_nanosecs}/ $day_length / MAX_NANOSECONDS))}sub jd {$_[0]->mjd + 2_400_000.5}{my%strftime_patterns=('a'=>sub {$_[0]->day_abbr},'A'=>sub {$_[0]->day_name},'b'=>sub {$_[0]->month_abbr},'B'=>sub {$_[0]->month_name},'c'=>sub {$_[0]->format_cldr($_[0]->{locale}->datetime_format_default())},'C'=>sub {int($_[0]->year / 100)},'d'=>sub {sprintf('%02d',$_[0]->day_of_month)},'D'=>sub {$_[0]->strftime('%m/%d/%y')},'e'=>sub {sprintf('%2d',$_[0]->day_of_month)},'F'=>sub {$_[0]->ymd('-')},'g'=>sub {substr($_[0]->week_year,-2)},'G'=>sub {$_[0]->week_year},'H'=>sub {sprintf('%02d',$_[0]->hour)},'I'=>sub {sprintf('%02d',$_[0]->hour_12)},'j'=>sub {sprintf('%03d',$_[0]->day_of_year)},'k'=>sub {sprintf('%2d',$_[0]->hour)},'l'=>sub {sprintf('%2d',$_[0]->hour_12)},'m'=>sub {sprintf('%02d',$_[0]->month)},'M'=>sub {sprintf('%02d',$_[0]->minute)},'n'=>sub {"\n"},'N'=>\&_format_nanosecs,'p'=>sub {$_[0]->am_or_pm()},'P'=>sub {lc $_[0]->am_or_pm()},'r'=>sub {$_[0]->strftime('%I:%M:%S %p')},'R'=>sub {$_[0]->strftime('%H:%M')},'s'=>sub {$_[0]->epoch},'S'=>sub {sprintf('%02d',$_[0]->second)},'t'=>sub {"\t"},'T'=>sub {$_[0]->strftime('%H:%M:%S')},'u'=>sub {$_[0]->day_of_week},'U'=>sub {my$sun=$_[0]->day_of_year - ($_[0]->day_of_week + 7)% 7;return sprintf('%02d',int(($sun + 6)/ 7))},'V'=>sub {sprintf('%02d',$_[0]->week_number)},'w'=>sub {my$dow=$_[0]->day_of_week;return$dow % 7},'W'=>sub {my$mon=$_[0]->day_of_year - ($_[0]->day_of_week + 6)% 7;return sprintf('%02d',int(($mon + 6)/ 7))},'x'=>sub {$_[0]->format_cldr($_[0]->{locale}->date_format_default())},'X'=>sub {$_[0]->format_cldr($_[0]->{locale}->time_format_default())},'y'=>sub {sprintf('%02d',substr($_[0]->year,-2))},'Y'=>sub {return $_[0]->year},'z'=>sub {DateTime::TimeZone->offset_as_string($_[0]->offset)},'Z'=>sub {$_[0]->{tz}->short_name_for_datetime($_[0])},'%'=>sub {'%'},);$strftime_patterns{h}=$strftime_patterns{b};sub strftime {my$self=shift;my@patterns=@_;my@r;for my$p (@patterns){$p =~ s/
                      (?:
                        %\{(\w+)\}       # method name like %{day_name}
                        |
                        %([%a-zA-Z])     # single character specifier like %d
                        |
                        %(\d+)N          # special case for %N
                      )
                     /
                      ( $1
                        ? ( $self->can($1) ? $self->$1() : "\%{$1}" )
                        : $2
                        ? ( $strftime_patterns{$2} ? $strftime_patterns{$2}->($self) : "\%$2" )
                        : $3
                        ? $strftime_patterns{N}->($self, $3)
                        : ''  # this won't happen
                      )
                     /sgex;return$p unless wantarray;push@r,$p}return@r}}{my@patterns=(qr/GGGGG/=>sub {$_[0]->{locale}->era_narrow->[$_[0]->_era_index()]},qr/GGGG/=>'era_name',qr/G{1,3}/=>'era_abbr',qr/(y{3,5})/=>sub {$_[0]->_zero_padded_number($1,$_[0]->year())},qr/yy/=>sub {my$year=$_[0]->year();my$y2=substr($year,-2,2)if length$year > 2;$y2 *= -1 if$year < 0;$_[0]->_zero_padded_number('yy',$y2)},qr/y/=>sub {$_[0]->year()},qr/(u+)/=>sub {$_[0]->_zero_padded_number($1,$_[0]->year())},qr/(Y+)/=>sub {$_[0]->_zero_padded_number($1,$_[0]->week_year())},qr/QQQQ/=>'quarter_name',qr/QQQ/=>'quarter_abbr',qr/(QQ?)/=>sub {$_[0]->_zero_padded_number($1,$_[0]->quarter())},qr/qqqq/=>sub {$_[0]->{locale}->quarter_stand_alone_wide()->[$_[0]->quarter_0()]},qr/qqq/=>sub {$_[0]->{locale}->quarter_stand_alone_abbreviated()->[$_[0]->quarter_0()]},qr/(qq?)/=>sub {$_[0]->_zero_padded_number($1,$_[0]->quarter())},qr/MMMMM/=>sub {$_[0]->{locale}->month_format_narrow->[$_[0]->month_0()]},qr/MMMM/=>'month_name',qr/MMM/=>'month_abbr',qr/(MM?)/=>sub {$_[0]->_zero_padded_number($1,$_[0]->month())},qr/LLLLL/=>sub {$_[0]->{locale}->month_stand_alone_narrow->[$_[0]->month_0()]},qr/LLLL/=>sub {$_[0]->{locale}->month_stand_alone_wide->[$_[0]->month_0()]},qr/LLL/=>sub {$_[0]->{locale}->month_stand_alone_abbreviated->[$_[0]->month_0()]},qr/(LL?)/=>sub {$_[0]->_zero_padded_number($1,$_[0]->month())},qr/(ww?)/=>sub {$_[0]->_zero_padded_number($1,$_[0]->week_number())},qr/W/=>'week_of_month',qr/(dd?)/=>sub {$_[0]->_zero_padded_number($1,$_[0]->day_of_month())},qr/(D{1,3})/=>sub {$_[0]->_zero_padded_number($1,$_[0]->day_of_year())},qr/F/=>'weekday_of_month',qr/(g+)/=>sub {$_[0]->_zero_padded_number($1,$_[0]->mjd())},qr/EEEEE/=>sub {$_[0]->{locale}->day_format_narrow->[$_[0]->day_of_week_0()]},qr/EEEE/=>'day_name',qr/E{1,3}/=>'day_abbr',qr/eeeee/=>sub {$_[0]->{locale}->day_format_narrow->[$_[0]->day_of_week_0()]},qr/eeee/=>'day_name',qr/eee/=>'day_abbr',qr/(ee?)/=>sub {$_[0]->_zero_padded_number($1,$_[0]->local_day_of_week())},qr/ccccc/=>sub {$_[0]->{locale}->day_stand_alone_narrow->[$_[0]->day_of_week_0()]},qr/cccc/=>sub {$_[0]->{locale}->day_stand_alone_wide->[$_[0]->day_of_week_0()]},qr/ccc/=>sub {$_[0]->{locale}->day_stand_alone_abbreviated->[$_[0]->day_of_week_0()]},qr/(cc?)/=>sub {$_[0]->_zero_padded_number($1,$_[0]->day_of_week())},qr/a/=>'am_or_pm',qr/(hh?)/=>sub {$_[0]->_zero_padded_number($1,$_[0]->hour_12())},qr/(HH?)/=>sub {$_[0]->_zero_padded_number($1,$_[0]->hour())},qr/(KK?)/=>sub {$_[0]->_zero_padded_number($1,$_[0]->hour_12_0())},qr/(kk?)/=>sub {$_[0]->_zero_padded_number($1,$_[0]->hour_1())},qr/(jj?)/=>sub {my$h =$_[0]->{locale}->prefers_24_hour_time()? $_[0]->hour(): $_[0]->hour_12();$_[0]->_zero_padded_number($1,$h)},qr/(mm?)/=>sub {$_[0]->_zero_padded_number($1,$_[0]->minute())},qr/(ss?)/=>sub {$_[0]->_zero_padded_number($1,$_[0]->second())},qr/(S+)/=>sub {my$l=length $1;my$val=sprintf("%.${l}f",$_[0]->fractional_second()- $_[0]->second());$val =~ s/^0\.//;$val || 0},qr/A+/=>sub {($_[0]->{local_rd_secs}* 1000)+ $_[0]->millisecond()},qr/zzzz/=>sub {$_[0]->time_zone_long_name()},qr/z{1,3}/=>sub {$_[0]->time_zone_short_name()},qr/ZZZZZ/=>sub {substr(my$z =DateTime::TimeZone->offset_as_string($_[0]->offset()),-2,0,':');$z},qr/ZZZZ/=>sub {$_[0]->time_zone_short_name().DateTime::TimeZone->offset_as_string($_[0]->offset())},qr/Z{1,3}/=>sub {DateTime::TimeZone->offset_as_string($_[0]->offset())},qr/vvvv/=>sub {$_[0]->time_zone_long_name()},qr/v{1,3}/=>sub {$_[0]->time_zone_short_name()},qr/VVVV/=>sub {$_[0]->time_zone_long_name()},qr/V{1,3}/=>sub {$_[0]->time_zone_short_name()},);sub _zero_padded_number {my$self=shift;my$size=length shift;my$val=shift;return sprintf("%0${size}d",$val)}sub _space_padded_string {my$self=shift;my$size=length shift;my$val=shift;return sprintf("% ${size}s",$val)}sub format_cldr {my$self=shift;my@patterns=@_;my@r;for my$p (@patterns){$p =~ s/\G
                      (?:
                        '((?:[^']|'')*)' # quote escaped bit of text
                                         # it needs to end with one
                                         # quote not followed by
                                         # another
                        |
                        (([a-zA-Z])\3*)     # could be a pattern
                        |
                        (.)                 # anything else
                      )
                     /
                      defined $1
                      ? $1
                      : defined $2
                      ? $self->_cldr_pattern($2)
                      : defined $4
                      ? $4
                      : undef # should never get here
                     /sgex;$p =~ s/\'\'/\'/g;return$p unless wantarray;push@r,$p}return@r}sub _cldr_pattern {my$self=shift;my$pattern=shift;for (my$i=0;$i < @patterns;$i += 2 ){if ($pattern =~ /$patterns[$i]/){my$sub=$patterns[$i + 1 ];return$self->$sub()}}return$pattern}}sub _format_nanosecs {my$self=shift;my$precision=@_ ? shift : 9;my$divide_by=10**(9 - $precision);return sprintf('%0' .$precision .'u',floor($self->{rd_nanosecs}/ $divide_by))}sub epoch {my$self=shift;return$self->{utc_c}{epoch}if exists$self->{utc_c}{epoch};return$self->{utc_c}{epoch}=($self->{utc_rd_days}- 719163)* SECONDS_PER_DAY + $self->{utc_rd_secs}}sub hires_epoch {my$self=shift;my$epoch=$self->epoch;return undef unless defined$epoch;my$nano=$self->{rd_nanosecs}/ MAX_NANOSECONDS;return$epoch + $nano}sub is_finite {1}sub is_infinite {0}sub utc_year {$_[0]->{utc_year}}sub subtract_datetime {my$dt1=shift;my$dt2=shift;$dt2=$dt2->clone->set_time_zone($dt1->time_zone)unless$dt1->time_zone eq $dt2->time_zone;my ($bigger,$smaller,$negative)=($dt1 >= $dt2 ? ($dt1,$dt2,0): ($dt2,$dt1,1));my$is_floating=$dt1->time_zone->is_floating && $dt2->time_zone->is_floating;my$minute_length=60;unless ($is_floating){my ($utc_rd_days,$utc_rd_secs)=$smaller->utc_rd_values;if ($utc_rd_secs >= 86340 &&!$is_floating){$minute_length=$dt1->_day_length($utc_rd_days)- 86340}}my$bigger_min=$bigger->hour * 60 + $bigger->minute;if ($bigger->time_zone->has_dst_changes && $bigger->is_dst!=$smaller->is_dst){$bigger_min -= 60 if ($bigger->is_dst && do {my$prev_day=try {$bigger->clone->subtract(days=>1)};$prev_day &&!$prev_day->is_dst ? 1 : 0});$bigger_min += 60 if (!$bigger->is_dst && do {my$prev_day=try {$bigger->clone->subtract(days=>1)};$prev_day && $prev_day->is_dst ? 1 : 0})}my ($months,$days,$minutes,$seconds,$nanoseconds)=$dt1->_adjust_for_positive_difference($bigger->year * 12 + $bigger->month,$smaller->year * 12 + $smaller->month,$bigger->day,$smaller->day,$bigger_min,$smaller->hour * 60 + $smaller->minute,$bigger->second,$smaller->second,$bigger->nanosecond,$smaller->nanosecond,$minute_length,$dt1->_month_length($smaller->year,$smaller->month),);if ($negative){for ($months,$days,$minutes,$seconds,$nanoseconds){$_ *= -1 if $_}}return$dt1->duration_class->new(months=>$months,days=>$days,minutes=>$minutes,seconds=>$seconds,nanoseconds=>$nanoseconds,)}sub _adjust_for_positive_difference {my ($self,$month1,$month2,$day1,$day2,$min1,$min2,$sec1,$sec2,$nano1,$nano2,$minute_length,$month_length,)=@_;if ($nano1 < $nano2){$sec1--;$nano1 += MAX_NANOSECONDS}if ($sec1 < $sec2){$min1--;$sec1 += $minute_length}if ($min1 < $min2){$day1--;$min1 += 24 * 60}if ($day1 < $day2){$month1--;$day1 += $month_length}return ($month1 - $month2,$day1 - $day2,$min1 - $min2,$sec1 - $sec2,$nano1 - $nano2,)}sub subtract_datetime_absolute {my$self=shift;my$dt=shift;my$utc_rd_secs1=$self->utc_rd_as_seconds;$utc_rd_secs1 += DateTime->_accumulated_leap_seconds($self->{utc_rd_days})if!$self->time_zone->is_floating;my$utc_rd_secs2=$dt->utc_rd_as_seconds;$utc_rd_secs2 += DateTime->_accumulated_leap_seconds($dt->{utc_rd_days})if!$dt->time_zone->is_floating;my$seconds=$utc_rd_secs1 - $utc_rd_secs2;my$nanoseconds=$self->nanosecond - $dt->nanosecond;if ($nanoseconds < 0){$seconds--;$nanoseconds += MAX_NANOSECONDS}return$self->duration_class->new(seconds=>$seconds,nanoseconds=>$nanoseconds,)}sub delta_md {my$self=shift;my$dt=shift;my ($smaller,$bigger)=sort$self,$dt;my ($months,$days,undef,undef,undef)=$dt->_adjust_for_positive_difference($bigger->year * 12 + $bigger->month,$smaller->year * 12 + $smaller->month,$bigger->day,$smaller->day,0,0,0,0,0,0,60,$smaller->_month_length($smaller->year,$smaller->month),);return$self->duration_class->new(months=>$months,days=>$days)}sub delta_days {my$self=shift;my$dt=shift;my$days =abs(($self->local_rd_values)[0]- ($dt->local_rd_values)[0]);$self->duration_class->new(days=>$days)}sub delta_ms {my$self=shift;my$dt=shift;my ($smaller,$greater)=sort$self,$dt;my$days=int($greater->jd - $smaller->jd);my$dur=$greater->subtract_datetime($smaller);my%p;$p{hours}=$dur->hours + ($days * 24);$p{minutes}=$dur->minutes;$p{seconds}=$dur->seconds;return$self->duration_class->new(%p)}sub _add_overload {my ($dt,$dur,$reversed)=@_;if ($reversed){($dur,$dt)=($dt,$dur)}unless (DateTime::Helpers::isa($dur,'DateTime::Duration')){my$class=ref$dt;my$dt_string=overload::StrVal($dt);Carp::croak("Cannot add $dur to a $class object ($dt_string).\n" .' Only a DateTime::Duration object can ' ." be added to a $class object.")}return$dt->clone->add_duration($dur)}sub _subtract_overload {my ($date1,$date2,$reversed)=@_;if ($reversed){($date2,$date1)=($date1,$date2)}if (DateTime::Helpers::isa($date2,'DateTime::Duration')){my$new=$date1->clone;$new->add_duration($date2->inverse);return$new}elsif (DateTime::Helpers::isa($date2,'DateTime')){return$date1->subtract_datetime($date2)}else {my$class=ref$date1;my$dt_string=overload::StrVal($date1);Carp::croak("Cannot subtract $date2 from a $class object ($dt_string).\n" .' Only a DateTime::Duration or DateTime object can ' ." be subtracted from a $class object.")}}sub add {my$self=shift;return$self->add_duration($self->duration_class->new(@_))}sub subtract {my$self=shift;my%p=@_;my%eom;$eom{end_of_month}=delete$p{end_of_month}if exists$p{end_of_month};my$dur=$self->duration_class->new(@_)->inverse(%eom);return$self->add_duration($dur)}sub subtract_duration {return $_[0]->add_duration($_[1]->inverse)}{my@spec=({isa=>'DateTime::Duration' });sub add_duration {my$self=shift;my ($dur)=validate_pos(@_,@spec);return$self if$dur->is_zero;my%deltas=$dur->deltas;for my$val (values%deltas){my$inf;if ($val==INFINITY){$inf=DateTime::Infinite::Future->new}elsif ($val==NEG_INFINITY){$inf=DateTime::Infinite::Past->new}if ($inf){%$self=%$inf;bless$self,ref$inf;return$self}}return$self if$self->is_infinite;if ($deltas{days}){$self->{local_rd_days}+= $deltas{days};$self->{utc_year}+= int($deltas{days}/ 365)+ 1}if ($deltas{months}){my ($y,$m,$d)=($dur->is_preserve_mode ? $self->_rd2ymd($self->{local_rd_days}+ 1): $self->_rd2ymd($self->{local_rd_days}));$d -= 1 if$dur->is_preserve_mode;if (!$dur->is_wrap_mode && $d > 28){$self->{local_rd_days}=$self->_ymd2rd($y,$m + $deltas{months}+ 1,0);my$last_day =($self->_rd2ymd($self->{local_rd_days}))[2];$self->{local_rd_days}-= $last_day - $d if$last_day > $d}else {$self->{local_rd_days}=$self->_ymd2rd($y,$m + $deltas{months},$d)}$self->{utc_year}+= int($deltas{months}/ 12)+ 1}if ($deltas{days}|| $deltas{months}){$self->_calc_utc_rd;$self->_handle_offset_modifier($self->second)}if ($deltas{minutes}){$self->{utc_rd_secs}+= $deltas{minutes}* 60;$self->_normalize_tai_seconds($self->{utc_rd_days},$self->{utc_rd_secs})}if ($deltas{seconds}|| $deltas{nanoseconds}){$self->{utc_rd_secs}+= $deltas{seconds};if ($deltas{nanoseconds}){$self->{rd_nanosecs}+= $deltas{nanoseconds};$self->_normalize_nanoseconds($self->{utc_rd_secs},$self->{rd_nanosecs})}$self->_normalize_seconds;$self->_handle_offset_modifier($self->second + $deltas{seconds})}my$new=(ref$self)->from_object(object=>$self,locale=>$self->{locale},($self->{formatter}? (formatter=>$self->{formatter}): ()),);%$self=%$new;return$self}}sub _compare_overload {return undef unless defined $_[1];return $_[2]? -$_[0]->compare($_[1]): $_[0]->compare($_[1])}sub _string_compare_overload {my ($dt1,$dt2,$flip)=@_;if (!DateTime::Helpers::can($dt2,'utc_rd_values')){my$sign=$flip ? -1 : 1;return$sign * ("$dt1" cmp "$dt2")}else {my$meth=$dt1->can('_compare_overload');goto$meth}}sub compare {shift->_compare(@_,0)}sub compare_ignore_floating {shift->_compare(@_,1)}sub _compare {my ($class,$dt1,$dt2,$consistent)=ref $_[0]? (undef,@_): @_;return undef unless defined$dt2;if (!ref$dt2 && ($dt2==INFINITY || $dt2==NEG_INFINITY)){return$dt1->{utc_rd_days}<=> $dt2}unless (DateTime::Helpers::can($dt1,'utc_rd_values')&& DateTime::Helpers::can($dt2,'utc_rd_values')){my$dt1_string=overload::StrVal($dt1);my$dt2_string=overload::StrVal($dt2);Carp::croak('A DateTime object can only be compared to' ." another DateTime object ($dt1_string, $dt2_string).")}if (!$consistent && DateTime::Helpers::can($dt1,'time_zone')&& DateTime::Helpers::can($dt2,'time_zone')){my$is_floating1=$dt1->time_zone->is_floating;my$is_floating2=$dt2->time_zone->is_floating;if ($is_floating1 &&!$is_floating2){$dt1=$dt1->clone->set_time_zone($dt2->time_zone)}elsif ($is_floating2 &&!$is_floating1){$dt2=$dt2->clone->set_time_zone($dt1->time_zone)}}my@dt1_components=$dt1->utc_rd_values;my@dt2_components=$dt2->utc_rd_values;for my$i (0 .. 2){return$dt1_components[$i]<=> $dt2_components[$i]if$dt1_components[$i]!=$dt2_components[$i]}return 0}sub _string_equals_overload {my ($class,$dt1,$dt2)=ref $_[0]? (undef,@_): @_;if (!DateTime::Helpers::can($dt2,'utc_rd_values')){return "$dt1" eq "$dt2"}$class ||= ref$dt1;return!$class->compare($dt1,$dt2)}sub _string_not_equals_overload {return!_string_equals_overload(@_)}sub _normalize_nanoseconds {use integer;if ($_[2]< 0){my$overflow=1 + $_[2]/ MAX_NANOSECONDS;$_[2]+= $overflow * MAX_NANOSECONDS;$_[1]-= $overflow}elsif ($_[2]>= MAX_NANOSECONDS){my$overflow=$_[2]/ MAX_NANOSECONDS;$_[2]-= $overflow * MAX_NANOSECONDS;$_[1]+= $overflow}}my$SetValidate={map {my%copy=%{$BasicValidate->{$_}};delete$copy{default};$copy{optional}=1;$_=>\%copy}keys %$BasicValidate };sub set {my$self=shift;my%p=validate(@_,$SetValidate);my$new_dt=$self->_new_from_self(%p);%$self=%$new_dt;return$self}sub set_year {$_[0]->set(year=>$_[1])}sub set_month {$_[0]->set(month=>$_[1])}sub set_day {$_[0]->set(day=>$_[1])}sub set_hour {$_[0]->set(hour=>$_[1])}sub set_minute {$_[0]->set(minute=>$_[1])}sub set_second {$_[0]->set(second=>$_[1])}sub set_nanosecond {$_[0]->set(nanosecond=>$_[1])}sub set_locale {my$self=shift;my ($locale)=validate_pos(@_,$BasicValidate->{locale});$self->_set_locale($locale);return$self}sub set_formatter {my$self=shift;my ($formatter)=validate_pos(@_,$BasicValidate->{formatter});$self->{formatter}=$formatter;return$self}{my%TruncateDefault=(month=>1,day=>1,hour=>0,minute=>0,second=>0,nanosecond=>0,);my$re=join '|','year','week','local_week',grep {$_ ne 'nanosecond'}keys%TruncateDefault;my$spec={to=>{regex=>qr/^(?:$re)$/ }};sub truncate {my$self=shift;my%p=validate(@_,$spec);my%new;if ($p{to}eq 'week' || $p{to}eq 'local_week'){my$first_day_of_week =($p{to}eq 'local_week')? $self->{locale}->first_day_of_week : 1;my$day_diff=($self->day_of_week - $first_day_of_week)% 7;if ($day_diff){$self->add(days=>-1 * $day_diff)}try {$self->truncate(to=>'day')}catch {$self->add(days=>$day_diff);die $_}}else {my$truncate;for my$f (qw(year month day hour minute second nanosecond)){$new{$f}=$truncate ? $TruncateDefault{$f}: $self->$f();$truncate=1 if$p{to}eq $f}}my$new_dt=$self->_new_from_self(%new,_skip_validation=>1);%$self=%$new_dt;return$self}}sub set_time_zone {my ($self,$tz)=@_;if (ref$tz){return$self if$self->{tz}eq $tz}else {return$self if$self->{tz}->name()eq $tz}my$was_floating=$self->{tz}->is_floating;my$old_tz=$self->{tz};$self->{tz}=ref$tz ? $tz : DateTime::TimeZone->new(name=>$tz);$self->_handle_offset_modifier($self->second,1);my$e;try {if ($self->{tz}->is_floating xor $was_floating){$self->_calc_utc_rd}elsif (!$was_floating){$self->_calc_local_rd}}catch {$e=$_};if ($e){$self->{tz}=$old_tz;die$e}return$self}sub STORABLE_freeze {my$self=shift;my$cloning=shift;my$serialized='';for my$key (qw(utc_rd_days utc_rd_secs rd_nanosecs)){$serialized .= "$key:$self->{$key}|"}$serialized .= 'version:' .($DateTime::VERSION || 'git');return$serialized,$self->{locale},$self->{tz},\$self->{formatter}}sub STORABLE_thaw {my$self=shift;my$cloning=shift;my$serialized=shift;my%serialized=map {split /:/}split /\|/,$serialized;my ($locale,$tz,$formatter);if (@_){($locale,$tz,$formatter)=@_}else {$tz=DateTime::TimeZone->new(name=>delete$serialized{tz});$locale=DateTime::Locale->load(exists$serialized{language}? delete$serialized{language}: delete$serialized{locale})}delete$serialized{version};my$object=bless {utc_vals=>[$serialized{utc_rd_days},$serialized{utc_rd_secs},$serialized{rd_nanosecs},],tz=>$tz,},'DateTime::_Thawed';my%formatter=defined $$formatter ? (formatter=>$$formatter): ();my$new=(ref$self)->from_object(object=>$object,locale=>$locale,%formatter,);%$self=%$new;return$self}package DateTime::_Thawed;sub utc_rd_values {@{$_[0]->{utc_vals}}}sub time_zone {$_[0]->{tz}}1;
DATETIME

$fatpacked{"DateTime/Duration.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_DURATION';
  package DateTime::Duration;use strict;use warnings;our$VERSION='1.21';use Carp ();use DateTime;use DateTime::Helpers;use Params::Validate qw(validate SCALAR);use overload (fallback=>1,'+'=>'_add_overload','-'=>'_subtract_overload','*'=>'_multiply_overload','<=>'=>'_compare_overload','cmp'=>'_compare_overload',);use constant MAX_NANOSECONDS=>1_000_000_000;my@all_units=qw(months days minutes seconds nanoseconds);sub new {my$class=shift;my%p=validate(@_,{years=>{type=>SCALAR,default=>0 },months=>{type=>SCALAR,default=>0 },weeks=>{type=>SCALAR,default=>0 },days=>{type=>SCALAR,default=>0 },hours=>{type=>SCALAR,default=>0 },minutes=>{type=>SCALAR,default=>0 },seconds=>{type=>SCALAR,default=>0 },nanoseconds=>{type=>SCALAR,default=>0 },end_of_month=>{type=>SCALAR,default=>undef,regex=>qr/^(?:wrap|limit|preserve)$/ },});my$self=bless {},$class;$self->{months}=($p{years}* 12)+ $p{months};$self->{days}=($p{weeks}* 7)+ $p{days};$self->{minutes}=($p{hours}* 60)+ $p{minutes};$self->{seconds}=$p{seconds};if ($p{nanoseconds}){$self->{nanoseconds}=$p{nanoseconds};$self->_normalize_nanoseconds}else {$self->{nanoseconds}=0}$self->{end_of_month}=(defined$p{end_of_month}? $p{end_of_month}: $self->{months}< 0 ? 'preserve' : 'wrap');return$self}sub _normalize_nanoseconds {my$self=shift;return if ($self->{nanoseconds}==DateTime::INFINITY()|| $self->{nanoseconds}==DateTime::NEG_INFINITY()|| $self->{nanoseconds}eq DateTime::NAN());my$seconds=$self->{seconds}+ $self->{nanoseconds}/ MAX_NANOSECONDS;$self->{seconds}=int($seconds);$self->{nanoseconds}=$self->{nanoseconds}% MAX_NANOSECONDS;$self->{nanoseconds}-= MAX_NANOSECONDS if$seconds < 0}sub clone {bless {%{$_[0]}},ref $_[0]}sub years {abs($_[0]->in_units('years'))}sub months {abs($_[0]->in_units('months','years'))}sub weeks {abs($_[0]->in_units('weeks'))}sub days {abs($_[0]->in_units('days','weeks'))}sub hours {abs($_[0]->in_units('hours'))}sub minutes {abs($_[0]->in_units('minutes','hours'))}sub seconds {abs($_[0]->in_units('seconds'))}sub nanoseconds {abs($_[0]->in_units('nanoseconds','seconds'))}sub is_positive {$_[0]->_has_positive &&!$_[0]->_has_negative}sub is_negative {!$_[0]->_has_positive && $_[0]->_has_negative}sub _has_positive {(grep {$_ > 0}@{$_[0]}{@all_units})? 1 : 0}sub _has_negative {(grep {$_ < 0}@{$_[0]}{@all_units})? 1 : 0}sub is_zero {return 0 if grep {$_!=0}@{$_[0]}{@all_units};return 1}sub delta_months {$_[0]->{months}}sub delta_days {$_[0]->{days}}sub delta_minutes {$_[0]->{minutes}}sub delta_seconds {$_[0]->{seconds}}sub delta_nanoseconds {$_[0]->{nanoseconds}}sub deltas {map {$_=>$_[0]->{$_}}@all_units}sub in_units {my$self=shift;my@units=@_;my%units=map {$_=>1}@units;my%ret;my ($months,$days,$minutes,$seconds)=@{$self}{qw(months days minutes seconds)};if ($units{years}){$ret{years}=int($months / 12);$months -= $ret{years}* 12}if ($units{months}){$ret{months}=$months}if ($units{weeks}){$ret{weeks}=int($days / 7);$days -= $ret{weeks}* 7}if ($units{days}){$ret{days}=$days}if ($units{hours}){$ret{hours}=int($minutes / 60);$minutes -= $ret{hours}* 60}if ($units{minutes}){$ret{minutes}=$minutes}if ($units{seconds}){$ret{seconds}=$seconds;$seconds=0}if ($units{nanoseconds}){$ret{nanoseconds}=$seconds * MAX_NANOSECONDS + $self->{nanoseconds}}wantarray ? @ret{@units}: $ret{$units[0]}}sub is_wrap_mode {$_[0]->{end_of_month}eq 'wrap' ? 1 : 0}sub is_limit_mode {$_[0]->{end_of_month}eq 'limit' ? 1 : 0}sub is_preserve_mode {$_[0]->{end_of_month}eq 'preserve' ? 1 : 0}sub end_of_month_mode {$_[0]->{end_of_month}}sub calendar_duration {my$self=shift;return (ref$self)->new(map {$_=>$self->{$_}}qw(months days end_of_month))}sub clock_duration {my$self=shift;return (ref$self)->new(map {$_=>$self->{$_}}qw(minutes seconds nanoseconds end_of_month))}sub inverse {my$self=shift;my%p=@_;my%new;for my$u (@all_units){$new{$u}=$self->{$u};$new{$u}*= -1 if$new{$u}}$new{end_of_month}=$p{end_of_month}if exists$p{end_of_month};return (ref$self)->new(%new)}sub add_duration {my ($self,$dur)=@_;for my$u (@all_units){$self->{$u}+= $dur->{$u}}$self->_normalize_nanoseconds if$self->{nanoseconds};return$self}sub add {my$self=shift;return$self->add_duration((ref$self)->new(@_))}sub subtract_duration {return $_[0]->add_duration($_[1]->inverse)}sub subtract {my$self=shift;return$self->subtract_duration((ref$self)->new(@_))}sub multiply {my$self=shift;my$multiplier=shift;for my$u (@all_units){$self->{$u}*= $multiplier}$self->_normalize_nanoseconds if$self->{nanoseconds};return$self}sub compare {my ($class,$dur1,$dur2,$dt)=@_;$dt ||= DateTime->now;return DateTime->compare($dt->clone->add_duration($dur1),$dt->clone->add_duration($dur2))}sub _add_overload {my ($d1,$d2,$rev)=@_;($d1,$d2)=($d2,$d1)if$rev;if (DateTime::Helpers::isa($d2,'DateTime')){$d2->add_duration($d1);return}return$d1->clone->add_duration($d2)}sub _subtract_overload {my ($d1,$d2,$rev)=@_;($d1,$d2)=($d2,$d1)if$rev;Carp::croak("Cannot subtract a DateTime object from a DateTime::Duration object")if DateTime::Helpers::isa($d2,'DateTime');return$d1->clone->subtract_duration($d2)}sub _multiply_overload {my$self=shift;my$new=$self->clone;return$new->multiply(@_)}sub _compare_overload {Carp::croak('DateTime::Duration does not overload comparison.' .'  See the documentation on the compare() method for details.')}1;
DATETIME_DURATION

$fatpacked{"DateTime/Helpers.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_HELPERS';
  package DateTime::Helpers;use strict;use warnings;our$VERSION='1.21';use Scalar::Util ();sub can {my$object=shift;my$method=shift;return unless Scalar::Util::blessed($object);return$object->can($method)}sub isa {my$object=shift;my$method=shift;return unless Scalar::Util::blessed($object);return$object->isa($method)}1;
DATETIME_HELPERS

$fatpacked{"DateTime/Infinite.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_INFINITE';
  package DateTime::Infinite;use strict;use warnings;our$VERSION='1.21';use DateTime;use DateTime::TimeZone;use base qw(DateTime);for my$m (qw(set set_time_zone truncate)){no strict 'refs';*{"DateTime::Infinite::$m"}=sub {return $_[0]}}sub is_finite {0}sub is_infinite {1}sub _rd2ymd {return $_[2]? ($_[1])x 7 : ($_[1])x 3}sub _seconds_as_components {return ($_[1])x 3}sub _stringify {$_[0]->{utc_rd_days}==DateTime::INFINITY ? DateTime::INFINITY .'' : DateTime::NEG_INFINITY .''}sub STORABLE_freeze {return}sub STORABLE_thaw {return}package DateTime::Infinite::Future;use strict;use warnings;use base qw(DateTime::Infinite);{my$Pos=bless {utc_rd_days=>DateTime::INFINITY,utc_rd_secs=>DateTime::INFINITY,local_rd_days=>DateTime::INFINITY,local_rd_secs=>DateTime::INFINITY,rd_nanosecs=>DateTime::INFINITY,tz=>DateTime::TimeZone->new(name=>'floating'),locale=>FakeLocale->instance(),},__PACKAGE__;$Pos->_calc_utc_rd;$Pos->_calc_local_rd;sub new {$Pos}}package DateTime::Infinite::Past;use strict;use warnings;use base qw(DateTime::Infinite);{my$Neg=bless {utc_rd_days=>DateTime::NEG_INFINITY,utc_rd_secs=>DateTime::NEG_INFINITY,local_rd_days=>DateTime::NEG_INFINITY,local_rd_secs=>DateTime::NEG_INFINITY,rd_nanosecs=>DateTime::NEG_INFINITY,tz=>DateTime::TimeZone->new(name=>'floating'),locale=>FakeLocale->instance(),},__PACKAGE__;$Neg->_calc_utc_rd;$Neg->_calc_local_rd;sub new {$Neg}}package FakeLocale;use strict;use warnings;use DateTime::Locale;my$Instance;sub instance {return$Instance ||= bless {locale=>DateTime::Locale->load('en_US')},__PACKAGE__}sub id {return 'infinite'}sub language_id {return 'infinite'}sub name {'Fake locale for Infinite DateTime objects'}sub language {'Fake locale for Infinite DateTime objects'}my@methods=qw(script_id territory_id variant_id script territory variant native_name native_language native_script native_territory native_variant);for my$meth (@methods){no strict 'refs';*{$meth}=sub {undef}}sub first_day_of_week {return 1}sub prefers_24_hour_time {return 0}our$AUTOLOAD;sub AUTOLOAD {my$self=shift;my ($meth)=$AUTOLOAD =~ /::(\w+)$/;if ($meth =~ /format/ && $meth !~ /^(?:day|month|quarter)/){return$self->{locale}->$meth(@_)}return []}1;
DATETIME_INFINITE

$fatpacked{"DateTime/LeapSecond.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_LEAPSECOND';
  package DateTime::LeapSecond;use strict;use warnings;our$VERSION='1.21';use vars qw(@RD @LEAP_SECONDS %RD_LENGTH);use DateTime;sub _make_utx {my ($beg,$end,$tab,$op)=@_;my$step=int(($end - $beg)/ 2);my$tmp;if ($step <= 0){$tmp="${tab}return $LEAP_SECONDS[$beg + 1];\n";return$tmp}$tmp="${tab}if (\$val < " .$RD[$beg + $step ].") {\n";$tmp .= _make_utx($beg,$beg + $step,$tab ."    ",$op);$tmp .= "${tab}}\n";$tmp .= "${tab}else {\n";$tmp .= _make_utx($beg + $step,$end,$tab ."    ",$op);$tmp .= "${tab}}\n";return$tmp}sub _init {my$value=-1;while (@_){my ($year,$mon,$mday,$leap_seconds)=(shift,shift,shift,shift);my$utc_epoch =DateTime->_ymd2rd($year,($mon =~ /Jan/i ? 1 : 7),$mday);$value++;push@LEAP_SECONDS,$value;push@RD,$utc_epoch;$RD_LENGTH{$utc_epoch - 1 }=$leap_seconds}push@LEAP_SECONDS,++$value;my$tmp;$tmp="sub leap_seconds {\n";$tmp .= "    my \$val = shift;\n";$tmp .= _make_utx(-1,1 + $#RD,"    ","+");$tmp .= "}\n";eval$tmp}sub extra_seconds {exists$RD_LENGTH{$_[0]}? $RD_LENGTH{$_[0]}: 0}sub day_length {exists$RD_LENGTH{$_[0]}? 86400 + $RD_LENGTH{$_[0]}: 86400}sub _initialize {_init(qw(1972 Jul. 1 +1 1973 Jan. 1 +1 1974 Jan. 1 +1 1975 Jan. 1 +1 1976 Jan. 1 +1 1977 Jan. 1 +1 1978 Jan. 1 +1 1979 Jan. 1 +1 1980 Jan. 1 +1 1981 Jul. 1 +1 1982 Jul. 1 +1 1983 Jul. 1 +1 1985 Jul. 1 +1 1988 Jan. 1 +1 1990 Jan. 1 +1 1991 Jan. 1 +1 1992 Jul. 1 +1 1993 Jul. 1 +1 1994 Jul. 1 +1 1996 Jan. 1 +1 1997 Jul. 1 +1 1999 Jan. 1 +1 2006 Jan. 1 +1 2009 Jan. 1 +1 2012 Jun. 1 +1 2015 Jul. 1 +1))}__PACKAGE__->_initialize();1;
DATETIME_LEAPSECOND

$fatpacked{"DateTime/Locale.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_LOCALE';
  package DateTime::Locale;use 5.008001;use strict;use warnings;our$VERSION='1.02';use DateTime::Locale::Data;use DateTime::Locale::FromData;use DateTime::Locale::Util qw(parse_locale_code);use Params::Validate qw(validate validate_pos SCALAR);my%Class;my%DataForCode;my%NameToCode;my%NativeNameToCode;my%UserDefinedAlias;my%LoadCache;sub register {my$class=shift;%LoadCache=();if (ref $_[0]){$class->_register(%$_)foreach @_}else {$class->_register(@_)}}sub _register {my$class=shift;my%p=validate(@_,{id=>{type=>SCALAR },en_language=>{type=>SCALAR },en_script=>{type=>SCALAR,optional=>1 },en_territory=>{type=>SCALAR,optional=>1 },en_variant=>{type=>SCALAR,optional=>1 },native_language=>{type=>SCALAR,optional=>1 },native_script=>{type=>SCALAR,optional=>1 },native_territory=>{type=>SCALAR,optional=>1 },native_variant=>{type=>SCALAR,optional=>1 },class=>{type=>SCALAR,optional=>1 },replace=>{type=>SCALAR,default=>0 },});my$id=$p{id};die q{'\@' or '=' are not allowed in locale ids} if$id =~ /[\@=]/;die "You cannot replace an existing locale ('$id') unless you also specify the 'replace' parameter as true\n" if!delete$p{replace}&& exists$DataForCode{$id};$p{native_language}=$p{en_language}unless exists$p{native_language};my@en_pieces;my@native_pieces;for my$p (qw(language script territory variant)){push@en_pieces,$p{"en_$p"}if exists$p{"en_$p"};push@native_pieces,$p{"native_$p"}if exists$p{"native_$p"}}$p{en_complete_name}=join q{ },@en_pieces;$p{native_complete_name}=join q{ },@native_pieces;$id =~ s/_/-/g;$DataForCode{$id}=\%p;$NameToCode{$p{en_complete_name}}=$id;$NativeNameToCode{$p{native_complete_name}}=$id;$Class{$id}=$p{class}if defined exists$p{class}}sub add_aliases {shift;%LoadCache=();my$aliases=ref $_[0]? $_[0]: {@_};for my$alias (keys %{$aliases}){my$code=$aliases->{$alias};die q{Can't alias an id to itself} if$alias eq $code;my%seen=($alias=>1,$code=>1);my$copy=$code;while ($copy=$UserDefinedAlias{$copy}){die "Creating an alias from $alias to $code would create a loop.\n" if$seen{$copy};$seen{$copy}=1}$UserDefinedAlias{$alias}=$code}}sub remove_alias {shift;%LoadCache=();my ($alias)=validate_pos(@_,{type=>SCALAR });return delete$UserDefinedAlias{$alias}}sub ids {shift->codes}sub codes {wantarray ? keys%DateTime::Locale::Data::Codes : [keys%DateTime::Locale::Data::Codes ]}sub names {wantarray ? keys%DateTime::Locale::Data::Names : [keys%DateTime::Locale::Data::Names ]}sub native_names {wantarray ? keys%DateTime::Locale::Data::NativeNames : [keys%DateTime::Locale::Data::NativeNames ]}my%DateTimeLanguageAliases=('Amharic'=>'am-ET','Austrian'=>'de-AT','Brazilian'=>'pt-BR','Czech'=>'cs-CZ','Danish'=>'da-DK','Dutch'=>'nl-NL','English'=>'en-US','French'=>'fr-FR','German'=>'de-DE','Italian'=>'it-IT','Norwegian'=>'no-NO','Oromo'=>'om-ET','Portugese'=>'pt-PT','Somali'=>'so-SO','Spanish'=>'es-ES','Swedish'=>'sv-SE','TigrinyaEthiopian'=>'ti-ET','TigrinyaEritrean'=>'ti-ER',);my%POSIXAliases=(C=>'en-US-POSIX',POSIX=>'en-US-POSIX',);sub load {my$class=shift;my ($code)=validate_pos(@_,{type=>SCALAR });$code =~ tr/_/-/;$code =~ s/\..*$//;return$LoadCache{$code}if exists$LoadCache{$code};while (exists$UserDefinedAlias{$code}){$code=$UserDefinedAlias{$code}}$code=$DateTimeLanguageAliases{$code}if exists$DateTimeLanguageAliases{$code};$code=$POSIXAliases{$code}if exists$POSIXAliases{$code};$code=$DateTime::Locale::Data::ISO639Aliases{$code}if exists$DateTime::Locale::Data::ISO639Aliases{$code};if (exists$DateTime::Locale::Data::Codes{$code}){return$class->_locale_object_for($code)}if (exists$DateTime::Locale::Data::Names{$code}){return$class->_locale_object_for($DateTime::Locale::Data::Names{$code})}if (exists$DateTime::Locale::Data::NativeNames{$code}){return$class->_locale_object_for($DateTime::Locale::Data::NativeNames{$code})}if (my$locale=$class->_registered_locale_for($code)){return$locale}if (my$guessed=$class->_guess_code($code)){return$class->_locale_object_for($guessed)}die "Invalid locale code or name: $code\n"}sub _guess_code {my$class=shift;my$code=shift;my%codes=parse_locale_code($code);my@guesses;if ($codes{script}){my$guess=join q{-},$codes{language},$codes{script};push@guesses,$guess;$guess .= q{-} .$codes{territory}if defined$codes{territory};unshift@guesses,$guess}if ($codes{variant}){push@guesses,join q{-},$codes{language},$codes{territory},$codes{variant}}if ($codes{territory}){push@guesses,join q{-},$codes{language},$codes{territory}}push@guesses,$codes{language};for my$code (@guesses){return$code if exists$DateTime::Locale::Data::Codes{$code}|| exists$DateTime::Locale::Data::Names{$code}}}sub _locale_object_for {shift;my$code=shift;my$data=DateTime::Locale::Data::locale_data($code)or return;return$LoadCache{$code}=DateTime::Locale::FromData->new(\%{$data})}sub _registered_locale_for {my$class=shift;my$code=shift;if ($Class{$code}){return$LoadCache{$code}=$class->_load_class_from_code($code,$Class{$code})}if ($DataForCode{$code}){return$LoadCache{$code}=$class->_load_class_from_code($code)}if ($NameToCode{$code}){return$LoadCache{$code}=$class->_load_class_from_code($NameToCode{$code})}if ($NativeNameToCode{$code}){return$LoadCache{$code}=$class->_load_class_from_code($NativeNameToCode{$code})}}sub _load_class_from_code {my$class=shift;my$code=shift;my$real_class=shift;my$data_code=$code;while (exists$UserDefinedAlias{$data_code}&&!exists$DataForCode{$data_code}){$data_code=$UserDefinedAlias{$data_code}}(my$underscore_code=$data_code)=~ s/-/_/g;$real_class ||= "DateTime::Locale::$underscore_code";unless ($real_class->can('new')){eval "require $real_class";die $@ if $@}my$locale=$real_class->new(%{$DataForCode{$data_code}},code=>$code,);if ($locale->can('cldr_version')){my$object_version=$locale->cldr_version;if ($object_version ne $DateTime::Locale::Data::CLDRVersion){warn "Loaded $real_class, which is from an older version ($object_version)" .' of the CLDR database than this installation of' ." DateTime::Locale ($DateTime::Locale::Data::CLDRVersion).\n"}}return$locale}1;
DATETIME_LOCALE

$fatpacked{"DateTime/Locale/Base.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_LOCALE_BASE';
  package DateTime::Locale::Base;use strict;use warnings;our$VERSION='1.02';use Carp qw(carp);use DateTime::Locale;use List::MoreUtils ();use Params::Validate qw(validate_pos);BEGIN {for my$field (qw(id en_complete_name native_complete_name en_language en_script en_territory en_variant native_language native_script native_territory native_variant)){(my$meth_name=$field)=~ s/^en_//;$meth_name =~ s/complete_//;no strict 'refs';*{$meth_name}=sub {$_[0]->{$field}}}}sub new {my$class=shift;return bless {@_,default_date_format_length=>'long',default_time_format_length=>'long',},$class}sub language_id {(DateTime::Locale::_parse_id($_[0]->id))[0]}sub script_id {(DateTime::Locale::_parse_id($_[0]->id))[1]}sub territory_id {(DateTime::Locale::_parse_id($_[0]->id))[2]}sub variant_id {(DateTime::Locale::_parse_id($_[0]->id))[3]}my@FormatLengths=qw(short medium long full);sub date_format_default {my$meth='date_format_' .$_[0]->default_date_format_length();$_[0]->$meth()}sub date_formats {return {map {my$meth='date_format_' .$_;$_=>$_[0]->$meth()}@FormatLengths }}sub time_format_default {my$meth='time_format_' .$_[0]->default_time_format_length();$_[0]->$meth()}sub time_formats {return {map {my$meth='time_format_' .$_;$_=>$_[0]->$meth()}@FormatLengths }}sub format_for {my$self=shift;my$for=shift;my$meth='_format_for_' .$for;return unless$self->can($meth);return$self->$meth()}sub available_formats {my$self=shift;my@uniq =List::MoreUtils::uniq(map {keys %{$_->_available_formats()|| {}}}_self_and_super_path(ref$self));return sort@uniq}sub _self_and_super_path {return ()unless @_;my@out=();my@in_stack=($_[0]);my%seen=($_[0]=>1);my$current;while (@in_stack){next unless defined($current=shift@in_stack)&& length($current);push@out,$current;no strict 'refs';unshift@in_stack,map {my$c=$_;substr($c,0,2)="main::" if substr($c,0,2)eq '::';$seen{$c}++ ? (): $c}@{"$current\::ISA"}}return@out}sub _available_formats {}sub default_date_format_length {$_[0]->{default_date_format_length}}sub set_default_date_format_length {my$self=shift;my ($l)=validate_pos(@_,{regex=>qr/^(?:full|long|medium|short)$/i });$self->{default_date_format_length}=lc$l}sub default_time_format_length {$_[0]->{default_time_format_length}}sub set_default_time_format_length {my$self=shift;my ($l)=validate_pos(@_,{regex=>qr/^(?:full|long|medium|short)/i });$self->{default_time_format_length}=lc$l}for my$length (qw(full long medium short)){my$key='datetime_format_' .$length;my$sub=sub {my$self=shift;return$self->{$key}if exists$self->{$key};my$date_meth='date_format_' .$length;my$time_meth='time_format_' .$length;return$self->{$key}=$self->_make_datetime_format($date_meth,$time_meth)};no strict 'refs';*{$key}=$sub}sub datetime_format_default {my$self=shift;my$date_meth='date_format_' .$self->default_date_format_length();my$time_meth='time_format_' .$self->default_time_format_length();return$self->_make_datetime_format($date_meth,$time_meth)}sub _make_datetime_format {my$self=shift;my$date_meth=shift;my$time_meth=shift;my$dt_format=$self->datetime_format();my$time=$self->$time_meth();my$date=$self->$date_meth();$dt_format =~ s/\{0\}/$time/g;$dt_format =~ s/\{1\}/$date/g;return$dt_format}sub prefers_24_hour_time {my$self=shift;return$self->{prefers_24_hour_time}if exists$self->{prefers_24_hour_time};$self->{prefers_24_hour_time}=$self->time_format_short()=~ /h|K/ ? 0 : 1}{my%subs=(month_name=>sub {$_[0]->month_format_wide()->[$_[1]->month_0 ]},month_abbreviation=>sub {$_[0]->month_format_abbreviated()->[$_[1]->month_0 ]},month_narrow=>sub {$_[0]->month_format_narrow()->[$_[1]->month_0 ]},month_names=>sub {$_[0]->month_format_wide()},month_abbreviations=>sub {$_[0]->month_format_abbreviated()},month_narrows=>sub {$_[0]->month_format_narrow()},day_name=>sub {$_[0]->day_format_wide()->[$_[1]->day_of_week_0 ]},day_abbreviation=>sub {$_[0]->day_format_abbreviated()->[$_[1]->day_of_week_0 ]},day_narrow=>sub {$_[0]->day_format_narrow()->[$_[1]->day_of_week_0 ]},day_names=>sub {$_[0]->day_format_wide()},day_abbreviations=>sub {$_[0]->day_format_abbreviated()},day_narrows=>sub {$_[0]->day_format_narrow()},quarter_name=>sub {$_[0]->quarter_format_wide()->[$_[1]->quarter - 1 ]},quarter_abbreviation=>sub {$_[0]->quarter_format_abbreviated()->[$_[1]->quarter - 1 ]},quarter_narrow=>sub {$_[0]->quarter_format_narrow()->[$_[1]->quarter - 1 ]},quarter_names=>sub {$_[0]->quarter_format_wide()},quarter_abbreviations=>sub {$_[0]->quarter_format_abbreviated()},am_pm=>sub {$_[0]->am_pm_abbreviated()->[$_[1]->hour < 12 ? 0 : 1 ]},am_pms=>sub {$_[0]->am_pm_abbreviated()},era_name=>sub {$_[0]->era_wide()->[$_[1]->ce_year < 0 ? 0 : 1 ]},era_abbreviation=>sub {$_[0]->era_abbreviated()->[$_[1]->ce_year < 0 ? 0 : 1 ]},era_narrow=>sub {$_[0]->era_narrow()->[$_[1]->ce_year < 0 ? 0 : 1 ]},era_names=>sub {$_[0]->era_wide()},era_abbreviations=>sub {$_[0]->era_abbreviated()},era=>sub {$_[0]->era_abbreviation},eras=>sub {$_[0]->era_abbreviations},date_before_time=>sub {my$self=shift;my$dt_format=$self->datetime_format();return$dt_format =~ /\{1\}.*\{0\}/ ? 1 : 0},date_parts_order=>sub {my$self=shift;my$short=$self->date_format_short();$short =~ tr{dmyDMY}{}cd;$short =~ tr{dmyDMY}{dmydmy}s;return$short},full_date_format=>sub {$_[0]->_convert_to_strftime($_[0]->date_format_full())},long_date_format=>sub {$_[0]->_convert_to_strftime($_[0]->date_format_long())},medium_date_format=>sub {$_[0]->_convert_to_strftime($_[0]->date_format_medium())},short_date_format=>sub {$_[0]->_convert_to_strftime($_[0]->date_format_short())},default_date_format=>sub {$_[0]->_convert_to_strftime($_[0]->date_format_default())},full_time_format=>sub {$_[0]->_convert_to_strftime($_[0]->time_format_full())},long_time_format=>sub {$_[0]->_convert_to_strftime($_[0]->time_format_long())},medium_time_format=>sub {$_[0]->_convert_to_strftime($_[0]->time_format_medium())},short_time_format=>sub {$_[0]->_convert_to_strftime($_[0]->time_format_short())},default_time_format=>sub {$_[0]->_convert_to_strftime($_[0]->time_format_default())},full_datetime_format=>sub {$_[0]->_convert_to_strftime($_[0]->datetime_format_full())},long_datetime_format=>sub {$_[0]->_convert_to_strftime($_[0]->datetime_format_long())},medium_datetime_format=>sub {$_[0]->_convert_to_strftime($_[0]->datetime_format_medium())},short_datetime_format=>sub {$_[0]->_convert_to_strftime($_[0]->datetime_format_short())},default_datetime_format=>sub {$_[0]->_convert_to_strftime($_[0]->datetime_format_default())},);for my$name (keys%subs){my$real_sub=$subs{$name};my$sub=sub {carp "The $name method in DateTime::Locale::Base has been deprecated. Please see the DateTime::Locale distribution's Changes file for details";return shift->$real_sub(@_)};no strict 'refs';*{$name}=$sub}}sub _convert_to_strftime {my$self=shift;my$pattern=shift;my$cldr_ok=shift;return$pattern if$cldr_ok;return$self->{_converted_patterns}{$pattern}if exists$self->{_converted_patterns}{$pattern};return$self->{_converted_patterns}{$pattern}=$self->_cldr_to_strftime($pattern)}{my@JavaPatterns=(qr/G/=>'{era}',qr/yyyy/=>'{ce_year}',qr/y/=>'y',qr/u/=>'Y',qr/MMMM/=>'B',qr/MMM/=>'b',qr/MM/=>'m',qr/M/=>'{month}',qr/dd/=>'d',qr/d/=>'{day}',qr/hh/=>'l',qr/h/=>'{hour_12}',qr/HH/=>'H',qr/H/=>'{hour}',qr/mm/=>'M',qr/m/=>'{minute}',qr/ss/=>'S',qr/s/=>'{second}',qr/S/=>'N',qr/EEEE/=>'A',qr/E/=>'a',qr/D/=>'j',qr/F/=>'{weekday_of_month}',qr/w/=>'V',qr/W/=>'{week_month}',qr/a/=>'p',qr/k/=>'{hour_1}',qr/K/=>'{hour_12_0}',qr/z/=>'{time_zone_long_name}',);sub _cldr_to_strftime {shift;my$simple=shift;$simple =~ s/(G+|y+|u+|M+|d+|h+|H+|m+|s+|S+|E+|D+|F+|w+|W+|a+|k+|K+|z+)|'((?:[^']|'')*)'/
                  $2 ? _stringify($2) : $1 ? _convert($1) : "'"/eg;return$simple}sub _convert {my$simple=shift;for (my$x=0;$x < @JavaPatterns;$x += 2 ){return '%' .$JavaPatterns[$x + 1 ]if$simple =~ /$JavaPatterns[$x]/}die "**Dont know $simple***"}sub _stringify {my$string=shift;$string =~ s/%(?:[^%])/%%/g;$string =~ s/\'\'/\'/g;return$string}}sub STORABLE_freeze {my$self=shift;my$cloning=shift;return if$cloning;return$self->id()}sub STORABLE_thaw {my$self=shift;my$cloning=shift;my$serialized=shift;my$obj=DateTime::Locale->load($serialized);%$self=%$obj;return$self}1;
DATETIME_LOCALE_BASE

$fatpacked{"DateTime/Locale/Catalog.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_LOCALE_CATALOG';
  package DateTime::Locale::Catalog;use strict;use warnings;our$VERSION='1.02';1;
DATETIME_LOCALE_CATALOG

$fatpacked{"DateTime/Locale/Conflicts.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_LOCALE_CONFLICTS';
  package DateTime::Locale::Conflicts;use strict;use warnings;use Dist::CheckConflicts -dist=>'DateTime::Locale',-conflicts=>{'DateTime::Format::Strptime'=>'1.1000',},-also=>[qw(Carp Dist::CheckConflicts Exporter List::MoreUtils Params::Validate strict warnings) ],;1;
DATETIME_LOCALE_CONFLICTS

$fatpacked{"DateTime/Locale/Data.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_LOCALE_DATA';
  package DateTime::Locale::Data;use strict;use warnings;our$VERSION='1.02';our$CLDRVersion=28;our%Codes=(af=>1,"af-NA"=>1,"af-ZA"=>1,agq=>1,"agq-CM"=>1,ak=>1,"ak-GH"=>1,am=>1,"am-ET"=>1,ar=>1,"ar-001"=>1,"ar-AE"=>1,"ar-BH"=>1,"ar-DJ"=>1,"ar-DZ"=>1,"ar-EG"=>1,"ar-EH"=>1,"ar-ER"=>1,"ar-IL"=>1,"ar-IQ"=>1,"ar-JO"=>1,"ar-KM"=>1,"ar-KW"=>1,"ar-LB"=>1,"ar-LY"=>1,"ar-MA"=>1,"ar-MR"=>1,"ar-OM"=>1,"ar-PS"=>1,"ar-QA"=>1,"ar-SA"=>1,"ar-SD"=>1,"ar-SO"=>1,"ar-SS"=>1,"ar-SY"=>1,"ar-TD"=>1,"ar-TN"=>1,"ar-YE"=>1,as=>1,"as-IN"=>1,asa=>1,"asa-TZ"=>1,ast=>1,"ast-ES"=>1,az=>1,"az-Cyrl"=>1,"az-Cyrl-AZ"=>1,"az-Latn"=>1,"az-Latn-AZ"=>1,bas=>1,"bas-CM"=>1,be=>1,"be-BY"=>1,bem=>1,"bem-ZM"=>1,bez=>1,"bez-TZ"=>1,bg=>1,"bg-BG"=>1,bm=>1,"bm-ML"=>1,bn=>1,"bn-BD"=>1,"bn-IN"=>1,bo=>1,"bo-CN"=>1,"bo-IN"=>1,br=>1,"br-FR"=>1,brx=>1,"brx-IN"=>1,bs=>1,"bs-Cyrl"=>1,"bs-Cyrl-BA"=>1,"bs-Latn"=>1,"bs-Latn-BA"=>1,ca=>1,"ca-AD"=>1,"ca-ES"=>1,"ca-ES-VALENCIA"=>1,"ca-FR"=>1,"ca-IT"=>1,ce=>1,"ce-RU"=>1,cgg=>1,"cgg-UG"=>1,chr=>1,"chr-US"=>1,ckb=>1,"ckb-IQ"=>1,"ckb-IR"=>1,cs=>1,"cs-CZ"=>1,cu=>1,"cu-RU"=>1,cy=>1,"cy-GB"=>1,da=>1,"da-DK"=>1,"da-GL"=>1,dav=>1,"dav-KE"=>1,de=>1,"de-AT"=>1,"de-BE"=>1,"de-CH"=>1,"de-DE"=>1,"de-LI"=>1,"de-LU"=>1,dje=>1,"dje-NE"=>1,dsb=>1,"dsb-DE"=>1,dua=>1,"dua-CM"=>1,dyo=>1,"dyo-SN"=>1,dz=>1,"dz-BT"=>1,ebu=>1,"ebu-KE"=>1,ee=>1,"ee-GH"=>1,"ee-TG"=>1,el=>1,"el-CY"=>1,"el-GR"=>1,en=>1,"en-001"=>1,"en-150"=>1,"en-AG"=>1,"en-AI"=>1,"en-AS"=>1,"en-AT"=>1,"en-AU"=>1,"en-BB"=>1,"en-BE"=>1,"en-BI"=>1,"en-BM"=>1,"en-BS"=>1,"en-BW"=>1,"en-BZ"=>1,"en-CA"=>1,"en-CC"=>1,"en-CH"=>1,"en-CK"=>1,"en-CM"=>1,"en-CX"=>1,"en-CY"=>1,"en-DE"=>1,"en-DG"=>1,"en-DK"=>1,"en-DM"=>1,"en-ER"=>1,"en-FI"=>1,"en-FJ"=>1,"en-FK"=>1,"en-FM"=>1,"en-GB"=>1,"en-GD"=>1,"en-GG"=>1,"en-GH"=>1,"en-GI"=>1,"en-GM"=>1,"en-GU"=>1,"en-GY"=>1,"en-HK"=>1,"en-IE"=>1,"en-IL"=>1,"en-IM"=>1,"en-IN"=>1,"en-IO"=>1,"en-JE"=>1,"en-JM"=>1,"en-KE"=>1,"en-KI"=>1,"en-KN"=>1,"en-KY"=>1,"en-LC"=>1,"en-LR"=>1,"en-LS"=>1,"en-MG"=>1,"en-MH"=>1,"en-MO"=>1,"en-MP"=>1,"en-MS"=>1,"en-MT"=>1,"en-MU"=>1,"en-MW"=>1,"en-MY"=>1,"en-NA"=>1,"en-NF"=>1,"en-NG"=>1,"en-NL"=>1,"en-NR"=>1,"en-NU"=>1,"en-NZ"=>1,"en-PG"=>1,"en-PH"=>1,"en-PK"=>1,"en-PN"=>1,"en-PR"=>1,"en-PW"=>1,"en-RW"=>1,"en-SB"=>1,"en-SC"=>1,"en-SD"=>1,"en-SE"=>1,"en-SG"=>1,"en-SH"=>1,"en-SI"=>1,"en-SL"=>1,"en-SS"=>1,"en-SX"=>1,"en-SZ"=>1,"en-TC"=>1,"en-TK"=>1,"en-TO"=>1,"en-TT"=>1,"en-TV"=>1,"en-TZ"=>1,"en-UG"=>1,"en-UM"=>1,"en-US"=>1,"en-US-POSIX"=>1,"en-VC"=>1,"en-VG"=>1,"en-VI"=>1,"en-VU"=>1,"en-WS"=>1,"en-ZA"=>1,"en-ZM"=>1,"en-ZW"=>1,eo=>1,"eo-001"=>1,es=>1,"es-419"=>1,"es-AR"=>1,"es-BO"=>1,"es-CL"=>1,"es-CO"=>1,"es-CR"=>1,"es-CU"=>1,"es-DO"=>1,"es-EA"=>1,"es-EC"=>1,"es-ES"=>1,"es-GQ"=>1,"es-GT"=>1,"es-HN"=>1,"es-IC"=>1,"es-MX"=>1,"es-NI"=>1,"es-PA"=>1,"es-PE"=>1,"es-PH"=>1,"es-PR"=>1,"es-PY"=>1,"es-SV"=>1,"es-US"=>1,"es-UY"=>1,"es-VE"=>1,et=>1,"et-EE"=>1,eu=>1,"eu-ES"=>1,ewo=>1,"ewo-CM"=>1,fa=>1,"fa-AF"=>1,"fa-IR"=>1,ff=>1,"ff-CM"=>1,"ff-GN"=>1,"ff-MR"=>1,"ff-SN"=>1,fi=>1,"fi-FI"=>1,fil=>1,"fil-PH"=>1,fo=>1,"fo-DK"=>1,"fo-FO"=>1,fr=>1,"fr-BE"=>1,"fr-BF"=>1,"fr-BI"=>1,"fr-BJ"=>1,"fr-BL"=>1,"fr-CA"=>1,"fr-CD"=>1,"fr-CF"=>1,"fr-CG"=>1,"fr-CH"=>1,"fr-CI"=>1,"fr-CM"=>1,"fr-DJ"=>1,"fr-DZ"=>1,"fr-FR"=>1,"fr-GA"=>1,"fr-GF"=>1,"fr-GN"=>1,"fr-GP"=>1,"fr-GQ"=>1,"fr-HT"=>1,"fr-KM"=>1,"fr-LU"=>1,"fr-MA"=>1,"fr-MC"=>1,"fr-MF"=>1,"fr-MG"=>1,"fr-ML"=>1,"fr-MQ"=>1,"fr-MR"=>1,"fr-MU"=>1,"fr-NC"=>1,"fr-NE"=>1,"fr-PF"=>1,"fr-PM"=>1,"fr-RE"=>1,"fr-RW"=>1,"fr-SC"=>1,"fr-SN"=>1,"fr-SY"=>1,"fr-TD"=>1,"fr-TG"=>1,"fr-TN"=>1,"fr-VU"=>1,"fr-WF"=>1,"fr-YT"=>1,fur=>1,"fur-IT"=>1,fy=>1,"fy-NL"=>1,ga=>1,"ga-IE"=>1,gd=>1,"gd-GB"=>1,gl=>1,"gl-ES"=>1,gsw=>1,"gsw-CH"=>1,"gsw-FR"=>1,"gsw-LI"=>1,gu=>1,"gu-IN"=>1,guz=>1,"guz-KE"=>1,gv=>1,"gv-IM"=>1,ha=>1,"ha-GH"=>1,"ha-NE"=>1,"ha-NG"=>1,haw=>1,"haw-US"=>1,he=>1,"he-IL"=>1,hi=>1,"hi-IN"=>1,hr=>1,"hr-BA"=>1,"hr-HR"=>1,hsb=>1,"hsb-DE"=>1,hu=>1,"hu-HU"=>1,hy=>1,"hy-AM"=>1,id=>1,"id-ID"=>1,ig=>1,"ig-NG"=>1,ii=>1,"ii-CN"=>1,is=>1,"is-IS"=>1,it=>1,"it-CH"=>1,"it-IT"=>1,"it-SM"=>1,ja=>1,"ja-JP"=>1,jgo=>1,"jgo-CM"=>1,jmc=>1,"jmc-TZ"=>1,ka=>1,"ka-GE"=>1,kab=>1,"kab-DZ"=>1,kam=>1,"kam-KE"=>1,kde=>1,"kde-TZ"=>1,kea=>1,"kea-CV"=>1,khq=>1,"khq-ML"=>1,ki=>1,"ki-KE"=>1,kk=>1,"kk-KZ"=>1,kkj=>1,"kkj-CM"=>1,kl=>1,"kl-GL"=>1,kln=>1,"kln-KE"=>1,km=>1,"km-KH"=>1,kn=>1,"kn-IN"=>1,ko=>1,"ko-KP"=>1,"ko-KR"=>1,kok=>1,"kok-IN"=>1,ks=>1,"ks-IN"=>1,ksb=>1,"ksb-TZ"=>1,ksf=>1,"ksf-CM"=>1,ksh=>1,"ksh-DE"=>1,kw=>1,"kw-GB"=>1,ky=>1,"ky-KG"=>1,lag=>1,"lag-TZ"=>1,lb=>1,"lb-LU"=>1,lg=>1,"lg-UG"=>1,lkt=>1,"lkt-US"=>1,ln=>1,"ln-AO"=>1,"ln-CD"=>1,"ln-CF"=>1,"ln-CG"=>1,lo=>1,"lo-LA"=>1,lrc=>1,"lrc-IQ"=>1,"lrc-IR"=>1,lt=>1,"lt-LT"=>1,lu=>1,"lu-CD"=>1,luo=>1,"luo-KE"=>1,luy=>1,"luy-KE"=>1,lv=>1,"lv-LV"=>1,mas=>1,"mas-KE"=>1,"mas-TZ"=>1,mer=>1,"mer-KE"=>1,mfe=>1,"mfe-MU"=>1,mg=>1,"mg-MG"=>1,mgh=>1,"mgh-MZ"=>1,mgo=>1,"mgo-CM"=>1,mk=>1,"mk-MK"=>1,ml=>1,"ml-IN"=>1,mn=>1,"mn-MN"=>1,mr=>1,"mr-IN"=>1,ms=>1,"ms-BN"=>1,"ms-MY"=>1,"ms-SG"=>1,mt=>1,"mt-MT"=>1,mua=>1,"mua-CM"=>1,my=>1,"my-MM"=>1,mzn=>1,"mzn-IR"=>1,naq=>1,"naq-NA"=>1,nb=>1,"nb-NO"=>1,"nb-SJ"=>1,nd=>1,"nd-ZW"=>1,ne=>1,"ne-IN"=>1,"ne-NP"=>1,nl=>1,"nl-AW"=>1,"nl-BE"=>1,"nl-BQ"=>1,"nl-CW"=>1,"nl-NL"=>1,"nl-SR"=>1,"nl-SX"=>1,nmg=>1,"nmg-CM"=>1,nn=>1,"nn-NO"=>1,nnh=>1,"nnh-CM"=>1,nus=>1,"nus-SS"=>1,nyn=>1,"nyn-UG"=>1,om=>1,"om-ET"=>1,"om-KE"=>1,or=>1,"or-IN"=>1,os=>1,"os-GE"=>1,"os-RU"=>1,pa=>1,"pa-Arab"=>1,"pa-Arab-PK"=>1,"pa-Guru"=>1,"pa-Guru-IN"=>1,pl=>1,"pl-PL"=>1,prg=>1,"prg-001"=>1,ps=>1,"ps-AF"=>1,pt=>1,"pt-AO"=>1,"pt-BR"=>1,"pt-CV"=>1,"pt-GW"=>1,"pt-MO"=>1,"pt-MZ"=>1,"pt-PT"=>1,"pt-ST"=>1,"pt-TL"=>1,qu=>1,"qu-BO"=>1,"qu-EC"=>1,"qu-PE"=>1,rm=>1,"rm-CH"=>1,rn=>1,"rn-BI"=>1,ro=>1,"ro-MD"=>1,"ro-RO"=>1,rof=>1,"rof-TZ"=>1,root=>1,ru=>1,"ru-BY"=>1,"ru-KG"=>1,"ru-KZ"=>1,"ru-MD"=>1,"ru-RU"=>1,"ru-UA"=>1,rw=>1,"rw-RW"=>1,rwk=>1,"rwk-TZ"=>1,sah=>1,"sah-RU"=>1,saq=>1,"saq-KE"=>1,sbp=>1,"sbp-TZ"=>1,se=>1,"se-FI"=>1,"se-NO"=>1,"se-SE"=>1,seh=>1,"seh-MZ"=>1,ses=>1,"ses-ML"=>1,sg=>1,"sg-CF"=>1,shi=>1,"shi-Latn"=>1,"shi-Latn-MA"=>1,"shi-Tfng"=>1,"shi-Tfng-MA"=>1,si=>1,"si-LK"=>1,sk=>1,"sk-SK"=>1,sl=>1,"sl-SI"=>1,smn=>1,"smn-FI"=>1,sn=>1,"sn-ZW"=>1,so=>1,"so-DJ"=>1,"so-ET"=>1,"so-KE"=>1,"so-SO"=>1,sq=>1,"sq-AL"=>1,"sq-MK"=>1,"sq-XK"=>1,sr=>1,"sr-Cyrl"=>1,"sr-Cyrl-BA"=>1,"sr-Cyrl-ME"=>1,"sr-Cyrl-RS"=>1,"sr-Cyrl-XK"=>1,"sr-Latn"=>1,"sr-Latn-BA"=>1,"sr-Latn-ME"=>1,"sr-Latn-RS"=>1,"sr-Latn-XK"=>1,sv=>1,"sv-AX"=>1,"sv-FI"=>1,"sv-SE"=>1,sw=>1,"sw-CD"=>1,"sw-KE"=>1,"sw-TZ"=>1,"sw-UG"=>1,ta=>1,"ta-IN"=>1,"ta-LK"=>1,"ta-MY"=>1,"ta-SG"=>1,te=>1,"te-IN"=>1,teo=>1,"teo-KE"=>1,"teo-UG"=>1,th=>1,"th-TH"=>1,ti=>1,"ti-ER"=>1,"ti-ET"=>1,tk=>1,"tk-TM"=>1,to=>1,"to-TO"=>1,tr=>1,"tr-CY"=>1,"tr-TR"=>1,twq=>1,"twq-NE"=>1,tzm=>1,"tzm-MA"=>1,ug=>1,"ug-CN"=>1,uk=>1,"uk-UA"=>1,ur=>1,"ur-IN"=>1,"ur-PK"=>1,uz=>1,"uz-Arab"=>1,"uz-Arab-AF"=>1,"uz-Cyrl"=>1,"uz-Cyrl-UZ"=>1,"uz-Latn"=>1,"uz-Latn-UZ"=>1,vai=>1,"vai-Latn"=>1,"vai-Latn-LR"=>1,"vai-Vaii"=>1,"vai-Vaii-LR"=>1,vi=>1,"vi-VN"=>1,vo=>1,"vo-001"=>1,vun=>1,"vun-TZ"=>1,wae=>1,"wae-CH"=>1,xog=>1,"xog-UG"=>1,yav=>1,"yav-CM"=>1,yi=>1,"yi-001"=>1,yo=>1,"yo-BJ"=>1,"yo-NG"=>1,zgh=>1,"zgh-MA"=>1,zh=>1,"zh-Hans"=>1,"zh-Hans-CN"=>1,"zh-Hans-HK"=>1,"zh-Hans-MO"=>1,"zh-Hans-SG"=>1,"zh-Hant"=>1,"zh-Hant-HK"=>1,"zh-Hant-MO"=>1,"zh-Hant-TW"=>1,zu=>1,"zu-ZA"=>1);our%Names=(Afrikaans=>1,"Afrikaans Namibia"=>1,"Afrikaans South Africa"=>1,Aghem=>1,"Aghem Cameroon"=>1,Akan=>1,"Akan Ghana"=>1,Albanian=>1,"Albanian Albania"=>1,"Albanian Kosovo"=>1,"Albanian Macedonia"=>1,Amharic=>1,"Amharic Ethiopia"=>1,Arabic=>1,"Arabic Algeria"=>1,"Arabic Bahrain"=>1,"Arabic Chad"=>1,"Arabic Comoros"=>1,"Arabic Djibouti"=>1,"Arabic Egypt"=>1,"Arabic Eritrea"=>1,"Arabic Iraq"=>1,"Arabic Israel"=>1,"Arabic Jordan"=>1,"Arabic Kuwait"=>1,"Arabic Lebanon"=>1,"Arabic Libya"=>1,"Arabic Mauritania"=>1,"Arabic Morocco"=>1,"Arabic Oman"=>1,"Arabic Palestinian Territories"=>1,"Arabic Qatar"=>1,"Arabic Saudi Arabia"=>1,"Arabic Somalia"=>1,"Arabic South Sudan"=>1,"Arabic Sudan"=>1,"Arabic Syria"=>1,"Arabic Tunisia"=>1,"Arabic United Arab Emirates"=>1,"Arabic Western Sahara"=>1,"Arabic World"=>1,"Arabic Yemen"=>1,Armenian=>1,"Armenian Armenia"=>1,Assamese=>1,"Assamese India"=>1,Asturian=>1,"Asturian Spain"=>1,Asu=>1,"Asu Tanzania"=>1,Azerbaijani=>1,"Azerbaijani Azerbaijan Cyrillic"=>1,"Azerbaijani Azerbaijan Latin"=>1,"Azerbaijani Cyrillic"=>1,"Azerbaijani Latin"=>1,Bafia=>1,"Bafia Cameroon"=>1,Bambara=>1,"Bambara Mali"=>1,Basaa=>1,"Basaa Cameroon"=>1,Basque=>1,"Basque Spain"=>1,Belarusian=>1,"Belarusian Belarus"=>1,Bemba=>1,"Bemba Zambia"=>1,Bena=>1,"Bena Tanzania"=>1,Bengali=>1,"Bengali Bangladesh"=>1,"Bengali India"=>1,Bodo=>1,"Bodo India"=>1,Bosnian=>1,"Bosnian Bosnia & Herzegovina Cyrillic"=>1,"Bosnian Bosnia & Herzegovina Latin"=>1,"Bosnian Cyrillic"=>1,"Bosnian Latin"=>1,Breton=>1,"Breton France"=>1,Bulgarian=>1,"Bulgarian Bulgaria"=>1,Burmese=>1,"Burmese Myanmar (Burma)"=>1,Catalan=>1,"Catalan Andorra"=>1,"Catalan France"=>1,"Catalan Italy"=>1,"Catalan Spain"=>1,"Catalan Spain Valencian"=>1,"Central Atlas Tamazight"=>1,"Central Atlas Tamazight Morocco"=>1,"Central Kurdish"=>1,"Central Kurdish Iran"=>1,"Central Kurdish Iraq"=>1,Chechen=>1,"Chechen Russia"=>1,Cherokee=>1,"Cherokee United States"=>1,Chiga=>1,"Chiga Uganda"=>1,Chinese=>1,"Chinese China Simplified"=>1,"Chinese Hong Kong SAR China Simplified"=>1,"Chinese Hong Kong SAR China Traditional"=>1,"Chinese Macau SAR China Simplified"=>1,"Chinese Macau SAR China Traditional"=>1,"Chinese Simplified"=>1,"Chinese Singapore Simplified"=>1,"Chinese Taiwan Traditional"=>1,"Chinese Traditional"=>1,"Church Slavic"=>1,"Church Slavic Russia"=>1,Colognian=>1,"Colognian Germany"=>1,Cornish=>1,"Cornish United Kingdom"=>1,Croatian=>1,"Croatian Bosnia & Herzegovina"=>1,"Croatian Croatia"=>1,Czech=>1,"Czech Czech Republic"=>1,Danish=>1,"Danish Denmark"=>1,"Danish Greenland"=>1,Duala=>1,"Duala Cameroon"=>1,Dutch=>1,"Dutch Aruba"=>1,"Dutch Belgium"=>1,"Dutch Caribbean Netherlands"=>1,"Dutch Cura\N{U+00e7}ao"=>1,"Dutch Netherlands"=>1,"Dutch Sint Maarten"=>1,"Dutch Suriname"=>1,Dzongkha=>1,"Dzongkha Bhutan"=>1,Embu=>1,"Embu Kenya"=>1,English=>1,"English American Samoa"=>1,"English Anguilla"=>1,"English Antigua & Barbuda"=>1,"English Australia"=>1,"English Austria"=>1,"English Bahamas"=>1,"English Barbados"=>1,"English Belgium"=>1,"English Belize"=>1,"English Bermuda"=>1,"English Botswana"=>1,"English British Indian Ocean Territory"=>1,"English British Virgin Islands"=>1,"English Burundi"=>1,"English Cameroon"=>1,"English Canada"=>1,"English Cayman Islands"=>1,"English Christmas Island"=>1,"English Cocos (Keeling) Islands"=>1,"English Cook Islands"=>1,"English Cyprus"=>1,"English Denmark"=>1,"English Diego Garcia"=>1,"English Dominica"=>1,"English Eritrea"=>1,"English Europe"=>1,"English Falkland Islands"=>1,"English Fiji"=>1,"English Finland"=>1,"English Gambia"=>1,"English Germany"=>1,"English Ghana"=>1,"English Gibraltar"=>1,"English Grenada"=>1,"English Guam"=>1,"English Guernsey"=>1,"English Guyana"=>1,"English Hong Kong SAR China"=>1,"English India"=>1,"English Ireland"=>1,"English Isle of Man"=>1,"English Israel"=>1,"English Jamaica"=>1,"English Jersey"=>1,"English Kenya"=>1,"English Kiribati"=>1,"English Lesotho"=>1,"English Liberia"=>1,"English Macau SAR China"=>1,"English Madagascar"=>1,"English Malawi"=>1,"English Malaysia"=>1,"English Malta"=>1,"English Marshall Islands"=>1,"English Mauritius"=>1,"English Micronesia"=>1,"English Montserrat"=>1,"English Namibia"=>1,"English Nauru"=>1,"English Netherlands"=>1,"English New Zealand"=>1,"English Nigeria"=>1,"English Niue"=>1,"English Norfolk Island"=>1,"English Northern Mariana Islands"=>1,"English Pakistan"=>1,"English Palau"=>1,"English Papua New Guinea"=>1,"English Philippines"=>1,"English Pitcairn Islands"=>1,"English Puerto Rico"=>1,"English Rwanda"=>1,"English Samoa"=>1,"English Seychelles"=>1,"English Sierra Leone"=>1,"English Singapore"=>1,"English Sint Maarten"=>1,"English Slovenia"=>1,"English Solomon Islands"=>1,"English South Africa"=>1,"English South Sudan"=>1,"English St. Helena"=>1,"English St. Kitts & Nevis"=>1,"English St. Lucia"=>1,"English St. Vincent & Grenadines"=>1,"English Sudan"=>1,"English Swaziland"=>1,"English Sweden"=>1,"English Switzerland"=>1,"English Tanzania"=>1,"English Tokelau"=>1,"English Tonga"=>1,"English Trinidad & Tobago"=>1,"English Turks & Caicos Islands"=>1,"English Tuvalu"=>1,"English U.S. Outlying Islands"=>1,"English U.S. Virgin Islands"=>1,"English Uganda"=>1,"English United Kingdom"=>1,"English United States"=>1,"English United States Computer"=>1,"English Vanuatu"=>1,"English World"=>1,"English Zambia"=>1,"English Zimbabwe"=>1,Esperanto=>1,"Esperanto World"=>1,Estonian=>1,"Estonian Estonia"=>1,Ewe=>1,"Ewe Ghana"=>1,"Ewe Togo"=>1,Ewondo=>1,"Ewondo Cameroon"=>1,Faroese=>1,"Faroese Denmark"=>1,"Faroese Faroe Islands"=>1,Filipino=>1,"Filipino Philippines"=>1,Finnish=>1,"Finnish Finland"=>1,French=>1,"French Algeria"=>1,"French Belgium"=>1,"French Benin"=>1,"French Burkina Faso"=>1,"French Burundi"=>1,"French Cameroon"=>1,"French Canada"=>1,"French Central African Republic"=>1,"French Chad"=>1,"French Comoros"=>1,"French Congo - Brazzaville"=>1,"French Congo - Kinshasa"=>1,"French C\N{U+00f4}te d\N{U+2019}Ivoire"=>1,"French Djibouti"=>1,"French Equatorial Guinea"=>1,"French France"=>1,"French French Guiana"=>1,"French French Polynesia"=>1,"French Gabon"=>1,"French Guadeloupe"=>1,"French Guinea"=>1,"French Haiti"=>1,"French Luxembourg"=>1,"French Madagascar"=>1,"French Mali"=>1,"French Martinique"=>1,"French Mauritania"=>1,"French Mauritius"=>1,"French Mayotte"=>1,"French Monaco"=>1,"French Morocco"=>1,"French New Caledonia"=>1,"French Niger"=>1,"French Rwanda"=>1,"French R\N{U+00e9}union"=>1,"French Senegal"=>1,"French Seychelles"=>1,"French St. Barth\N{U+00e9}lemy"=>1,"French St. Martin"=>1,"French St. Pierre & Miquelon"=>1,"French Switzerland"=>1,"French Syria"=>1,"French Togo"=>1,"French Tunisia"=>1,"French Vanuatu"=>1,"French Wallis & Futuna"=>1,Friulian=>1,"Friulian Italy"=>1,Fulah=>1,"Fulah Cameroon"=>1,"Fulah Guinea"=>1,"Fulah Mauritania"=>1,"Fulah Senegal"=>1,Galician=>1,"Galician Spain"=>1,Ganda=>1,"Ganda Uganda"=>1,Georgian=>1,"Georgian Georgia"=>1,German=>1,"German Austria"=>1,"German Belgium"=>1,"German Germany"=>1,"German Liechtenstein"=>1,"German Luxembourg"=>1,"German Switzerland"=>1,Greek=>1,"Greek Cyprus"=>1,"Greek Greece"=>1,Gujarati=>1,"Gujarati India"=>1,Gusii=>1,"Gusii Kenya"=>1,Hausa=>1,"Hausa Ghana"=>1,"Hausa Niger"=>1,"Hausa Nigeria"=>1,Hawaiian=>1,"Hawaiian United States"=>1,Hebrew=>1,"Hebrew Israel"=>1,Hindi=>1,"Hindi India"=>1,Hungarian=>1,"Hungarian Hungary"=>1,Icelandic=>1,"Icelandic Iceland"=>1,Igbo=>1,"Igbo Nigeria"=>1,"Inari Sami"=>1,"Inari Sami Finland"=>1,Indonesian=>1,"Indonesian Indonesia"=>1,Irish=>1,"Irish Ireland"=>1,Italian=>1,"Italian Italy"=>1,"Italian San Marino"=>1,"Italian Switzerland"=>1,Japanese=>1,"Japanese Japan"=>1,"Jola-Fonyi"=>1,"Jola-Fonyi Senegal"=>1,Kabuverdianu=>1,"Kabuverdianu Cape Verde"=>1,Kabyle=>1,"Kabyle Algeria"=>1,Kako=>1,"Kako Cameroon"=>1,Kalaallisut=>1,"Kalaallisut Greenland"=>1,Kalenjin=>1,"Kalenjin Kenya"=>1,Kamba=>1,"Kamba Kenya"=>1,Kannada=>1,"Kannada India"=>1,Kashmiri=>1,"Kashmiri India"=>1,Kazakh=>1,"Kazakh Kazakhstan"=>1,Khmer=>1,"Khmer Cambodia"=>1,Kikuyu=>1,"Kikuyu Kenya"=>1,Kinyarwanda=>1,"Kinyarwanda Rwanda"=>1,Konkani=>1,"Konkani India"=>1,Korean=>1,"Korean North Korea"=>1,"Korean South Korea"=>1,"Koyra Chiini"=>1,"Koyra Chiini Mali"=>1,"Koyraboro Senni"=>1,"Koyraboro Senni Mali"=>1,Kwasio=>1,"Kwasio Cameroon"=>1,Kyrgyz=>1,"Kyrgyz Kyrgyzstan"=>1,Lakota=>1,"Lakota United States"=>1,Langi=>1,"Langi Tanzania"=>1,Lao=>1,"Lao Laos"=>1,Latvian=>1,"Latvian Latvia"=>1,Lingala=>1,"Lingala Angola"=>1,"Lingala Central African Republic"=>1,"Lingala Congo - Brazzaville"=>1,"Lingala Congo - Kinshasa"=>1,Lithuanian=>1,"Lithuanian Lithuania"=>1,"Lower Sorbian"=>1,"Lower Sorbian Germany"=>1,"Luba-Katanga"=>1,"Luba-Katanga Congo - Kinshasa"=>1,Luo=>1,"Luo Kenya"=>1,Luxembourgish=>1,"Luxembourgish Luxembourg"=>1,Luyia=>1,"Luyia Kenya"=>1,Macedonian=>1,"Macedonian Macedonia"=>1,Machame=>1,"Machame Tanzania"=>1,"Makhuwa-Meetto"=>1,"Makhuwa-Meetto Mozambique"=>1,Makonde=>1,"Makonde Tanzania"=>1,Malagasy=>1,"Malagasy Madagascar"=>1,Malay=>1,"Malay Brunei"=>1,"Malay Malaysia"=>1,"Malay Singapore"=>1,Malayalam=>1,"Malayalam India"=>1,Maltese=>1,"Maltese Malta"=>1,Manx=>1,"Manx Isle of Man"=>1,Marathi=>1,"Marathi India"=>1,Masai=>1,"Masai Kenya"=>1,"Masai Tanzania"=>1,Mazanderani=>1,"Mazanderani Iran"=>1,Meru=>1,"Meru Kenya"=>1,"Meta\N{U+02bc}"=>1,"Meta\N{U+02bc} Cameroon"=>1,Mongolian=>1,"Mongolian Mongolia"=>1,Morisyen=>1,"Morisyen Mauritius"=>1,Mundang=>1,"Mundang Cameroon"=>1,Nama=>1,"Nama Namibia"=>1,Nepali=>1,"Nepali India"=>1,"Nepali Nepal"=>1,Ngiemboon=>1,"Ngiemboon Cameroon"=>1,Ngomba=>1,"Ngomba Cameroon"=>1,"North Ndebele"=>1,"North Ndebele Zimbabwe"=>1,"Northern Luri"=>1,"Northern Luri Iran"=>1,"Northern Luri Iraq"=>1,"Northern Sami"=>1,"Northern Sami Finland"=>1,"Northern Sami Norway"=>1,"Northern Sami Sweden"=>1,"Norwegian Bokm\N{U+00e5}l"=>1,"Norwegian Bokm\N{U+00e5}l Norway"=>1,"Norwegian Bokm\N{U+00e5}l Svalbard & Jan Mayen"=>1,"Norwegian Nynorsk"=>1,"Norwegian Nynorsk Norway"=>1,Nuer=>1,"Nuer South Sudan"=>1,Nyankole=>1,"Nyankole Uganda"=>1,Oriya=>1,"Oriya India"=>1,Oromo=>1,"Oromo Ethiopia"=>1,"Oromo Kenya"=>1,Ossetic=>1,"Ossetic Georgia"=>1,"Ossetic Russia"=>1,Pashto=>1,"Pashto Afghanistan"=>1,Persian=>1,"Persian Afghanistan"=>1,"Persian Iran"=>1,Polish=>1,"Polish Poland"=>1,Portuguese=>1,"Portuguese Angola"=>1,"Portuguese Brazil"=>1,"Portuguese Cape Verde"=>1,"Portuguese Guinea-Bissau"=>1,"Portuguese Macau SAR China"=>1,"Portuguese Mozambique"=>1,"Portuguese Portugal"=>1,"Portuguese S\N{U+00e3}o Tom\N{U+00e9} & Pr\N{U+00ed}ncipe"=>1,"Portuguese Timor-Leste"=>1,Prussian=>1,"Prussian World"=>1,Punjabi=>1,"Punjabi Arabic"=>1,"Punjabi Gurmukhi"=>1,"Punjabi India Gurmukhi"=>1,"Punjabi Pakistan Arabic"=>1,Quechua=>1,"Quechua Bolivia"=>1,"Quechua Ecuador"=>1,"Quechua Peru"=>1,Romanian=>1,"Romanian Moldova"=>1,"Romanian Romania"=>1,Romansh=>1,"Romansh Switzerland"=>1,Rombo=>1,"Rombo Tanzania"=>1,Root=>1,Rundi=>1,"Rundi Burundi"=>1,Russian=>1,"Russian Belarus"=>1,"Russian Kazakhstan"=>1,"Russian Kyrgyzstan"=>1,"Russian Moldova"=>1,"Russian Russia"=>1,"Russian Ukraine"=>1,Rwa=>1,"Rwa Tanzania"=>1,Sakha=>1,"Sakha Russia"=>1,Samburu=>1,"Samburu Kenya"=>1,Sango=>1,"Sango Central African Republic"=>1,Sangu=>1,"Sangu Tanzania"=>1,"Scottish Gaelic"=>1,"Scottish Gaelic United Kingdom"=>1,Sena=>1,"Sena Mozambique"=>1,Serbian=>1,"Serbian Bosnia & Herzegovina Cyrillic"=>1,"Serbian Bosnia & Herzegovina Latin"=>1,"Serbian Cyrillic"=>1,"Serbian Kosovo Cyrillic"=>1,"Serbian Kosovo Latin"=>1,"Serbian Latin"=>1,"Serbian Montenegro Cyrillic"=>1,"Serbian Montenegro Latin"=>1,"Serbian Serbia Cyrillic"=>1,"Serbian Serbia Latin"=>1,Shambala=>1,"Shambala Tanzania"=>1,Shona=>1,"Shona Zimbabwe"=>1,"Sichuan Yi"=>1,"Sichuan Yi China"=>1,Sinhala=>1,"Sinhala Sri Lanka"=>1,Slovak=>1,"Slovak Slovakia"=>1,Slovenian=>1,"Slovenian Slovenia"=>1,Soga=>1,"Soga Uganda"=>1,Somali=>1,"Somali Djibouti"=>1,"Somali Ethiopia"=>1,"Somali Kenya"=>1,"Somali Somalia"=>1,Spanish=>1,"Spanish Argentina"=>1,"Spanish Bolivia"=>1,"Spanish Canary Islands"=>1,"Spanish Ceuta & Melilla"=>1,"Spanish Chile"=>1,"Spanish Colombia"=>1,"Spanish Costa Rica"=>1,"Spanish Cuba"=>1,"Spanish Dominican Republic"=>1,"Spanish Ecuador"=>1,"Spanish El Salvador"=>1,"Spanish Equatorial Guinea"=>1,"Spanish Guatemala"=>1,"Spanish Honduras"=>1,"Spanish Latin America"=>1,"Spanish Mexico"=>1,"Spanish Nicaragua"=>1,"Spanish Panama"=>1,"Spanish Paraguay"=>1,"Spanish Peru"=>1,"Spanish Philippines"=>1,"Spanish Puerto Rico"=>1,"Spanish Spain"=>1,"Spanish United States"=>1,"Spanish Uruguay"=>1,"Spanish Venezuela"=>1,"Standard Moroccan Tamazight"=>1,"Standard Moroccan Tamazight Morocco"=>1,Swahili=>1,"Swahili Congo - Kinshasa"=>1,"Swahili Kenya"=>1,"Swahili Tanzania"=>1,"Swahili Uganda"=>1,Swedish=>1,"Swedish Finland"=>1,"Swedish Sweden"=>1,"Swedish \N{U+00c5}land Islands"=>1,"Swiss German"=>1,"Swiss German France"=>1,"Swiss German Liechtenstein"=>1,"Swiss German Switzerland"=>1,Tachelhit=>1,"Tachelhit Latin"=>1,"Tachelhit Morocco Latin"=>1,"Tachelhit Morocco Tifinagh"=>1,"Tachelhit Tifinagh"=>1,Taita=>1,"Taita Kenya"=>1,Tamil=>1,"Tamil India"=>1,"Tamil Malaysia"=>1,"Tamil Singapore"=>1,"Tamil Sri Lanka"=>1,Tasawaq=>1,"Tasawaq Niger"=>1,Telugu=>1,"Telugu India"=>1,Teso=>1,"Teso Kenya"=>1,"Teso Uganda"=>1,Thai=>1,"Thai Thailand"=>1,Tibetan=>1,"Tibetan China"=>1,"Tibetan India"=>1,Tigrinya=>1,"Tigrinya Eritrea"=>1,"Tigrinya Ethiopia"=>1,Tongan=>1,"Tongan Tonga"=>1,Turkish=>1,"Turkish Cyprus"=>1,"Turkish Turkey"=>1,Turkmen=>1,"Turkmen Turkmenistan"=>1,Ukrainian=>1,"Ukrainian Ukraine"=>1,"Upper Sorbian"=>1,"Upper Sorbian Germany"=>1,Urdu=>1,"Urdu India"=>1,"Urdu Pakistan"=>1,Uyghur=>1,"Uyghur China"=>1,Uzbek=>1,"Uzbek Afghanistan Arabic"=>1,"Uzbek Arabic"=>1,"Uzbek Cyrillic"=>1,"Uzbek Latin"=>1,"Uzbek Uzbekistan Cyrillic"=>1,"Uzbek Uzbekistan Latin"=>1,Vai=>1,"Vai Latin"=>1,"Vai Liberia Latin"=>1,"Vai Liberia Vai"=>1,"Vai Vai"=>1,Vietnamese=>1,"Vietnamese Vietnam"=>1,"Volap\N{U+00fc}k"=>1,"Volap\N{U+00fc}k World"=>1,Vunjo=>1,"Vunjo Tanzania"=>1,Walser=>1,"Walser Switzerland"=>1,Welsh=>1,"Welsh United Kingdom"=>1,"Western Frisian"=>1,"Western Frisian Netherlands"=>1,Yangben=>1,"Yangben Cameroon"=>1,Yiddish=>1,"Yiddish World"=>1,Yoruba=>1,"Yoruba Benin"=>1,"Yoruba Nigeria"=>1,Zarma=>1,"Zarma Niger"=>1,Zulu=>1,"Zulu South Africa"=>1);our%NativeNames=(Afrikaans=>1,"Afrikaans Namibi\N{U+00eb}"=>1,"Afrikaans Suid-Afrika"=>1,Aghem=>1,"Aghem K\N{U+00e0}m\N{U+00e0}l\N{U+00fb}\N{U+014b}"=>1,Akan=>1,"Akan Gaana"=>1,"Bahasa Melayu"=>1,"Bahasa Melayu Brunei"=>1,"Bahasa Melayu Malaysia"=>1,"Bahasa Melayu Singapura"=>1,Chimakonde=>1,"Chimakonde Tanzania"=>1,Cymraeg=>1,"Cymraeg Y Deyrnas Unedig"=>1,Deutsch=>1,"Deutsch Belgien"=>1,"Deutsch Deutschland"=>1,"Deutsch Liechtenstein"=>1,"Deutsch Luxemburg"=>1,"Deutsch Schweiz"=>1,"Deutsch \N{U+00d6}sterreich"=>1,Dholuo=>1,"Dholuo Kenya"=>1,Ekegusii=>1,"Ekegusii Kenya"=>1,English=>1,"English American Samoa"=>1,"English Anguilla"=>1,"English Antigua & Barbuda"=>1,"English Australia"=>1,"English Austria"=>1,"English Bahamas"=>1,"English Barbados"=>1,"English Belgium"=>1,"English Belize"=>1,"English Bermuda"=>1,"English Botswana"=>1,"English British Indian Ocean Territory"=>1,"English British Virgin Islands"=>1,"English Burundi"=>1,"English Cameroon"=>1,"English Canada"=>1,"English Cayman Islands"=>1,"English Christmas Island"=>1,"English Cocos (Keeling) Islands"=>1,"English Cook Islands"=>1,"English Cyprus"=>1,"English Denmark"=>1,"English Diego Garcia"=>1,"English Dominica"=>1,"English Eritrea"=>1,"English Europe"=>1,"English Falkland Islands"=>1,"English Fiji"=>1,"English Finland"=>1,"English Gambia"=>1,"English Germany"=>1,"English Ghana"=>1,"English Gibraltar"=>1,"English Grenada"=>1,"English Guam"=>1,"English Guernsey"=>1,"English Guyana"=>1,"English Hong Kong SAR China"=>1,"English India"=>1,"English Ireland"=>1,"English Isle of Man"=>1,"English Israel"=>1,"English Jamaica"=>1,"English Jersey"=>1,"English Kenya"=>1,"English Kiribati"=>1,"English Lesotho"=>1,"English Liberia"=>1,"English Macau SAR China"=>1,"English Madagascar"=>1,"English Malawi"=>1,"English Malaysia"=>1,"English Malta"=>1,"English Marshall Islands"=>1,"English Mauritius"=>1,"English Micronesia"=>1,"English Montserrat"=>1,"English Namibia"=>1,"English Nauru"=>1,"English Netherlands"=>1,"English New Zealand"=>1,"English Nigeria"=>1,"English Niue"=>1,"English Norfolk Island"=>1,"English Northern Mariana Islands"=>1,"English Pakistan"=>1,"English Palau"=>1,"English Papua New Guinea"=>1,"English Philippines"=>1,"English Pitcairn Islands"=>1,"English Puerto Rico"=>1,"English Rwanda"=>1,"English Samoa"=>1,"English Seychelles"=>1,"English Sierra Leone"=>1,"English Singapore"=>1,"English Sint Maarten"=>1,"English Slovenia"=>1,"English Solomon Islands"=>1,"English South Africa"=>1,"English South Sudan"=>1,"English St. Helena"=>1,"English St. Kitts & Nevis"=>1,"English St. Lucia"=>1,"English St. Vincent & Grenadines"=>1,"English Sudan"=>1,"English Swaziland"=>1,"English Sweden"=>1,"English Switzerland"=>1,"English Tanzania"=>1,"English Tokelau"=>1,"English Tonga"=>1,"English Trinidad & Tobago"=>1,"English Turks & Caicos Islands"=>1,"English Tuvalu"=>1,"English U.S. Outlying Islands"=>1,"English U.S. Virgin Islands"=>1,"English Uganda"=>1,"English United Kingdom"=>1,"English United States"=>1,"English United States Computer"=>1,"English Vanuatu"=>1,"English World"=>1,"English Zambia"=>1,"English Zimbabwe"=>1,"E\N{U+028b}egbe"=>1,"E\N{U+028b}egbe Ghana nutome"=>1,"E\N{U+028b}egbe Togo nutome"=>1,Filipino=>1,"Filipino Pilipinas"=>1,Gaeilge=>1,"Gaeilge \N{U+00c9}ire"=>1,Gaelg=>1,"Gaelg Ellan Vannin"=>1,Gikuyu=>1,"Gikuyu Kenya"=>1,"G\N{U+00e0}idhlig"=>1,"G\N{U+00e0}idhlig An R\N{U+00ec}oghachd Aonaichte"=>1,Hausa=>1,"Hausa Gana"=>1,"Hausa Najeriya"=>1,"Hausa Nijar"=>1,Hibena=>1,"Hibena Hutanzania"=>1,Ichibemba=>1,"Ichibemba Zambia"=>1,Igbo=>1,"Igbo Nigeria"=>1,Ikirundi=>1,"Ikirundi Uburundi"=>1,Indonesia=>1,"Indonesia Indonesia"=>1,Ishisangu=>1,"Ishisangu Tansaniya"=>1,Kalenjin=>1,"Kalenjin Emetab Kenya"=>1,Khoekhoegowab=>1,"Khoekhoegowab Namibiab"=>1,Kihorombo=>1,"Kihorombo Tanzania"=>1,Kikamba=>1,"Kikamba Kenya"=>1,Kimachame=>1,"Kimachame Tanzania"=>1,Kinyarwanda=>1,"Kinyarwanda Rwanda"=>1,Kipare=>1,"Kipare Tadhania"=>1,Kiruwa=>1,"Kiruwa Tanzania"=>1,Kisampur=>1,"Kisampur Kenya"=>1,Kishambaa=>1,"Kishambaa Tanzania"=>1,Kiswahili=>1,"Kiswahili Jamhuri ya Kidemokrasia ya Kongo"=>1,"Kiswahili Kenya"=>1,"Kiswahili Tanzania"=>1,"Kiswahili Uganda"=>1,Kitaita=>1,"Kitaita Kenya"=>1,Kiteso=>1,"Kiteso Kenia"=>1,"Kiteso Uganda"=>1,"Koyra ciini"=>1,"Koyra ciini Maali"=>1,"Koyraboro senni"=>1,"Koyraboro senni Maali"=>1,Kyivunjo=>1,"Kyivunjo Tanzania"=>1,"K\N{U+00f6}lsch"=>1,"K\N{U+00f6}lsch Do\N{U+00fc}tschland"=>1,"K\N{U+0129}embu"=>1,"K\N{U+0129}embu Kenya"=>1,"K\N{U+0129}m\N{U+0129}r\N{U+0169}"=>1,"K\N{U+0129}m\N{U+0129}r\N{U+0169} Kenya"=>1,"K\N{U+0268}laangi"=>1,"K\N{U+0268}laangi Taansan\N{U+00ed}a"=>1,"Lak\N{U+021f}\N{U+00f3}l\N{U+02bc}iyapi"=>1,"Lak\N{U+021f}\N{U+00f3}l\N{U+02bc}iyapi M\N{U+00ed}laha\N{U+014b}ska T\N{U+021f}am\N{U+00e1}k\N{U+021f}o\N{U+010d}he"=>1,Luganda=>1,"Luganda Yuganda"=>1,Luluhia=>1,"Luluhia Kenya"=>1,"L\N{U+00eb}tzebuergesch"=>1,"L\N{U+00eb}tzebuergesch L\N{U+00eb}tzebuerg"=>1,"MUNDA\N{U+014a}"=>1,"MUNDA\N{U+014a} kameru\N{U+014b}"=>1,Maa=>1,"Maa Kenya"=>1,"Maa Tansania"=>1,Makua=>1,"Makua Umozambiki"=>1,Malagasy=>1,"Malagasy Madagasikara"=>1,Malti=>1,"Malti Malta"=>1,"Nda\N{U+a78c}a"=>1,"Nda\N{U+a78c}a Kam\N{U+025b}l\N{U+00fb}n"=>1,Nederlands=>1,"Nederlands Aruba"=>1,"Nederlands Belgi\N{U+00eb}"=>1,"Nederlands Caribisch Nederland"=>1,"Nederlands Cura\N{U+00e7}ao"=>1,"Nederlands Nederland"=>1,"Nederlands Sint-Maarten"=>1,"Nederlands Suriname"=>1,Olusoga=>1,"Olusoga Yuganda"=>1,Oromoo=>1,"Oromoo Itoophiyaa"=>1,"Oromoo Keeniyaa"=>1,Pulaar=>1,"Pulaar Gine"=>1,"Pulaar Kameruun"=>1,"Pulaar Muritani"=>1,"Pulaar Senegaal"=>1,Rukiga=>1,"Rukiga Uganda"=>1,Runasimi=>1,"Runasimi Bolivia"=>1,"Runasimi Ecuador"=>1,"Runasimi Per\N{U+00fa}"=>1,Runyankore=>1,"Runyankore Uganda"=>1,"Schwiizert\N{U+00fc}\N{U+00fc}tsch"=>1,"Schwiizert\N{U+00fc}\N{U+00fc}tsch Frankriich"=>1,"Schwiizert\N{U+00fc}\N{U+00fc}tsch Li\N{U+00e4}chtescht\N{U+00e4}i"=>1,"Schwiizert\N{U+00fc}\N{U+00fc}tsch Schwiiz"=>1,"Shw\N{U+00f3}\N{U+014b}\N{U+00f2} ngiemb\N{U+0254}\N{U+0254}n"=>1,"Shw\N{U+00f3}\N{U+014b}\N{U+00f2} ngiemb\N{U+0254}\N{U+0254}n K\N{U+00e0}mal\N{U+00fb}m"=>1,Soomaali=>1,"Soomaali Itoobiya"=>1,"Soomaali Jabuuti"=>1,"Soomaali Kiiniya"=>1,"Soomaali Soomaaliya"=>1,"S\N{U+00e4}ng\N{U+00f6}"=>1,"S\N{U+00e4}ng\N{U+00f6} K\N{U+00f6}d\N{U+00f6}r\N{U+00f6}s\N{U+00ea}se t\N{U+00ee} B\N{U+00ea}afr\N{U+00ee}ka"=>1,"Tamazi\N{U+0263}t n la\N{U+1e6d}la\N{U+1e63}"=>1,"Tamazi\N{U+0263}t n la\N{U+1e6d}la\N{U+1e63} Me\N{U+1e5b}\N{U+1e5b}uk"=>1,Taqbaylit=>1,"Taqbaylit Lezzayer"=>1,"Tasawaq senni"=>1,"Tasawaq senni Ni\N{U+017e}er"=>1,"Tashel\N{U+1e25}iyt Latn"=>1,"Tashel\N{U+1e25}iyt lm\N{U+0263}rib Latn"=>1,"Thok Nath"=>1,"Thok Nath SS"=>1,"Ti\N{U+1ebf}ng Vi\N{U+1ec7}t"=>1,"Ti\N{U+1ebf}ng Vi\N{U+1ec7}t Vi\N{U+1ec7}t Nam"=>1,Tshiluba=>1,"Tshiluba Ditunga wa Kongu"=>1,"T\N{U+00fc}rk\N{U+00e7}e"=>1,"T\N{U+00fc}rk\N{U+00e7}e G\N{U+00fc}ney K\N{U+0131}br\N{U+0131}s Rum Kesimi"=>1,"T\N{U+00fc}rk\N{U+00e7}e T\N{U+00fc}rkiye"=>1,"Vai Laibhiya Latn"=>1,"Vai Latn"=>1,Walser=>1,"Walser Schwiz"=>1,"West-Frysk"=>1,"West-Frysk Nederl\N{U+00e2}n"=>1,Zarmaciine=>1,"Zarmaciine Ni\N{U+017e}er"=>1,"anar\N{U+00e2}\N{U+0161}kiel\N{U+00e2}"=>1,"anar\N{U+00e2}\N{U+0161}kiel\N{U+00e2} Suom\N{U+00e2}"=>1,asturianu=>1,"asturianu Espa\N{U+00f1}a"=>1,"az\N{U+0259}rbaycan dili"=>1,"az\N{U+0259}rbaycan dili Az\N{U+0259}rbaycan lat\N{U+0131}n"=>1,"az\N{U+0259}rbaycan dili lat\N{U+0131}n"=>1,bamanakan=>1,"bamanakan Mali"=>1,bosanski=>1,"bosanski Bosna i Hercegovina latinica"=>1,"bosanski latinica"=>1,brezhoneg=>1,"brezhoneg Fra\N{U+00f1}s"=>1,"catal\N{U+00e0}"=>1,"catal\N{U+00e0} Andorra"=>1,"catal\N{U+00e0} Espanya"=>1,"catal\N{U+00e0} Espanya valenci\N{U+00e0}"=>1,"catal\N{U+00e0} Fran\N{U+00e7}a"=>1,"catal\N{U+00e0} It\N{U+00e0}lia"=>1,chiShona=>1,"chiShona Zimbabwe"=>1,cu=>1,"cu RU"=>1,dansk=>1,"dansk Danmark"=>1,"dansk Gr\N{U+00f8}nland"=>1,"davvis\N{U+00e1}megiella"=>1,"davvis\N{U+00e1}megiella Norga"=>1,"davvis\N{U+00e1}megiella Ruo\N{U+0167}\N{U+0167}a"=>1,"davvis\N{U+00e1}megiella Suopma"=>1,"dolnoserb\N{U+0161}\N{U+0107}ina"=>1,"dolnoserb\N{U+0161}\N{U+0107}ina Nimska"=>1,"du\N{U+00e1}l\N{U+00e1}"=>1,"du\N{U+00e1}l\N{U+00e1} Cameroun"=>1,eesti=>1,"eesti Eesti"=>1,"espa\N{U+00f1}ol"=>1,"espa\N{U+00f1}ol Argentina"=>1,"espa\N{U+00f1}ol Bolivia"=>1,"espa\N{U+00f1}ol Canarias"=>1,"espa\N{U+00f1}ol Ceuta y Melilla"=>1,"espa\N{U+00f1}ol Chile"=>1,"espa\N{U+00f1}ol Colombia"=>1,"espa\N{U+00f1}ol Costa Rica"=>1,"espa\N{U+00f1}ol Cuba"=>1,"espa\N{U+00f1}ol Ecuador"=>1,"espa\N{U+00f1}ol El Salvador"=>1,"espa\N{U+00f1}ol Espa\N{U+00f1}a"=>1,"espa\N{U+00f1}ol Estados Unidos"=>1,"espa\N{U+00f1}ol Filipinas"=>1,"espa\N{U+00f1}ol Guatemala"=>1,"espa\N{U+00f1}ol Guinea Ecuatorial"=>1,"espa\N{U+00f1}ol Honduras"=>1,"espa\N{U+00f1}ol Latinoam\N{U+00e9}rica"=>1,"espa\N{U+00f1}ol M\N{U+00e9}xico"=>1,"espa\N{U+00f1}ol Nicaragua"=>1,"espa\N{U+00f1}ol Panam\N{U+00e1}"=>1,"espa\N{U+00f1}ol Paraguay"=>1,"espa\N{U+00f1}ol Per\N{U+00fa}"=>1,"espa\N{U+00f1}ol Puerto Rico"=>1,"espa\N{U+00f1}ol Rep\N{U+00fa}blica Dominicana"=>1,"espa\N{U+00f1}ol Uruguay"=>1,"espa\N{U+00f1}ol Venezuela"=>1,esperanto=>1,"esperanto 001"=>1,euskara=>1,"euskara Espainia"=>1,ewondo=>1,"ewondo Kam\N{U+0259}r\N{U+00fa}n"=>1,"fran\N{U+00e7}ais"=>1,"fran\N{U+00e7}ais Alg\N{U+00e9}rie"=>1,"fran\N{U+00e7}ais Belgique"=>1,"fran\N{U+00e7}ais Burkina Faso"=>1,"fran\N{U+00e7}ais Burundi"=>1,"fran\N{U+00e7}ais B\N{U+00e9}nin"=>1,"fran\N{U+00e7}ais Cameroun"=>1,"fran\N{U+00e7}ais Canada"=>1,"fran\N{U+00e7}ais Comores"=>1,"fran\N{U+00e7}ais Congo-Brazzaville"=>1,"fran\N{U+00e7}ais Congo-Kinshasa"=>1,"fran\N{U+00e7}ais C\N{U+00f4}te d\N{U+2019}Ivoire"=>1,"fran\N{U+00e7}ais Djibouti"=>1,"fran\N{U+00e7}ais France"=>1,"fran\N{U+00e7}ais Gabon"=>1,"fran\N{U+00e7}ais Guadeloupe"=>1,"fran\N{U+00e7}ais Guin\N{U+00e9}e"=>1,"fran\N{U+00e7}ais Guin\N{U+00e9}e \N{U+00e9}quatoriale"=>1,"fran\N{U+00e7}ais Guyane fran\N{U+00e7}aise"=>1,"fran\N{U+00e7}ais Ha\N{U+00ef}ti"=>1,"fran\N{U+00e7}ais La R\N{U+00e9}union"=>1,"fran\N{U+00e7}ais Luxembourg"=>1,"fran\N{U+00e7}ais Madagascar"=>1,"fran\N{U+00e7}ais Mali"=>1,"fran\N{U+00e7}ais Maroc"=>1,"fran\N{U+00e7}ais Martinique"=>1,"fran\N{U+00e7}ais Maurice"=>1,"fran\N{U+00e7}ais Mauritanie"=>1,"fran\N{U+00e7}ais Mayotte"=>1,"fran\N{U+00e7}ais Monaco"=>1,"fran\N{U+00e7}ais Niger"=>1,"fran\N{U+00e7}ais Nouvelle-Cal\N{U+00e9}donie"=>1,"fran\N{U+00e7}ais Polyn\N{U+00e9}sie fran\N{U+00e7}aise"=>1,"fran\N{U+00e7}ais Rwanda"=>1,"fran\N{U+00e7}ais R\N{U+00e9}publique centrafricaine"=>1,"fran\N{U+00e7}ais Saint-Barth\N{U+00e9}lemy"=>1,"fran\N{U+00e7}ais Saint-Martin"=>1,"fran\N{U+00e7}ais Saint-Pierre-et-Miquelon"=>1,"fran\N{U+00e7}ais Seychelles"=>1,"fran\N{U+00e7}ais Suisse"=>1,"fran\N{U+00e7}ais Syrie"=>1,"fran\N{U+00e7}ais S\N{U+00e9}n\N{U+00e9}gal"=>1,"fran\N{U+00e7}ais Tchad"=>1,"fran\N{U+00e7}ais Togo"=>1,"fran\N{U+00e7}ais Tunisie"=>1,"fran\N{U+00e7}ais Vanuatu"=>1,"fran\N{U+00e7}ais Wallis-et-Futuna"=>1,furlan=>1,"furlan Italie"=>1,"f\N{U+00f8}royskt"=>1,"f\N{U+00f8}royskt Danmark"=>1,"f\N{U+00f8}royskt F\N{U+00f8}royar"=>1,galego=>1,"galego Espa\N{U+00f1}a"=>1,"hornjoserb\N{U+0161}\N{U+0107}ina"=>1,"hornjoserb\N{U+0161}\N{U+0107}ina N\N{U+011b}mska"=>1,hrvatski=>1,"hrvatski Bosna i Hercegovina"=>1,"hrvatski Hrvatska"=>1,isiNdebele=>1,"isiNdebele Zimbabwe"=>1,isiZulu=>1,"isiZulu i-South Africa"=>1,italiano=>1,"italiano Italia"=>1,"italiano San Marino"=>1,"italiano Svizzera"=>1,joola=>1,"joola Senegal"=>1,kabuverdianu=>1,"kabuverdianu Kabu Verdi"=>1,"kak\N{U+0254}"=>1,"kak\N{U+0254} Kam\N{U+025b}run"=>1,kalaallisut=>1,"kalaallisut Kalaallit Nunaat"=>1,kernewek=>1,"kernewek Rywvaneth Unys"=>1,"kreol morisien"=>1,"kreol morisien Moris"=>1,"latvie\N{U+0161}u"=>1,"latvie\N{U+0161}u Latvija"=>1,"lea fakatonga"=>1,"lea fakatonga Tonga"=>1,"lietuvi\N{U+0173}"=>1,"lietuvi\N{U+0173} Lietuva"=>1,"ling\N{U+00e1}la"=>1,"ling\N{U+00e1}la Ang\N{U+00f3}la"=>1,"ling\N{U+00e1}la Kongo"=>1,"ling\N{U+00e1}la Repibiki demokratiki ya Kong\N{U+00f3}"=>1,"ling\N{U+00e1}la Repibiki ya Afr\N{U+00ed}ka ya K\N{U+00e1}ti"=>1,magyar=>1,"magyar Magyarorsz\N{U+00e1}g"=>1,"meta\N{U+02bc}"=>1,"meta\N{U+02bc} Kamalun"=>1,nmg=>1,"nmg Kamerun"=>1,"norsk bokm\N{U+00e5}l"=>1,"norsk bokm\N{U+00e5}l Norge"=>1,"norsk bokm\N{U+00e5}l Svalbard og Jan Mayen"=>1,nuasue=>1,"nuasue Kemel\N{U+00fa}n"=>1,nynorsk=>1,"nynorsk Noreg"=>1,"o\N{U+2018}zbek"=>1,"o\N{U+2018}zbek O\N{U+02bb}zbekiston lotin"=>1,"o\N{U+2018}zbek lotin"=>1,polski=>1,"polski Polska"=>1,"portugu\N{U+00ea}s"=>1,"portugu\N{U+00ea}s Angola"=>1,"portugu\N{U+00ea}s Brasil"=>1,"portugu\N{U+00ea}s Cabo Verde"=>1,"portugu\N{U+00ea}s Guin\N{U+00e9}-Bissau"=>1,"portugu\N{U+00ea}s Macau, RAE da China"=>1,"portugu\N{U+00ea}s Mo\N{U+00e7}ambique"=>1,"portugu\N{U+00ea}s Portugal"=>1,"portugu\N{U+00ea}s S\N{U+00e3}o Tom\N{U+00e9} e Pr\N{U+00ed}ncipe"=>1,"portugu\N{U+00ea}s Timor-Leste"=>1,"pr\N{U+016b}siskan"=>1,"pr\N{U+016b}siskan 001"=>1,rikpa=>1,"rikpa kam\N{U+025b}r\N{U+00fa}n"=>1,"rom\N{U+00e2}n\N{U+0103}"=>1,"rom\N{U+00e2}n\N{U+0103} Republica Moldova"=>1,"rom\N{U+00e2}n\N{U+0103} Rom\N{U+00e2}nia"=>1,root=>1,rumantsch=>1,"rumantsch Svizra"=>1,sena=>1,"sena Mo\N{U+00e7}ambique"=>1,shqip=>1,"shqip Kosov\N{U+00eb}"=>1,"shqip Maqedoni"=>1,"shqip Shqip\N{U+00eb}ri"=>1,"sloven\N{U+010d}ina"=>1,"sloven\N{U+010d}ina Slovensko"=>1,"sloven\N{U+0161}\N{U+010d}ina"=>1,"sloven\N{U+0161}\N{U+010d}ina Slovenija"=>1,"srpski Bosna i Hercegovina latinica"=>1,"srpski Crna Gora latinica"=>1,"srpski Kosovo latinica"=>1,"srpski Srbija latinica"=>1,"srpski latinica"=>1,suomi=>1,"suomi Suomi"=>1,svenska=>1,"svenska Finland"=>1,"svenska Sverige"=>1,"svenska \N{U+00c5}land"=>1,tk=>1,"tk TM"=>1,vo=>1,"vo 001"=>1,"\N{U+00c8}d\N{U+00e8} Yor\N{U+00f9}b\N{U+00e1}"=>1,"\N{U+00c8}d\N{U+00e8} Yor\N{U+00f9}b\N{U+00e1} Or\N{U+00ed}l\N{U+025b}\N{U+0301}\N{U+00e8}de B\N{U+025b}\N{U+0300}n\N{U+025b}\N{U+0300}"=>1,"\N{U+00c8}d\N{U+00e8} Yor\N{U+00f9}b\N{U+00e1} Or\N{U+00ed}l\N{U+1eb9}\N{U+0301}\N{U+00e8}de N\N{U+00e0}\N{U+00ec}j\N{U+00ed}r\N{U+00ed}\N{U+00e0}"=>1,"\N{U+00ed}slenska"=>1,"\N{U+00ed}slenska \N{U+00cd}sland"=>1,"\N{U+010d}e\N{U+0161}tina"=>1,"\N{U+010d}e\N{U+0161}tina \N{U+010c}esk\N{U+00e1} republika"=>1,"\N{U+0181}\N{U+00e0}s\N{U+00e0}a"=>1,"\N{U+0181}\N{U+00e0}s\N{U+00e0}a K\N{U+00e0}m\N{U+025b}\N{U+0300}r\N{U+00fb}n"=>1,"\N{U+02bb}\N{U+014c}lelo Hawai\N{U+02bb}i"=>1,"\N{U+02bb}\N{U+014c}lelo Hawai\N{U+02bb}i \N{U+02bb}Amelika Hui P\N{U+016b} \N{U+02bb}Ia"=>1,"\N{U+0395}\N{U+03bb}\N{U+03bb}\N{U+03b7}\N{U+03bd}\N{U+03b9}\N{U+03ba}\N{U+03ac}"=>1,"\N{U+0395}\N{U+03bb}\N{U+03bb}\N{U+03b7}\N{U+03bd}\N{U+03b9}\N{U+03ba}\N{U+03ac} \N{U+0395}\N{U+03bb}\N{U+03bb}\N{U+03ac}\N{U+03b4}\N{U+03b1}"=>1,"\N{U+0395}\N{U+03bb}\N{U+03bb}\N{U+03b7}\N{U+03bd}\N{U+03b9}\N{U+03ba}\N{U+03ac} \N{U+039a}\N{U+03cd}\N{U+03c0}\N{U+03c1}\N{U+03bf}\N{U+03c2}"=>1,"\N{U+040e}\N{U+0437}\N{U+0431}\N{U+0435}\N{U+043a} \N{U+040e}\N{U+0437}\N{U+0431}\N{U+0435}\N{U+043a}\N{U+0438}\N{U+0441}\N{U+0442}\N{U+043e}\N{U+043d} \N{U+041a}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}"=>1,"\N{U+040e}\N{U+0437}\N{U+0431}\N{U+0435}\N{U+043a} \N{U+041a}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}"=>1,"\N{U+0430}\N{U+0437}\N{U+04d9}\N{U+0440}\N{U+0431}\N{U+0430}\N{U+0458}\N{U+04b9}\N{U+0430}\N{U+043d} \N{U+0434}\N{U+0438}\N{U+043b}\N{U+0438} \N{U+0410}\N{U+0437}\N{U+04d9}\N{U+0440}\N{U+0431}\N{U+0430}\N{U+0458}\N{U+04b9}\N{U+0430}\N{U+043d} \N{U+041a}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}"=>1,"\N{U+0430}\N{U+0437}\N{U+04d9}\N{U+0440}\N{U+0431}\N{U+0430}\N{U+0458}\N{U+04b9}\N{U+0430}\N{U+043d} \N{U+0434}\N{U+0438}\N{U+043b}\N{U+0438} \N{U+041a}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}"=>1,"\N{U+0431}\N{U+0435}\N{U+043b}\N{U+0430}\N{U+0440}\N{U+0443}\N{U+0441}\N{U+043a}\N{U+0430}\N{U+044f}"=>1,"\N{U+0431}\N{U+0435}\N{U+043b}\N{U+0430}\N{U+0440}\N{U+0443}\N{U+0441}\N{U+043a}\N{U+0430}\N{U+044f} \N{U+0411}\N{U+0435}\N{U+043b}\N{U+0430}\N{U+0440}\N{U+0443}\N{U+0441}\N{U+044c}"=>1,"\N{U+0431}\N{U+043e}\N{U+0441}\N{U+0430}\N{U+043d}\N{U+0441}\N{U+043a}\N{U+0438} \N{U+040b}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}\N{U+0438}\N{U+0446}\N{U+0430}"=>1,"\N{U+0431}\N{U+043e}\N{U+0441}\N{U+0430}\N{U+043d}\N{U+0441}\N{U+043a}\N{U+0438} \N{U+0411}\N{U+043e}\N{U+0441}\N{U+043d}\N{U+0430} \N{U+0438} \N{U+0425}\N{U+0435}\N{U+0440}\N{U+0446}\N{U+0435}\N{U+0433}\N{U+043e}\N{U+0432}\N{U+0438}\N{U+043d}\N{U+0430} \N{U+040b}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}\N{U+0438}\N{U+0446}\N{U+0430}"=>1,"\N{U+0431}\N{U+044a}\N{U+043b}\N{U+0433}\N{U+0430}\N{U+0440}\N{U+0441}\N{U+043a}\N{U+0438}"=>1,"\N{U+0431}\N{U+044a}\N{U+043b}\N{U+0433}\N{U+0430}\N{U+0440}\N{U+0441}\N{U+043a}\N{U+0438} \N{U+0411}\N{U+044a}\N{U+043b}\N{U+0433}\N{U+0430}\N{U+0440}\N{U+0438}\N{U+044f}"=>1,"\N{U+0438}\N{U+0440}\N{U+043e}\N{U+043d}"=>1,"\N{U+0438}\N{U+0440}\N{U+043e}\N{U+043d} \N{U+0413}\N{U+0443}\N{U+044b}\N{U+0440}\N{U+0434}\N{U+0437}\N{U+044b}\N{U+0441}\N{U+0442}\N{U+043e}\N{U+043d}"=>1,"\N{U+0438}\N{U+0440}\N{U+043e}\N{U+043d} \N{U+0423}\N{U+04d5}\N{U+0440}\N{U+04d5}\N{U+0441}\N{U+0435}"=>1,"\N{U+043a}\N{U+044b}\N{U+0440}\N{U+0433}\N{U+044b}\N{U+0437}\N{U+0447}\N{U+0430}"=>1,"\N{U+043a}\N{U+044b}\N{U+0440}\N{U+0433}\N{U+044b}\N{U+0437}\N{U+0447}\N{U+0430} \N{U+041a}\N{U+044b}\N{U+0440}\N{U+0433}\N{U+044b}\N{U+0437}\N{U+0441}\N{U+0442}\N{U+0430}\N{U+043d}"=>1,"\N{U+043c}\N{U+0430}\N{U+043a}\N{U+0435}\N{U+0434}\N{U+043e}\N{U+043d}\N{U+0441}\N{U+043a}\N{U+0438}"=>1,"\N{U+043c}\N{U+0430}\N{U+043a}\N{U+0435}\N{U+0434}\N{U+043e}\N{U+043d}\N{U+0441}\N{U+043a}\N{U+0438} \N{U+041c}\N{U+0430}\N{U+043a}\N{U+0435}\N{U+0434}\N{U+043e}\N{U+043d}\N{U+0438}\N{U+0458}\N{U+0430}"=>1,"\N{U+043c}\N{U+043e}\N{U+043d}\N{U+0433}\N{U+043e}\N{U+043b}"=>1,"\N{U+043c}\N{U+043e}\N{U+043d}\N{U+0433}\N{U+043e}\N{U+043b} \N{U+041c}\N{U+043e}\N{U+043d}\N{U+0433}\N{U+043e}\N{U+043b}"=>1,"\N{U+043d}\N{U+043e}\N{U+0445}\N{U+0447}\N{U+0438}\N{U+0439}\N{U+043d}"=>1,"\N{U+043d}\N{U+043e}\N{U+0445}\N{U+0447}\N{U+0438}\N{U+0439}\N{U+043d} \N{U+0420}\N{U+043e}\N{U+0441}\N{U+0441}\N{U+0438}"=>1,"\N{U+0440}\N{U+0443}\N{U+0441}\N{U+0441}\N{U+043a}\N{U+0438}\N{U+0439}"=>1,"\N{U+0440}\N{U+0443}\N{U+0441}\N{U+0441}\N{U+043a}\N{U+0438}\N{U+0439} \N{U+0411}\N{U+0435}\N{U+043b}\N{U+0430}\N{U+0440}\N{U+0443}\N{U+0441}\N{U+044c}"=>1,"\N{U+0440}\N{U+0443}\N{U+0441}\N{U+0441}\N{U+043a}\N{U+0438}\N{U+0439} \N{U+041a}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+0445}\N{U+0441}\N{U+0442}\N{U+0430}\N{U+043d}"=>1,"\N{U+0440}\N{U+0443}\N{U+0441}\N{U+0441}\N{U+043a}\N{U+0438}\N{U+0439} \N{U+041a}\N{U+0438}\N{U+0440}\N{U+0433}\N{U+0438}\N{U+0437}\N{U+0438}\N{U+044f}"=>1,"\N{U+0440}\N{U+0443}\N{U+0441}\N{U+0441}\N{U+043a}\N{U+0438}\N{U+0439} \N{U+041c}\N{U+043e}\N{U+043b}\N{U+0434}\N{U+043e}\N{U+0432}\N{U+0430}"=>1,"\N{U+0440}\N{U+0443}\N{U+0441}\N{U+0441}\N{U+043a}\N{U+0438}\N{U+0439} \N{U+0420}\N{U+043e}\N{U+0441}\N{U+0441}\N{U+0438}\N{U+044f}"=>1,"\N{U+0440}\N{U+0443}\N{U+0441}\N{U+0441}\N{U+043a}\N{U+0438}\N{U+0439} \N{U+0423}\N{U+043a}\N{U+0440}\N{U+0430}\N{U+0438}\N{U+043d}\N{U+0430}"=>1,"\N{U+0441}\N{U+0430}\N{U+0445}\N{U+0430} \N{U+0442}\N{U+044b}\N{U+043b}\N{U+0430}"=>1,"\N{U+0441}\N{U+0430}\N{U+0445}\N{U+0430} \N{U+0442}\N{U+044b}\N{U+043b}\N{U+0430} \N{U+0410}\N{U+0440}\N{U+0430}\N{U+0441}\N{U+0441}\N{U+044b}\N{U+044b}\N{U+0439}\N{U+0430}"=>1,"\N{U+0441}\N{U+0440}\N{U+043f}\N{U+0441}\N{U+043a}\N{U+0438}"=>1,"\N{U+0441}\N{U+0440}\N{U+043f}\N{U+0441}\N{U+043a}\N{U+0438} \N{U+0411}\N{U+043e}\N{U+0441}\N{U+043d}\N{U+0430} \N{U+0438} \N{U+0425}\N{U+0435}\N{U+0440}\N{U+0446}\N{U+0435}\N{U+0433}\N{U+043e}\N{U+0432}\N{U+0438}\N{U+043d}\N{U+0430} \N{U+045b}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}\N{U+0438}\N{U+0446}\N{U+0430}"=>1,"\N{U+0441}\N{U+0440}\N{U+043f}\N{U+0441}\N{U+043a}\N{U+0438} \N{U+041a}\N{U+043e}\N{U+0441}\N{U+043e}\N{U+0432}\N{U+043e} \N{U+045b}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}\N{U+0438}\N{U+0446}\N{U+0430}"=>1,"\N{U+0441}\N{U+0440}\N{U+043f}\N{U+0441}\N{U+043a}\N{U+0438} \N{U+0421}\N{U+0440}\N{U+0431}\N{U+0438}\N{U+0458}\N{U+0430} \N{U+045b}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}\N{U+0438}\N{U+0446}\N{U+0430}"=>1,"\N{U+0441}\N{U+0440}\N{U+043f}\N{U+0441}\N{U+043a}\N{U+0438} \N{U+0426}\N{U+0440}\N{U+043d}\N{U+0430} \N{U+0413}\N{U+043e}\N{U+0440}\N{U+0430} \N{U+045b}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}\N{U+0438}\N{U+0446}\N{U+0430}"=>1,"\N{U+0441}\N{U+0440}\N{U+043f}\N{U+0441}\N{U+043a}\N{U+0438} \N{U+045b}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}\N{U+0438}\N{U+0446}\N{U+0430}"=>1,"\N{U+0443}\N{U+043a}\N{U+0440}\N{U+0430}\N{U+0457}\N{U+043d}\N{U+0441}\N{U+044c}\N{U+043a}\N{U+0430}"=>1,"\N{U+0443}\N{U+043a}\N{U+0440}\N{U+0430}\N{U+0457}\N{U+043d}\N{U+0441}\N{U+044c}\N{U+043a}\N{U+0430} \N{U+0423}\N{U+043a}\N{U+0440}\N{U+0430}\N{U+0457}\N{U+043d}\N{U+0430}"=>1,"\N{U+049b}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+049b} \N{U+0442}\N{U+0456}\N{U+043b}\N{U+0456}"=>1,"\N{U+049b}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+049b} \N{U+0442}\N{U+0456}\N{U+043b}\N{U+0456} \N{U+049a}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+049b}\N{U+0441}\N{U+0442}\N{U+0430}\N{U+043d}"=>1,"\N{U+0570}\N{U+0561}\N{U+0575}\N{U+0565}\N{U+0580}\N{U+0565}\N{U+0576}"=>1,"\N{U+0570}\N{U+0561}\N{U+0575}\N{U+0565}\N{U+0580}\N{U+0565}\N{U+0576} \N{U+0540}\N{U+0561}\N{U+0575}\N{U+0561}\N{U+057d}\N{U+057f}\N{U+0561}\N{U+0576}"=>1,"\N{U+05d9}\N{U+05d9}\N{U+05b4}\N{U+05d3}\N{U+05d9}\N{U+05e9}"=>1,"\N{U+05d9}\N{U+05d9}\N{U+05b4}\N{U+05d3}\N{U+05d9}\N{U+05e9} \N{U+05d5}\N{U+05d5}\N{U+05e2}\N{U+05dc}\N{U+05d8}"=>1,"\N{U+05e2}\N{U+05d1}\N{U+05e8}\N{U+05d9}\N{U+05ea}"=>1,"\N{U+05e2}\N{U+05d1}\N{U+05e8}\N{U+05d9}\N{U+05ea} \N{U+05d9}\N{U+05e9}\N{U+05e8}\N{U+05d0}\N{U+05dc}"=>1,"\N{U+0626}\N{U+06c7}\N{U+064a}\N{U+063a}\N{U+06c7}\N{U+0631}\N{U+0686}\N{U+06d5}"=>1,"\N{U+0626}\N{U+06c7}\N{U+064a}\N{U+063a}\N{U+06c7}\N{U+0631}\N{U+0686}\N{U+06d5} \N{U+062c}\N{U+06c7}\N{U+06ad}\N{U+06af}\N{U+0648}"=>1,"\N{U+0627}\N{U+0631}\N{U+062f}\N{U+0648}"=>1,"\N{U+0627}\N{U+0631}\N{U+062f}\N{U+0648} \N{U+0628}\N{U+06be}\N{U+0627}\N{U+0631}\N{U+062a}"=>1,"\N{U+0627}\N{U+0631}\N{U+062f}\N{U+0648} \N{U+067e}\N{U+0627}\N{U+06a9}\N{U+0633}\N{U+062a}\N{U+0627}\N{U+0646}"=>1,"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}"=>1,"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0625}\N{U+0631}\N{U+064a}\N{U+062a}\N{U+0631}\N{U+064a}\N{U+0627}"=>1,"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0625}\N{U+0633}\N{U+0631}\N{U+0627}\N{U+0626}\N{U+064a}\N{U+0644}"=>1,"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0627}\N{U+0636}\N{U+064a} \N{U+0627}\N{U+0644}\N{U+0641}\N{U+0644}\N{U+0633}\N{U+0637}\N{U+064a}\N{U+0646}\N{U+064a}\N{U+0629}"=>1,"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+062f}\N{U+0646}"=>1,"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0625}\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0627}\N{U+062a} \N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+062a}\N{U+062d}\N{U+062f}\N{U+0629}"=>1,"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0628}\N{U+062d}\N{U+0631}\N{U+064a}\N{U+0646}"=>1,"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+062c}\N{U+0632}\N{U+0627}\N{U+0626}\N{U+0631}"=>1,"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0633}\N{U+0648}\N{U+062f}\N{U+0627}\N{U+0646}"=>1,"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0635}\N{U+062d}\N{U+0631}\N{U+0627}\N{U+0621} \N{U+0627}\N{U+0644}\N{U+063a}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}"=>1,"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0635}\N{U+0648}\N{U+0645}\N{U+0627}\N{U+0644}"=>1,"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0639}\N{U+0627}\N{U+0644}\N{U+0645}"=>1,"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0627}\N{U+0642}"=>1,"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0643}\N{U+0648}\N{U+064a}\N{U+062a}"=>1,"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+063a}\N{U+0631}\N{U+0628}"=>1,"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+0645}\N{U+0644}\N{U+0643}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0633}\N{U+0639}\N{U+0648}\N{U+062f}\N{U+064a}\N{U+0629}"=>1,"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+064a}\N{U+0645}\N{U+0646}"=>1,"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+062a}\N{U+0634}\N{U+0627}\N{U+062f}"=>1,"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+062a}\N{U+0648}\N{U+0646}\N{U+0633}"=>1,"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+062c}\N{U+0632}\N{U+0631} \N{U+0627}\N{U+0644}\N{U+0642}\N{U+0645}\N{U+0631}"=>1,"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+062c}\N{U+0646}\N{U+0648}\N{U+0628} \N{U+0627}\N{U+0644}\N{U+0633}\N{U+0648}\N{U+062f}\N{U+0627}\N{U+0646}"=>1,"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+062c}\N{U+064a}\N{U+0628}\N{U+0648}\N{U+062a}\N{U+064a}"=>1,"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0633}\N{U+0648}\N{U+0631}\N{U+064a}\N{U+0627}"=>1,"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0639}\N{U+064f}\N{U+0645}\N{U+0627}\N{U+0646}"=>1,"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0642}\N{U+0637}\N{U+0631}"=>1,"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0644}\N{U+0628}\N{U+0646}\N{U+0627}\N{U+0646}"=>1,"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0644}\N{U+064a}\N{U+0628}\N{U+064a}\N{U+0627}"=>1,"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0645}\N{U+0635}\N{U+0631}"=>1,"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0645}\N{U+0648}\N{U+0631}\N{U+064a}\N{U+062a}\N{U+0627}\N{U+0646}\N{U+064a}\N{U+0627}"=>1,"\N{U+0627}\N{U+0648}\N{U+0632}\N{U+0628}\N{U+06cc}\N{U+06a9} \N{U+0627}\N{U+0641}\N{U+063a}\N{U+0627}\N{U+0646}\N{U+0633}\N{U+062a}\N{U+0627}\N{U+0646} \N{U+0639}\N{U+0631}\N{U+0628}\N{U+06cc}"=>1,"\N{U+0627}\N{U+0648}\N{U+0632}\N{U+0628}\N{U+06cc}\N{U+06a9} \N{U+0639}\N{U+0631}\N{U+0628}\N{U+06cc}"=>1,"\N{U+0641}\N{U+0627}\N{U+0631}\N{U+0633}\N{U+06cc}"=>1,"\N{U+0641}\N{U+0627}\N{U+0631}\N{U+0633}\N{U+06cc} \N{U+0627}\N{U+0641}\N{U+063a}\N{U+0627}\N{U+0646}\N{U+0633}\N{U+062a}\N{U+0627}\N{U+0646}"=>1,"\N{U+0641}\N{U+0627}\N{U+0631}\N{U+0633}\N{U+06cc} \N{U+0627}\N{U+06cc}\N{U+0631}\N{U+0627}\N{U+0646}"=>1,"\N{U+0644}\N{U+06ca}\N{U+0631}\N{U+06cc} \N{U+0634}\N{U+0648}\N{U+0645}\N{U+0627}\N{U+0644}\N{U+06cc}"=>1,"\N{U+0644}\N{U+06ca}\N{U+0631}\N{U+06cc} \N{U+0634}\N{U+0648}\N{U+0645}\N{U+0627}\N{U+0644}\N{U+06cc} IQ"=>1,"\N{U+0644}\N{U+06ca}\N{U+0631}\N{U+06cc} \N{U+0634}\N{U+0648}\N{U+0645}\N{U+0627}\N{U+0644}\N{U+06cc} IR"=>1,"\N{U+0645}\N{U+0627}\N{U+0632}\N{U+0631}\N{U+0648}\N{U+0646}\N{U+06cc}"=>1,"\N{U+0645}\N{U+0627}\N{U+0632}\N{U+0631}\N{U+0648}\N{U+0646}\N{U+06cc} \N{U+0627}\N{U+06cc}\N{U+0631}\N{U+0627}\N{U+0646}"=>1,"\N{U+067e}\N{U+0646}\N{U+062c}\N{U+0627}\N{U+0628}\N{U+06cc} \N{U+0639}\N{U+0631}\N{U+0628}\N{U+06cc}"=>1,"\N{U+067e}\N{U+0646}\N{U+062c}\N{U+0627}\N{U+0628}\N{U+06cc} \N{U+067e}\N{U+06a9}\N{U+0633}\N{U+062a}\N{U+0627}\N{U+0646} \N{U+0639}\N{U+0631}\N{U+0628}\N{U+06cc}"=>1,"\N{U+067e}\N{U+069a}\N{U+062a}\N{U+0648}"=>1,"\N{U+067e}\N{U+069a}\N{U+062a}\N{U+0648} \N{U+0627}\N{U+0641}\N{U+063a}\N{U+0627}\N{U+0646}\N{U+0633}\N{U+062a}\N{U+0627}\N{U+0646}"=>1,"\N{U+06a9}\N{U+0648}\N{U+0631}\N{U+062f}\N{U+06cc}\N{U+06cc} \N{U+0646}\N{U+0627}\N{U+0648}\N{U+06d5}\N{U+0646}\N{U+062f}\N{U+06cc}"=>1,"\N{U+06a9}\N{U+0648}\N{U+0631}\N{U+062f}\N{U+06cc}\N{U+06cc} \N{U+0646}\N{U+0627}\N{U+0648}\N{U+06d5}\N{U+0646}\N{U+062f}\N{U+06cc} IQ"=>1,"\N{U+06a9}\N{U+0648}\N{U+0631}\N{U+062f}\N{U+06cc}\N{U+06cc} \N{U+0646}\N{U+0627}\N{U+0648}\N{U+06d5}\N{U+0646}\N{U+062f}\N{U+06cc} IR"=>1,"\N{U+06a9}\N{U+0672}\N{U+0634}\N{U+064f}\N{U+0631}"=>1,"\N{U+06a9}\N{U+0672}\N{U+0634}\N{U+064f}\N{U+0631} \N{U+06c1}\N{U+0650}\N{U+0646}\N{U+065b}\N{U+062f}\N{U+0648}\N{U+0633}\N{U+062a}\N{U+0627}\N{U+0646}"=>1,"\N{U+0915}\N{U+094b}\N{U+0902}\N{U+0915}\N{U+0923}\N{U+0940}"=>1,"\N{U+0915}\N{U+094b}\N{U+0902}\N{U+0915}\N{U+0923}\N{U+0940} \N{U+092d}\N{U+093e}\N{U+0930}\N{U+0924}"=>1,"\N{U+0928}\N{U+0947}\N{U+092a}\N{U+093e}\N{U+0932}\N{U+0940}"=>1,"\N{U+0928}\N{U+0947}\N{U+092a}\N{U+093e}\N{U+0932}\N{U+0940} \N{U+0928}\N{U+0947}\N{U+092a}\N{U+093e}\N{U+0932}"=>1,"\N{U+0928}\N{U+0947}\N{U+092a}\N{U+093e}\N{U+0932}\N{U+0940} \N{U+092d}\N{U+093e}\N{U+0930}\N{U+0924}"=>1,"\N{U+092c}\N{U+0921}\N{U+093c}\N{U+094b}"=>1,"\N{U+092c}\N{U+0921}\N{U+093c}\N{U+094b} \N{U+092d}\N{U+093e}\N{U+0930}\N{U+0924}"=>1,"\N{U+092e}\N{U+0930}\N{U+093e}\N{U+0920}\N{U+0940}"=>1,"\N{U+092e}\N{U+0930}\N{U+093e}\N{U+0920}\N{U+0940} \N{U+092d}\N{U+093e}\N{U+0930}\N{U+0924}"=>1,"\N{U+0939}\N{U+093f}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+0940}"=>1,"\N{U+0939}\N{U+093f}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+0940} \N{U+092d}\N{U+093e}\N{U+0930}\N{U+0924}"=>1,"\N{U+0985}\N{U+09b8}\N{U+09ae}\N{U+09c0}\N{U+09af}\N{U+09bc}\N{U+09be}"=>1,"\N{U+0985}\N{U+09b8}\N{U+09ae}\N{U+09c0}\N{U+09af}\N{U+09bc}\N{U+09be} \N{U+09ad}\N{U+09be}\N{U+09f0}\N{U+09a4}"=>1,"\N{U+09ac}\N{U+09be}\N{U+0982}\N{U+09b2}\N{U+09be}"=>1,"\N{U+09ac}\N{U+09be}\N{U+0982}\N{U+09b2}\N{U+09be} \N{U+09ac}\N{U+09be}\N{U+0982}\N{U+09b2}\N{U+09be}\N{U+09a6}\N{U+09c7}\N{U+09b6}"=>1,"\N{U+09ac}\N{U+09be}\N{U+0982}\N{U+09b2}\N{U+09be} \N{U+09ad}\N{U+09be}\N{U+09b0}\N{U+09a4}"=>1,"\N{U+0a2a}\N{U+0a70}\N{U+0a1c}\N{U+0a3e}\N{U+0a2c}\N{U+0a40}"=>1,"\N{U+0a2a}\N{U+0a70}\N{U+0a1c}\N{U+0a3e}\N{U+0a2c}\N{U+0a40} \N{U+0a17}\N{U+0a41}\N{U+0a30}\N{U+0a2e}\N{U+0a41}\N{U+0a16}\N{U+0a40}"=>1,"\N{U+0a2a}\N{U+0a70}\N{U+0a1c}\N{U+0a3e}\N{U+0a2c}\N{U+0a40} \N{U+0a2d}\N{U+0a3e}\N{U+0a30}\N{U+0a24} \N{U+0a17}\N{U+0a41}\N{U+0a30}\N{U+0a2e}\N{U+0a41}\N{U+0a16}\N{U+0a40}"=>1,"\N{U+0a97}\N{U+0ac1}\N{U+0a9c}\N{U+0ab0}\N{U+0abe}\N{U+0aa4}\N{U+0ac0}"=>1,"\N{U+0a97}\N{U+0ac1}\N{U+0a9c}\N{U+0ab0}\N{U+0abe}\N{U+0aa4}\N{U+0ac0} \N{U+0aad}\N{U+0abe}\N{U+0ab0}\N{U+0aa4}"=>1,"\N{U+0b13}\N{U+0b21}\N{U+0b3c}\N{U+0b3f}\N{U+0b06}"=>1,"\N{U+0b13}\N{U+0b21}\N{U+0b3c}\N{U+0b3f}\N{U+0b06} \N{U+0b2d}\N{U+0b3e}\N{U+0b30}\N{U+0b24}"=>1,"\N{U+0ba4}\N{U+0bae}\N{U+0bbf}\N{U+0bb4}\N{U+0bcd}"=>1,"\N{U+0ba4}\N{U+0bae}\N{U+0bbf}\N{U+0bb4}\N{U+0bcd} \N{U+0b87}\N{U+0ba8}\N{U+0bcd}\N{U+0ba4}\N{U+0bbf}\N{U+0baf}\N{U+0bbe}"=>1,"\N{U+0ba4}\N{U+0bae}\N{U+0bbf}\N{U+0bb4}\N{U+0bcd} \N{U+0b87}\N{U+0bb2}\N{U+0b99}\N{U+0bcd}\N{U+0b95}\N{U+0bc8}"=>1,"\N{U+0ba4}\N{U+0bae}\N{U+0bbf}\N{U+0bb4}\N{U+0bcd} \N{U+0b9a}\N{U+0bbf}\N{U+0b99}\N{U+0bcd}\N{U+0b95}\N{U+0baa}\N{U+0bcd}\N{U+0baa}\N{U+0bc2}\N{U+0bb0}\N{U+0bcd}"=>1,"\N{U+0ba4}\N{U+0bae}\N{U+0bbf}\N{U+0bb4}\N{U+0bcd} \N{U+0bae}\N{U+0bb2}\N{U+0bc7}\N{U+0b9a}\N{U+0bbf}\N{U+0baf}\N{U+0bbe}"=>1,"\N{U+0c24}\N{U+0c46}\N{U+0c32}\N{U+0c41}\N{U+0c17}\N{U+0c41}"=>1,"\N{U+0c24}\N{U+0c46}\N{U+0c32}\N{U+0c41}\N{U+0c17}\N{U+0c41} \N{U+0c2d}\N{U+0c3e}\N{U+0c30}\N{U+0c24} \N{U+0c26}\N{U+0c47}\N{U+0c36}\N{U+0c02}"=>1,"\N{U+0c95}\N{U+0ca8}\N{U+0ccd}\N{U+0ca8}\N{U+0ca1}"=>1,"\N{U+0c95}\N{U+0ca8}\N{U+0ccd}\N{U+0ca8}\N{U+0ca1} \N{U+0cad}\N{U+0cbe}\N{U+0cb0}\N{U+0ca4}"=>1,"\N{U+0d2e}\N{U+0d32}\N{U+0d2f}\N{U+0d3e}\N{U+0d33}\N{U+0d02}"=>1,"\N{U+0d2e}\N{U+0d32}\N{U+0d2f}\N{U+0d3e}\N{U+0d33}\N{U+0d02} \N{U+0d07}\N{U+0d28}\N{U+0d4d}\N{U+0d24}\N{U+0d4d}\N{U+0d2f}"=>1,"\N{U+0dc3}\N{U+0dd2}\N{U+0d82}\N{U+0dc4}\N{U+0dbd}"=>1,"\N{U+0dc3}\N{U+0dd2}\N{U+0d82}\N{U+0dc4}\N{U+0dbd} \N{U+0dc1}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dd3} \N{U+0dbd}\N{U+0d82}\N{U+0d9a}\N{U+0dcf}\N{U+0dc0}"=>1,"\N{U+0e44}\N{U+0e17}\N{U+0e22}"=>1,"\N{U+0e44}\N{U+0e17}\N{U+0e22} \N{U+0e44}\N{U+0e17}\N{U+0e22}"=>1,"\N{U+0ea5}\N{U+0eb2}\N{U+0ea7}"=>1,"\N{U+0ea5}\N{U+0eb2}\N{U+0ea7} \N{U+0ea5}\N{U+0eb2}\N{U+0ea7}"=>1,"\N{U+0f56}\N{U+0f7c}\N{U+0f51}\N{U+0f0b}\N{U+0f66}\N{U+0f90}\N{U+0f51}\N{U+0f0b}"=>1,"\N{U+0f56}\N{U+0f7c}\N{U+0f51}\N{U+0f0b}\N{U+0f66}\N{U+0f90}\N{U+0f51}\N{U+0f0b} \N{U+0f62}\N{U+0f92}\N{U+0fb1}\N{U+0f0b}\N{U+0f42}\N{U+0f62}\N{U+0f0b}"=>1,"\N{U+0f56}\N{U+0f7c}\N{U+0f51}\N{U+0f0b}\N{U+0f66}\N{U+0f90}\N{U+0f51}\N{U+0f0b} \N{U+0f62}\N{U+0f92}\N{U+0fb1}\N{U+0f0b}\N{U+0f53}\N{U+0f42}"=>1,"\N{U+0f62}\N{U+0fab}\N{U+0f7c}\N{U+0f44}\N{U+0f0b}\N{U+0f41}"=>1,"\N{U+0f62}\N{U+0fab}\N{U+0f7c}\N{U+0f44}\N{U+0f0b}\N{U+0f41} \N{U+0f60}\N{U+0f56}\N{U+0fb2}\N{U+0f74}\N{U+0f42}"=>1,"\N{U+1017}\N{U+1019}\N{U+102c}"=>1,"\N{U+1017}\N{U+1019}\N{U+102c} \N{U+1019}\N{U+103c}\N{U+1014}\N{U+103a}\N{U+1019}\N{U+102c}"=>1,"\N{U+10e5}\N{U+10d0}\N{U+10e0}\N{U+10d7}\N{U+10e3}\N{U+10da}\N{U+10d8}"=>1,"\N{U+10e5}\N{U+10d0}\N{U+10e0}\N{U+10d7}\N{U+10e3}\N{U+10da}\N{U+10d8} \N{U+10e1}\N{U+10d0}\N{U+10e5}\N{U+10d0}\N{U+10e0}\N{U+10d7}\N{U+10d5}\N{U+10d4}\N{U+10da}\N{U+10dd}"=>1,"\N{U+1275}\N{U+130d}\N{U+122d}\N{U+129b}"=>1,"\N{U+1275}\N{U+130d}\N{U+122d}\N{U+129b} ER"=>1,"\N{U+1275}\N{U+130d}\N{U+122d}\N{U+129b} ET"=>1,"\N{U+12a0}\N{U+121b}\N{U+122d}\N{U+129b}"=>1,"\N{U+12a0}\N{U+121b}\N{U+122d}\N{U+129b} \N{U+12a2}\N{U+1275}\N{U+12ee}\N{U+1335}\N{U+12eb}"=>1,"\N{U+13e3}\N{U+13b3}\N{U+13a9}"=>1,"\N{U+13e3}\N{U+13b3}\N{U+13a9} \N{U+13a0}\N{U+13b9}\N{U+13f0}\N{U+13df}"=>1,"\N{U+1781}\N{U+17d2}\N{U+1798}\N{U+17c2}\N{U+179a}"=>1,"\N{U+1781}\N{U+17d2}\N{U+1798}\N{U+17c2}\N{U+179a} \N{U+1780}\N{U+1798}\N{U+17d2}\N{U+1796}\N{U+17bb}\N{U+1787}\N{U+17b6}"=>1,"\N{U+2d5c}\N{U+2d30}\N{U+2d4e}\N{U+2d30}\N{U+2d63}\N{U+2d49}\N{U+2d56}\N{U+2d5c}"=>1,"\N{U+2d5c}\N{U+2d30}\N{U+2d4e}\N{U+2d30}\N{U+2d63}\N{U+2d49}\N{U+2d56}\N{U+2d5c} \N{U+2d4d}\N{U+2d4e}\N{U+2d56}\N{U+2d54}\N{U+2d49}\N{U+2d31}"=>1,"\N{U+2d5c}\N{U+2d30}\N{U+2d5b}\N{U+2d4d}\N{U+2d43}\N{U+2d49}\N{U+2d5c}"=>1,"\N{U+2d5c}\N{U+2d30}\N{U+2d5b}\N{U+2d4d}\N{U+2d43}\N{U+2d49}\N{U+2d5c} Tfng"=>1,"\N{U+2d5c}\N{U+2d30}\N{U+2d5b}\N{U+2d4d}\N{U+2d43}\N{U+2d49}\N{U+2d5c} \N{U+2d4d}\N{U+2d4e}\N{U+2d56}\N{U+2d54}\N{U+2d49}\N{U+2d31} Tfng"=>1,"\N{U+4e2d}\N{U+6587}"=>1,"\N{U+4e2d}\N{U+6587} \N{U+4e2d}\N{U+56fd} \N{U+7b80}\N{U+4f53}"=>1,"\N{U+4e2d}\N{U+6587} \N{U+4e2d}\N{U+56fd}\N{U+6fb3}\N{U+95e8}\N{U+7279}\N{U+522b}\N{U+884c}\N{U+653f}\N{U+533a} \N{U+7b80}\N{U+4f53}"=>1,"\N{U+4e2d}\N{U+6587} \N{U+4e2d}\N{U+56fd}\N{U+9999}\N{U+6e2f}\N{U+7279}\N{U+522b}\N{U+884c}\N{U+653f}\N{U+533a} \N{U+7b80}\N{U+4f53}"=>1,"\N{U+4e2d}\N{U+6587} \N{U+4e2d}\N{U+83ef}\N{U+4eba}\N{U+6c11}\N{U+5171}\N{U+548c}\N{U+570b}\N{U+6fb3}\N{U+9580}\N{U+7279}\N{U+5225}\N{U+884c}\N{U+653f}\N{U+5340} \N{U+7e41}\N{U+9ad4}\N{U+5b57}"=>1,"\N{U+4e2d}\N{U+6587} \N{U+4e2d}\N{U+83ef}\N{U+4eba}\N{U+6c11}\N{U+5171}\N{U+548c}\N{U+570b}\N{U+9999}\N{U+6e2f}\N{U+7279}\N{U+5225}\N{U+884c}\N{U+653f}\N{U+5340} \N{U+7e41}\N{U+9ad4}\N{U+5b57}"=>1,"\N{U+4e2d}\N{U+6587} \N{U+53f0}\N{U+7063} \N{U+7e41}\N{U+9ad4}"=>1,"\N{U+4e2d}\N{U+6587} \N{U+65b0}\N{U+52a0}\N{U+5761} \N{U+7b80}\N{U+4f53}"=>1,"\N{U+4e2d}\N{U+6587} \N{U+7b80}\N{U+4f53}"=>1,"\N{U+4e2d}\N{U+6587} \N{U+7e41}\N{U+9ad4}"=>1,"\N{U+65e5}\N{U+672c}\N{U+8a9e}"=>1,"\N{U+65e5}\N{U+672c}\N{U+8a9e} \N{U+65e5}\N{U+672c}"=>1,"\N{U+a188}\N{U+a320}\N{U+a259}"=>1,"\N{U+a188}\N{U+a320}\N{U+a259} \N{U+a34f}\N{U+a1e9}"=>1,"\N{U+a559}\N{U+a524}"=>1,"\N{U+a559}\N{U+a524} Vaii"=>1,"\N{U+a559}\N{U+a524} \N{U+a55e}\N{U+a524}\N{U+a52b}\N{U+a569} Vaii"=>1,"\N{U+d55c}\N{U+ad6d}\N{U+c5b4}"=>1,"\N{U+d55c}\N{U+ad6d}\N{U+c5b4} \N{U+b300}\N{U+d55c}\N{U+bbfc}\N{U+ad6d}"=>1,"\N{U+d55c}\N{U+ad6d}\N{U+c5b4} \N{U+c870}\N{U+c120}\N{U+bbfc}\N{U+c8fc}\N{U+c8fc}\N{U+c758}\N{U+c778}\N{U+bbfc}\N{U+acf5}\N{U+d654}\N{U+ad6d}"=>1);our%ISO639Aliases=(afr=>"af","afr-NA"=>"af-NA","afr-ZA"=>"af-ZA",aka=>"ak","aka-GH"=>"ak-GH",alb=>"sq","alb-AL"=>"sq-AL","alb-MK"=>"sq-MK","alb-XK"=>"sq-XK",amh=>"am","amh-ET"=>"am-ET",ara=>"ar","ara-001"=>"ar-001","ara-AE"=>"ar-AE","ara-BH"=>"ar-BH","ara-DJ"=>"ar-DJ","ara-DZ"=>"ar-DZ","ara-EG"=>"ar-EG","ara-EH"=>"ar-EH","ara-ER"=>"ar-ER","ara-IL"=>"ar-IL","ara-IQ"=>"ar-IQ","ara-JO"=>"ar-JO","ara-KM"=>"ar-KM","ara-KW"=>"ar-KW","ara-LB"=>"ar-LB","ara-LY"=>"ar-LY","ara-MA"=>"ar-MA","ara-MR"=>"ar-MR","ara-OM"=>"ar-OM","ara-PS"=>"ar-PS","ara-QA"=>"ar-QA","ara-SA"=>"ar-SA","ara-SD"=>"ar-SD","ara-SO"=>"ar-SO","ara-SS"=>"ar-SS","ara-SY"=>"ar-SY","ara-TD"=>"ar-TD","ara-TN"=>"ar-TN","ara-YE"=>"ar-YE",arm=>"hy","arm-AM"=>"hy-AM",asm=>"as","asm-IN"=>"as-IN",aze=>"az","aze-Cyrl"=>"az-Cyrl","aze-Cyrl-AZ"=>"az-Cyrl-AZ","aze-Latn"=>"az-Latn","aze-Latn-AZ"=>"az-Latn-AZ",bam=>"bm","bam-ML"=>"bm-ML",baq=>"eu","baq-ES"=>"eu-ES",bel=>"be","bel-BY"=>"be-BY",ben=>"bn","ben-BD"=>"bn-BD","ben-IN"=>"bn-IN",bos=>"bs","bos-Cyrl"=>"bs-Cyrl","bos-Cyrl-BA"=>"bs-Cyrl-BA","bos-Latn"=>"bs-Latn","bos-Latn-BA"=>"bs-Latn-BA",bre=>"br","bre-FR"=>"br-FR",bul=>"bg","bul-BG"=>"bg-BG",bur=>"my","bur-MM"=>"my-MM",cat=>"ca","cat-AD"=>"ca-AD","cat-ES"=>"ca-ES","cat-ES-VALENCIA"=>"ca-ES-VALENCIA","cat-FR"=>"ca-FR","cat-IT"=>"ca-IT",che=>"ce","che-RU"=>"ce-RU",chi=>"zh","chi-Hans"=>"zh-Hans","chi-Hans-CN"=>"zh-Hans-CN","chi-Hans-HK"=>"zh-Hans-HK","chi-Hans-MO"=>"zh-Hans-MO","chi-Hans-SG"=>"zh-Hans-SG","chi-Hant"=>"zh-Hant","chi-Hant-HK"=>"zh-Hant-HK","chi-Hant-MO"=>"zh-Hant-MO","chi-Hant-TW"=>"zh-Hant-TW",chu=>"cu","chu-RU"=>"cu-RU",cor=>"kw","cor-GB"=>"kw-GB",cze=>"cs","cze-CZ"=>"cs-CZ",dan=>"da","dan-DK"=>"da-DK","dan-GL"=>"da-GL",dut=>"nl","dut-AW"=>"nl-AW","dut-BE"=>"nl-BE","dut-BQ"=>"nl-BQ","dut-CW"=>"nl-CW","dut-NL"=>"nl-NL","dut-SR"=>"nl-SR","dut-SX"=>"nl-SX",dzo=>"dz","dzo-BT"=>"dz-BT",eng=>"en","eng-001"=>"en-001","eng-150"=>"en-150","eng-AG"=>"en-AG","eng-AI"=>"en-AI","eng-AS"=>"en-AS","eng-AT"=>"en-AT","eng-AU"=>"en-AU","eng-BB"=>"en-BB","eng-BE"=>"en-BE","eng-BI"=>"en-BI","eng-BM"=>"en-BM","eng-BS"=>"en-BS","eng-BW"=>"en-BW","eng-BZ"=>"en-BZ","eng-CA"=>"en-CA","eng-CC"=>"en-CC","eng-CH"=>"en-CH","eng-CK"=>"en-CK","eng-CM"=>"en-CM","eng-CX"=>"en-CX","eng-CY"=>"en-CY","eng-DE"=>"en-DE","eng-DG"=>"en-DG","eng-DK"=>"en-DK","eng-DM"=>"en-DM","eng-ER"=>"en-ER","eng-FI"=>"en-FI","eng-FJ"=>"en-FJ","eng-FK"=>"en-FK","eng-FM"=>"en-FM","eng-GB"=>"en-GB","eng-GD"=>"en-GD","eng-GG"=>"en-GG","eng-GH"=>"en-GH","eng-GI"=>"en-GI","eng-GM"=>"en-GM","eng-GU"=>"en-GU","eng-GY"=>"en-GY","eng-HK"=>"en-HK","eng-IE"=>"en-IE","eng-IL"=>"en-IL","eng-IM"=>"en-IM","eng-IN"=>"en-IN","eng-IO"=>"en-IO","eng-JE"=>"en-JE","eng-JM"=>"en-JM","eng-KE"=>"en-KE","eng-KI"=>"en-KI","eng-KN"=>"en-KN","eng-KY"=>"en-KY","eng-LC"=>"en-LC","eng-LR"=>"en-LR","eng-LS"=>"en-LS","eng-MG"=>"en-MG","eng-MH"=>"en-MH","eng-MO"=>"en-MO","eng-MP"=>"en-MP","eng-MS"=>"en-MS","eng-MT"=>"en-MT","eng-MU"=>"en-MU","eng-MW"=>"en-MW","eng-MY"=>"en-MY","eng-NA"=>"en-NA","eng-NF"=>"en-NF","eng-NG"=>"en-NG","eng-NL"=>"en-NL","eng-NR"=>"en-NR","eng-NU"=>"en-NU","eng-NZ"=>"en-NZ","eng-PG"=>"en-PG","eng-PH"=>"en-PH","eng-PK"=>"en-PK","eng-PN"=>"en-PN","eng-PR"=>"en-PR","eng-PW"=>"en-PW","eng-RW"=>"en-RW","eng-SB"=>"en-SB","eng-SC"=>"en-SC","eng-SD"=>"en-SD","eng-SE"=>"en-SE","eng-SG"=>"en-SG","eng-SH"=>"en-SH","eng-SI"=>"en-SI","eng-SL"=>"en-SL","eng-SS"=>"en-SS","eng-SX"=>"en-SX","eng-SZ"=>"en-SZ","eng-TC"=>"en-TC","eng-TK"=>"en-TK","eng-TO"=>"en-TO","eng-TT"=>"en-TT","eng-TV"=>"en-TV","eng-TZ"=>"en-TZ","eng-UG"=>"en-UG","eng-UM"=>"en-UM","eng-US"=>"en-US","eng-US-POSIX"=>"en-US-POSIX","eng-VC"=>"en-VC","eng-VG"=>"en-VG","eng-VI"=>"en-VI","eng-VU"=>"en-VU","eng-WS"=>"en-WS","eng-ZA"=>"en-ZA","eng-ZM"=>"en-ZM","eng-ZW"=>"en-ZW",epo=>"eo","epo-001"=>"eo-001",est=>"et","est-EE"=>"et-EE",ewe=>"ee","ewe-GH"=>"ee-GH","ewe-TG"=>"ee-TG",fao=>"fo","fao-DK"=>"fo-DK","fao-FO"=>"fo-FO",fin=>"fi","fin-FI"=>"fi-FI",fre=>"fr","fre-BE"=>"fr-BE","fre-BF"=>"fr-BF","fre-BI"=>"fr-BI","fre-BJ"=>"fr-BJ","fre-BL"=>"fr-BL","fre-CA"=>"fr-CA","fre-CD"=>"fr-CD","fre-CF"=>"fr-CF","fre-CG"=>"fr-CG","fre-CH"=>"fr-CH","fre-CI"=>"fr-CI","fre-CM"=>"fr-CM","fre-DJ"=>"fr-DJ","fre-DZ"=>"fr-DZ","fre-FR"=>"fr-FR","fre-GA"=>"fr-GA","fre-GF"=>"fr-GF","fre-GN"=>"fr-GN","fre-GP"=>"fr-GP","fre-GQ"=>"fr-GQ","fre-HT"=>"fr-HT","fre-KM"=>"fr-KM","fre-LU"=>"fr-LU","fre-MA"=>"fr-MA","fre-MC"=>"fr-MC","fre-MF"=>"fr-MF","fre-MG"=>"fr-MG","fre-ML"=>"fr-ML","fre-MQ"=>"fr-MQ","fre-MR"=>"fr-MR","fre-MU"=>"fr-MU","fre-NC"=>"fr-NC","fre-NE"=>"fr-NE","fre-PF"=>"fr-PF","fre-PM"=>"fr-PM","fre-RE"=>"fr-RE","fre-RW"=>"fr-RW","fre-SC"=>"fr-SC","fre-SN"=>"fr-SN","fre-SY"=>"fr-SY","fre-TD"=>"fr-TD","fre-TG"=>"fr-TG","fre-TN"=>"fr-TN","fre-VU"=>"fr-VU","fre-WF"=>"fr-WF","fre-YT"=>"fr-YT",fry=>"fy","fry-NL"=>"fy-NL",ful=>"ff","ful-CM"=>"ff-CM","ful-GN"=>"ff-GN","ful-MR"=>"ff-MR","ful-SN"=>"ff-SN",geo=>"ka","geo-GE"=>"ka-GE",ger=>"de","ger-AT"=>"de-AT","ger-BE"=>"de-BE","ger-CH"=>"de-CH","ger-DE"=>"de-DE","ger-LI"=>"de-LI","ger-LU"=>"de-LU",gla=>"gd","gla-GB"=>"gd-GB",gle=>"ga","gle-IE"=>"ga-IE",glg=>"gl","glg-ES"=>"gl-ES",glv=>"gv","glv-IM"=>"gv-IM",gre=>"el","gre-CY"=>"el-CY","gre-GR"=>"el-GR",guj=>"gu","guj-IN"=>"gu-IN",hau=>"ha","hau-GH"=>"ha-GH","hau-NE"=>"ha-NE","hau-NG"=>"ha-NG",heb=>"he","heb-IL"=>"he-IL",hin=>"hi","hin-IN"=>"hi-IN",hrv=>"hr","hrv-BA"=>"hr-BA","hrv-HR"=>"hr-HR",hun=>"hu","hun-HU"=>"hu-HU",ibo=>"ig","ibo-NG"=>"ig-NG",ice=>"is","ice-IS"=>"is-IS",iii=>"ii","iii-CN"=>"ii-CN",ind=>"id","ind-ID"=>"id-ID",ita=>"it","ita-CH"=>"it-CH","ita-IT"=>"it-IT","ita-SM"=>"it-SM",jpn=>"ja","jpn-JP"=>"ja-JP",kal=>"kl","kal-GL"=>"kl-GL",kan=>"kn","kan-IN"=>"kn-IN",kas=>"ks","kas-IN"=>"ks-IN",kaz=>"kk","kaz-KZ"=>"kk-KZ",khm=>"km","khm-KH"=>"km-KH",kik=>"ki","kik-KE"=>"ki-KE",kin=>"rw","kin-RW"=>"rw-RW",kir=>"ky","kir-KG"=>"ky-KG",kor=>"ko","kor-KP"=>"ko-KP","kor-KR"=>"ko-KR",lao=>"lo","lao-LA"=>"lo-LA",lav=>"lv","lav-LV"=>"lv-LV",lin=>"ln","lin-AO"=>"ln-AO","lin-CD"=>"ln-CD","lin-CF"=>"ln-CF","lin-CG"=>"ln-CG",lit=>"lt","lit-LT"=>"lt-LT",ltz=>"lb","ltz-LU"=>"lb-LU",lub=>"lu","lub-CD"=>"lu-CD",lug=>"lg","lug-UG"=>"lg-UG",mac=>"mk","mac-MK"=>"mk-MK",mal=>"ml","mal-IN"=>"ml-IN",mar=>"mr","mar-IN"=>"mr-IN",may=>"ms","may-BN"=>"ms-BN","may-MY"=>"ms-MY","may-SG"=>"ms-SG",mlg=>"mg","mlg-MG"=>"mg-MG",mlt=>"mt","mlt-MT"=>"mt-MT",mon=>"mn","mon-MN"=>"mn-MN",nde=>"nd","nde-ZW"=>"nd-ZW",nep=>"ne","nep-IN"=>"ne-IN","nep-NP"=>"ne-NP",nno=>"nn","nno-NO"=>"nn-NO",nob=>"nb","nob-NO"=>"nb-NO","nob-SJ"=>"nb-SJ",ori=>"or","ori-IN"=>"or-IN",orm=>"om","orm-ET"=>"om-ET","orm-KE"=>"om-KE",oss=>"os","oss-GE"=>"os-GE","oss-RU"=>"os-RU",pan=>"pa","pan-Arab"=>"pa-Arab","pan-Arab-PK"=>"pa-Arab-PK","pan-Guru"=>"pa-Guru","pan-Guru-IN"=>"pa-Guru-IN",per=>"fa","per-AF"=>"fa-AF","per-IR"=>"fa-IR",pol=>"pl","pol-PL"=>"pl-PL",por=>"pt","por-AO"=>"pt-AO","por-BR"=>"pt-BR","por-CV"=>"pt-CV","por-GW"=>"pt-GW","por-MO"=>"pt-MO","por-MZ"=>"pt-MZ","por-PT"=>"pt-PT","por-ST"=>"pt-ST","por-TL"=>"pt-TL",pus=>"ps","pus-AF"=>"ps-AF",que=>"qu","que-BO"=>"qu-BO","que-EC"=>"qu-EC","que-PE"=>"qu-PE",roh=>"rm","roh-CH"=>"rm-CH",rum=>"ro","rum-MD"=>"ro-MD","rum-RO"=>"ro-RO",run=>"rn","run-BI"=>"rn-BI",rus=>"ru","rus-BY"=>"ru-BY","rus-KG"=>"ru-KG","rus-KZ"=>"ru-KZ","rus-MD"=>"ru-MD","rus-RU"=>"ru-RU","rus-UA"=>"ru-UA",sag=>"sg","sag-CF"=>"sg-CF",sin=>"si","sin-LK"=>"si-LK",slo=>"sk","slo-SK"=>"sk-SK",slv=>"sl","slv-SI"=>"sl-SI",sme=>"se","sme-FI"=>"se-FI","sme-NO"=>"se-NO","sme-SE"=>"se-SE",sna=>"sn","sna-ZW"=>"sn-ZW",som=>"so","som-DJ"=>"so-DJ","som-ET"=>"so-ET","som-KE"=>"so-KE","som-SO"=>"so-SO",spa=>"es","spa-419"=>"es-419","spa-AR"=>"es-AR","spa-BO"=>"es-BO","spa-CL"=>"es-CL","spa-CO"=>"es-CO","spa-CR"=>"es-CR","spa-CU"=>"es-CU","spa-DO"=>"es-DO","spa-EA"=>"es-EA","spa-EC"=>"es-EC","spa-ES"=>"es-ES","spa-GQ"=>"es-GQ","spa-GT"=>"es-GT","spa-HN"=>"es-HN","spa-IC"=>"es-IC","spa-MX"=>"es-MX","spa-NI"=>"es-NI","spa-PA"=>"es-PA","spa-PE"=>"es-PE","spa-PH"=>"es-PH","spa-PR"=>"es-PR","spa-PY"=>"es-PY","spa-SV"=>"es-SV","spa-US"=>"es-US","spa-UY"=>"es-UY","spa-VE"=>"es-VE",srp=>"sr","srp-Cyrl"=>"sr-Cyrl","srp-Cyrl-BA"=>"sr-Cyrl-BA","srp-Cyrl-ME"=>"sr-Cyrl-ME","srp-Cyrl-RS"=>"sr-Cyrl-RS","srp-Cyrl-XK"=>"sr-Cyrl-XK","srp-Latn"=>"sr-Latn","srp-Latn-BA"=>"sr-Latn-BA","srp-Latn-ME"=>"sr-Latn-ME","srp-Latn-RS"=>"sr-Latn-RS","srp-Latn-XK"=>"sr-Latn-XK",swa=>"sw","swa-CD"=>"sw-CD","swa-KE"=>"sw-KE","swa-TZ"=>"sw-TZ","swa-UG"=>"sw-UG",swe=>"sv","swe-AX"=>"sv-AX","swe-FI"=>"sv-FI","swe-SE"=>"sv-SE",tam=>"ta","tam-IN"=>"ta-IN","tam-LK"=>"ta-LK","tam-MY"=>"ta-MY","tam-SG"=>"ta-SG",tel=>"te","tel-IN"=>"te-IN",tha=>"th","tha-TH"=>"th-TH",tib=>"bo","tib-CN"=>"bo-CN","tib-IN"=>"bo-IN",tir=>"ti","tir-ER"=>"ti-ER","tir-ET"=>"ti-ET",ton=>"to","ton-TO"=>"to-TO",tuk=>"tk","tuk-TM"=>"tk-TM",tur=>"tr","tur-CY"=>"tr-CY","tur-TR"=>"tr-TR",uig=>"ug","uig-CN"=>"ug-CN",ukr=>"uk","ukr-UA"=>"uk-UA",urd=>"ur","urd-IN"=>"ur-IN","urd-PK"=>"ur-PK",uzb=>"uz","uzb-Arab"=>"uz-Arab","uzb-Arab-AF"=>"uz-Arab-AF","uzb-Cyrl"=>"uz-Cyrl","uzb-Cyrl-UZ"=>"uz-Cyrl-UZ","uzb-Latn"=>"uz-Latn","uzb-Latn-UZ"=>"uz-Latn-UZ",vie=>"vi","vie-VN"=>"vi-VN",vol=>"vo","vol-001"=>"vo-001",wel=>"cy","wel-GB"=>"cy-GB",yid=>"yi","yid-001"=>"yi-001",yor=>"yo","yor-BJ"=>"yo-BJ","yor-NG"=>"yo-NG",zul=>"zu","zul-ZA"=>"zu-ZA");my%LocaleData=(ar=>{am_pm_abbreviated=>["\N{U+0635}","\N{U+0645}" ],available_formats=>{E=>"ccc",EHm=>"E HH:mm",EHms=>"E HH:mm:ss",Ed=>"E\N{U+060c} d",Ehm=>"E h:mm a",Ehms=>"E h:mm:ss a",Gy=>"y G",GyMMM=>"MMM y G",GyMMMEd=>"E\N{U+060c} d MMM\N{U+060c} y G",GyMMMd=>"d MMM\N{U+060c} y G",H=>"HH",Hm=>"HH:mm",Hms=>"HH:mm:ss",Hmsv=>"HH:mm:ss v",Hmv=>"HH:mm v",M=>"L",MEd=>"E\N{U+060c} d/M",MMM=>"LLL",MMMEd=>"E\N{U+060c} d MMM",MMMMEd=>"E\N{U+060c} d MMMM",MMMMd=>"d MMMM",MMMd=>"d MMM",MMdd=>"dd\N{U+200f}/MM",Md=>"d/\N{U+200f}M",d=>"d",h=>"h a",hm=>"h:mm a",hms=>"h:mm:ss a",hmsv=>"h:mm:ss a v",hmv=>"h:mm a v",ms=>"mm:ss",y=>"y",yM=>"M\N{U+200f}/y",yMEd=>"E\N{U+060c} d/\N{U+200f}M/\N{U+200f}y",yMM=>"MM\N{U+200f}/y",yMMM=>"MMM y",yMMMEd=>"E\N{U+060c} d MMM\N{U+060c} y",yMMMM=>"MMMM y",yMMMd=>"d MMM\N{U+060c} y",yMd=>"d\N{U+200f}/M\N{U+200f}/y",yQQQ=>"QQQ y",yQQQQ=>"QQQQ y" },code=>"ar",date_format_full=>"EEEE\N{U+060c} d MMMM\N{U+060c} y",date_format_long=>"d MMMM\N{U+060c} y",date_format_medium=>"dd\N{U+200f}/MM\N{U+200f}/y",date_format_short=>"d\N{U+200f}/M\N{U+200f}/y",datetime_format_full=>"{1} {0}",datetime_format_long=>"{1} {0}",datetime_format_medium=>"{1} {0}",datetime_format_short=>"{1} {0}",day_format_abbreviated=>["\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}","\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}","\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}","\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}","\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}","\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}","\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}" ],day_format_narrow=>["\N{U+0646}","\N{U+062b}","\N{U+0631}","\N{U+062e}","\N{U+062c}","\N{U+0633}","\N{U+062d}" ],day_format_wide=>["\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}","\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}","\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}","\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}","\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}","\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}","\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}" ],day_stand_alone_abbreviated=>["\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}","\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}","\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}","\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}","\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}","\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}","\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}" ],day_stand_alone_narrow=>["\N{U+0646}","\N{U+062b}","\N{U+0631}","\N{U+062e}","\N{U+062c}","\N{U+0633}","\N{U+062d}" ],day_stand_alone_wide=>["\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}","\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}","\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}","\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}","\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}","\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}","\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}" ],era_abbreviated=>["\N{U+0642}.\N{U+0645}","\N{U+0645}" ],era_narrow=>["\N{U+0642}.\N{U+0645}","\N{U+0645}" ],era_wide=>["\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}","\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+064a}" ],first_day_of_week=>1,glibc_date_1_format=>"%a %b %e %H:%M:%S %Z %Y",glibc_date_format=>"%m/%d/%y",glibc_datetime_format=>"%a %b %e %H:%M:%S %Y",glibc_time_12_format=>"%I:%M:%S %p",glibc_time_format=>"%H:%M:%S",language=>"Arabic",month_format_abbreviated=>["\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}","\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}","\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}","\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}","\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}","\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}","\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}","\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}","\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}","\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}","\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}","\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}" ],month_format_narrow=>["\N{U+064a}","\N{U+0641}","\N{U+0645}","\N{U+0623}","\N{U+0648}","\N{U+0646}","\N{U+0644}","\N{U+063a}","\N{U+0633}","\N{U+0643}","\N{U+0628}","\N{U+062f}" ],month_format_wide=>["\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}","\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}","\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}","\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}","\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}","\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}","\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}","\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}","\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}","\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}","\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}","\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}" ],month_stand_alone_abbreviated=>["\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}","\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}","\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}","\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}","\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}","\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}","\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}","\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}","\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}","\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}","\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}","\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}" ],month_stand_alone_narrow=>["\N{U+064a}","\N{U+0641}","\N{U+0645}","\N{U+0623}","\N{U+0648}","\N{U+0646}","\N{U+0644}","\N{U+063a}","\N{U+0633}","\N{U+0643}","\N{U+0628}","\N{U+062f}" ],month_stand_alone_wide=>["\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}","\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}","\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}","\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}","\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}","\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}","\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}","\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}","\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}","\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}","\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}","\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}" ],name=>"Arabic",native_language=>"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",native_name=>"\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",native_script=>undef,native_territory=>undef,native_variant=>undef,quarter_format_abbreviated=>["\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}","\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}","\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}","\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}" ],quarter_format_narrow=>["\N{U+0661}","\N{U+0662}","\N{U+0663}","\N{U+0664}" ],quarter_format_wide=>["\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}","\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}","\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}","\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}" ],quarter_stand_alone_abbreviated=>["\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}","\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}","\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}","\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}" ],quarter_stand_alone_narrow=>["\N{U+0661}","\N{U+0662}","\N{U+0663}","\N{U+0664}" ],quarter_stand_alone_wide=>["\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}","\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}","\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}","\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}" ],script=>undef,territory=>undef,time_format_full=>"h:mm:ss a zzzz",time_format_long=>"h:mm:ss a z",time_format_medium=>"h:mm:ss a",time_format_short=>"h:mm a",variant=>undef,version=>28 },en=>{am_pm_abbreviated=>["AM","PM" ],available_formats=>{E=>"ccc",EHm=>"E HH:mm",EHms=>"E HH:mm:ss",Ed=>"d E",Ehm=>"E h:mm a",Ehms=>"E h:mm:ss a",Gy=>"y G",GyMMM=>"MMM y G",GyMMMEd=>"E, MMM d, y G",GyMMMd=>"MMM d, y G",H=>"HH",Hm=>"HH:mm",Hms=>"HH:mm:ss",Hmsv=>"HH:mm:ss v",Hmv=>"HH:mm v",M=>"L",MEd=>"E, M/d",MMM=>"LLL",MMMEd=>"E, MMM d",MMMMd=>"MMMM d",MMMd=>"MMM d",Md=>"M/d",d=>"d",h=>"h a",hm=>"h:mm a",hms=>"h:mm:ss a",hmsv=>"h:mm:ss a v",hmv=>"h:mm a v",ms=>"mm:ss",y=>"y",yM=>"M/y",yMEd=>"E, M/d/y",yMMM=>"MMM y",yMMMEd=>"E, MMM d, y",yMMMM=>"MMMM y",yMMMd=>"MMM d, y",yMd=>"M/d/y",yQQQ=>"QQQ y",yQQQQ=>"QQQQ y" },code=>"en",date_format_full=>"EEEE, MMMM d, y",date_format_long=>"MMMM d, y",date_format_medium=>"MMM d, y",date_format_short=>"M/d/yy",datetime_format_full=>"{1} 'at' {0}",datetime_format_long=>"{1} 'at' {0}",datetime_format_medium=>"{1}, {0}",datetime_format_short=>"{1}, {0}",day_format_abbreviated=>["Mon","Tue","Wed","Thu","Fri","Sat","Sun" ],day_format_narrow=>["M","T","W","T","F","S","S" ],day_format_wide=>["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday" ],day_stand_alone_abbreviated=>["Mon","Tue","Wed","Thu","Fri","Sat","Sun" ],day_stand_alone_narrow=>["M","T","W","T","F","S","S" ],day_stand_alone_wide=>["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday" ],era_abbreviated=>["BC","AD" ],era_narrow=>["B","A" ],era_wide=>["Before Christ","Anno Domini" ],first_day_of_week=>1,glibc_date_1_format=>"%a %b %e %H:%M:%S %Z %Y",glibc_date_format=>"%m/%d/%y",glibc_datetime_format=>"%a %b %e %H:%M:%S %Y",glibc_time_12_format=>"%I:%M:%S %p",glibc_time_format=>"%H:%M:%S",language=>"English",month_format_abbreviated=>["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec" ],month_format_narrow=>["J","F","M","A","M","J","J","A","S","O","N","D" ],month_format_wide=>["January","February","March","April","May","June","July","August","September","October","November","December" ],month_stand_alone_abbreviated=>["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec" ],month_stand_alone_narrow=>["J","F","M","A","M","J","J","A","S","O","N","D" ],month_stand_alone_wide=>["January","February","March","April","May","June","July","August","September","October","November","December" ],name=>"English",native_language=>"English",native_name=>"English",native_script=>undef,native_territory=>undef,native_variant=>undef,quarter_format_abbreviated=>["Q1","Q2","Q3","Q4" ],quarter_format_narrow=>[1,2,3,4 ],quarter_format_wide=>["1st quarter","2nd quarter","3rd quarter","4th quarter" ],quarter_stand_alone_abbreviated=>["Q1","Q2","Q3","Q4" ],quarter_stand_alone_narrow=>[1,2,3,4 ],quarter_stand_alone_wide=>["1st quarter","2nd quarter","3rd quarter","4th quarter" ],script=>undef,territory=>undef,time_format_full=>"h:mm:ss a zzzz",time_format_long=>"h:mm:ss a z",time_format_medium=>"h:mm:ss a",time_format_short=>"h:mm a",variant=>undef,version=>28 },"en-CA"=>{am_pm_abbreviated=>["AM","PM" ],available_formats=>{E=>"ccc",EHm=>"E HH:mm",EHms=>"E HH:mm:ss",Ed=>"E d",Ehm=>"E h:mm a",Ehms=>"E h:mm:ss a",Gy=>"y G",GyMMM=>"MMM y G",GyMMMEd=>"E, MMM d, y G",GyMMMd=>"MMM d, y G",H=>"HH",Hm=>"HH:mm",Hms=>"HH:mm:ss",Hmsv=>"HH:mm:ss v",Hmv=>"HH:mm v",M=>"L",MEd=>"E, MM-dd",MMM=>"LLL",MMMEd=>"E, MMM d",MMMMd=>"MMMM d",MMMd=>"MMM d",MMdd=>"MM-dd",Md=>"MM-dd",d=>"d",h=>"h a",hm=>"h:mm a",hms=>"h:mm:ss a",hmsv=>"h:mm:ss a v",hmv=>"h:mm a v",ms=>"mm:ss",y=>"y",yM=>"y-MM",yMEd=>"E, y-MM-dd",yMMM=>"MMM y",yMMMEd=>"E, MMM d, y",yMMMM=>"MMMM y",yMMMd=>"MMM d, y",yMd=>"y-MM-dd",yQQQ=>"QQQ y",yQQQQ=>"QQQQ y" },code=>"en-CA",date_format_full=>"EEEE, MMMM d, y",date_format_long=>"MMMM d, y",date_format_medium=>"MMM d, y",date_format_short=>"y-MM-dd",datetime_format_full=>"{1} 'at' {0}",datetime_format_long=>"{1} 'at' {0}",datetime_format_medium=>"{1}, {0}",datetime_format_short=>"{1}, {0}",day_format_abbreviated=>["Mon","Tue","Wed","Thu","Fri","Sat","Sun" ],day_format_narrow=>["M","T","W","T","F","S","S" ],day_format_wide=>["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday" ],day_stand_alone_abbreviated=>["Mon","Tue","Wed","Thu","Fri","Sat","Sun" ],day_stand_alone_narrow=>["M","T","W","T","F","S","S" ],day_stand_alone_wide=>["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday" ],era_abbreviated=>["BC","AD" ],era_narrow=>["B","A" ],era_wide=>["Before Christ","Anno Domini" ],first_day_of_week=>1,glibc_date_1_format=>"%a %b %e %H:%M:%S %Z %Y",glibc_date_format=>"%d/%m/%y",glibc_datetime_format=>"%a %d %b %Y %r %Z",glibc_time_12_format=>"%I:%M:%S %p",glibc_time_format=>"%r",language=>"English",month_format_abbreviated=>["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec" ],month_format_narrow=>["J","F","M","A","M","J","J","A","S","O","N","D" ],month_format_wide=>["January","February","March","April","May","June","July","August","September","October","November","December" ],month_stand_alone_abbreviated=>["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec" ],month_stand_alone_narrow=>["J","F","M","A","M","J","J","A","S","O","N","D" ],month_stand_alone_wide=>["January","February","March","April","May","June","July","August","September","October","November","December" ],name=>"English Canada",native_language=>"English",native_name=>"English Canada",native_script=>undef,native_territory=>"Canada",native_variant=>undef,quarter_format_abbreviated=>["Q1","Q2","Q3","Q4" ],quarter_format_narrow=>[1,2,3,4 ],quarter_format_wide=>["1st quarter","2nd quarter","3rd quarter","4th quarter" ],quarter_stand_alone_abbreviated=>["Q1","Q2","Q3","Q4" ],quarter_stand_alone_narrow=>[1,2,3,4 ],quarter_stand_alone_wide=>["1st quarter","2nd quarter","3rd quarter","4th quarter" ],script=>undef,territory=>"Canada",time_format_full=>"h:mm:ss a zzzz",time_format_long=>"h:mm:ss a z",time_format_medium=>"h:mm:ss a",time_format_short=>"h:mm a",variant=>undef,version=>28 },"en-US"=>{am_pm_abbreviated=>["AM","PM" ],available_formats=>{E=>"ccc",EHm=>"E HH:mm",EHms=>"E HH:mm:ss",Ed=>"d E",Ehm=>"E h:mm a",Ehms=>"E h:mm:ss a",Gy=>"y G",GyMMM=>"MMM y G",GyMMMEd=>"E, MMM d, y G",GyMMMd=>"MMM d, y G",H=>"HH",Hm=>"HH:mm",Hms=>"HH:mm:ss",Hmsv=>"HH:mm:ss v",Hmv=>"HH:mm v",M=>"L",MEd=>"E, M/d",MMM=>"LLL",MMMEd=>"E, MMM d",MMMMd=>"MMMM d",MMMd=>"MMM d",Md=>"M/d",d=>"d",h=>"h a",hm=>"h:mm a",hms=>"h:mm:ss a",hmsv=>"h:mm:ss a v",hmv=>"h:mm a v",ms=>"mm:ss",y=>"y",yM=>"M/y",yMEd=>"E, M/d/y",yMMM=>"MMM y",yMMMEd=>"E, MMM d, y",yMMMM=>"MMMM y",yMMMd=>"MMM d, y",yMd=>"M/d/y",yQQQ=>"QQQ y",yQQQQ=>"QQQQ y" },code=>"en-US",date_format_full=>"EEEE, MMMM d, y",date_format_long=>"MMMM d, y",date_format_medium=>"MMM d, y",date_format_short=>"M/d/yy",datetime_format_full=>"{1} 'at' {0}",datetime_format_long=>"{1} 'at' {0}",datetime_format_medium=>"{1}, {0}",datetime_format_short=>"{1}, {0}",day_format_abbreviated=>["Mon","Tue","Wed","Thu","Fri","Sat","Sun" ],day_format_narrow=>["M","T","W","T","F","S","S" ],day_format_wide=>["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday" ],day_stand_alone_abbreviated=>["Mon","Tue","Wed","Thu","Fri","Sat","Sun" ],day_stand_alone_narrow=>["M","T","W","T","F","S","S" ],day_stand_alone_wide=>["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday" ],era_abbreviated=>["BC","AD" ],era_narrow=>["B","A" ],era_wide=>["Before Christ","Anno Domini" ],first_day_of_week=>7,glibc_date_1_format=>"%a %b %e %H:%M:%S %Z %Y",glibc_date_format=>"%m/%d/%Y",glibc_datetime_format=>"%a %d %b %Y %r %Z",glibc_time_12_format=>"%I:%M:%S %p",glibc_time_format=>"%r",language=>"English",month_format_abbreviated=>["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec" ],month_format_narrow=>["J","F","M","A","M","J","J","A","S","O","N","D" ],month_format_wide=>["January","February","March","April","May","June","July","August","September","October","November","December" ],month_stand_alone_abbreviated=>["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec" ],month_stand_alone_narrow=>["J","F","M","A","M","J","J","A","S","O","N","D" ],month_stand_alone_wide=>["January","February","March","April","May","June","July","August","September","October","November","December" ],name=>"English United States",native_language=>"English",native_name=>"English United States",native_script=>undef,native_territory=>"United States",native_variant=>undef,quarter_format_abbreviated=>["Q1","Q2","Q3","Q4" ],quarter_format_narrow=>[1,2,3,4 ],quarter_format_wide=>["1st quarter","2nd quarter","3rd quarter","4th quarter" ],quarter_stand_alone_abbreviated=>["Q1","Q2","Q3","Q4" ],quarter_stand_alone_narrow=>[1,2,3,4 ],quarter_stand_alone_wide=>["1st quarter","2nd quarter","3rd quarter","4th quarter" ],script=>undef,territory=>"United States",time_format_full=>"h:mm:ss a zzzz",time_format_long=>"h:mm:ss a z",time_format_medium=>"h:mm:ss a",time_format_short=>"h:mm a",variant=>undef,version=>28 },es=>{am_pm_abbreviated=>["a. m.","p. m." ],available_formats=>{E=>"ccc",EHm=>"E, H:mm",EHms=>"E, H:mm:ss",Ed=>"E d",Ehm=>"E, h:mm a",Ehms=>"E, h:mm:ss a",Gy=>"y G",GyMMM=>"MMM y G",GyMMMEd=>"E, d MMM y G",GyMMMM=>"MMMM 'de' y G",GyMMMMEd=>"E, d 'de' MMMM 'de' y G",GyMMMMd=>"d 'de' MMMM 'de' y G",GyMMMd=>"d MMM y G",H=>"H",Hm=>"H:mm",Hms=>"H:mm:ss",Hmsv=>"H:mm:ss v",Hmsvvvv=>"H:mm:ss (vvvv)",Hmv=>"H:mm v",M=>"L",MEd=>"E, d/M",MMM=>"LLL",MMMEd=>"E, d MMM",MMMMEd=>"E, d 'de' MMMM",MMMMd=>"d 'de' MMMM",MMMd=>"d MMM",MMd=>"d/M",MMdd=>"d/M",Md=>"d/M",d=>"d",h=>"h a",hm=>"h:mm a",hms=>"h:mm:ss a",hmsv=>"h:mm:ss a v",hmsvvvv=>"h:mm:ss a (vvvv)",hmv=>"h:mm a v",ms=>"mm:ss",y=>"y",yM=>"M/y",yMEd=>"EEE, d/M/y",yMM=>"M/y",yMMM=>"MMM y",yMMMEd=>"EEE, d MMM y",yMMMM=>"MMMM 'de' y",yMMMMEd=>"EEE, d 'de' MMMM 'de' y",yMMMMd=>"d 'de' MMMM 'de' y",yMMMd=>"d MMM y",yMd=>"d/M/y",yQQQ=>"QQQ y",yQQQQ=>"QQQQ 'de' y" },code=>"es",date_format_full=>"EEEE, d 'de' MMMM 'de' y",date_format_long=>"d 'de' MMMM 'de' y",date_format_medium=>"d MMM y",date_format_short=>"d/M/yy",datetime_format_full=>"{1}, {0}",datetime_format_long=>"{1}, {0}",datetime_format_medium=>"{1} {0}",datetime_format_short=>"{1} {0}",day_format_abbreviated=>["lun.","mar.","mi\N{U+00e9}.","jue.","vie.","s\N{U+00e1}b.","dom." ],day_format_narrow=>["L","M","X","J","V","S","D" ],day_format_wide=>["lunes","martes","mi\N{U+00e9}rcoles","jueves","viernes","s\N{U+00e1}bado","domingo" ],day_stand_alone_abbreviated=>["lun.","mar.","mi\N{U+00e9}.","jue.","vie.","s\N{U+00e1}b.","dom." ],day_stand_alone_narrow=>["L","M","X","J","V","S","D" ],day_stand_alone_wide=>["lunes","martes","mi\N{U+00e9}rcoles","jueves","viernes","s\N{U+00e1}bado","domingo" ],era_abbreviated=>["a. C.","d. C." ],era_narrow=>["a. C.","d. C." ],era_wide=>["antes de Cristo","despu\N{U+00e9}s de Cristo" ],first_day_of_week=>1,glibc_date_1_format=>"%a %b %e %H:%M:%S %Z %Y",glibc_date_format=>"%m/%d/%y",glibc_datetime_format=>"%a %b %e %H:%M:%S %Y",glibc_time_12_format=>"%I:%M:%S %p",glibc_time_format=>"%H:%M:%S",language=>"Spanish",month_format_abbreviated=>["ene.","feb.","mar.","abr.","may.","jun.","jul.","ago.","sept.","oct.","nov.","dic." ],month_format_narrow=>["E","F","M","A","M","J","J","A","S","O","N","D" ],month_format_wide=>["enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre" ],month_stand_alone_abbreviated=>["ene.","feb.","mar.","abr.","may.","jun.","jul.","ago.","sept.","oct.","nov.","dic." ],month_stand_alone_narrow=>["E","F","M","A","M","J","J","A","S","O","N","D" ],month_stand_alone_wide=>["enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre" ],name=>"Spanish",native_language=>"espa\N{U+00f1}ol",native_name=>"espa\N{U+00f1}ol",native_script=>undef,native_territory=>undef,native_variant=>undef,quarter_format_abbreviated=>["T1","T2","T3","T4" ],quarter_format_narrow=>[1,2,3,4 ],quarter_format_wide=>["1.er trimestre","2.\N{U+00ba} trimestre","3.er trimestre","4.\N{U+00ba} trimestre" ],quarter_stand_alone_abbreviated=>["T1","T2","T3","T4" ],quarter_stand_alone_narrow=>[1,2,3,4 ],quarter_stand_alone_wide=>["1.er trimestre","2.\N{U+00ba} trimestre","3.er trimestre","4.\N{U+00ba} trimestre" ],script=>undef,territory=>undef,time_format_full=>"H:mm:ss (zzzz)",time_format_long=>"H:mm:ss z",time_format_medium=>"H:mm:ss",time_format_short=>"H:mm",variant=>undef,version=>28 },"fr-FR"=>{am_pm_abbreviated=>["AM","PM" ],available_formats=>{E=>"E",EHm=>"E HH:mm",EHms=>"E HH:mm:ss",Ed=>"E d",Ehm=>"E h:mm a",Ehms=>"E h:mm:ss a",Gy=>"y G",GyMMM=>"MMM y G",GyMMMEd=>"E d MMM y G",GyMMMd=>"d MMM y G",H=>"HH 'h'",Hm=>"HH:mm",Hms=>"HH:mm:ss",Hmsv=>"HH:mm:ss v",Hmv=>"HH:mm v",M=>"L",MEd=>"E dd/MM",MMM=>"LLL",MMMEd=>"E d MMM",MMMMd=>"d MMMM",MMMd=>"d MMM",Md=>"dd/MM",d=>"d",h=>"h a",hm=>"h:mm a",hms=>"h:mm:ss a",hmsv=>"h:mm:ss a v",hmv=>"h:mm a v",ms=>"mm:ss",y=>"y",yM=>"MM/y",yMEd=>"E dd/MM/y",yMMM=>"MMM y",yMMMEd=>"E d MMM y",yMMMM=>"MMMM y",yMMMd=>"d MMM y",yMd=>"dd/MM/y",yQQQ=>"QQQ y",yQQQQ=>"QQQQ y" },code=>"fr-FR",date_format_full=>"EEEE d MMMM y",date_format_long=>"d MMMM y",date_format_medium=>"d MMM y",date_format_short=>"dd/MM/y",datetime_format_full=>"{1} '\N{U+00e0}' {0}",datetime_format_long=>"{1} '\N{U+00e0}' {0}",datetime_format_medium=>"{1} '\N{U+00e0}' {0}",datetime_format_short=>"{1} {0}",day_format_abbreviated=>["lun.","mar.","mer.","jeu.","ven.","sam.","dim." ],day_format_narrow=>["L","M","M","J","V","S","D" ],day_format_wide=>["lundi","mardi","mercredi","jeudi","vendredi","samedi","dimanche" ],day_stand_alone_abbreviated=>["lun.","mar.","mer.","jeu.","ven.","sam.","dim." ],day_stand_alone_narrow=>["L","M","M","J","V","S","D" ],day_stand_alone_wide=>["lundi","mardi","mercredi","jeudi","vendredi","samedi","dimanche" ],era_abbreviated=>["av. J.-C.","ap. J.-C." ],era_narrow=>["av. J.-C.","ap. J.-C." ],era_wide=>["avant J\N{U+00e9}sus-Christ","apr\N{U+00e8}s J\N{U+00e9}sus-Christ" ],first_day_of_week=>1,glibc_date_1_format=>"%a %b %e %H:%M:%S %Z %Y",glibc_date_format=>"%d/%m/%Y",glibc_datetime_format=>"%a %d %b %Y %T %Z",glibc_time_12_format=>"%I:%M:%S %p",glibc_time_format=>"%T",language=>"French",month_format_abbreviated=>["janv.","f\N{U+00e9}vr.","mars","avr.","mai","juin","juil.","ao\N{U+00fb}t","sept.","oct.","nov.","d\N{U+00e9}c." ],month_format_narrow=>["J","F","M","A","M","J","J","A","S","O","N","D" ],month_format_wide=>["janvier","f\N{U+00e9}vrier","mars","avril","mai","juin","juillet","ao\N{U+00fb}t","septembre","octobre","novembre","d\N{U+00e9}cembre" ],month_stand_alone_abbreviated=>["janv.","f\N{U+00e9}vr.","mars","avr.","mai","juin","juil.","ao\N{U+00fb}t","sept.","oct.","nov.","d\N{U+00e9}c." ],month_stand_alone_narrow=>["J","F","M","A","M","J","J","A","S","O","N","D" ],month_stand_alone_wide=>["janvier","f\N{U+00e9}vrier","mars","avril","mai","juin","juillet","ao\N{U+00fb}t","septembre","octobre","novembre","d\N{U+00e9}cembre" ],name=>"French France",native_language=>"fran\N{U+00e7}ais",native_name=>"fran\N{U+00e7}ais France",native_script=>undef,native_territory=>"France",native_variant=>undef,quarter_format_abbreviated=>["T1","T2","T3","T4" ],quarter_format_narrow=>[1,2,3,4 ],quarter_format_wide=>["1er trimestre","2e trimestre","3e trimestre","4e trimestre" ],quarter_stand_alone_abbreviated=>["T1","T2","T3","T4" ],quarter_stand_alone_narrow=>[1,2,3,4 ],quarter_stand_alone_wide=>["1er trimestre","2e trimestre","3e trimestre","4e trimestre" ],script=>undef,territory=>"France",time_format_full=>"HH:mm:ss zzzz",time_format_long=>"HH:mm:ss z",time_format_medium=>"HH:mm:ss",time_format_short=>"HH:mm",variant=>undef,version=>28 },hi=>{am_pm_abbreviated=>["\N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}","\N{U+0905}\N{U+092a}\N{U+0930}" ],available_formats=>{E=>"ccc",EHm=>"E HH:mm",EHms=>"E HH:mm:ss",Ed=>"E d",Ehm=>"E h:mm a",Ehms=>"E h:mm:ss a",Gy=>"y G",GyMMM=>"MMM G y",GyMMMEd=>"E, d MMM y G",GyMMMd=>"d MMM y G",H=>"HH",Hm=>"HH:mm",Hms=>"HH:mm:ss",Hmsv=>"HH:mm:ss v",Hmv=>"HH:mm v",M=>"L",MEd=>"E, d/M",MMM=>"LLL",MMMEd=>"E, d MMM",MMMMEd=>"E, d MMMM",MMMMd=>"d MMMM",MMMd=>"d MMM",MMdd=>"dd/MM",Md=>"d/M",d=>"d",h=>"h a",hm=>"h:mm a",hms=>"h:mm:ss a",hmsv=>"h:mm:ss a v",hmv=>"h:mm a v",ms=>"mm:ss",y=>"y",yM=>"M/y",yMEd=>"E, d/M/y",yMM=>"MM/y",yMMM=>"MMM y",yMMMEd=>"E, d MMM y",yMMMM=>"MMMM y",yMMMd=>"d MMM y",yMMdd=>"dd/MM/y",yMd=>"d/M/y",yQQQ=>"QQQ y",yQQQQ=>"QQQQ y" },code=>"hi",date_format_full=>"EEEE, d MMMM y",date_format_long=>"d MMMM y",date_format_medium=>"dd/MM/y",date_format_short=>"d/M/yy",datetime_format_full=>"{1} \N{U+0915}\N{U+094b} {0}",datetime_format_long=>"{1} \N{U+0915}\N{U+094b} {0}",datetime_format_medium=>"{1}, {0}",datetime_format_short=>"{1}, {0}",day_format_abbreviated=>["\N{U+0938}\N{U+094b}\N{U+092e}","\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0932}","\N{U+092c}\N{U+0941}\N{U+0927}","\N{U+0917}\N{U+0941}\N{U+0930}\N{U+0941}","\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}","\N{U+0936}\N{U+0928}\N{U+093f}","\N{U+0930}\N{U+0935}\N{U+093f}" ],day_format_narrow=>["\N{U+0938}\N{U+094b}","\N{U+092e}\N{U+0902}","\N{U+092c}\N{U+0941}","\N{U+0917}\N{U+0941}","\N{U+0936}\N{U+0941}","\N{U+0936}","\N{U+0930}" ],day_format_wide=>["\N{U+0938}\N{U+094b}\N{U+092e}\N{U+0935}\N{U+093e}\N{U+0930}","\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0932}\N{U+0935}\N{U+093e}\N{U+0930}","\N{U+092c}\N{U+0941}\N{U+0927}\N{U+0935}\N{U+093e}\N{U+0930}","\N{U+0917}\N{U+0941}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}","\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}\N{U+0935}\N{U+093e}\N{U+0930}","\N{U+0936}\N{U+0928}\N{U+093f}\N{U+0935}\N{U+093e}\N{U+0930}","\N{U+0930}\N{U+0935}\N{U+093f}\N{U+0935}\N{U+093e}\N{U+0930}" ],day_stand_alone_abbreviated=>["\N{U+0938}\N{U+094b}\N{U+092e}","\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0932}","\N{U+092c}\N{U+0941}\N{U+0927}","\N{U+0917}\N{U+0941}\N{U+0930}\N{U+0941}","\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}","\N{U+0936}\N{U+0928}\N{U+093f}","\N{U+0930}\N{U+0935}\N{U+093f}" ],day_stand_alone_narrow=>["\N{U+0938}\N{U+094b}","\N{U+092e}\N{U+0902}","\N{U+092c}\N{U+0941}","\N{U+0917}\N{U+0941}","\N{U+0936}\N{U+0941}","\N{U+0936}","\N{U+0930}" ],day_stand_alone_wide=>["\N{U+0938}\N{U+094b}\N{U+092e}\N{U+0935}\N{U+093e}\N{U+0930}","\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0932}\N{U+0935}\N{U+093e}\N{U+0930}","\N{U+092c}\N{U+0941}\N{U+0927}\N{U+0935}\N{U+093e}\N{U+0930}","\N{U+0917}\N{U+0941}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}","\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}\N{U+0935}\N{U+093e}\N{U+0930}","\N{U+0936}\N{U+0928}\N{U+093f}\N{U+0935}\N{U+093e}\N{U+0930}","\N{U+0930}\N{U+0935}\N{U+093f}\N{U+0935}\N{U+093e}\N{U+0930}" ],era_abbreviated=>["\N{U+0908}\N{U+0938}\N{U+093e}-\N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}","\N{U+0908}\N{U+0938}\N{U+094d}\N{U+0935}\N{U+0940}" ],era_narrow=>["\N{U+0908}\N{U+0938}\N{U+093e}-\N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}","\N{U+0908}\N{U+0938}\N{U+094d}\N{U+0935}\N{U+0940}" ],era_wide=>["\N{U+0908}\N{U+0938}\N{U+093e}-\N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}","\N{U+0908}\N{U+0938}\N{U+0935}\N{U+0940} \N{U+0938}\N{U+0928}" ],first_day_of_week=>1,glibc_date_1_format=>"%a %b %e %H:%M:%S %Z %Y",glibc_date_format=>"%m/%d/%y",glibc_datetime_format=>"%a %b %e %H:%M:%S %Y",glibc_time_12_format=>"%I:%M:%S %p",glibc_time_format=>"%H:%M:%S",language=>"Hindi",month_format_abbreviated=>["\N{U+091c}\N{U+0928}\N{U+0970}","\N{U+092b}\N{U+093c}\N{U+0930}\N{U+0970}","\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}","\N{U+0905}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+0948}\N{U+0932}","\N{U+092e}\N{U+0908}","\N{U+091c}\N{U+0942}\N{U+0928}","\N{U+091c}\N{U+0941}\N{U+0932}\N{U+0970}","\N{U+0905}\N{U+0917}\N{U+0970}","\N{U+0938}\N{U+093f}\N{U+0924}\N{U+0970}","\N{U+0905}\N{U+0915}\N{U+094d}\N{U+0924}\N{U+0942}\N{U+0970}","\N{U+0928}\N{U+0935}\N{U+0970}","\N{U+0926}\N{U+093f}\N{U+0938}\N{U+0970}" ],month_format_narrow=>["\N{U+091c}","\N{U+092b}\N{U+093c}","\N{U+092e}\N{U+093e}","\N{U+0905}","\N{U+092e}","\N{U+091c}\N{U+0942}","\N{U+091c}\N{U+0941}","\N{U+0905}","\N{U+0938}\N{U+093f}","\N{U+0905}","\N{U+0928}","\N{U+0926}\N{U+093f}" ],month_format_wide=>["\N{U+091c}\N{U+0928}\N{U+0935}\N{U+0930}\N{U+0940}","\N{U+092b}\N{U+093c}\N{U+0930}\N{U+0935}\N{U+0930}\N{U+0940}","\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}","\N{U+0905}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+0948}\N{U+0932}","\N{U+092e}\N{U+0908}","\N{U+091c}\N{U+0942}\N{U+0928}","\N{U+091c}\N{U+0941}\N{U+0932}\N{U+093e}\N{U+0908}","\N{U+0905}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+0924}","\N{U+0938}\N{U+093f}\N{U+0924}\N{U+0902}\N{U+092c}\N{U+0930}","\N{U+0905}\N{U+0915}\N{U+094d}\N{U+0924}\N{U+0942}\N{U+092c}\N{U+0930}","\N{U+0928}\N{U+0935}\N{U+0902}\N{U+092c}\N{U+0930}","\N{U+0926}\N{U+093f}\N{U+0938}\N{U+0902}\N{U+092c}\N{U+0930}" ],month_stand_alone_abbreviated=>["\N{U+091c}\N{U+0928}\N{U+0970}","\N{U+092b}\N{U+093c}\N{U+0930}\N{U+0970}","\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}","\N{U+0905}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+0948}\N{U+0932}","\N{U+092e}\N{U+0908}","\N{U+091c}\N{U+0942}\N{U+0928}","\N{U+091c}\N{U+0941}\N{U+0932}\N{U+0970}","\N{U+0905}\N{U+0917}\N{U+0970}","\N{U+0938}\N{U+093f}\N{U+0924}\N{U+0970}","\N{U+0905}\N{U+0915}\N{U+094d}\N{U+0924}\N{U+0942}\N{U+0970}","\N{U+0928}\N{U+0935}\N{U+0970}","\N{U+0926}\N{U+093f}\N{U+0938}\N{U+0970}" ],month_stand_alone_narrow=>["\N{U+091c}","\N{U+092b}\N{U+093c}","\N{U+092e}\N{U+093e}","\N{U+0905}","\N{U+092e}","\N{U+091c}\N{U+0942}","\N{U+091c}\N{U+0941}","\N{U+0905}","\N{U+0938}\N{U+093f}","\N{U+0905}","\N{U+0928}","\N{U+0926}\N{U+093f}" ],month_stand_alone_wide=>["\N{U+091c}\N{U+0928}\N{U+0935}\N{U+0930}\N{U+0940}","\N{U+092b}\N{U+093c}\N{U+0930}\N{U+0935}\N{U+0930}\N{U+0940}","\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}","\N{U+0905}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+0948}\N{U+0932}","\N{U+092e}\N{U+0908}","\N{U+091c}\N{U+0942}\N{U+0928}","\N{U+091c}\N{U+0941}\N{U+0932}\N{U+093e}\N{U+0908}","\N{U+0905}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+0924}","\N{U+0938}\N{U+093f}\N{U+0924}\N{U+0902}\N{U+092c}\N{U+0930}","\N{U+0905}\N{U+0915}\N{U+094d}\N{U+0924}\N{U+0942}\N{U+092c}\N{U+0930}","\N{U+0928}\N{U+0935}\N{U+0902}\N{U+092c}\N{U+0930}","\N{U+0926}\N{U+093f}\N{U+0938}\N{U+0902}\N{U+092c}\N{U+0930}" ],name=>"Hindi",native_language=>"\N{U+0939}\N{U+093f}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+0940}",native_name=>"\N{U+0939}\N{U+093f}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+0940}",native_script=>undef,native_territory=>undef,native_variant=>undef,quarter_format_abbreviated=>["\N{U+0924}\N{U+093f}1","\N{U+0924}\N{U+093f}2","\N{U+0924}\N{U+093f}3","\N{U+0924}\N{U+093f}4" ],quarter_format_narrow=>[1,2,3,4 ],quarter_format_wide=>["\N{U+092a}\N{U+0939}\N{U+0932}\N{U+0940} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}","\N{U+0926}\N{U+0942}\N{U+0938}\N{U+0930}\N{U+0940} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}","\N{U+0924}\N{U+0940}\N{U+0938}\N{U+0930}\N{U+0940} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}","\N{U+091a}\N{U+094c}\N{U+0925}\N{U+0940} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}" ],quarter_stand_alone_abbreviated=>["\N{U+0924}\N{U+093f}1","\N{U+0924}\N{U+093f}2","\N{U+0924}\N{U+093f}3","\N{U+0924}\N{U+093f}4" ],quarter_stand_alone_narrow=>[1,2,3,4 ],quarter_stand_alone_wide=>["\N{U+092a}\N{U+0939}\N{U+0932}\N{U+0940} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}","\N{U+0926}\N{U+0942}\N{U+0938}\N{U+0930}\N{U+0940} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}","\N{U+0924}\N{U+0940}\N{U+0938}\N{U+0930}\N{U+0940} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}","\N{U+091a}\N{U+094c}\N{U+0925}\N{U+0940} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}" ],script=>undef,territory=>undef,time_format_full=>"h:mm:ss a zzzz",time_format_long=>"h:mm:ss a z",time_format_medium=>"h:mm:ss a",time_format_short=>"h:mm a",variant=>undef,version=>28 },"ja-JP"=>{am_pm_abbreviated=>["\N{U+5348}\N{U+524d}","\N{U+5348}\N{U+5f8c}" ],available_formats=>{E=>"ccc",EEEEd=>"d\N{U+65e5}EEEE",EHm=>"H:mm (E)",EHms=>"H:mm:ss (E)",Ed=>"d\N{U+65e5}(E)",Ehm=>"aK:mm (E)",Ehms=>"aK:mm:ss (E)",Gy=>"Gy\N{U+5e74}",GyMMM=>"Gy\N{U+5e74}M\N{U+6708}",GyMMMEEEEd=>"Gy\N{U+5e74}M\N{U+6708}d\N{U+65e5}EEEE",GyMMMEd=>"Gy\N{U+5e74}M\N{U+6708}d\N{U+65e5}(E)",GyMMMd=>"Gy\N{U+5e74}M\N{U+6708}d\N{U+65e5}",H=>"H\N{U+6642}",Hm=>"H:mm",Hms=>"H:mm:ss",Hmsv=>"H:mm:ss v",Hmv=>"H:mm v",M=>"M\N{U+6708}",MEEEEd=>"M/dEEEE",MEd=>"M/d(E)",MMM=>"M\N{U+6708}",MMMEEEEd=>"M\N{U+6708}d\N{U+65e5}EEEE",MMMEd=>"M\N{U+6708}d\N{U+65e5}(E)",MMMMd=>"M\N{U+6708}d\N{U+65e5}",MMMd=>"M\N{U+6708}d\N{U+65e5}",Md=>"M/d",d=>"d\N{U+65e5}",h=>"aK\N{U+6642}",hm=>"aK:mm",hms=>"aK:mm:ss",hmsv=>"aK:mm:ss v",hmv=>"aK:mm v",ms=>"mm:ss",y=>"y\N{U+5e74}",yM=>"y/M",yMEEEEd=>"y/M/dEEEE",yMEd=>"y/M/d(E)",yMM=>"y/MM",yMMM=>"y\N{U+5e74}M\N{U+6708}",yMMMEEEEd=>"y\N{U+5e74}M\N{U+6708}d\N{U+65e5}EEEE",yMMMEd=>"y\N{U+5e74}M\N{U+6708}d\N{U+65e5}(E)",yMMMM=>"y\N{U+5e74}M\N{U+6708}",yMMMd=>"y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",yMd=>"y/M/d",yQQQ=>"y/QQQ",yQQQQ=>"yQQQQ" },code=>"ja-JP",date_format_full=>"y\N{U+5e74}M\N{U+6708}d\N{U+65e5}EEEE",date_format_long=>"y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",date_format_medium=>"y/MM/dd",date_format_short=>"y/MM/dd",datetime_format_full=>"{1} {0}",datetime_format_long=>"{1} {0}",datetime_format_medium=>"{1} {0}",datetime_format_short=>"{1} {0}",day_format_abbreviated=>["\N{U+6708}","\N{U+706b}","\N{U+6c34}","\N{U+6728}","\N{U+91d1}","\N{U+571f}","\N{U+65e5}" ],day_format_narrow=>["\N{U+6708}","\N{U+706b}","\N{U+6c34}","\N{U+6728}","\N{U+91d1}","\N{U+571f}","\N{U+65e5}" ],day_format_wide=>["\N{U+6708}\N{U+66dc}\N{U+65e5}","\N{U+706b}\N{U+66dc}\N{U+65e5}","\N{U+6c34}\N{U+66dc}\N{U+65e5}","\N{U+6728}\N{U+66dc}\N{U+65e5}","\N{U+91d1}\N{U+66dc}\N{U+65e5}","\N{U+571f}\N{U+66dc}\N{U+65e5}","\N{U+65e5}\N{U+66dc}\N{U+65e5}" ],day_stand_alone_abbreviated=>["\N{U+6708}","\N{U+706b}","\N{U+6c34}","\N{U+6728}","\N{U+91d1}","\N{U+571f}","\N{U+65e5}" ],day_stand_alone_narrow=>["\N{U+6708}","\N{U+706b}","\N{U+6c34}","\N{U+6728}","\N{U+91d1}","\N{U+571f}","\N{U+65e5}" ],day_stand_alone_wide=>["\N{U+6708}\N{U+66dc}\N{U+65e5}","\N{U+706b}\N{U+66dc}\N{U+65e5}","\N{U+6c34}\N{U+66dc}\N{U+65e5}","\N{U+6728}\N{U+66dc}\N{U+65e5}","\N{U+91d1}\N{U+66dc}\N{U+65e5}","\N{U+571f}\N{U+66dc}\N{U+65e5}","\N{U+65e5}\N{U+66dc}\N{U+65e5}" ],era_abbreviated=>["\N{U+7d00}\N{U+5143}\N{U+524d}","\N{U+897f}\N{U+66a6}" ],era_narrow=>["BC","AD" ],era_wide=>["\N{U+7d00}\N{U+5143}\N{U+524d}","\N{U+897f}\N{U+66a6}" ],first_day_of_week=>7,glibc_date_1_format=>"%Y\N{U+5e74} %b %e\N{U+65e5} %A %H:%M:%S %Z",glibc_date_format=>"%Y\N{U+5e74}%m\N{U+6708}%d\N{U+65e5}",glibc_datetime_format=>"%Y\N{U+5e74}%m\N{U+6708}%d\N{U+65e5} %H\N{U+6642}%M\N{U+5206}%S\N{U+79d2}",glibc_time_12_format=>"%p%I\N{U+6642}%M\N{U+5206}%S\N{U+79d2}",glibc_time_format=>"%H\N{U+6642}%M\N{U+5206}%S\N{U+79d2}",language=>"Japanese",month_format_abbreviated=>["1\N{U+6708}","2\N{U+6708}","3\N{U+6708}","4\N{U+6708}","5\N{U+6708}","6\N{U+6708}","7\N{U+6708}","8\N{U+6708}","9\N{U+6708}","10\N{U+6708}","11\N{U+6708}","12\N{U+6708}" ],month_format_narrow=>[1,2,3,4,5,6,7,8,9,10,11,12 ],month_format_wide=>["1\N{U+6708}","2\N{U+6708}","3\N{U+6708}","4\N{U+6708}","5\N{U+6708}","6\N{U+6708}","7\N{U+6708}","8\N{U+6708}","9\N{U+6708}","10\N{U+6708}","11\N{U+6708}","12\N{U+6708}" ],month_stand_alone_abbreviated=>["1\N{U+6708}","2\N{U+6708}","3\N{U+6708}","4\N{U+6708}","5\N{U+6708}","6\N{U+6708}","7\N{U+6708}","8\N{U+6708}","9\N{U+6708}","10\N{U+6708}","11\N{U+6708}","12\N{U+6708}" ],month_stand_alone_narrow=>[1,2,3,4,5,6,7,8,9,10,11,12 ],month_stand_alone_wide=>["1\N{U+6708}","2\N{U+6708}","3\N{U+6708}","4\N{U+6708}","5\N{U+6708}","6\N{U+6708}","7\N{U+6708}","8\N{U+6708}","9\N{U+6708}","10\N{U+6708}","11\N{U+6708}","12\N{U+6708}" ],name=>"Japanese Japan",native_language=>"\N{U+65e5}\N{U+672c}\N{U+8a9e}",native_name=>"\N{U+65e5}\N{U+672c}\N{U+8a9e} \N{U+65e5}\N{U+672c}",native_script=>undef,native_territory=>"\N{U+65e5}\N{U+672c}",native_variant=>undef,quarter_format_abbreviated=>["Q1","Q2","Q3","Q4" ],quarter_format_narrow=>[1,2,3,4 ],quarter_format_wide=>["\N{U+7b2c}1\N{U+56db}\N{U+534a}\N{U+671f}","\N{U+7b2c}2\N{U+56db}\N{U+534a}\N{U+671f}","\N{U+7b2c}3\N{U+56db}\N{U+534a}\N{U+671f}","\N{U+7b2c}4\N{U+56db}\N{U+534a}\N{U+671f}" ],quarter_stand_alone_abbreviated=>["Q1","Q2","Q3","Q4" ],quarter_stand_alone_narrow=>[1,2,3,4 ],quarter_stand_alone_wide=>["\N{U+7b2c}1\N{U+56db}\N{U+534a}\N{U+671f}","\N{U+7b2c}2\N{U+56db}\N{U+534a}\N{U+671f}","\N{U+7b2c}3\N{U+56db}\N{U+534a}\N{U+671f}","\N{U+7b2c}4\N{U+56db}\N{U+534a}\N{U+671f}" ],script=>undef,territory=>"Japan",time_format_full=>"H\N{U+6642}mm\N{U+5206}ss\N{U+79d2} zzzz",time_format_long=>"H:mm:ss z",time_format_medium=>"H:mm:ss",time_format_short=>"H:mm",variant=>undef,version=>28 },"pt-BR"=>{am_pm_abbreviated=>["AM","PM" ],available_formats=>{E=>"ccc",EHm=>"E, HH:mm",EHms=>"E, HH:mm:ss",Ed=>"E, d",Ehm=>"E, h:mm a",Ehms=>"E, h:mm:ss a",Gy=>"y G",GyMMM=>"MMM 'de' y G",GyMMMEd=>"E, d 'de' MMM 'de' y G",GyMMMd=>"d 'de' MMM 'de' y G",H=>"HH",Hm=>"HH:mm",Hms=>"HH:mm:ss",Hmsv=>"HH:mm:ss v",Hmv=>"HH:mm v",M=>"L",MEd=>"E, dd/MM",MMM=>"LLL",MMMEd=>"E, d 'de' MMM",MMMMEd=>"E, d 'de' MMMM",MMMMd=>"d 'de' MMMM",MMMd=>"d 'de' MMM",MMdd=>"dd/MM",Md=>"d/M",d=>"d",h=>"h a",hm=>"h:mm a",hms=>"h:mm:ss a",hmsv=>"h:mm:ss a v",hmv=>"h:mm a v",ms=>"mm:ss",y=>"y",yM=>"MM/y",yMEd=>"E, dd/MM/y",yMM=>"MM/y",yMMM=>"MMM 'de' y",yMMMEd=>"E, d 'de' MMM 'de' y",yMMMM=>"MMMM 'de' y",yMMMMEd=>"E, d 'de' MMMM 'de' y",yMMMMd=>"d 'de' MMMM 'de' y",yMMMd=>"d 'de' MMM 'de' y",yMd=>"dd/MM/y",yQQQ=>"y QQQ",yQQQQ=>"y QQQQ" },code=>"pt-BR",date_format_full=>"EEEE, d 'de' MMMM 'de' y",date_format_long=>"d 'de' MMMM 'de' y",date_format_medium=>"d 'de' MMM 'de' y",date_format_short=>"dd/MM/yy",datetime_format_full=>"{1} {0}",datetime_format_long=>"{1} {0}",datetime_format_medium=>"{1} {0}",datetime_format_short=>"{1} {0}",day_format_abbreviated=>["seg","ter","qua","qui","sex","s\N{U+00e1}b","dom" ],day_format_narrow=>["S","T","Q","Q","S","S","D" ],day_format_wide=>["segunda-feira","ter\N{U+00e7}a-feira","quarta-feira","quinta-feira","sexta-feira","s\N{U+00e1}bado","domingo" ],day_stand_alone_abbreviated=>["seg","ter","qua","qui","sex","s\N{U+00e1}b","dom" ],day_stand_alone_narrow=>["S","T","Q","Q","S","S","D" ],day_stand_alone_wide=>["segunda-feira","ter\N{U+00e7}a-feira","quarta-feira","quinta-feira","sexta-feira","s\N{U+00e1}bado","domingo" ],era_abbreviated=>["a.C.","d.C." ],era_narrow=>["a.C.","d.C." ],era_wide=>["antes de Cristo","depois de Cristo" ],first_day_of_week=>1,glibc_date_1_format=>"%a %b %e %H:%M:%S %Z %Y",glibc_date_format=>"%d-%m-%Y",glibc_datetime_format=>"%a %d %b %Y %T %Z",glibc_time_12_format=>"%I:%M:%S %p",glibc_time_format=>"%T",language=>"Portuguese",month_format_abbreviated=>["jan","fev","mar","abr","mai","jun","jul","ago","set","out","nov","dez" ],month_format_narrow=>["J","F","M","A","M","J","J","A","S","O","N","D" ],month_format_wide=>["janeiro","fevereiro","mar\N{U+00e7}o","abril","maio","junho","julho","agosto","setembro","outubro","novembro","dezembro" ],month_stand_alone_abbreviated=>["jan","fev","mar","abr","mai","jun","jul","ago","set","out","nov","dez" ],month_stand_alone_narrow=>["J","F","M","A","M","J","J","A","S","O","N","D" ],month_stand_alone_wide=>["janeiro","fevereiro","mar\N{U+00e7}o","abril","maio","junho","julho","agosto","setembro","outubro","novembro","dezembro" ],name=>"Portuguese Brazil",native_language=>"portugu\N{U+00ea}s",native_name=>"portugu\N{U+00ea}s Brasil",native_script=>undef,native_territory=>"Brasil",native_variant=>undef,quarter_format_abbreviated=>["T1","T2","T3","T4" ],quarter_format_narrow=>[1,2,3,4 ],quarter_format_wide=>["1\N{U+00ba} trimestre","2\N{U+00ba} trimestre","3\N{U+00ba} trimestre","4\N{U+00ba} trimestre" ],quarter_stand_alone_abbreviated=>["T1","T2","T3","T4" ],quarter_stand_alone_narrow=>[1,2,3,4 ],quarter_stand_alone_wide=>["1\N{U+00ba} trimestre","2\N{U+00ba} trimestre","3\N{U+00ba} trimestre","4\N{U+00ba} trimestre" ],script=>undef,territory=>"Brazil",time_format_full=>"HH:mm:ss zzzz",time_format_long=>"HH:mm:ss z",time_format_medium=>"HH:mm:ss",time_format_short=>"HH:mm",variant=>undef,version=>28 },"zh-Hans-CN"=>{am_pm_abbreviated=>["\N{U+4e0a}\N{U+5348}","\N{U+4e0b}\N{U+5348}" ],available_formats=>{E=>"ccc",EHm=>"EHH:mm",EHms=>"EHH:mm:ss",Ed=>"d\N{U+65e5}E",Ehm=>"E ah:mm",Ehms=>"E ah:mm:ss",Gy=>"Gy\N{U+5e74}",GyMMM=>"Gy\N{U+5e74}M\N{U+6708}",GyMMMEd=>"Gy\N{U+5e74}M\N{U+6708}d\N{U+65e5}E",GyMMMd=>"Gy\N{U+5e74}M\N{U+6708}d\N{U+65e5}",H=>"H\N{U+65f6}",Hm=>"HH:mm",Hms=>"HH:mm:ss",Hmsv=>"v HH:mm:ss",Hmv=>"v HH:mm",M=>"M\N{U+6708}",MEd=>"M/dE",MMM=>"LLL",MMMEd=>"M\N{U+6708}d\N{U+65e5}E",MMMMd=>"M\N{U+6708}d\N{U+65e5}",MMMd=>"M\N{U+6708}d\N{U+65e5}",MMdd=>"MM/dd",Md=>"M/d",d=>"d\N{U+65e5}",h=>"ah\N{U+65f6}",hm=>"ah:mm",hms=>"ah:mm:ss",hmsv=>"v ah:mm:ss",hmv=>"v ah:mm",ms=>"mm:ss",y=>"y\N{U+5e74}",yM=>"y\N{U+5e74}M\N{U+6708}",yMEd=>"y/M/dE",yMM=>"y\N{U+5e74}M\N{U+6708}",yMMM=>"y\N{U+5e74}M\N{U+6708}",yMMMEd=>"y\N{U+5e74}M\N{U+6708}d\N{U+65e5}E",yMMMM=>"y\N{U+5e74}M\N{U+6708}",yMMMd=>"y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",yMd=>"y/M/d",yQQQ=>"y\N{U+5e74}\N{U+7b2c}Q\N{U+5b63}\N{U+5ea6}",yQQQQ=>"y\N{U+5e74}\N{U+7b2c}Q\N{U+5b63}\N{U+5ea6}" },code=>"zh-Hans-CN",date_format_full=>"y\N{U+5e74}M\N{U+6708}d\N{U+65e5}EEEE",date_format_long=>"y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",date_format_medium=>"y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",date_format_short=>"y/M/d",datetime_format_full=>"{1} {0}",datetime_format_long=>"{1} {0}",datetime_format_medium=>"{1} {0}",datetime_format_short=>"{1} {0}",day_format_abbreviated=>["\N{U+5468}\N{U+4e00}","\N{U+5468}\N{U+4e8c}","\N{U+5468}\N{U+4e09}","\N{U+5468}\N{U+56db}","\N{U+5468}\N{U+4e94}","\N{U+5468}\N{U+516d}","\N{U+5468}\N{U+65e5}" ],day_format_narrow=>["\N{U+4e00}","\N{U+4e8c}","\N{U+4e09}","\N{U+56db}","\N{U+4e94}","\N{U+516d}","\N{U+65e5}" ],day_format_wide=>["\N{U+661f}\N{U+671f}\N{U+4e00}","\N{U+661f}\N{U+671f}\N{U+4e8c}","\N{U+661f}\N{U+671f}\N{U+4e09}","\N{U+661f}\N{U+671f}\N{U+56db}","\N{U+661f}\N{U+671f}\N{U+4e94}","\N{U+661f}\N{U+671f}\N{U+516d}","\N{U+661f}\N{U+671f}\N{U+65e5}" ],day_stand_alone_abbreviated=>["\N{U+5468}\N{U+4e00}","\N{U+5468}\N{U+4e8c}","\N{U+5468}\N{U+4e09}","\N{U+5468}\N{U+56db}","\N{U+5468}\N{U+4e94}","\N{U+5468}\N{U+516d}","\N{U+5468}\N{U+65e5}" ],day_stand_alone_narrow=>["\N{U+4e00}","\N{U+4e8c}","\N{U+4e09}","\N{U+56db}","\N{U+4e94}","\N{U+516d}","\N{U+65e5}" ],day_stand_alone_wide=>["\N{U+661f}\N{U+671f}\N{U+4e00}","\N{U+661f}\N{U+671f}\N{U+4e8c}","\N{U+661f}\N{U+671f}\N{U+4e09}","\N{U+661f}\N{U+671f}\N{U+56db}","\N{U+661f}\N{U+671f}\N{U+4e94}","\N{U+661f}\N{U+671f}\N{U+516d}","\N{U+661f}\N{U+671f}\N{U+65e5}" ],era_abbreviated=>["\N{U+516c}\N{U+5143}\N{U+524d}","\N{U+516c}\N{U+5143}" ],era_narrow=>["\N{U+516c}\N{U+5143}\N{U+524d}","\N{U+516c}\N{U+5143}" ],era_wide=>["\N{U+516c}\N{U+5143}\N{U+524d}","\N{U+516c}\N{U+5143}" ],first_day_of_week=>1,glibc_date_1_format=>"%a %b %e %H:%M:%S %Z %Y",glibc_date_format=>"%m/%d/%y",glibc_datetime_format=>"%a %b %e %H:%M:%S %Y",glibc_time_12_format=>"%I:%M:%S %p",glibc_time_format=>"%H:%M:%S",language=>"Chinese",month_format_abbreviated=>["1\N{U+6708}","2\N{U+6708}","3\N{U+6708}","4\N{U+6708}","5\N{U+6708}","6\N{U+6708}","7\N{U+6708}","8\N{U+6708}","9\N{U+6708}","10\N{U+6708}","11\N{U+6708}","12\N{U+6708}" ],month_format_narrow=>[1,2,3,4,5,6,7,8,9,10,11,12 ],month_format_wide=>["\N{U+4e00}\N{U+6708}","\N{U+4e8c}\N{U+6708}","\N{U+4e09}\N{U+6708}","\N{U+56db}\N{U+6708}","\N{U+4e94}\N{U+6708}","\N{U+516d}\N{U+6708}","\N{U+4e03}\N{U+6708}","\N{U+516b}\N{U+6708}","\N{U+4e5d}\N{U+6708}","\N{U+5341}\N{U+6708}","\N{U+5341}\N{U+4e00}\N{U+6708}","\N{U+5341}\N{U+4e8c}\N{U+6708}" ],month_stand_alone_abbreviated=>["1\N{U+6708}","2\N{U+6708}","3\N{U+6708}","4\N{U+6708}","5\N{U+6708}","6\N{U+6708}","7\N{U+6708}","8\N{U+6708}","9\N{U+6708}","10\N{U+6708}","11\N{U+6708}","12\N{U+6708}" ],month_stand_alone_narrow=>[1,2,3,4,5,6,7,8,9,10,11,12 ],month_stand_alone_wide=>["\N{U+4e00}\N{U+6708}","\N{U+4e8c}\N{U+6708}","\N{U+4e09}\N{U+6708}","\N{U+56db}\N{U+6708}","\N{U+4e94}\N{U+6708}","\N{U+516d}\N{U+6708}","\N{U+4e03}\N{U+6708}","\N{U+516b}\N{U+6708}","\N{U+4e5d}\N{U+6708}","\N{U+5341}\N{U+6708}","\N{U+5341}\N{U+4e00}\N{U+6708}","\N{U+5341}\N{U+4e8c}\N{U+6708}" ],name=>"Chinese China Simplified",native_language=>"\N{U+4e2d}\N{U+6587}",native_name=>"\N{U+4e2d}\N{U+6587} \N{U+4e2d}\N{U+56fd} \N{U+7b80}\N{U+4f53}",native_script=>"\N{U+7b80}\N{U+4f53}",native_territory=>"\N{U+4e2d}\N{U+56fd}",native_variant=>undef,quarter_format_abbreviated=>["1\N{U+5b63}\N{U+5ea6}","2\N{U+5b63}\N{U+5ea6}","3\N{U+5b63}\N{U+5ea6}","4\N{U+5b63}\N{U+5ea6}" ],quarter_format_narrow=>[1,2,3,4 ],quarter_format_wide=>["\N{U+7b2c}\N{U+4e00}\N{U+5b63}\N{U+5ea6}","\N{U+7b2c}\N{U+4e8c}\N{U+5b63}\N{U+5ea6}","\N{U+7b2c}\N{U+4e09}\N{U+5b63}\N{U+5ea6}","\N{U+7b2c}\N{U+56db}\N{U+5b63}\N{U+5ea6}" ],quarter_stand_alone_abbreviated=>["1\N{U+5b63}\N{U+5ea6}","2\N{U+5b63}\N{U+5ea6}","3\N{U+5b63}\N{U+5ea6}","4\N{U+5b63}\N{U+5ea6}" ],quarter_stand_alone_narrow=>[1,2,3,4 ],quarter_stand_alone_wide=>["\N{U+7b2c}\N{U+4e00}\N{U+5b63}\N{U+5ea6}","\N{U+7b2c}\N{U+4e8c}\N{U+5b63}\N{U+5ea6}","\N{U+7b2c}\N{U+4e09}\N{U+5b63}\N{U+5ea6}","\N{U+7b2c}\N{U+56db}\N{U+5b63}\N{U+5ea6}" ],script=>"Simplified",territory=>"China",time_format_full=>"zzzz ah:mm:ss",time_format_long=>"z ah:mm:ss",time_format_medium=>"ah:mm:ss",time_format_short=>"ah:mm",variant=>undef,version=>28 },"zh-Hant-TW"=>{am_pm_abbreviated=>["AM","PM" ],available_formats=>{E=>"ccc",EHm=>"E HH:mm",EHms=>"E HH:mm:ss",Ed=>"d E",Ehm=>"E ah:mm",Ehms=>"E ah:mm:ss",Gy=>"Gy\N{U+5e74}",GyMMM=>"Gy\N{U+5e74}M\N{U+6708}",GyMMMEd=>"Gy\N{U+5e74}M\N{U+6708}d\N{U+65e5} E",GyMMMd=>"Gy\N{U+5e74}M\N{U+6708}d\N{U+65e5}",H=>"H\N{U+6642}",Hm=>"HH:mm",Hms=>"HH:mm:ss",Hmsv=>"HH:mm:ss [v]",Hmv=>"HH:mm [v]",M=>"M\N{U+6708}",MEd=>"M/d\N{U+ff08}E\N{U+ff09}",MMM=>"LLL",MMMEd=>"M\N{U+6708}d\N{U+65e5} E",MMMMd=>"M\N{U+6708}d\N{U+65e5}",MMMd=>"M\N{U+6708}d\N{U+65e5}",MMdd=>"MM/dd",Md=>"M/d",d=>"d\N{U+65e5}",h=>"ah\N{U+6642}",hm=>"ah:mm",hms=>"ah:mm:ss",hmsv=>"ah:mm:ss [v]",hmv=>"ah:mm [v]",ms=>"mm:ss",y=>"y\N{U+5e74}",yM=>"y/M",yMEd=>"y/M/d\N{U+ff08}E\N{U+ff09}",yMM=>"y/MM",yMMM=>"y\N{U+5e74}M\N{U+6708}",yMMMEd=>"y\N{U+5e74}M\N{U+6708}d\N{U+65e5} E",yMMMM=>"y\N{U+5e74}M\N{U+6708}",yMMMd=>"y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",yMd=>"y/M/d",yQQQ=>"y\N{U+5e74}QQQ",yQQQQ=>"y\N{U+5e74}QQQQ" },code=>"zh-Hant-TW",date_format_full=>"y\N{U+5e74}M\N{U+6708}d\N{U+65e5} EEEE",date_format_long=>"y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",date_format_medium=>"y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",date_format_short=>"y/M/d",datetime_format_full=>"{1} {0}",datetime_format_long=>"{1} {0}",datetime_format_medium=>"{1} {0}",datetime_format_short=>"{1} {0}",day_format_abbreviated=>["\N{U+9031}\N{U+4e00}","\N{U+9031}\N{U+4e8c}","\N{U+9031}\N{U+4e09}","\N{U+9031}\N{U+56db}","\N{U+9031}\N{U+4e94}","\N{U+9031}\N{U+516d}","\N{U+9031}\N{U+65e5}" ],day_format_narrow=>["\N{U+4e00}","\N{U+4e8c}","\N{U+4e09}","\N{U+56db}","\N{U+4e94}","\N{U+516d}","\N{U+65e5}" ],day_format_wide=>["\N{U+661f}\N{U+671f}\N{U+4e00}","\N{U+661f}\N{U+671f}\N{U+4e8c}","\N{U+661f}\N{U+671f}\N{U+4e09}","\N{U+661f}\N{U+671f}\N{U+56db}","\N{U+661f}\N{U+671f}\N{U+4e94}","\N{U+661f}\N{U+671f}\N{U+516d}","\N{U+661f}\N{U+671f}\N{U+65e5}" ],day_stand_alone_abbreviated=>["\N{U+9031}\N{U+4e00}","\N{U+9031}\N{U+4e8c}","\N{U+9031}\N{U+4e09}","\N{U+9031}\N{U+56db}","\N{U+9031}\N{U+4e94}","\N{U+9031}\N{U+516d}","\N{U+9031}\N{U+65e5}" ],day_stand_alone_narrow=>["\N{U+4e00}","\N{U+4e8c}","\N{U+4e09}","\N{U+56db}","\N{U+4e94}","\N{U+516d}","\N{U+65e5}" ],day_stand_alone_wide=>["\N{U+661f}\N{U+671f}\N{U+4e00}","\N{U+661f}\N{U+671f}\N{U+4e8c}","\N{U+661f}\N{U+671f}\N{U+4e09}","\N{U+661f}\N{U+671f}\N{U+56db}","\N{U+661f}\N{U+671f}\N{U+4e94}","\N{U+661f}\N{U+671f}\N{U+516d}","\N{U+661f}\N{U+671f}\N{U+65e5}" ],era_abbreviated=>["\N{U+897f}\N{U+5143}\N{U+524d}","\N{U+897f}\N{U+5143}" ],era_narrow=>["\N{U+897f}\N{U+5143}\N{U+524d}","\N{U+897f}\N{U+5143}" ],era_wide=>["\N{U+897f}\N{U+5143}\N{U+524d}","\N{U+897f}\N{U+5143}" ],first_day_of_week=>7,glibc_date_1_format=>"%a %b %e %H:%M:%S %Z %Y",glibc_date_format=>"%m/%d/%y",glibc_datetime_format=>"%a %b %e %H:%M:%S %Y",glibc_time_12_format=>"%I:%M:%S %p",glibc_time_format=>"%H:%M:%S",language=>"Chinese",month_format_abbreviated=>["1\N{U+6708}","2\N{U+6708}","3\N{U+6708}","4\N{U+6708}","5\N{U+6708}","6\N{U+6708}","7\N{U+6708}","8\N{U+6708}","9\N{U+6708}","10\N{U+6708}","11\N{U+6708}","12\N{U+6708}" ],month_format_narrow=>[1,2,3,4,5,6,7,8,9,10,11,12 ],month_format_wide=>["1\N{U+6708}","2\N{U+6708}","3\N{U+6708}","4\N{U+6708}","5\N{U+6708}","6\N{U+6708}","7\N{U+6708}","8\N{U+6708}","9\N{U+6708}","10\N{U+6708}","11\N{U+6708}","12\N{U+6708}" ],month_stand_alone_abbreviated=>["1\N{U+6708}","2\N{U+6708}","3\N{U+6708}","4\N{U+6708}","5\N{U+6708}","6\N{U+6708}","7\N{U+6708}","8\N{U+6708}","9\N{U+6708}","10\N{U+6708}","11\N{U+6708}","12\N{U+6708}" ],month_stand_alone_narrow=>[1,2,3,4,5,6,7,8,9,10,11,12 ],month_stand_alone_wide=>["1\N{U+6708}","2\N{U+6708}","3\N{U+6708}","4\N{U+6708}","5\N{U+6708}","6\N{U+6708}","7\N{U+6708}","8\N{U+6708}","9\N{U+6708}","10\N{U+6708}","11\N{U+6708}","12\N{U+6708}" ],name=>"Chinese Taiwan Traditional",native_language=>"\N{U+4e2d}\N{U+6587}",native_name=>"\N{U+4e2d}\N{U+6587} \N{U+53f0}\N{U+7063} \N{U+7e41}\N{U+9ad4}",native_script=>"\N{U+7e41}\N{U+9ad4}",native_territory=>"\N{U+53f0}\N{U+7063}",native_variant=>undef,quarter_format_abbreviated=>["1\N{U+5b63}","2\N{U+5b63}","3\N{U+5b63}","4\N{U+5b63}" ],quarter_format_narrow=>[1,2,3,4 ],quarter_format_wide=>["\N{U+7b2c}1\N{U+5b63}","\N{U+7b2c}2\N{U+5b63}","\N{U+7b2c}3\N{U+5b63}","\N{U+7b2c}4\N{U+5b63}" ],quarter_stand_alone_abbreviated=>["1\N{U+5b63}","2\N{U+5b63}","3\N{U+5b63}","4\N{U+5b63}" ],quarter_stand_alone_narrow=>[1,2,3,4 ],quarter_stand_alone_wide=>["\N{U+7b2c}1\N{U+5b63}","\N{U+7b2c}2\N{U+5b63}","\N{U+7b2c}3\N{U+5b63}","\N{U+7b2c}4\N{U+5b63}" ],script=>"Traditional",territory=>"Taiwan",time_format_full=>"ah:mm:ss [zzzz]",time_format_long=>"ah:mm:ss [z]",time_format_medium=>"ah:mm:ss",time_format_short=>"ah:mm",variant=>undef,version=>28 });my%DataSectionIndex=(af=>[11,4347 ],"af-NA"=>[4372,4392 ],"af-ZA"=>[8778,4383 ],agq=>[13173,6916 ],"agq-CM"=>[20104,7017 ],ak=>[27132,4887 ],"ak-GH"=>[32033,4897 ],am=>[36941,7531 ],"am-ET"=>[44486,7715 ],"ar-001"=>[52216,11045 ],"ar-AE"=>[63275,11410 ],"ar-BH"=>[74699,11080 ],"ar-DJ"=>[85793,11050 ],"ar-DZ"=>[96857,10920 ],"ar-EG"=>[107791,10996 ],"ar-EH"=>[118801,11224 ],"ar-ER"=>[130039,11068 ],"ar-IL"=>[141121,11058 ],"ar-IQ"=>[152193,11590 ],"ar-JO"=>[163797,11594 ],"ar-KM"=>[175405,11086 ],"ar-KW"=>[186505,11058 ],"ar-LB"=>[197577,11576 ],"ar-LY"=>[209167,11036 ],"ar-MA"=>[220217,10856 ],"ar-MR"=>[231087,10994 ],"ar-OM"=>[242095,11034 ],"ar-PS"=>[253143,11838 ],"ar-QA"=>[264995,10996 ],"ar-SA"=>[276005,11383 ],"ar-SD"=>[287402,11076 ],"ar-SO"=>[298492,11068 ],"ar-SS"=>[309574,11170 ],"ar-SY"=>[320758,11572 ],"ar-TD"=>[332344,11002 ],"ar-TN"=>[343360,10860 ],"ar-YE"=>[354234,11036 ],as=>[365281,9811 ],"as-IN"=>[375106,9907 ],asa=>[385025,4234 ],"asa-TZ"=>[389274,4265 ],ast=>[393551,4438 ],"ast-ES"=>[398004,4468 ],az=>[402483,4879 ],"az-Cyrl"=>[407378,9026 ],"az-Cyrl-AZ"=>[416423,9245 ],"az-Latn"=>[425684,4918 ],"az-Latn-AZ"=>[430621,4975 ],bas=>[435608,6017 ],"bas-CM"=>[441640,6120 ],be=>[447771,9533 ],"be-BY"=>[457318,9694 ],bem=>[467024,4345 ],"bem-ZM"=>[471384,4359 ],bez=>[475755,4614 ],"bez-TZ"=>[480384,4649 ],bg=>[485044,9723 ],"bg-BG"=>[494781,9888 ],bm=>[504680,4712 ],"bm-ML"=>[509406,4727 ],bn=>[514144,11107 ],"bn-BD"=>[525265,11302 ],"bn-IN"=>[536581,11212 ],bo=>[547804,14237 ],"bo-CN"=>[562055,15072 ],"bo-IN"=>[577141,14386 ],br=>[591538,4474 ],"br-FR"=>[596026,4509 ],brx=>[600547,12946 ],"brx-IN"=>[613508,13051 ],bs=>[626570,4521 ],"bs-Cyrl"=>[631107,9581 ],"bs-Cyrl-BA"=>[640707,9964 ],"bs-Latn"=>[650687,4548 ],"bs-Latn-BA"=>[655254,4625 ],ca=>[659890,4680 ],"ca-AD"=>[664584,4707 ],"ca-ES"=>[669305,4694 ],"ca-ES-VALENCIA"=>[674022,4751 ],"ca-FR"=>[678787,4721 ],"ca-IT"=>[683522,4719 ],ce=>[688252,8797 ],"ce-RU"=>[697063,8896 ],cgg=>[705971,4411 ],"cgg-UG"=>[710397,4434 ],chr=>[714843,7341 ],"chr-US"=>[722199,7446 ],ckb=>[729657,4252 ],"ckb-IQ"=>[733924,4263 ],"ckb-IR"=>[738202,4263 ],cs=>[742476,5108 ],"cs-CZ"=>[747598,5221 ],cu=>[752830,3989 ],"cu-RU"=>[756833,4004 ],cy=>[760848,4349 ],"cy-GB"=>[765211,4417 ],da=>[769639,4433 ],"da-DK"=>[774086,4451 ],"da-GL"=>[778551,4488 ],dav=>[783051,4664 ],"dav-KE"=>[787730,4683 ],de=>[792424,4437 ],"de-AT"=>[796875,4515 ],"de-BE"=>[801404,4455 ],"de-CH"=>[805873,4463 ],"de-DE"=>[810350,4465 ],"de-LI"=>[814829,4488 ],"de-LU"=>[819331,4465 ],dje=>[823808,4383 ],"dje-NE"=>[828206,4420 ],dsb=>[832638,4657 ],"dsb-DE"=>[837310,4682 ],dua=>[842004,6273 ],"dua-CM"=>[848292,6304 ],dyo=>[854608,4231 ],"dyo-SN"=>[858854,4258 ],dz=>[863123,13679 ],"dz-BT"=>[876816,14496 ],ebu=>[891324,4787 ],"ebu-KE"=>[896126,4806 ],ee=>[900943,4948 ],"ee-GH"=>[905905,4981 ],"ee-TG"=>[910900,4953 ],el=>[915864,9548 ],"el-CY"=>[925426,9679 ],"el-GR"=>[935119,9664 ],"en-001"=>[944798,4306 ],"en-150"=>[949119,4306 ],"en-AG"=>[953439,4353 ],"en-AI"=>[957806,4313 ],"en-AS"=>[962133,4317 ],"en-AT"=>[966464,4309 ],"en-AU"=>[970787,4438 ],"en-BB"=>[975239,4317 ],"en-BE"=>[979570,4303 ],"en-BI"=>[983887,4289 ],"en-BM"=>[988190,4313 ],"en-BS"=>[992517,4313 ],"en-BW"=>[996844,4327 ],"en-BZ"=>[1001185,4313 ],"en-CC"=>[1005512,4373 ],"en-CH"=>[1009899,4325 ],"en-CK"=>[1014238,4329 ],"en-CM"=>[1018581,4313 ],"en-CX"=>[1022908,4345 ],"en-CY"=>[1027267,4309 ],"en-DE"=>[1031590,4309 ],"en-DG"=>[1035913,4329 ],"en-DK"=>[1040256,4297 ],"en-DM"=>[1044567,4317 ],"en-ER"=>[1048898,4313 ],"en-FI"=>[1053225,4299 ],"en-FJ"=>[1057538,4301 ],"en-FK"=>[1061853,4345 ],"en-FM"=>[1066212,4325 ],"en-GB"=>[1070551,4331 ],"en-GD"=>[1074896,4313 ],"en-GG"=>[1079223,4313 ],"en-GH"=>[1083550,4305 ],"en-GI"=>[1087869,4317 ],"en-GM"=>[1092200,4309 ],"en-GU"=>[1096523,4277 ],"en-GY"=>[1100814,4309 ],"en-HK"=>[1105137,4401 ],"en-IE"=>[1109552,4290 ],"en-IL"=>[1113856,4296 ],"en-IM"=>[1118166,4325 ],"en-IN"=>[1122505,4317 ],"en-IO"=>[1126836,4401 ],"en-JE"=>[1131251,4305 ],"en-JM"=>[1135570,4313 ],"en-KE"=>[1139897,4301 ],"en-KI"=>[1144212,4317 ],"en-KN"=>[1148543,4353 ],"en-KY"=>[1152910,4341 ],"en-LC"=>[1157265,4321 ],"en-LR"=>[1161600,4313 ],"en-LS"=>[1165927,4313 ],"en-MG"=>[1170254,4321 ],"en-MH"=>[1174589,4325 ],"en-MO"=>[1178928,4345 ],"en-MP"=>[1183287,4357 ],"en-MS"=>[1187658,4321 ],"en-MT"=>[1191993,4306 ],"en-MU"=>[1196313,4317 ],"en-MW"=>[1200644,4309 ],"en-MY"=>[1204967,4317 ],"en-NA"=>[1209298,4313 ],"en-NF"=>[1213625,4337 ],"en-NG"=>[1217976,4304 ],"en-NL"=>[1222294,4325 ],"en-NR"=>[1226633,4301 ],"en-NU"=>[1230948,4297 ],"en-NZ"=>[1235259,4316 ],"en-PG"=>[1239589,4349 ],"en-PH"=>[1243952,4349 ],"en-PK"=>[1248315,4318 ],"en-PN"=>[1252647,4345 ],"en-PR"=>[1257006,4305 ],"en-PW"=>[1261325,4305 ],"en-RW"=>[1265644,4305 ],"en-SB"=>[1269963,4345 ],"en-SC"=>[1274322,4321 ],"en-SD"=>[1278657,4305 ],"en-SE"=>[1282976,4305 ],"en-SG"=>[1287295,4308 ],"en-SH"=>[1291617,4321 ],"en-SI"=>[1295952,4313 ],"en-SL"=>[1300279,4333 ],"en-SS"=>[1304626,4329 ],"en-SX"=>[1308969,4329 ],"en-SZ"=>[1313312,4321 ],"en-TC"=>[1317647,4373 ],"en-TK"=>[1322034,4309 ],"en-TO"=>[1326357,4305 ],"en-TT"=>[1330676,4353 ],"en-TV"=>[1335043,4305 ],"en-TZ"=>[1339362,4313 ],"en-UG"=>[1343689,4305 ],"en-UM"=>[1348008,4345 ],"en-US-POSIX"=>[1352373,4338 ],"en-VC"=>[1356725,4381 ],"en-VG"=>[1361120,4373 ],"en-VI"=>[1365507,4337 ],"en-VU"=>[1369858,4313 ],"en-WS"=>[1374185,4305 ],"en-ZA"=>[1378504,4331 ],"en-ZM"=>[1382849,4309 ],"en-ZW"=>[1387172,4316 ],eo=>[1391499,4245 ],"eo-001"=>[1395759,4261 ],"es-419"=>[1400035,4975 ],"es-AR"=>[1405024,4941 ],"es-BO"=>[1409979,4923 ],"es-CL"=>[1414916,4943 ],"es-CO"=>[1419873,4956 ],"es-CR"=>[1424843,4935 ],"es-CU"=>[1429792,4920 ],"es-DO"=>[1434726,4987 ],"es-EA"=>[1439727,4901 ],"es-EC"=>[1444642,4923 ],"es-ES"=>[1449579,4872 ],"es-GQ"=>[1454465,4909 ],"es-GT"=>[1459388,4931 ],"es-HN"=>[1464333,4928 ],"es-IC"=>[1469275,4885 ],"es-MX"=>[1474174,5031 ],"es-NI"=>[1479219,4931 ],"es-PA"=>[1484164,4919 ],"es-PE"=>[1489097,4928 ],"es-PH"=>[1494039,4887 ],"es-PR"=>[1498940,4954 ],"es-PY"=>[1503908,4929 ],"es-SV"=>[1508851,4939 ],"es-US"=>[1513804,4953 ],"es-UY"=>[1518771,4921 ],"es-VE"=>[1523706,4886 ],et=>[1528603,4498 ],"et-EE"=>[1533115,4512 ],eu=>[1537638,4490 ],"eu-ES"=>[1542142,4515 ],ewo=>[1546669,5997 ],"ewo-CM"=>[1552681,6062 ],fa=>[1558754,10081 ],"fa-AF"=>[1568849,10112 ],"fa-IR"=>[1578975,10307 ],ff=>[1589293,4336 ],"ff-CM"=>[1593643,4367 ],"ff-GN"=>[1598024,4355 ],"ff-MR"=>[1602393,4375 ],"ff-SN"=>[1606782,4356 ],fi=>[1611149,4756 ],"fi-FI"=>[1615919,4784 ],fil=>[1620715,4387 ],"fil-PH"=>[1625117,4417 ],fo=>[1629545,4916 ],"fo-DK"=>[1634475,4943 ],"fo-FO"=>[1639432,4964 ],fr=>[1644407,4521 ],"fr-BE"=>[1648942,4554 ],"fr-BF"=>[1653510,4568 ],"fr-BI"=>[1658092,4548 ],"fr-BJ"=>[1662654,4558 ],"fr-BL"=>[1667226,4616 ],"fr-CA"=>[1671856,4578 ],"fr-CD"=>[1676448,4580 ],"fr-CF"=>[1681042,4636 ],"fr-CG"=>[1685692,4592 ],"fr-CH"=>[1690298,4553 ],"fr-CI"=>[1694865,4644 ],"fr-CM"=>[1699523,4552 ],"fr-DJ"=>[1704089,4556 ],"fr-DZ"=>[1708659,4570 ],"fr-GA"=>[1713243,4540 ],"fr-GF"=>[1717797,4596 ],"fr-GN"=>[1722407,4562 ],"fr-GP"=>[1726983,4560 ],"fr-GQ"=>[1731557,4626 ],"fr-HT"=>[1736197,4558 ],"fr-KM"=>[1740769,4548 ],"fr-LU"=>[1745331,4551 ],"fr-MA"=>[1749896,4540 ],"fr-MC"=>[1754450,4544 ],"fr-MF"=>[1759008,4564 ],"fr-MG"=>[1763586,4560 ],"fr-ML"=>[1768160,4536 ],"fr-MQ"=>[1772710,4560 ],"fr-MR"=>[1777284,4564 ],"fr-MU"=>[1781862,4552 ],"fr-NC"=>[1786428,4600 ],"fr-NE"=>[1791042,4540 ],"fr-PF"=>[1795596,4626 ],"fr-PM"=>[1800236,4610 ],"fr-RE"=>[1804860,4590 ],"fr-RW"=>[1809464,4544 ],"fr-SC"=>[1814022,4560 ],"fr-SN"=>[1818596,4584 ],"fr-SY"=>[1823194,4544 ],"fr-TD"=>[1827752,4542 ],"fr-TG"=>[1832308,4536 ],"fr-TN"=>[1836858,4552 ],"fr-VU"=>[1841424,4552 ],"fr-WF"=>[1845990,4582 ],"fr-YT"=>[1850586,4548 ],fur=>[1855146,4395 ],"fur-IT"=>[1859556,4409 ],fy=>[1863976,4278 ],"fy-NL"=>[1868268,4324 ],ga=>[1872603,4957 ],"ga-IE"=>[1877574,4987 ],gd=>[1882572,4817 ],"gd-GB"=>[1887403,4897 ],gl=>[1892311,4507 ],"gl-ES"=>[1896832,4537 ],gsw=>[1901381,4608 ],"gsw-CH"=>[1906004,4643 ],"gsw-FR"=>[1910662,4639 ],"gsw-LI"=>[1915316,4695 ],gu=>[1920022,9840 ],"gu-IN"=>[1929876,9945 ],guz=>[1939833,4332 ],"guz-KE"=>[1944180,4351 ],gv=>[1948542,4328 ],"gv-IM"=>[1952884,4373 ],ha=>[1957268,4337 ],"ha-GH"=>[1961619,4354 ],"ha-NE"=>[1965987,4352 ],"ha-NG"=>[1970353,4370 ],haw=>[1974735,4463 ],"haw-US"=>[1979213,4580 ],he=>[1983804,9313 ],"he-IL"=>[1993131,9427 ],"hi-IN"=>[2002572,9727 ],hr=>[2012310,4591 ],"hr-BA"=>[2016915,4668 ],"hr-HR"=>[2021597,4608 ],hsb=>[2026217,4663 ],"hsb-DE"=>[2030895,4697 ],hu=>[2035603,4928 ],"hu-HU"=>[2040545,4993 ],hy=>[2045549,9980 ],"hy-AM"=>[2055543,10144 ],id=>[2065698,4254 ],"id-ID"=>[2069966,4280 ],ig=>[2074257,4819 ],"ig-NG"=>[2079090,4838 ],ii=>[2083939,6134 ],"ii-CN"=>[2090087,6183 ],is=>[2096281,5094 ],"is-IS"=>[2101389,5132 ],it=>[2106532,4416 ],"it-CH"=>[2110962,4448 ],"it-IT"=>[2115424,4430 ],"it-SM"=>[2119868,4455 ],ja=>[2124334,6072 ],jgo=>[2130418,8302 ],"jgo-CM"=>[2138735,8367 ],jmc=>[2147114,4256 ],"jmc-TZ"=>[2151385,4287 ],ka=>[2155683,9566 ],"ka-GE"=>[2165263,9809 ],kab=>[2175084,4989 ],"kab-DZ"=>[2180088,5018 ],kam=>[2185118,4964 ],"kam-KE"=>[2190097,4983 ],kde=>[2195092,4723 ],"kde-TZ"=>[2199830,4754 ],kea=>[2204596,4550 ],"kea-CV"=>[2209161,4589 ],khq=>[2213762,4490 ],"khq-ML"=>[2218267,4507 ],ki=>[2222785,4698 ],"ki-KE"=>[2227497,4717 ],kk=>[2232225,9278 ],"kk-KZ"=>[2241517,9465 ],kkj=>[2250994,5448 ],"kkj-CM"=>[2256457,5495 ],kl=>[2261963,4239 ],"kl-GL"=>[2266216,4279 ],kln=>[2270507,4506 ],"kln-KE"=>[2275028,4539 ],km=>[2279578,10095 ],"km-KH"=>[2289687,10517 ],kn=>[2300215,10131 ],"kn-IN"=>[2310360,10236 ],ko=>[2320607,6493 ],"ko-KP"=>[2327114,6734 ],"ko-KR"=>[2333862,6644 ],kok=>[2340518,8971 ],"kok-IN"=>[2349504,9076 ],ks=>[2358591,10565 ],"ks-IN"=>[2369170,10790 ],ksb=>[2379972,4304 ],"ksb-TZ"=>[2384291,4335 ],ksf=>[2388638,7041 ],"ksf-CM"=>[2395694,7106 ],ksh=>[2402812,4603 ],"ksh-DE"=>[2407430,4656 ],kw=>[2412097,4212 ],"kw-GB"=>[2416323,4258 ],ky=>[2420592,9106 ],"ky-KG"=>[2429712,9326 ],lag=>[2439050,5342 ],"lag-TZ"=>[2444407,5393 ],lb=>[2449811,4507 ],"lb-LU"=>[2454332,4555 ],lg=>[2458898,4325 ],"lg-UG"=>[2463237,4341 ],lkt=>[2467590,7514 ],"lkt-US"=>[2475119,7691 ],ln=>[2482821,6308 ],"ln-AO"=>[2489143,6349 ],"ln-CD"=>[2495506,6415 ],"ln-CF"=>[2501935,6443 ],"ln-CG"=>[2508392,6355 ],lo=>[2514758,8955 ],"lo-LA"=>[2523727,9026 ],lrc=>[2532765,7119 ],"lrc-IQ"=>[2539899,7134 ],"lrc-IR"=>[2547048,7130 ],lt=>[2554189,5038 ],"lt-LT"=>[2559241,5060 ],lu=>[2564312,4706 ],"lu-CD"=>[2569032,4769 ],luo=>[2573813,4567 ],"luo-KE"=>[2578395,4586 ],luy=>[2582993,4320 ],"luy-KE"=>[2587328,4339 ],lv=>[2591678,4914 ],"lv-LV"=>[2596606,4950 ],mas=>[2601568,5643 ],"mas-KE"=>[2607226,5662 ],"mas-TZ"=>[2612903,5674 ],mer=>[2618589,5112 ],"mer-KE"=>[2623716,5131 ],mfe=>[2628859,4301 ],"mfe-MU"=>[2633175,4328 ],mg=>[2637514,4439 ],"mg-MG"=>[2641967,4473 ],mgh=>[2646452,4457 ],"mgh-MZ"=>[2650924,4496 ],mgo=>[2655432,5453 ],"mgo-CM"=>[2660900,5482 ],mk=>[2666393,10271 ],"mk-MK"=>[2676678,10481 ],ml=>[2687170,11232 ],"ml-IN"=>[2698416,11377 ],mn=>[2709804,10361 ],"mn-MN"=>[2720179,10517 ],mr=>[2730707,10176 ],"mr-IN"=>[2740897,10281 ],ms=>[2751189,4235 ],"ms-BN"=>[2755438,4253 ],"ms-MY"=>[2759705,4282 ],"ms-SG"=>[2764001,4270 ],mt=>[2768282,4610 ],"mt-MT"=>[2772906,4655 ],mua=>[2777573,5172 ],"mua-CM"=>[2782760,5219 ],my=>[2787990,11128 ],"my-MM"=>[2799132,11309 ],mzn=>[2810453,6509 ],"mzn-IR"=>[2816977,6616 ],naq=>[2823605,5165 ],"naq-NA"=>[2828785,5194 ],nb=>[2833990,4482 ],"nb-NO"=>[2838486,4514 ],"nb-SJ"=>[2843014,4563 ],nd=>[2847588,4310 ],"nd-ZW"=>[2851912,4341 ],ne=>[2856264,10638 ],"ne-IN"=>[2866916,10731 ],"ne-NP"=>[2877661,10763 ],nl=>[2888435,4271 ],"nl-AW"=>[2892720,4290 ],"nl-BE"=>[2897024,4304 ],"nl-BQ"=>[2901342,4350 ],"nl-CW"=>[2905706,4334 ],"nl-NL"=>[2910054,4301 ],"nl-SR"=>[2914369,4302 ],"nl-SX"=>[2918685,4318 ],nmg=>[2923015,5534 ],"nmg-CM"=>[2928564,5563 ],nn=>[2934138,4388 ],"nn-NO"=>[2938540,4420 ],nnh=>[2942972,8802 ],"nnh-CM"=>[2951789,8867 ],nus=>[2960668,5623 ],"nus-SS"=>[2966306,5648 ],nyn=>[2971966,4427 ],"nyn-UG"=>[2976408,4450 ],om=>[2980869,4273 ],"om-ET"=>[2985156,4297 ],"om-KE"=>[2989467,4283 ],or=>[2993761,8928 ],"or-IN"=>[3002703,9037 ],os=>[3011751,9382 ],"os-GE"=>[3021147,9615 ],"os-RU"=>[3030776,9501 ],pa=>[3040288,9615 ],"pa-Arab"=>[3049919,9357 ],"pa-Arab-PK"=>[3059295,9492 ],"pa-Guru"=>[3068803,9772 ],"pa-Guru-IN"=>[3078594,9861 ],pl=>[3088466,4709 ],"pl-PL"=>[3093189,4720 ],prg=>[3097921,4012 ],"prg-001"=>[3101949,4028 ],ps=>[3105988,7865 ],"ps-AF"=>[3113867,8066 ],pt=>[3121944,4748 ],"pt-AO"=>[3126706,4864 ],"pt-CV"=>[3131584,4880 ],"pt-GW"=>[3136478,4908 ],"pt-MO"=>[3141400,4912 ],"pt-MZ"=>[3146326,4898 ],"pt-PT"=>[3151238,4872 ],"pt-ST"=>[3156124,5024 ],"pt-TL"=>[3161162,4884 ],qu=>[3166057,4277 ],"qu-BO"=>[3170348,4304 ],"qu-EC"=>[3174666,4304 ],"qu-PE"=>[3178984,4310 ],rm=>[3183305,4565 ],"rm-CH"=>[3187884,4598 ],rn=>[3192493,4530 ],"rn-BI"=>[3197037,4559 ],ro=>[3201607,4672 ],"ro-MD"=>[3206293,4653 ],"ro-RO"=>[3210960,4710 ],rof=>[3215682,4488 ],"rof-TZ"=>[3220185,4519 ],root=>[3224717,3977 ],ru=>[3228705,9592 ],"ru-BY"=>[3238311,9765 ],"ru-KG"=>[3248090,9771 ],"ru-KZ"=>[3257875,9791 ],"ru-MD"=>[3267680,9745 ],"ru-RU"=>[3277439,9711 ],"ru-UA"=>[3287164,9737 ],rw=>[3296912,4399 ],"rw-RW"=>[3301325,4413 ],rwk=>[3305750,4242 ],"rwk-TZ"=>[3310007,4273 ],sah=>[3314292,10405 ],"sah-RU"=>[3324712,10596 ],saq=>[3335320,4550 ],"saq-KE"=>[3339885,4569 ],sbp=>[3344466,4242 ],"sbp-TZ"=>[3348723,4275 ],se=>[3353009,5029 ],"se-FI"=>[3358052,5054 ],"se-NO"=>[3363120,5051 ],"se-SE"=>[3368185,5088 ],seh=>[3373285,4361 ],"seh-MZ"=>[3377661,4418 ],ses=>[3382091,4506 ],"ses-ML"=>[3386612,4523 ],sg=>[3391146,5425 ],"sg-CF"=>[3396585,5642 ],shi=>[3402239,8652 ],"shi-Latn"=>[3410908,4773 ],"shi-Latn-MA"=>[3415701,4816 ],"shi-Tfng"=>[3420534,8677 ],"shi-Tfng-MA"=>[3429231,8810 ],si=>[3438052,10481 ],"si-LK"=>[3448547,10741 ],sk=>[3459299,4759 ],"sk-SK"=>[3464072,4809 ],sl=>[3468892,4663 ],"sl-SI"=>[3473569,4689 ],smn=>[3478270,5131 ],"smn-FI"=>[3483416,5172 ],sn=>[3488599,4271 ],"sn-ZW"=>[3492884,4302 ],so=>[3497197,4436 ],"so-DJ"=>[3501647,4450 ],"so-ET"=>[3506111,4456 ],"so-KE"=>[3510581,4444 ],"so-SO"=>[3515039,4458 ],sq=>[3519508,4749 ],"sq-AL"=>[3524271,4806 ],"sq-MK"=>[3529091,4776 ],"sq-XK"=>[3533881,4784 ],sr=>[3538676,9296 ],"sr-Cyrl"=>[3547988,9473 ],"sr-Cyrl-BA"=>[3557480,9856 ],"sr-Cyrl-ME"=>[3567355,9654 ],"sr-Cyrl-RS"=>[3577028,9604 ],"sr-Cyrl-XK"=>[3586651,9604 ],"sr-Latn"=>[3596271,4557 ],"sr-Latn-BA"=>[3600847,4634 ],"sr-Latn-ME"=>[3605500,4594 ],"sr-Latn-RS"=>[3610113,4578 ],"sr-Latn-XK"=>[3614710,4580 ],sv=>[3619301,4488 ],"sv-AX"=>[3623803,4559 ],"sv-FI"=>[3628376,4518 ],"sv-SE"=>[3632908,4513 ],sw=>[3637432,4387 ],"sw-CD"=>[3641833,4578 ],"sw-KE"=>[3646425,4412 ],"sw-TZ"=>[3650851,4418 ],"sw-UG"=>[3655283,4410 ],ta=>[3659704,10080 ],"ta-IN"=>[3669798,10245 ],"ta-LK"=>[3680057,10213 ],"ta-MY"=>[3690284,10235 ],"ta-SG"=>[3700533,10317 ],te=>[3710861,10314 ],"te-IN"=>[3721189,10500 ],teo=>[3731701,4426 ],"teo-KE"=>[3736142,4445 ],"teo-UG"=>[3740602,4449 ],th=>[3745062,10717 ],"th-TH"=>[3755793,10796 ],ti=>[3766600,7007 ],"ti-ER"=>[3773621,6973 ],"ti-ET"=>[3780608,7135 ],tk=>[3787754,4030 ],"tk-TM"=>[3791798,4042 ],to=>[3795851,4818 ],"to-TO"=>[3800683,4837 ],tr=>[3805531,4800 ],"tr-CY"=>[3810345,4915 ],"tr-TR"=>[3815274,4834 ],twq=>[3820120,4394 ],"twq-NE"=>[3824529,4431 ],tzm=>[3828972,4627 ],"tzm-MA"=>[3833614,4688 ],ug=>[3838313,10622 ],"ug-CN"=>[3848949,10763 ],uk=>[3859723,9328 ],"uk-UA"=>[3869065,9470 ],ur=>[3878546,9566 ],"ur-IN"=>[3888126,9691 ],"ur-PK"=>[3897831,9743 ],uz=>[3907585,4273 ],"uz-Arab"=>[3911874,6768 ],"uz-Arab-AF"=>[3918661,6969 ],"uz-Cyrl"=>[3925646,8145 ],"uz-Cyrl-UZ"=>[3933810,8407 ],"uz-Latn"=>[3942233,4294 ],"uz-Latn-UZ"=>[3946546,4353 ],vai=>[3950911,6047 ],"vai-Latn"=>[3956975,4685 ],"vai-Latn-LR"=>[3961680,4714 ],"vai-Vaii"=>[3966411,6062 ],"vai-Vaii-LR"=>[3972493,6155 ],vi=>[3978659,5050 ],"vi-VN"=>[3983723,5107 ],vo=>[3988841,3995 ],"vo-001"=>[3992851,4011 ],vun=>[3996874,4250 ],"vun-TZ"=>[4001139,4281 ],wae=>[4005432,4727 ],"wae-CH"=>[4010174,4753 ],xog=>[4014939,4459 ],"xog-UG"=>[4019413,4484 ],yav=>[4023909,5964 ],"yav-CM"=>[4029888,6011 ],yi=>[4035910,8839 ],"yi-001"=>[4044764,8949 ],yo=>[4053724,7378 ],"yo-BJ"=>[4061116,7335 ],"yo-NG"=>[4068465,7658 ],zgh=>[4076135,8662 ],"zgh-MA"=>[4084812,8795 ],zh=>[4093618,6489 ],"zh-Hans"=>[4100123,6550 ],"zh-Hans-HK"=>[4106692,6814 ],"zh-Hans-MO"=>[4113525,6868 ],"zh-Hans-SG"=>[4120412,6744 ],"zh-Hant"=>[4127172,5991 ],"zh-Hant-HK"=>[4133182,6224 ],"zh-Hant-MO"=>[4139425,6216 ],zu=>[4145652,4276 ],"zu-ZA"=>[4149942,4318 ]);sub locale_data {my$code=shift;return$LocaleData{$code}if$LocaleData{$code};my$data_string=_data_string_for($code)or return;my$data;my$e=do {local $@;$data=eval$data_string;$@};die$e if$e;return$LocaleData{$code}=$data}{my$data_start_pos=tell DATA;sub _data_string_for {my$code=shift;my$idx=$DataSectionIndex{$code}or return;seek DATA,$data_start_pos + $idx->[0],0;my$string;my$read=read DATA,$string,$idx->[1];die 'Could not read the expected amount of data from DATA' unless$read==$idx->[1];return$string}}__DATA__ __[ af ]__
  {
    am_pm_abbreviated => [
      "vm.",
      "nm."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E hh:mm a",
      Ehms => "E hh:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, dd MMM y G",
      GyMMMd => "dd MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMM",
      MMMd => "d MMM",
      Md => "dd-MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM-y",
      yMEd => "E y-MM-dd",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "af",
    date_format_full => "EEEE, dd MMMM y",
    date_format_long => "dd MMMM y",
    date_format_medium => "dd MMM y",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Ma.",
      "Di.",
      "Wo.",
      "Do.",
      "Vr.",
      "Sa.",
      "So."
    ],
    day_format_narrow => [
      "M",
      "D",
      "W",
      "D",
      "V",
      "S",
      "S"
    ],
    day_format_wide => [
      "Maandag",
      "Dinsdag",
      "Woensdag",
      "Donderdag",
      "Vrydag",
      "Saterdag",
      "Sondag"
    ],
    day_stand_alone_abbreviated => [
      "Ma.",
      "Di.",
      "Wo.",
      "Do.",
      "Vr.",
      "Sa.",
      "So."
    ],
    day_stand_alone_narrow => [
      "M",
      "D",
      "W",
      "D",
      "V",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Maandag",
      "Dinsdag",
      "Woensdag",
      "Donderdag",
      "Vrydag",
      "Saterdag",
      "Sondag"
    ],
    era_abbreviated => [
      "v.C.",
      "n.C."
    ],
    era_narrow => [
      "v.C.",
      "n.C."
    ],
    era_wide => [
      "voor Christus",
      "na Christus"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Afrikaans",
    month_format_abbreviated => [
      "Jan.",
      "Feb.",
      "Mrt.",
      "Apr.",
      "Mei",
      "Jun.",
      "Jul.",
      "Aug.",
      "Sep.",
      "Okt.",
      "Nov.",
      "Des."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januarie",
      "Februarie",
      "Maart",
      "April",
      "Mei",
      "Junie",
      "Julie",
      "Augustus",
      "September",
      "Oktober",
      "November",
      "Desember"
    ],
    month_stand_alone_abbreviated => [
      "Jan.",
      "Feb.",
      "Mrt.",
      "Apr.",
      "Mei",
      "Jun.",
      "Jul.",
      "Aug.",
      "Sep.",
      "Okt.",
      "Nov.",
      "Des."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januarie",
      "Februarie",
      "Maart",
      "April",
      "Mei",
      "Junie",
      "Julie",
      "Augustus",
      "September",
      "Oktober",
      "November",
      "Desember"
    ],
    name => "Afrikaans",
    native_language => "Afrikaans",
    native_name => "Afrikaans",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1ste kwartaal",
      "2de kwartaal",
      "3de kwartaal",
      "4de kwartaal"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1ste kwartaal",
      "2de kwartaal",
      "3de kwartaal",
      "4de kwartaal"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ af-NA ]__
  {
    am_pm_abbreviated => [
      "vm.",
      "nm."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E hh:mm a",
      Ehms => "E hh:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, dd MMM y G",
      GyMMMd => "dd MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMM",
      MMMd => "d MMM",
      Md => "dd-MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM-y",
      yMEd => "E y-MM-dd",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "af-NA",
    date_format_full => "EEEE, dd MMMM y",
    date_format_long => "dd MMMM y",
    date_format_medium => "dd MMM y",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Ma.",
      "Di.",
      "Wo.",
      "Do.",
      "Vr.",
      "Sa.",
      "So."
    ],
    day_format_narrow => [
      "M",
      "D",
      "W",
      "D",
      "V",
      "S",
      "S"
    ],
    day_format_wide => [
      "Maandag",
      "Dinsdag",
      "Woensdag",
      "Donderdag",
      "Vrydag",
      "Saterdag",
      "Sondag"
    ],
    day_stand_alone_abbreviated => [
      "Ma.",
      "Di.",
      "Wo.",
      "Do.",
      "Vr.",
      "Sa.",
      "So."
    ],
    day_stand_alone_narrow => [
      "M",
      "D",
      "W",
      "D",
      "V",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Maandag",
      "Dinsdag",
      "Woensdag",
      "Donderdag",
      "Vrydag",
      "Saterdag",
      "Sondag"
    ],
    era_abbreviated => [
      "v.C.",
      "n.C."
    ],
    era_narrow => [
      "v.C.",
      "n.C."
    ],
    era_wide => [
      "voor Christus",
      "na Christus"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Afrikaans",
    month_format_abbreviated => [
      "Jan.",
      "Feb.",
      "Mrt.",
      "Apr.",
      "Mei",
      "Jun.",
      "Jul.",
      "Aug.",
      "Sep.",
      "Okt.",
      "Nov.",
      "Des."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januarie",
      "Februarie",
      "Maart",
      "April",
      "Mei",
      "Junie",
      "Julie",
      "Augustus",
      "September",
      "Oktober",
      "November",
      "Desember"
    ],
    month_stand_alone_abbreviated => [
      "Jan.",
      "Feb.",
      "Mrt.",
      "Apr.",
      "Mei",
      "Jun.",
      "Jul.",
      "Aug.",
      "Sep.",
      "Okt.",
      "Nov.",
      "Des."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januarie",
      "Februarie",
      "Maart",
      "April",
      "Mei",
      "Junie",
      "Julie",
      "Augustus",
      "September",
      "Oktober",
      "November",
      "Desember"
    ],
    name => "Afrikaans Namibia",
    native_language => "Afrikaans",
    native_name => "Afrikaans Namibi\N{U+00eb}",
    native_script => undef,
    native_territory => "Namibi\N{U+00eb}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1ste kwartaal",
      "2de kwartaal",
      "3de kwartaal",
      "4de kwartaal"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1ste kwartaal",
      "2de kwartaal",
      "3de kwartaal",
      "4de kwartaal"
    ],
    script => undef,
    territory => "Namibia",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ af-ZA ]__
  {
    am_pm_abbreviated => [
      "vm.",
      "nm."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E hh:mm a",
      Ehms => "E hh:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, dd MMM y G",
      GyMMMd => "dd MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMM",
      MMMd => "d MMM",
      Md => "dd-MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM-y",
      yMEd => "E y-MM-dd",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "af-ZA",
    date_format_full => "EEEE, dd MMMM y",
    date_format_long => "dd MMMM y",
    date_format_medium => "dd MMM y",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Ma.",
      "Di.",
      "Wo.",
      "Do.",
      "Vr.",
      "Sa.",
      "So."
    ],
    day_format_narrow => [
      "M",
      "D",
      "W",
      "D",
      "V",
      "S",
      "S"
    ],
    day_format_wide => [
      "Maandag",
      "Dinsdag",
      "Woensdag",
      "Donderdag",
      "Vrydag",
      "Saterdag",
      "Sondag"
    ],
    day_stand_alone_abbreviated => [
      "Ma.",
      "Di.",
      "Wo.",
      "Do.",
      "Vr.",
      "Sa.",
      "So."
    ],
    day_stand_alone_narrow => [
      "M",
      "D",
      "W",
      "D",
      "V",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Maandag",
      "Dinsdag",
      "Woensdag",
      "Donderdag",
      "Vrydag",
      "Saterdag",
      "Sondag"
    ],
    era_abbreviated => [
      "v.C.",
      "n.C."
    ],
    era_narrow => [
      "v.C.",
      "n.C."
    ],
    era_wide => [
      "voor Christus",
      "na Christus"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%Y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Afrikaans",
    month_format_abbreviated => [
      "Jan.",
      "Feb.",
      "Mrt.",
      "Apr.",
      "Mei",
      "Jun.",
      "Jul.",
      "Aug.",
      "Sep.",
      "Okt.",
      "Nov.",
      "Des."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januarie",
      "Februarie",
      "Maart",
      "April",
      "Mei",
      "Junie",
      "Julie",
      "Augustus",
      "September",
      "Oktober",
      "November",
      "Desember"
    ],
    month_stand_alone_abbreviated => [
      "Jan.",
      "Feb.",
      "Mrt.",
      "Apr.",
      "Mei",
      "Jun.",
      "Jul.",
      "Aug.",
      "Sep.",
      "Okt.",
      "Nov.",
      "Des."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januarie",
      "Februarie",
      "Maart",
      "April",
      "Mei",
      "Junie",
      "Julie",
      "Augustus",
      "September",
      "Oktober",
      "November",
      "Desember"
    ],
    name => "Afrikaans South Africa",
    native_language => "Afrikaans",
    native_name => "Afrikaans Suid-Afrika",
    native_script => undef,
    native_territory => "Suid-Afrika",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1ste kwartaal",
      "2de kwartaal",
      "3de kwartaal",
      "4de kwartaal"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1ste kwartaal",
      "2de kwartaal",
      "3de kwartaal",
      "4de kwartaal"
    ],
    script => undef,
    territory => "South Africa",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ agq ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "agq",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "kpa",
      "gh\N{U+0254}",
      "t\N{U+0254}m",
      "ume",
      "gh\N{U+0268}",
      "dzk",
      "nts"
    ],
    day_format_narrow => [
      "k",
      "g",
      "t",
      "u",
      "g",
      "d",
      "n"
    ],
    day_format_wide => [
      "tsu\N{U+0294}ukp\N{U+00e0}",
      "tsu\N{U+0294}ugh\N{U+0254}e",
      "tsu\N{U+0294}ut\N{U+0254}\N{U+0300}ml\N{U+00f2}",
      "tsu\N{U+0294}um\N{U+00e8}",
      "tsu\N{U+0294}ugh\N{U+0268}\N{U+0302}m",
      "tsu\N{U+0294}ndz\N{U+0268}k\N{U+0254}\N{U+0294}\N{U+0254}",
      "tsu\N{U+0294}nts\N{U+0268}"
    ],
    day_stand_alone_abbreviated => [
      "kpa",
      "gh\N{U+0254}",
      "t\N{U+0254}m",
      "ume",
      "gh\N{U+0268}",
      "dzk",
      "nts"
    ],
    day_stand_alone_narrow => [
      "k",
      "g",
      "t",
      "u",
      "g",
      "d",
      "n"
    ],
    day_stand_alone_wide => [
      "tsu\N{U+0294}ukp\N{U+00e0}",
      "tsu\N{U+0294}ugh\N{U+0254}e",
      "tsu\N{U+0294}ut\N{U+0254}\N{U+0300}ml\N{U+00f2}",
      "tsu\N{U+0294}um\N{U+00e8}",
      "tsu\N{U+0294}ugh\N{U+0268}\N{U+0302}m",
      "tsu\N{U+0294}ndz\N{U+0268}k\N{U+0254}\N{U+0294}\N{U+0254}",
      "tsu\N{U+0294}nts\N{U+0268}"
    ],
    era_abbreviated => [
      "SK",
      "BK"
    ],
    era_narrow => [
      "SK",
      "BK"
    ],
    era_wide => [
      "S\N{U+011b}e K\N{U+0268}\N{U+0300}lesto",
      "B\N{U+01ce}a K\N{U+0268}\N{U+0300}lesto"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Aghem",
    month_format_abbreviated => [
      "n\N{U+00f9}m",
      "k\N{U+0268}z",
      "t\N{U+0268}d",
      "taa",
      "see",
      "nzu",
      "dum",
      "f\N{U+0254}e",
      "dzu",
      "l\N{U+0254}m",
      "kaa",
      "fwo"
    ],
    month_format_narrow => [
      "n",
      "k",
      "t",
      "t",
      "s",
      "z",
      "k",
      "f",
      "d",
      "l",
      "c",
      "f"
    ],
    month_format_wide => [
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}n\N{U+00f9}m",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}k\N{U+0197}\N{U+0300}z\N{U+00f9}\N{U+0294}",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}t\N{U+0197}\N{U+0300}d\N{U+0289}\N{U+0300}gh\N{U+00e0}",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}t\N{U+01ce}af\N{U+0289}\N{U+0304}gh\N{U+0101}",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+00e8}s\N{U+00e8}e",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}nz\N{U+00f9}gh\N{U+00f2}",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}d\N{U+00f9}mlo",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}kw\N{U+00ee}f\N{U+0254}\N{U+0300}e",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}t\N{U+0197}\N{U+0300}f\N{U+0289}\N{U+0300}gh\N{U+00e0}dzugh\N{U+00f9}",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}gh\N{U+01d4}uwel\N{U+0254}\N{U+0300}m",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}chwa\N{U+0294}\N{U+00e0}kaa wo",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+00e8}fw\N{U+00f2}o"
    ],
    month_stand_alone_abbreviated => [
      "n\N{U+00f9}m",
      "k\N{U+0268}z",
      "t\N{U+0268}d",
      "taa",
      "see",
      "nzu",
      "dum",
      "f\N{U+0254}e",
      "dzu",
      "l\N{U+0254}m",
      "kaa",
      "fwo"
    ],
    month_stand_alone_narrow => [
      "n",
      "k",
      "t",
      "t",
      "s",
      "z",
      "k",
      "f",
      "d",
      "l",
      "c",
      "f"
    ],
    month_stand_alone_wide => [
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}n\N{U+00f9}m",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}k\N{U+0197}\N{U+0300}z\N{U+00f9}\N{U+0294}",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}t\N{U+0197}\N{U+0300}d\N{U+0289}\N{U+0300}gh\N{U+00e0}",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}t\N{U+01ce}af\N{U+0289}\N{U+0304}gh\N{U+0101}",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+00e8}s\N{U+00e8}e",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}nz\N{U+00f9}gh\N{U+00f2}",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}d\N{U+00f9}mlo",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}kw\N{U+00ee}f\N{U+0254}\N{U+0300}e",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}t\N{U+0197}\N{U+0300}f\N{U+0289}\N{U+0300}gh\N{U+00e0}dzugh\N{U+00f9}",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}gh\N{U+01d4}uwel\N{U+0254}\N{U+0300}m",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}chwa\N{U+0294}\N{U+00e0}kaa wo",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+00e8}fw\N{U+00f2}o"
    ],
    name => "Aghem",
    native_language => "Aghem",
    native_name => "Aghem",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "k\N{U+0268}b\N{U+00e2} k\N{U+0268} 1",
      "ugb\N{U+00e2} u 2",
      "ugb\N{U+00e2} u 3",
      "ugb\N{U+00e2} u 4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "k\N{U+0268}b\N{U+00e2} k\N{U+0268} 1",
      "ugb\N{U+00e2} u 2",
      "ugb\N{U+00e2} u 3",
      "ugb\N{U+00e2} u 4"
    ],
    quarter_stand_alone_abbreviated => [
      "k\N{U+0268}b\N{U+00e2} k\N{U+0268} 1",
      "ugb\N{U+00e2} u 2",
      "ugb\N{U+00e2} u 3",
      "ugb\N{U+00e2} u 4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "k\N{U+0268}b\N{U+00e2} k\N{U+0268} 1",
      "ugb\N{U+00e2} u 2",
      "ugb\N{U+00e2} u 3",
      "ugb\N{U+00e2} u 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ agq-CM ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "agq-CM",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "kpa",
      "gh\N{U+0254}",
      "t\N{U+0254}m",
      "ume",
      "gh\N{U+0268}",
      "dzk",
      "nts"
    ],
    day_format_narrow => [
      "k",
      "g",
      "t",
      "u",
      "g",
      "d",
      "n"
    ],
    day_format_wide => [
      "tsu\N{U+0294}ukp\N{U+00e0}",
      "tsu\N{U+0294}ugh\N{U+0254}e",
      "tsu\N{U+0294}ut\N{U+0254}\N{U+0300}ml\N{U+00f2}",
      "tsu\N{U+0294}um\N{U+00e8}",
      "tsu\N{U+0294}ugh\N{U+0268}\N{U+0302}m",
      "tsu\N{U+0294}ndz\N{U+0268}k\N{U+0254}\N{U+0294}\N{U+0254}",
      "tsu\N{U+0294}nts\N{U+0268}"
    ],
    day_stand_alone_abbreviated => [
      "kpa",
      "gh\N{U+0254}",
      "t\N{U+0254}m",
      "ume",
      "gh\N{U+0268}",
      "dzk",
      "nts"
    ],
    day_stand_alone_narrow => [
      "k",
      "g",
      "t",
      "u",
      "g",
      "d",
      "n"
    ],
    day_stand_alone_wide => [
      "tsu\N{U+0294}ukp\N{U+00e0}",
      "tsu\N{U+0294}ugh\N{U+0254}e",
      "tsu\N{U+0294}ut\N{U+0254}\N{U+0300}ml\N{U+00f2}",
      "tsu\N{U+0294}um\N{U+00e8}",
      "tsu\N{U+0294}ugh\N{U+0268}\N{U+0302}m",
      "tsu\N{U+0294}ndz\N{U+0268}k\N{U+0254}\N{U+0294}\N{U+0254}",
      "tsu\N{U+0294}nts\N{U+0268}"
    ],
    era_abbreviated => [
      "SK",
      "BK"
    ],
    era_narrow => [
      "SK",
      "BK"
    ],
    era_wide => [
      "S\N{U+011b}e K\N{U+0268}\N{U+0300}lesto",
      "B\N{U+01ce}a K\N{U+0268}\N{U+0300}lesto"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Aghem",
    month_format_abbreviated => [
      "n\N{U+00f9}m",
      "k\N{U+0268}z",
      "t\N{U+0268}d",
      "taa",
      "see",
      "nzu",
      "dum",
      "f\N{U+0254}e",
      "dzu",
      "l\N{U+0254}m",
      "kaa",
      "fwo"
    ],
    month_format_narrow => [
      "n",
      "k",
      "t",
      "t",
      "s",
      "z",
      "k",
      "f",
      "d",
      "l",
      "c",
      "f"
    ],
    month_format_wide => [
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}n\N{U+00f9}m",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}k\N{U+0197}\N{U+0300}z\N{U+00f9}\N{U+0294}",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}t\N{U+0197}\N{U+0300}d\N{U+0289}\N{U+0300}gh\N{U+00e0}",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}t\N{U+01ce}af\N{U+0289}\N{U+0304}gh\N{U+0101}",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+00e8}s\N{U+00e8}e",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}nz\N{U+00f9}gh\N{U+00f2}",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}d\N{U+00f9}mlo",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}kw\N{U+00ee}f\N{U+0254}\N{U+0300}e",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}t\N{U+0197}\N{U+0300}f\N{U+0289}\N{U+0300}gh\N{U+00e0}dzugh\N{U+00f9}",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}gh\N{U+01d4}uwel\N{U+0254}\N{U+0300}m",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}chwa\N{U+0294}\N{U+00e0}kaa wo",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+00e8}fw\N{U+00f2}o"
    ],
    month_stand_alone_abbreviated => [
      "n\N{U+00f9}m",
      "k\N{U+0268}z",
      "t\N{U+0268}d",
      "taa",
      "see",
      "nzu",
      "dum",
      "f\N{U+0254}e",
      "dzu",
      "l\N{U+0254}m",
      "kaa",
      "fwo"
    ],
    month_stand_alone_narrow => [
      "n",
      "k",
      "t",
      "t",
      "s",
      "z",
      "k",
      "f",
      "d",
      "l",
      "c",
      "f"
    ],
    month_stand_alone_wide => [
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}n\N{U+00f9}m",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}k\N{U+0197}\N{U+0300}z\N{U+00f9}\N{U+0294}",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}t\N{U+0197}\N{U+0300}d\N{U+0289}\N{U+0300}gh\N{U+00e0}",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}t\N{U+01ce}af\N{U+0289}\N{U+0304}gh\N{U+0101}",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+00e8}s\N{U+00e8}e",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}nz\N{U+00f9}gh\N{U+00f2}",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}d\N{U+00f9}mlo",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}kw\N{U+00ee}f\N{U+0254}\N{U+0300}e",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}t\N{U+0197}\N{U+0300}f\N{U+0289}\N{U+0300}gh\N{U+00e0}dzugh\N{U+00f9}",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}gh\N{U+01d4}uwel\N{U+0254}\N{U+0300}m",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+0254}\N{U+0300}chwa\N{U+0294}\N{U+00e0}kaa wo",
      "ndz\N{U+0254}\N{U+0300}\N{U+014b}\N{U+00e8}fw\N{U+00f2}o"
    ],
    name => "Aghem Cameroon",
    native_language => "Aghem",
    native_name => "Aghem K\N{U+00e0}m\N{U+00e0}l\N{U+00fb}\N{U+014b}",
    native_script => undef,
    native_territory => "K\N{U+00e0}m\N{U+00e0}l\N{U+00fb}\N{U+014b}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "k\N{U+0268}b\N{U+00e2} k\N{U+0268} 1",
      "ugb\N{U+00e2} u 2",
      "ugb\N{U+00e2} u 3",
      "ugb\N{U+00e2} u 4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "k\N{U+0268}b\N{U+00e2} k\N{U+0268} 1",
      "ugb\N{U+00e2} u 2",
      "ugb\N{U+00e2} u 3",
      "ugb\N{U+00e2} u 4"
    ],
    quarter_stand_alone_abbreviated => [
      "k\N{U+0268}b\N{U+00e2} k\N{U+0268} 1",
      "ugb\N{U+00e2} u 2",
      "ugb\N{U+00e2} u 3",
      "ugb\N{U+00e2} u 4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "k\N{U+0268}b\N{U+00e2} k\N{U+0268} 1",
      "ugb\N{U+00e2} u 2",
      "ugb\N{U+00e2} u 3",
      "ugb\N{U+00e2} u 4"
    ],
    script => undef,
    territory => "Cameroon",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ak ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y/M/d",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ak",
    date_format_full => "EEEE, y MMMM dd",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "yy/MM/dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Dwo",
      "Ben",
      "Wuk",
      "Yaw",
      "Fia",
      "Mem",
      "Kwe"
    ],
    day_format_narrow => [
      "D",
      "B",
      "W",
      "Y",
      "F",
      "M",
      "K"
    ],
    day_format_wide => [
      "Dwowda",
      "Benada",
      "Wukuda",
      "Yawda",
      "Fida",
      "Memeneda",
      "Kwesida"
    ],
    day_stand_alone_abbreviated => [
      "Dwo",
      "Ben",
      "Wuk",
      "Yaw",
      "Fia",
      "Mem",
      "Kwe"
    ],
    day_stand_alone_narrow => [
      "D",
      "B",
      "W",
      "Y",
      "F",
      "M",
      "K"
    ],
    day_stand_alone_wide => [
      "Dwowda",
      "Benada",
      "Wukuda",
      "Yawda",
      "Fida",
      "Memeneda",
      "Kwesida"
    ],
    era_abbreviated => [
      "AK",
      "KE"
    ],
    era_narrow => [
      "AK",
      "KE"
    ],
    era_wide => [
      "Ansa Kristo",
      "Kristo Ekyiri"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Akan",
    month_format_abbreviated => [
      "S-\N{U+0186}",
      "K-\N{U+0186}",
      "E-\N{U+0186}",
      "E-O",
      "E-K",
      "O-A",
      "A-K",
      "D-\N{U+0186}",
      "F-\N{U+0190}",
      "\N{U+0186}-A",
      "\N{U+0186}-O",
      "M-\N{U+0186}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Sanda-\N{U+0186}p\N{U+025b}p\N{U+0254}n",
      "Kwakwar-\N{U+0186}gyefuo",
      "Eb\N{U+0254}w-\N{U+0186}benem",
      "Eb\N{U+0254}bira-Oforisuo",
      "Esusow Aketseaba-K\N{U+0254}t\N{U+0254}nimba",
      "Obirade-Ay\N{U+025b}wohomumu",
      "Ay\N{U+025b}woho-Kitawonsa",
      "Difuu-\N{U+0186}sandaa",
      "Fankwa-\N{U+0190}b\N{U+0254}",
      "\N{U+0186}b\N{U+025b}s\N{U+025b}-Ahinime",
      "\N{U+0186}ber\N{U+025b}f\N{U+025b}w-Obubuo",
      "Mumu-\N{U+0186}p\N{U+025b}nimba"
    ],
    month_stand_alone_abbreviated => [
      "S-\N{U+0186}",
      "K-\N{U+0186}",
      "E-\N{U+0186}",
      "E-O",
      "E-K",
      "O-A",
      "A-K",
      "D-\N{U+0186}",
      "F-\N{U+0190}",
      "\N{U+0186}-A",
      "\N{U+0186}-O",
      "M-\N{U+0186}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Sanda-\N{U+0186}p\N{U+025b}p\N{U+0254}n",
      "Kwakwar-\N{U+0186}gyefuo",
      "Eb\N{U+0254}w-\N{U+0186}benem",
      "Eb\N{U+0254}bira-Oforisuo",
      "Esusow Aketseaba-K\N{U+0254}t\N{U+0254}nimba",
      "Obirade-Ay\N{U+025b}wohomumu",
      "Ay\N{U+025b}woho-Kitawonsa",
      "Difuu-\N{U+0186}sandaa",
      "Fankwa-\N{U+0190}b\N{U+0254}",
      "\N{U+0186}b\N{U+025b}s\N{U+025b}-Ahinime",
      "\N{U+0186}ber\N{U+025b}f\N{U+025b}w-Obubuo",
      "Mumu-\N{U+0186}p\N{U+025b}nimba"
    ],
    name => "Akan",
    native_language => "Akan",
    native_name => "Akan",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ak-GH ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y/M/d",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ak-GH",
    date_format_full => "EEEE, y MMMM dd",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "yy/MM/dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Dwo",
      "Ben",
      "Wuk",
      "Yaw",
      "Fia",
      "Mem",
      "Kwe"
    ],
    day_format_narrow => [
      "D",
      "B",
      "W",
      "Y",
      "F",
      "M",
      "K"
    ],
    day_format_wide => [
      "Dwowda",
      "Benada",
      "Wukuda",
      "Yawda",
      "Fida",
      "Memeneda",
      "Kwesida"
    ],
    day_stand_alone_abbreviated => [
      "Dwo",
      "Ben",
      "Wuk",
      "Yaw",
      "Fia",
      "Mem",
      "Kwe"
    ],
    day_stand_alone_narrow => [
      "D",
      "B",
      "W",
      "Y",
      "F",
      "M",
      "K"
    ],
    day_stand_alone_wide => [
      "Dwowda",
      "Benada",
      "Wukuda",
      "Yawda",
      "Fida",
      "Memeneda",
      "Kwesida"
    ],
    era_abbreviated => [
      "AK",
      "KE"
    ],
    era_narrow => [
      "AK",
      "KE"
    ],
    era_wide => [
      "Ansa Kristo",
      "Kristo Ekyiri"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%Y/%m/%d",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%r",
    language => "Akan",
    month_format_abbreviated => [
      "S-\N{U+0186}",
      "K-\N{U+0186}",
      "E-\N{U+0186}",
      "E-O",
      "E-K",
      "O-A",
      "A-K",
      "D-\N{U+0186}",
      "F-\N{U+0190}",
      "\N{U+0186}-A",
      "\N{U+0186}-O",
      "M-\N{U+0186}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Sanda-\N{U+0186}p\N{U+025b}p\N{U+0254}n",
      "Kwakwar-\N{U+0186}gyefuo",
      "Eb\N{U+0254}w-\N{U+0186}benem",
      "Eb\N{U+0254}bira-Oforisuo",
      "Esusow Aketseaba-K\N{U+0254}t\N{U+0254}nimba",
      "Obirade-Ay\N{U+025b}wohomumu",
      "Ay\N{U+025b}woho-Kitawonsa",
      "Difuu-\N{U+0186}sandaa",
      "Fankwa-\N{U+0190}b\N{U+0254}",
      "\N{U+0186}b\N{U+025b}s\N{U+025b}-Ahinime",
      "\N{U+0186}ber\N{U+025b}f\N{U+025b}w-Obubuo",
      "Mumu-\N{U+0186}p\N{U+025b}nimba"
    ],
    month_stand_alone_abbreviated => [
      "S-\N{U+0186}",
      "K-\N{U+0186}",
      "E-\N{U+0186}",
      "E-O",
      "E-K",
      "O-A",
      "A-K",
      "D-\N{U+0186}",
      "F-\N{U+0190}",
      "\N{U+0186}-A",
      "\N{U+0186}-O",
      "M-\N{U+0186}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Sanda-\N{U+0186}p\N{U+025b}p\N{U+0254}n",
      "Kwakwar-\N{U+0186}gyefuo",
      "Eb\N{U+0254}w-\N{U+0186}benem",
      "Eb\N{U+0254}bira-Oforisuo",
      "Esusow Aketseaba-K\N{U+0254}t\N{U+0254}nimba",
      "Obirade-Ay\N{U+025b}wohomumu",
      "Ay\N{U+025b}woho-Kitawonsa",
      "Difuu-\N{U+0186}sandaa",
      "Fankwa-\N{U+0190}b\N{U+0254}",
      "\N{U+0186}b\N{U+025b}s\N{U+025b}-Ahinime",
      "\N{U+0186}ber\N{U+025b}f\N{U+025b}w-Obubuo",
      "Mumu-\N{U+0186}p\N{U+025b}nimba"
    ],
    name => "Akan Ghana",
    native_language => "Akan",
    native_name => "Akan Gaana",
    native_script => undef,
    native_territory => "Gaana",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "Ghana",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ am ]__
  {
    am_pm_abbreviated => [
      "\N{U+1325}\N{U+12cb}\N{U+1275}",
      "\N{U+12a8}\N{U+1230}\N{U+12d3}\N{U+1275}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+1363} MMM d\N{U+1363} y G",
      GyMMMd => "MMM d\N{U+1363} y G",
      H => "H",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+1363} M/d",
      MMM => "LLL",
      MMMEd => "E\N{U+1363} MMM d",
      MMMMEd => "E\N{U+1363} MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E\N{U+1363} d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+1363} MMM d y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "am",
    date_format_full => "EEEE \N{U+1363}d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+1230}\N{U+129e}",
      "\N{U+121b}\N{U+12ad}\N{U+1230}",
      "\N{U+1228}\N{U+1261}\N{U+12d5}",
      "\N{U+1210}\N{U+1219}\N{U+1235}",
      "\N{U+12d3}\N{U+122d}\N{U+1265}",
      "\N{U+1245}\N{U+12f3}\N{U+121c}",
      "\N{U+12a5}\N{U+1211}\N{U+12f5}"
    ],
    day_format_narrow => [
      "\N{U+1230}",
      "\N{U+121b}",
      "\N{U+1228}",
      "\N{U+1210}",
      "\N{U+12d3}",
      "\N{U+1245}",
      "\N{U+12a5}"
    ],
    day_format_wide => [
      "\N{U+1230}\N{U+129e}",
      "\N{U+121b}\N{U+12ad}\N{U+1230}\N{U+129e}",
      "\N{U+1228}\N{U+1261}\N{U+12d5}",
      "\N{U+1210}\N{U+1219}\N{U+1235}",
      "\N{U+12d3}\N{U+122d}\N{U+1265}",
      "\N{U+1245}\N{U+12f3}\N{U+121c}",
      "\N{U+12a5}\N{U+1211}\N{U+12f5}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+1230}\N{U+129e}",
      "\N{U+121b}\N{U+12ad}\N{U+1230}",
      "\N{U+1228}\N{U+1261}\N{U+12d5}",
      "\N{U+1210}\N{U+1219}\N{U+1235}",
      "\N{U+12d3}\N{U+122d}\N{U+1265}",
      "\N{U+1245}\N{U+12f3}\N{U+121c}",
      "\N{U+12a5}\N{U+1211}\N{U+12f5}"
    ],
    day_stand_alone_narrow => [
      "\N{U+1230}",
      "\N{U+121b}",
      "\N{U+1228}",
      "\N{U+1210}",
      "\N{U+12d3}",
      "\N{U+1245}",
      "\N{U+12a5}"
    ],
    day_stand_alone_wide => [
      "\N{U+1230}\N{U+129e}",
      "\N{U+121b}\N{U+12ad}\N{U+1230}\N{U+129e}",
      "\N{U+1228}\N{U+1261}\N{U+12d5}",
      "\N{U+1210}\N{U+1219}\N{U+1235}",
      "\N{U+12d3}\N{U+122d}\N{U+1265}",
      "\N{U+1245}\N{U+12f3}\N{U+121c}",
      "\N{U+12a5}\N{U+1211}\N{U+12f5}"
    ],
    era_abbreviated => [
      "\N{U+12d3}/\N{U+12d3}",
      "\N{U+12d3}/\N{U+121d}"
    ],
    era_narrow => [
      "\N{U+12d3}/\N{U+12d3}",
      "\N{U+12d3}/\N{U+121d}"
    ],
    era_wide => [
      "\N{U+12d3}\N{U+1218}\N{U+1270} \N{U+12d3}\N{U+1208}\N{U+121d}",
      "\N{U+12d3}\N{U+1218}\N{U+1270} \N{U+121d}\N{U+1215}\N{U+1228}\N{U+1275}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Amharic",
    month_format_abbreviated => [
      "\N{U+1303}\N{U+1295}\N{U+12e9}",
      "\N{U+134c}\N{U+1265}\N{U+1229}",
      "\N{U+121b}\N{U+122d}\N{U+127d}",
      "\N{U+12a4}\N{U+1355}\N{U+122a}",
      "\N{U+121c}\N{U+12ed}",
      "\N{U+1301}\N{U+1295}",
      "\N{U+1301}\N{U+120b}\N{U+12ed}",
      "\N{U+12a6}\N{U+1308}\N{U+1235}",
      "\N{U+1234}\N{U+1355}\N{U+1274}",
      "\N{U+12a6}\N{U+12ad}\N{U+1276}",
      "\N{U+1296}\N{U+126c}\N{U+121d}",
      "\N{U+12f2}\N{U+1234}\N{U+121d}"
    ],
    month_format_narrow => [
      "\N{U+1303}",
      "\N{U+134c}",
      "\N{U+121b}",
      "\N{U+12a4}",
      "\N{U+121c}",
      "\N{U+1301}",
      "\N{U+1301}",
      "\N{U+12a6}",
      "\N{U+1234}",
      "\N{U+12a6}",
      "\N{U+1296}",
      "\N{U+12f2}"
    ],
    month_format_wide => [
      "\N{U+1303}\N{U+1295}\N{U+12e9}\N{U+12c8}\N{U+122a}",
      "\N{U+134c}\N{U+1265}\N{U+1229}\N{U+12c8}\N{U+122a}",
      "\N{U+121b}\N{U+122d}\N{U+127d}",
      "\N{U+12a4}\N{U+1355}\N{U+122a}\N{U+120d}",
      "\N{U+121c}\N{U+12ed}",
      "\N{U+1301}\N{U+1295}",
      "\N{U+1301}\N{U+120b}\N{U+12ed}",
      "\N{U+12a6}\N{U+1308}\N{U+1235}\N{U+1275}",
      "\N{U+1234}\N{U+1355}\N{U+1274}\N{U+121d}\N{U+1260}\N{U+122d}",
      "\N{U+12a6}\N{U+12ad}\N{U+1276}\N{U+1260}\N{U+122d}",
      "\N{U+1296}\N{U+126c}\N{U+121d}\N{U+1260}\N{U+122d}",
      "\N{U+12f2}\N{U+1234}\N{U+121d}\N{U+1260}\N{U+122d}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+1303}\N{U+1295}\N{U+12e9}",
      "\N{U+134c}\N{U+1265}\N{U+1229}",
      "\N{U+121b}\N{U+122d}\N{U+127d}",
      "\N{U+12a4}\N{U+1355}\N{U+122a}",
      "\N{U+121c}\N{U+12ed}",
      "\N{U+1301}\N{U+1295}",
      "\N{U+1301}\N{U+120b}\N{U+12ed}",
      "\N{U+12a6}\N{U+1308}\N{U+1235}",
      "\N{U+1234}\N{U+1355}\N{U+1274}",
      "\N{U+12a6}\N{U+12ad}\N{U+1276}",
      "\N{U+1296}\N{U+126c}\N{U+121d}",
      "\N{U+12f2}\N{U+1234}\N{U+121d}"
    ],
    month_stand_alone_narrow => [
      "\N{U+1303}",
      "\N{U+134c}",
      "\N{U+121b}",
      "\N{U+12a4}",
      "\N{U+121c}",
      "\N{U+1301}",
      "\N{U+1301}",
      "\N{U+12a6}",
      "\N{U+1234}",
      "\N{U+12a6}",
      "\N{U+1296}",
      "\N{U+12f2}"
    ],
    month_stand_alone_wide => [
      "\N{U+1303}\N{U+1295}\N{U+12e9}\N{U+12c8}\N{U+122a}",
      "\N{U+134c}\N{U+1265}\N{U+1229}\N{U+12c8}\N{U+122a}",
      "\N{U+121b}\N{U+122d}\N{U+127d}",
      "\N{U+12a4}\N{U+1355}\N{U+122a}\N{U+120d}",
      "\N{U+121c}\N{U+12ed}",
      "\N{U+1301}\N{U+1295}",
      "\N{U+1301}\N{U+120b}\N{U+12ed}",
      "\N{U+12a6}\N{U+1308}\N{U+1235}\N{U+1275}",
      "\N{U+1234}\N{U+1355}\N{U+1274}\N{U+121d}\N{U+1260}\N{U+122d}",
      "\N{U+12a6}\N{U+12ad}\N{U+1276}\N{U+1260}\N{U+122d}",
      "\N{U+1296}\N{U+126c}\N{U+121d}\N{U+1260}\N{U+122d}",
      "\N{U+12f2}\N{U+1234}\N{U+121d}\N{U+1260}\N{U+122d}"
    ],
    name => "Amharic",
    native_language => "\N{U+12a0}\N{U+121b}\N{U+122d}\N{U+129b}",
    native_name => "\N{U+12a0}\N{U+121b}\N{U+122d}\N{U+129b}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+1229}\N{U+1265}1",
      "\N{U+1229}\N{U+1265}2",
      "\N{U+1229}\N{U+1265}3",
      "\N{U+1229}\N{U+1265}4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1\N{U+129b}\N{U+12cd} \N{U+1229}\N{U+1265}",
      "2\N{U+129b}\N{U+12cd} \N{U+1229}\N{U+1265}",
      "3\N{U+129b}\N{U+12cd} \N{U+1229}\N{U+1265}",
      "4\N{U+129b}\N{U+12cd} \N{U+1229}\N{U+1265}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+1229}\N{U+1265}1",
      "\N{U+1229}\N{U+1265}2",
      "\N{U+1229}\N{U+1265}3",
      "\N{U+1229}\N{U+1265}4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1\N{U+129b}\N{U+12cd} \N{U+1229}\N{U+1265}",
      "2\N{U+129b}\N{U+12cd} \N{U+1229}\N{U+1265}",
      "3\N{U+129b}\N{U+12cd} \N{U+1229}\N{U+1265}",
      "4\N{U+129b}\N{U+12cd} \N{U+1229}\N{U+1265}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ am-ET ]__
  {
    am_pm_abbreviated => [
      "\N{U+1325}\N{U+12cb}\N{U+1275}",
      "\N{U+12a8}\N{U+1230}\N{U+12d3}\N{U+1275}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+1363} MMM d\N{U+1363} y G",
      GyMMMd => "MMM d\N{U+1363} y G",
      H => "H",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+1363} M/d",
      MMM => "LLL",
      MMMEd => "E\N{U+1363} MMM d",
      MMMMEd => "E\N{U+1363} MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E\N{U+1363} d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+1363} MMM d y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "am-ET",
    date_format_full => "EEEE \N{U+1363}d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+1230}\N{U+129e}",
      "\N{U+121b}\N{U+12ad}\N{U+1230}",
      "\N{U+1228}\N{U+1261}\N{U+12d5}",
      "\N{U+1210}\N{U+1219}\N{U+1235}",
      "\N{U+12d3}\N{U+122d}\N{U+1265}",
      "\N{U+1245}\N{U+12f3}\N{U+121c}",
      "\N{U+12a5}\N{U+1211}\N{U+12f5}"
    ],
    day_format_narrow => [
      "\N{U+1230}",
      "\N{U+121b}",
      "\N{U+1228}",
      "\N{U+1210}",
      "\N{U+12d3}",
      "\N{U+1245}",
      "\N{U+12a5}"
    ],
    day_format_wide => [
      "\N{U+1230}\N{U+129e}",
      "\N{U+121b}\N{U+12ad}\N{U+1230}\N{U+129e}",
      "\N{U+1228}\N{U+1261}\N{U+12d5}",
      "\N{U+1210}\N{U+1219}\N{U+1235}",
      "\N{U+12d3}\N{U+122d}\N{U+1265}",
      "\N{U+1245}\N{U+12f3}\N{U+121c}",
      "\N{U+12a5}\N{U+1211}\N{U+12f5}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+1230}\N{U+129e}",
      "\N{U+121b}\N{U+12ad}\N{U+1230}",
      "\N{U+1228}\N{U+1261}\N{U+12d5}",
      "\N{U+1210}\N{U+1219}\N{U+1235}",
      "\N{U+12d3}\N{U+122d}\N{U+1265}",
      "\N{U+1245}\N{U+12f3}\N{U+121c}",
      "\N{U+12a5}\N{U+1211}\N{U+12f5}"
    ],
    day_stand_alone_narrow => [
      "\N{U+1230}",
      "\N{U+121b}",
      "\N{U+1228}",
      "\N{U+1210}",
      "\N{U+12d3}",
      "\N{U+1245}",
      "\N{U+12a5}"
    ],
    day_stand_alone_wide => [
      "\N{U+1230}\N{U+129e}",
      "\N{U+121b}\N{U+12ad}\N{U+1230}\N{U+129e}",
      "\N{U+1228}\N{U+1261}\N{U+12d5}",
      "\N{U+1210}\N{U+1219}\N{U+1235}",
      "\N{U+12d3}\N{U+122d}\N{U+1265}",
      "\N{U+1245}\N{U+12f3}\N{U+121c}",
      "\N{U+12a5}\N{U+1211}\N{U+12f5}"
    ],
    era_abbreviated => [
      "\N{U+12d3}/\N{U+12d3}",
      "\N{U+12d3}/\N{U+121d}"
    ],
    era_narrow => [
      "\N{U+12d3}/\N{U+12d3}",
      "\N{U+12d3}/\N{U+121d}"
    ],
    era_wide => [
      "\N{U+12d3}\N{U+1218}\N{U+1270} \N{U+12d3}\N{U+1208}\N{U+121d}",
      "\N{U+12d3}\N{U+1218}\N{U+1270} \N{U+121d}\N{U+1215}\N{U+1228}\N{U+1275}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%A\N{U+1363} %B %e \N{U+1240}\N{U+1295} %r %Z %Y \N{U+12d3}/\N{U+121d}",
    glibc_date_format => "%d/%m/%Y",
    glibc_datetime_format => "%A\N{U+1363} %B %e \N{U+1240}\N{U+1295} %Y %r %Z",
    glibc_time_12_format => "%X %p",
    glibc_time_format => "%l:%M:%S",
    language => "Amharic",
    month_format_abbreviated => [
      "\N{U+1303}\N{U+1295}\N{U+12e9}",
      "\N{U+134c}\N{U+1265}\N{U+1229}",
      "\N{U+121b}\N{U+122d}\N{U+127d}",
      "\N{U+12a4}\N{U+1355}\N{U+122a}",
      "\N{U+121c}\N{U+12ed}",
      "\N{U+1301}\N{U+1295}",
      "\N{U+1301}\N{U+120b}\N{U+12ed}",
      "\N{U+12a6}\N{U+1308}\N{U+1235}",
      "\N{U+1234}\N{U+1355}\N{U+1274}",
      "\N{U+12a6}\N{U+12ad}\N{U+1276}",
      "\N{U+1296}\N{U+126c}\N{U+121d}",
      "\N{U+12f2}\N{U+1234}\N{U+121d}"
    ],
    month_format_narrow => [
      "\N{U+1303}",
      "\N{U+134c}",
      "\N{U+121b}",
      "\N{U+12a4}",
      "\N{U+121c}",
      "\N{U+1301}",
      "\N{U+1301}",
      "\N{U+12a6}",
      "\N{U+1234}",
      "\N{U+12a6}",
      "\N{U+1296}",
      "\N{U+12f2}"
    ],
    month_format_wide => [
      "\N{U+1303}\N{U+1295}\N{U+12e9}\N{U+12c8}\N{U+122a}",
      "\N{U+134c}\N{U+1265}\N{U+1229}\N{U+12c8}\N{U+122a}",
      "\N{U+121b}\N{U+122d}\N{U+127d}",
      "\N{U+12a4}\N{U+1355}\N{U+122a}\N{U+120d}",
      "\N{U+121c}\N{U+12ed}",
      "\N{U+1301}\N{U+1295}",
      "\N{U+1301}\N{U+120b}\N{U+12ed}",
      "\N{U+12a6}\N{U+1308}\N{U+1235}\N{U+1275}",
      "\N{U+1234}\N{U+1355}\N{U+1274}\N{U+121d}\N{U+1260}\N{U+122d}",
      "\N{U+12a6}\N{U+12ad}\N{U+1276}\N{U+1260}\N{U+122d}",
      "\N{U+1296}\N{U+126c}\N{U+121d}\N{U+1260}\N{U+122d}",
      "\N{U+12f2}\N{U+1234}\N{U+121d}\N{U+1260}\N{U+122d}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+1303}\N{U+1295}\N{U+12e9}",
      "\N{U+134c}\N{U+1265}\N{U+1229}",
      "\N{U+121b}\N{U+122d}\N{U+127d}",
      "\N{U+12a4}\N{U+1355}\N{U+122a}",
      "\N{U+121c}\N{U+12ed}",
      "\N{U+1301}\N{U+1295}",
      "\N{U+1301}\N{U+120b}\N{U+12ed}",
      "\N{U+12a6}\N{U+1308}\N{U+1235}",
      "\N{U+1234}\N{U+1355}\N{U+1274}",
      "\N{U+12a6}\N{U+12ad}\N{U+1276}",
      "\N{U+1296}\N{U+126c}\N{U+121d}",
      "\N{U+12f2}\N{U+1234}\N{U+121d}"
    ],
    month_stand_alone_narrow => [
      "\N{U+1303}",
      "\N{U+134c}",
      "\N{U+121b}",
      "\N{U+12a4}",
      "\N{U+121c}",
      "\N{U+1301}",
      "\N{U+1301}",
      "\N{U+12a6}",
      "\N{U+1234}",
      "\N{U+12a6}",
      "\N{U+1296}",
      "\N{U+12f2}"
    ],
    month_stand_alone_wide => [
      "\N{U+1303}\N{U+1295}\N{U+12e9}\N{U+12c8}\N{U+122a}",
      "\N{U+134c}\N{U+1265}\N{U+1229}\N{U+12c8}\N{U+122a}",
      "\N{U+121b}\N{U+122d}\N{U+127d}",
      "\N{U+12a4}\N{U+1355}\N{U+122a}\N{U+120d}",
      "\N{U+121c}\N{U+12ed}",
      "\N{U+1301}\N{U+1295}",
      "\N{U+1301}\N{U+120b}\N{U+12ed}",
      "\N{U+12a6}\N{U+1308}\N{U+1235}\N{U+1275}",
      "\N{U+1234}\N{U+1355}\N{U+1274}\N{U+121d}\N{U+1260}\N{U+122d}",
      "\N{U+12a6}\N{U+12ad}\N{U+1276}\N{U+1260}\N{U+122d}",
      "\N{U+1296}\N{U+126c}\N{U+121d}\N{U+1260}\N{U+122d}",
      "\N{U+12f2}\N{U+1234}\N{U+121d}\N{U+1260}\N{U+122d}"
    ],
    name => "Amharic Ethiopia",
    native_language => "\N{U+12a0}\N{U+121b}\N{U+122d}\N{U+129b}",
    native_name => "\N{U+12a0}\N{U+121b}\N{U+122d}\N{U+129b} \N{U+12a2}\N{U+1275}\N{U+12ee}\N{U+1335}\N{U+12eb}",
    native_script => undef,
    native_territory => "\N{U+12a2}\N{U+1275}\N{U+12ee}\N{U+1335}\N{U+12eb}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+1229}\N{U+1265}1",
      "\N{U+1229}\N{U+1265}2",
      "\N{U+1229}\N{U+1265}3",
      "\N{U+1229}\N{U+1265}4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1\N{U+129b}\N{U+12cd} \N{U+1229}\N{U+1265}",
      "2\N{U+129b}\N{U+12cd} \N{U+1229}\N{U+1265}",
      "3\N{U+129b}\N{U+12cd} \N{U+1229}\N{U+1265}",
      "4\N{U+129b}\N{U+12cd} \N{U+1229}\N{U+1265}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+1229}\N{U+1265}1",
      "\N{U+1229}\N{U+1265}2",
      "\N{U+1229}\N{U+1265}3",
      "\N{U+1229}\N{U+1265}4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1\N{U+129b}\N{U+12cd} \N{U+1229}\N{U+1265}",
      "2\N{U+129b}\N{U+12cd} \N{U+1229}\N{U+1265}",
      "3\N{U+129b}\N{U+12cd} \N{U+1229}\N{U+1265}",
      "4\N{U+129b}\N{U+12cd} \N{U+1229}\N{U+1265}"
    ],
    script => undef,
    territory => "Ethiopia",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ar-001 ]__
  {
    am_pm_abbreviated => [
      "\N{U+0635}",
      "\N{U+0645}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E\N{U+060c} d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMEd => "E\N{U+060c} d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd\N{U+200f}/MM",
      Md => "d/\N{U+200f}M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M\N{U+200f}/y",
      yMEd => "E\N{U+060c} d/\N{U+200f}M/\N{U+200f}y",
      yMM => "MM\N{U+200f}/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d\N{U+200f}/M\N{U+200f}/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ar-001",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "dd\N{U+200f}/MM\N{U+200f}/y",
    date_format_short => "d\N{U+200f}/M\N{U+200f}/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_format_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_narrow => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+064a}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Arabic",
    month_format_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_format_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_stand_alone_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Arabic World",
    native_language => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",
    native_name => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0639}\N{U+0627}\N{U+0644}\N{U+0645}",
    native_script => undef,
    native_territory => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0627}\N{U+0644}\N{U+0645}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_format_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    script => undef,
    territory => "World",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ar-AE ]__
  {
    am_pm_abbreviated => [
      "\N{U+0635}",
      "\N{U+0645}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E\N{U+060c} d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMEd => "E\N{U+060c} d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd\N{U+200f}/MM",
      Md => "d/\N{U+200f}M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M\N{U+200f}/y",
      yMEd => "E\N{U+060c} d/\N{U+200f}M/\N{U+200f}y",
      yMM => "MM\N{U+200f}/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d\N{U+200f}/M\N{U+200f}/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ar-AE",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "dd\N{U+200f}/MM\N{U+200f}/y",
    date_format_short => "d\N{U+200f}/M\N{U+200f}/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_format_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_narrow => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+064a}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d %b, %Y",
    glibc_datetime_format => "%d %b, %Y %Z %I:%M:%S %p",
    glibc_time_12_format => "%Z %I:%M:%S %p",
    glibc_time_format => "%Z %I:%M:%S ",
    language => "Arabic",
    month_format_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_format_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_stand_alone_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Arabic United Arab Emirates",
    native_language => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",
    native_name => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0625}\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0627}\N{U+062a} \N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+062a}\N{U+062d}\N{U+062f}\N{U+0629}",
    native_script => undef,
    native_territory => "\N{U+0627}\N{U+0644}\N{U+0625}\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0627}\N{U+062a} \N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+062a}\N{U+062d}\N{U+062f}\N{U+0629}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_format_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    script => undef,
    territory => "United Arab Emirates",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ar-BH ]__
  {
    am_pm_abbreviated => [
      "\N{U+0635}",
      "\N{U+0645}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E\N{U+060c} d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMEd => "E\N{U+060c} d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd\N{U+200f}/MM",
      Md => "d/\N{U+200f}M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M\N{U+200f}/y",
      yMEd => "E\N{U+060c} d/\N{U+200f}M/\N{U+200f}y",
      yMM => "MM\N{U+200f}/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d\N{U+200f}/M\N{U+200f}/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ar-BH",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "dd\N{U+200f}/MM\N{U+200f}/y",
    date_format_short => "d\N{U+200f}/M\N{U+200f}/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_format_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_narrow => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+064a}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d %b, %Y",
    glibc_datetime_format => "%d %b, %Y %Z %I:%M:%S %p",
    glibc_time_12_format => "%Z %I:%M:%S %p",
    glibc_time_format => "%Z %I:%M:%S ",
    language => "Arabic",
    month_format_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_format_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_stand_alone_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Arabic Bahrain",
    native_language => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",
    native_name => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0628}\N{U+062d}\N{U+0631}\N{U+064a}\N{U+0646}",
    native_script => undef,
    native_territory => "\N{U+0627}\N{U+0644}\N{U+0628}\N{U+062d}\N{U+0631}\N{U+064a}\N{U+0646}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_format_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    script => undef,
    territory => "Bahrain",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ar-DJ ]__
  {
    am_pm_abbreviated => [
      "\N{U+0635}",
      "\N{U+0645}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E\N{U+060c} d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMEd => "E\N{U+060c} d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd\N{U+200f}/MM",
      Md => "d/\N{U+200f}M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M\N{U+200f}/y",
      yMEd => "E\N{U+060c} d/\N{U+200f}M/\N{U+200f}y",
      yMM => "MM\N{U+200f}/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d\N{U+200f}/M\N{U+200f}/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ar-DJ",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "dd\N{U+200f}/MM\N{U+200f}/y",
    date_format_short => "d\N{U+200f}/M\N{U+200f}/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_format_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_narrow => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+064a}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Arabic",
    month_format_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_format_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_stand_alone_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Arabic Djibouti",
    native_language => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",
    native_name => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+062c}\N{U+064a}\N{U+0628}\N{U+0648}\N{U+062a}\N{U+064a}",
    native_script => undef,
    native_territory => "\N{U+062c}\N{U+064a}\N{U+0628}\N{U+0648}\N{U+062a}\N{U+064a}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_format_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    script => undef,
    territory => "Djibouti",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ar-DZ ]__
  {
    am_pm_abbreviated => [
      "\N{U+0635}",
      "\N{U+0645}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E\N{U+060c} d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMEd => "E\N{U+060c} d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd\N{U+200f}/MM",
      Md => "d/\N{U+200f}M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M\N{U+200f}/y",
      yMEd => "E\N{U+060c} d/\N{U+200f}M/\N{U+200f}y",
      yMM => "MM\N{U+200f}/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d\N{U+200f}/M\N{U+200f}/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ar-DZ",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "dd\N{U+200f}/MM\N{U+200f}/y",
    date_format_short => "d\N{U+200f}/M\N{U+200f}/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_format_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_narrow => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+064a}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d %b, %Y",
    glibc_datetime_format => "%d %b, %Y %Z %I:%M:%S %p",
    glibc_time_12_format => "%Z %I:%M:%S %p",
    glibc_time_format => "%Z %I:%M:%S ",
    language => "Arabic",
    month_format_abbreviated => [
      "\N{U+062c}\N{U+0627}\N{U+0646}\N{U+0641}\N{U+064a}",
      "\N{U+0641}\N{U+064a}\N{U+0641}\N{U+0631}\N{U+064a}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0641}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}",
      "\N{U+062c}\N{U+0648}\N{U+0627}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+064a}\N{U+0644}\N{U+064a}\N{U+0629}",
      "\N{U+0623}\N{U+0648}\N{U+062a}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      "\N{U+062c}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0645}",
      "\N{U+062c}",
      "\N{U+062c}",
      "\N{U+0623}",
      "\N{U+0633}",
      "\N{U+0623}",
      "\N{U+0646}",
      "\N{U+062f}"
    ],
    month_format_wide => [
      "\N{U+062c}\N{U+0627}\N{U+0646}\N{U+0641}\N{U+064a}",
      "\N{U+0641}\N{U+064a}\N{U+0641}\N{U+0631}\N{U+064a}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0641}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}",
      "\N{U+062c}\N{U+0648}\N{U+0627}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+064a}\N{U+0644}\N{U+064a}\N{U+0629}",
      "\N{U+0623}\N{U+0648}\N{U+062a}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+062c}\N{U+0627}\N{U+0646}\N{U+0641}\N{U+064a}",
      "\N{U+0641}\N{U+064a}\N{U+0641}\N{U+0631}\N{U+064a}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0641}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}",
      "\N{U+062c}\N{U+0648}\N{U+0627}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+064a}\N{U+0644}\N{U+064a}\N{U+0629}",
      "\N{U+0623}\N{U+0648}\N{U+062a}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "\N{U+062c}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0645}",
      "\N{U+062c}",
      "\N{U+062c}",
      "\N{U+0623}",
      "\N{U+0633}",
      "\N{U+0623}",
      "\N{U+0646}",
      "\N{U+062f}"
    ],
    month_stand_alone_wide => [
      "\N{U+062c}\N{U+0627}\N{U+0646}\N{U+0641}\N{U+064a}",
      "\N{U+0641}\N{U+064a}\N{U+0641}\N{U+0631}\N{U+064a}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0641}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}",
      "\N{U+062c}\N{U+0648}\N{U+0627}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+064a}\N{U+0644}\N{U+064a}\N{U+0629}",
      "\N{U+0623}\N{U+0648}\N{U+062a}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Arabic Algeria",
    native_language => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",
    native_name => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+062c}\N{U+0632}\N{U+0627}\N{U+0626}\N{U+0631}",
    native_script => undef,
    native_territory => "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0632}\N{U+0627}\N{U+0626}\N{U+0631}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_format_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    script => undef,
    territory => "Algeria",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ar-EG ]__
  {
    am_pm_abbreviated => [
      "\N{U+0635}",
      "\N{U+0645}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E\N{U+060c} d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMEd => "E\N{U+060c} d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd\N{U+200f}/MM",
      Md => "d/\N{U+200f}M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M\N{U+200f}/y",
      yMEd => "E\N{U+060c} d/\N{U+200f}M/\N{U+200f}y",
      yMM => "MM\N{U+200f}/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d\N{U+200f}/M\N{U+200f}/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ar-EG",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "dd\N{U+200f}/MM\N{U+200f}/y",
    date_format_short => "d\N{U+200f}/M\N{U+200f}/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_format_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_narrow => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+064a}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d %b, %Y",
    glibc_datetime_format => "%d %b, %Y %Z %I:%M:%S %p",
    glibc_time_12_format => "%Z %I:%M:%S %p",
    glibc_time_format => "%Z %I:%M:%S ",
    language => "Arabic",
    month_format_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_format_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_stand_alone_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Arabic Egypt",
    native_language => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",
    native_name => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0645}\N{U+0635}\N{U+0631}",
    native_script => undef,
    native_territory => "\N{U+0645}\N{U+0635}\N{U+0631}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_format_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    script => undef,
    territory => "Egypt",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ar-EH ]__
  {
    am_pm_abbreviated => [
      "\N{U+0635}",
      "\N{U+0645}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E\N{U+060c} d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMEd => "E\N{U+060c} d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd\N{U+200f}/MM",
      Md => "d/\N{U+200f}M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M\N{U+200f}/y",
      yMEd => "E\N{U+060c} d/\N{U+200f}M/\N{U+200f}y",
      yMM => "MM\N{U+200f}/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d\N{U+200f}/M\N{U+200f}/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ar-EH",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "dd\N{U+200f}/MM\N{U+200f}/y",
    date_format_short => "d\N{U+200f}/M\N{U+200f}/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_format_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_narrow => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+064a}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Arabic",
    month_format_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_format_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_stand_alone_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Arabic Western Sahara",
    native_language => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",
    native_name => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0635}\N{U+062d}\N{U+0631}\N{U+0627}\N{U+0621} \N{U+0627}\N{U+0644}\N{U+063a}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",
    native_script => undef,
    native_territory => "\N{U+0627}\N{U+0644}\N{U+0635}\N{U+062d}\N{U+0631}\N{U+0627}\N{U+0621} \N{U+0627}\N{U+0644}\N{U+063a}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_format_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    script => undef,
    territory => "Western Sahara",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ar-ER ]__
  {
    am_pm_abbreviated => [
      "\N{U+0635}",
      "\N{U+0645}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E\N{U+060c} d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMEd => "E\N{U+060c} d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd\N{U+200f}/MM",
      Md => "d/\N{U+200f}M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M\N{U+200f}/y",
      yMEd => "E\N{U+060c} d/\N{U+200f}M/\N{U+200f}y",
      yMM => "MM\N{U+200f}/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d\N{U+200f}/M\N{U+200f}/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ar-ER",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "dd\N{U+200f}/MM\N{U+200f}/y",
    date_format_short => "d\N{U+200f}/M\N{U+200f}/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_format_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_narrow => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+064a}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Arabic",
    month_format_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_format_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_stand_alone_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Arabic Eritrea",
    native_language => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",
    native_name => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0625}\N{U+0631}\N{U+064a}\N{U+062a}\N{U+0631}\N{U+064a}\N{U+0627}",
    native_script => undef,
    native_territory => "\N{U+0625}\N{U+0631}\N{U+064a}\N{U+062a}\N{U+0631}\N{U+064a}\N{U+0627}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_format_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    script => undef,
    territory => "Eritrea",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ar-IL ]__
  {
    am_pm_abbreviated => [
      "\N{U+0635}",
      "\N{U+0645}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E\N{U+060c} d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMEd => "E\N{U+060c} d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd\N{U+200f}/MM",
      Md => "d/\N{U+200f}M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M\N{U+200f}/y",
      yMEd => "E\N{U+060c} d/\N{U+200f}M/\N{U+200f}y",
      yMM => "MM\N{U+200f}/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d\N{U+200f}/M\N{U+200f}/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ar-IL",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "dd\N{U+200f}/MM\N{U+200f}/y",
    date_format_short => "d\N{U+200f}/M\N{U+200f}/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_format_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_narrow => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+064a}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Arabic",
    month_format_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_format_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_stand_alone_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Arabic Israel",
    native_language => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",
    native_name => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0625}\N{U+0633}\N{U+0631}\N{U+0627}\N{U+0626}\N{U+064a}\N{U+0644}",
    native_script => undef,
    native_territory => "\N{U+0625}\N{U+0633}\N{U+0631}\N{U+0627}\N{U+0626}\N{U+064a}\N{U+0644}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_format_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    script => undef,
    territory => "Israel",
    time_format_full => "H:mm:ss zzzz",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ ar-IQ ]__
  {
    am_pm_abbreviated => [
      "\N{U+0635}",
      "\N{U+0645}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E\N{U+060c} d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMEd => "E\N{U+060c} d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd\N{U+200f}/MM",
      Md => "d/\N{U+200f}M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M\N{U+200f}/y",
      yMEd => "E\N{U+060c} d/\N{U+200f}M/\N{U+200f}y",
      yMM => "MM\N{U+200f}/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d\N{U+200f}/M\N{U+200f}/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ar-IQ",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "dd\N{U+200f}/MM\N{U+200f}/y",
    date_format_short => "d\N{U+200f}/M\N{U+200f}/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_format_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_narrow => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+064a}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d %b, %Y",
    glibc_datetime_format => "%d %b, %Y %Z %I:%M:%S %p",
    glibc_time_12_format => "%Z %I:%M:%S %p",
    glibc_time_format => "%Z %I:%M:%S ",
    language => "Arabic",
    month_format_abbreviated => [
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0634}\N{U+0628}\N{U+0627}\N{U+0637}",
      "\N{U+0622}\N{U+0630}\N{U+0627}\N{U+0631}",
      "\N{U+0646}\N{U+064a}\N{U+0633}\N{U+0627}\N{U+0646}",
      "\N{U+0623}\N{U+064a}\N{U+0627}\N{U+0631}",
      "\N{U+062d}\N{U+0632}\N{U+064a}\N{U+0631}\N{U+0627}\N{U+0646}",
      "\N{U+062a}\N{U+0645}\N{U+0648}\N{U+0632}",
      "\N{U+0622}\N{U+0628}",
      "\N{U+0623}\N{U+064a}\N{U+0644}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+06cc}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}"
    ],
    month_format_narrow => [
      "\N{U+0643}",
      "\N{U+0634}",
      "\N{U+0622}",
      "\N{U+0646}",
      "\N{U+0623}",
      "\N{U+062d}",
      "\N{U+062a}",
      "\N{U+0622}",
      "\N{U+0623}",
      "\N{U+062a}",
      "\N{U+062a}",
      "\N{U+0643}"
    ],
    month_format_wide => [
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0634}\N{U+0628}\N{U+0627}\N{U+0637}",
      "\N{U+0622}\N{U+0630}\N{U+0627}\N{U+0631}",
      "\N{U+0646}\N{U+064a}\N{U+0633}\N{U+0627}\N{U+0646}",
      "\N{U+0623}\N{U+064a}\N{U+0627}\N{U+0631}",
      "\N{U+062d}\N{U+0632}\N{U+064a}\N{U+0631}\N{U+0627}\N{U+0646}",
      "\N{U+062a}\N{U+0645}\N{U+0648}\N{U+0632}",
      "\N{U+0622}\N{U+0628}",
      "\N{U+0623}\N{U+064a}\N{U+0644}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0634}\N{U+0628}\N{U+0627}\N{U+0637}",
      "\N{U+0622}\N{U+0630}\N{U+0627}\N{U+0631}",
      "\N{U+0646}\N{U+064a}\N{U+0633}\N{U+0627}\N{U+0646}",
      "\N{U+0623}\N{U+064a}\N{U+0627}\N{U+0631}",
      "\N{U+062d}\N{U+0632}\N{U+064a}\N{U+0631}\N{U+0627}\N{U+0646}",
      "\N{U+062a}\N{U+0645}\N{U+0648}\N{U+0632}",
      "\N{U+0622}\N{U+0628}",
      "\N{U+0623}\N{U+064a}\N{U+0644}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0643}",
      "\N{U+0634}",
      "\N{U+0622}",
      "\N{U+0646}",
      "\N{U+0623}",
      "\N{U+062d}",
      "\N{U+062a}",
      "\N{U+0622}",
      "\N{U+0623}",
      "\N{U+062a}",
      "\N{U+062a}",
      "\N{U+0643}"
    ],
    month_stand_alone_wide => [
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0634}\N{U+0628}\N{U+0627}\N{U+0637}",
      "\N{U+0622}\N{U+0630}\N{U+0627}\N{U+0631}",
      "\N{U+0646}\N{U+064a}\N{U+0633}\N{U+0627}\N{U+0646}",
      "\N{U+0623}\N{U+064a}\N{U+0627}\N{U+0631}",
      "\N{U+062d}\N{U+0632}\N{U+064a}\N{U+0631}\N{U+0627}\N{U+0646}",
      "\N{U+062a}\N{U+0645}\N{U+0648}\N{U+0632}",
      "\N{U+0622}\N{U+0628}",
      "\N{U+0623}\N{U+064a}\N{U+0644}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}"
    ],
    name => "Arabic Iraq",
    native_language => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",
    native_name => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0627}\N{U+0642}",
    native_script => undef,
    native_territory => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0627}\N{U+0642}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_format_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    script => undef,
    territory => "Iraq",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ar-JO ]__
  {
    am_pm_abbreviated => [
      "\N{U+0635}",
      "\N{U+0645}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E\N{U+060c} d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMEd => "E\N{U+060c} d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd\N{U+200f}/MM",
      Md => "d/\N{U+200f}M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M\N{U+200f}/y",
      yMEd => "E\N{U+060c} d/\N{U+200f}M/\N{U+200f}y",
      yMM => "MM\N{U+200f}/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d\N{U+200f}/M\N{U+200f}/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ar-JO",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "dd\N{U+200f}/MM\N{U+200f}/y",
    date_format_short => "d\N{U+200f}/M\N{U+200f}/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_format_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_narrow => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+064a}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d %b, %Y",
    glibc_datetime_format => "%d %b, %Y %Z %I:%M:%S %p",
    glibc_time_12_format => "%Z %I:%M:%S %p",
    glibc_time_format => "%Z %I:%M:%S ",
    language => "Arabic",
    month_format_abbreviated => [
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0634}\N{U+0628}\N{U+0627}\N{U+0637}",
      "\N{U+0622}\N{U+0630}\N{U+0627}\N{U+0631}",
      "\N{U+0646}\N{U+064a}\N{U+0633}\N{U+0627}\N{U+0646}",
      "\N{U+0623}\N{U+064a}\N{U+0627}\N{U+0631}",
      "\N{U+062d}\N{U+0632}\N{U+064a}\N{U+0631}\N{U+0627}\N{U+0646}",
      "\N{U+062a}\N{U+0645}\N{U+0648}\N{U+0632}",
      "\N{U+0622}\N{U+0628}",
      "\N{U+0623}\N{U+064a}\N{U+0644}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}"
    ],
    month_format_narrow => [
      "\N{U+0643}",
      "\N{U+0634}",
      "\N{U+0622}",
      "\N{U+0646}",
      "\N{U+0623}",
      "\N{U+062d}",
      "\N{U+062a}",
      "\N{U+0622}",
      "\N{U+0623}",
      "\N{U+062a}",
      "\N{U+062a}",
      "\N{U+0643}"
    ],
    month_format_wide => [
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0634}\N{U+0628}\N{U+0627}\N{U+0637}",
      "\N{U+0622}\N{U+0630}\N{U+0627}\N{U+0631}",
      "\N{U+0646}\N{U+064a}\N{U+0633}\N{U+0627}\N{U+0646}",
      "\N{U+0623}\N{U+064a}\N{U+0627}\N{U+0631}",
      "\N{U+062d}\N{U+0632}\N{U+064a}\N{U+0631}\N{U+0627}\N{U+0646}",
      "\N{U+062a}\N{U+0645}\N{U+0648}\N{U+0632}",
      "\N{U+0622}\N{U+0628}",
      "\N{U+0623}\N{U+064a}\N{U+0644}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0634}\N{U+0628}\N{U+0627}\N{U+0637}",
      "\N{U+0622}\N{U+0630}\N{U+0627}\N{U+0631}",
      "\N{U+0646}\N{U+064a}\N{U+0633}\N{U+0627}\N{U+0646}",
      "\N{U+0623}\N{U+064a}\N{U+0627}\N{U+0631}",
      "\N{U+062d}\N{U+0632}\N{U+064a}\N{U+0631}\N{U+0627}\N{U+0646}",
      "\N{U+062a}\N{U+0645}\N{U+0648}\N{U+0632}",
      "\N{U+0622}\N{U+0628}",
      "\N{U+0623}\N{U+064a}\N{U+0644}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0643}",
      "\N{U+0634}",
      "\N{U+0622}",
      "\N{U+0646}",
      "\N{U+0623}",
      "\N{U+062d}",
      "\N{U+062a}",
      "\N{U+0622}",
      "\N{U+0623}",
      "\N{U+062a}",
      "\N{U+062a}",
      "\N{U+0643}"
    ],
    month_stand_alone_wide => [
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0634}\N{U+0628}\N{U+0627}\N{U+0637}",
      "\N{U+0622}\N{U+0630}\N{U+0627}\N{U+0631}",
      "\N{U+0646}\N{U+064a}\N{U+0633}\N{U+0627}\N{U+0646}",
      "\N{U+0623}\N{U+064a}\N{U+0627}\N{U+0631}",
      "\N{U+062d}\N{U+0632}\N{U+064a}\N{U+0631}\N{U+0627}\N{U+0646}",
      "\N{U+062a}\N{U+0645}\N{U+0648}\N{U+0632}",
      "\N{U+0622}\N{U+0628}",
      "\N{U+0623}\N{U+064a}\N{U+0644}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}"
    ],
    name => "Arabic Jordan",
    native_language => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",
    native_name => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+062f}\N{U+0646}",
    native_script => undef,
    native_territory => "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+062f}\N{U+0646}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_format_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    script => undef,
    territory => "Jordan",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ar-KM ]__
  {
    am_pm_abbreviated => [
      "\N{U+0635}",
      "\N{U+0645}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E\N{U+060c} d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMEd => "E\N{U+060c} d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd\N{U+200f}/MM",
      Md => "d/\N{U+200f}M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M\N{U+200f}/y",
      yMEd => "E\N{U+060c} d/\N{U+200f}M/\N{U+200f}y",
      yMM => "MM\N{U+200f}/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d\N{U+200f}/M\N{U+200f}/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ar-KM",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "dd\N{U+200f}/MM\N{U+200f}/y",
    date_format_short => "d\N{U+200f}/M\N{U+200f}/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_format_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_narrow => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+064a}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Arabic",
    month_format_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_format_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_stand_alone_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Arabic Comoros",
    native_language => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",
    native_name => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+062c}\N{U+0632}\N{U+0631} \N{U+0627}\N{U+0644}\N{U+0642}\N{U+0645}\N{U+0631}",
    native_script => undef,
    native_territory => "\N{U+062c}\N{U+0632}\N{U+0631} \N{U+0627}\N{U+0644}\N{U+0642}\N{U+0645}\N{U+0631}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_format_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    script => undef,
    territory => "Comoros",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ar-KW ]__
  {
    am_pm_abbreviated => [
      "\N{U+0635}",
      "\N{U+0645}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E\N{U+060c} d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMEd => "E\N{U+060c} d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd\N{U+200f}/MM",
      Md => "d/\N{U+200f}M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M\N{U+200f}/y",
      yMEd => "E\N{U+060c} d/\N{U+200f}M/\N{U+200f}y",
      yMM => "MM\N{U+200f}/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d\N{U+200f}/M\N{U+200f}/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ar-KW",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "dd\N{U+200f}/MM\N{U+200f}/y",
    date_format_short => "d\N{U+200f}/M\N{U+200f}/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_format_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_narrow => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+064a}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d %b, %Y",
    glibc_datetime_format => "%d %b, %Y %Z %I:%M:%S %p",
    glibc_time_12_format => "%Z %I:%M:%S %p",
    glibc_time_format => "%Z %I:%M:%S ",
    language => "Arabic",
    month_format_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_format_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_stand_alone_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Arabic Kuwait",
    native_language => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",
    native_name => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0643}\N{U+0648}\N{U+064a}\N{U+062a}",
    native_script => undef,
    native_territory => "\N{U+0627}\N{U+0644}\N{U+0643}\N{U+0648}\N{U+064a}\N{U+062a}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_format_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    script => undef,
    territory => "Kuwait",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ar-LB ]__
  {
    am_pm_abbreviated => [
      "\N{U+0635}",
      "\N{U+0645}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E\N{U+060c} d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMEd => "E\N{U+060c} d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd\N{U+200f}/MM",
      Md => "d/\N{U+200f}M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M\N{U+200f}/y",
      yMEd => "E\N{U+060c} d/\N{U+200f}M/\N{U+200f}y",
      yMM => "MM\N{U+200f}/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d\N{U+200f}/M\N{U+200f}/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ar-LB",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "dd\N{U+200f}/MM\N{U+200f}/y",
    date_format_short => "d\N{U+200f}/M\N{U+200f}/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_format_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_narrow => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+064a}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d %b, %Y",
    glibc_datetime_format => "%d %b, %Y %Z %I:%M:%S %p",
    glibc_time_12_format => "%Z %I:%M:%S %p",
    glibc_time_format => "%Z %I:%M:%S ",
    language => "Arabic",
    month_format_abbreviated => [
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0634}\N{U+0628}\N{U+0627}\N{U+0637}",
      "\N{U+0622}\N{U+0630}\N{U+0627}\N{U+0631}",
      "\N{U+0646}\N{U+064a}\N{U+0633}\N{U+0627}\N{U+0646}",
      "\N{U+0623}\N{U+064a}\N{U+0627}\N{U+0631}",
      "\N{U+062d}\N{U+0632}\N{U+064a}\N{U+0631}\N{U+0627}\N{U+0646}",
      "\N{U+062a}\N{U+0645}\N{U+0648}\N{U+0632}",
      "\N{U+0622}\N{U+0628}",
      "\N{U+0623}\N{U+064a}\N{U+0644}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}"
    ],
    month_format_narrow => [
      "\N{U+0643}",
      "\N{U+0634}",
      "\N{U+0622}",
      "\N{U+0646}",
      "\N{U+0623}",
      "\N{U+062d}",
      "\N{U+062a}",
      "\N{U+0622}",
      "\N{U+0623}",
      "\N{U+062a}",
      "\N{U+062a}",
      "\N{U+0643}"
    ],
    month_format_wide => [
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0634}\N{U+0628}\N{U+0627}\N{U+0637}",
      "\N{U+0622}\N{U+0630}\N{U+0627}\N{U+0631}",
      "\N{U+0646}\N{U+064a}\N{U+0633}\N{U+0627}\N{U+0646}",
      "\N{U+0623}\N{U+064a}\N{U+0627}\N{U+0631}",
      "\N{U+062d}\N{U+0632}\N{U+064a}\N{U+0631}\N{U+0627}\N{U+0646}",
      "\N{U+062a}\N{U+0645}\N{U+0648}\N{U+0632}",
      "\N{U+0622}\N{U+0628}",
      "\N{U+0623}\N{U+064a}\N{U+0644}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0634}\N{U+0628}\N{U+0627}\N{U+0637}",
      "\N{U+0622}\N{U+0630}\N{U+0627}\N{U+0631}",
      "\N{U+0646}\N{U+064a}\N{U+0633}\N{U+0627}\N{U+0646}",
      "\N{U+0623}\N{U+064a}\N{U+0627}\N{U+0631}",
      "\N{U+062d}\N{U+0632}\N{U+064a}\N{U+0631}\N{U+0627}\N{U+0646}",
      "\N{U+062a}\N{U+0645}\N{U+0648}\N{U+0632}",
      "\N{U+0622}\N{U+0628}",
      "\N{U+0623}\N{U+064a}\N{U+0644}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0643}",
      "\N{U+0634}",
      "\N{U+0622}",
      "\N{U+0646}",
      "\N{U+0623}",
      "\N{U+062d}",
      "\N{U+062a}",
      "\N{U+0622}",
      "\N{U+0623}",
      "\N{U+062a}",
      "\N{U+062a}",
      "\N{U+0643}"
    ],
    month_stand_alone_wide => [
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0634}\N{U+0628}\N{U+0627}\N{U+0637}",
      "\N{U+0622}\N{U+0630}\N{U+0627}\N{U+0631}",
      "\N{U+0646}\N{U+064a}\N{U+0633}\N{U+0627}\N{U+0646}",
      "\N{U+0623}\N{U+064a}\N{U+0627}\N{U+0631}",
      "\N{U+062d}\N{U+0632}\N{U+064a}\N{U+0631}\N{U+0627}\N{U+0646}",
      "\N{U+062a}\N{U+0645}\N{U+0648}\N{U+0632}",
      "\N{U+0622}\N{U+0628}",
      "\N{U+0623}\N{U+064a}\N{U+0644}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}"
    ],
    name => "Arabic Lebanon",
    native_language => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",
    native_name => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0644}\N{U+0628}\N{U+0646}\N{U+0627}\N{U+0646}",
    native_script => undef,
    native_territory => "\N{U+0644}\N{U+0628}\N{U+0646}\N{U+0627}\N{U+0646}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_format_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    script => undef,
    territory => "Lebanon",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ar-LY ]__
  {
    am_pm_abbreviated => [
      "\N{U+0635}",
      "\N{U+0645}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E\N{U+060c} d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMEd => "E\N{U+060c} d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd\N{U+200f}/MM",
      Md => "d/\N{U+200f}M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M\N{U+200f}/y",
      yMEd => "E\N{U+060c} d/\N{U+200f}M/\N{U+200f}y",
      yMM => "MM\N{U+200f}/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d\N{U+200f}/M\N{U+200f}/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ar-LY",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "dd\N{U+200f}/MM\N{U+200f}/y",
    date_format_short => "d\N{U+200f}/M\N{U+200f}/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_format_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_narrow => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+064a}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d %b, %Y",
    glibc_datetime_format => "%d %b, %Y %Z %I:%M:%S %p",
    glibc_time_12_format => "%Z %I:%M:%S %p",
    glibc_time_format => "%Z %I:%M:%S ",
    language => "Arabic",
    month_format_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_format_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_stand_alone_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Arabic Libya",
    native_language => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",
    native_name => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0644}\N{U+064a}\N{U+0628}\N{U+064a}\N{U+0627}",
    native_script => undef,
    native_territory => "\N{U+0644}\N{U+064a}\N{U+0628}\N{U+064a}\N{U+0627}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_format_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    script => undef,
    territory => "Libya",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ar-MA ]__
  {
    am_pm_abbreviated => [
      "\N{U+0635}",
      "\N{U+0645}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E\N{U+060c} d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMEd => "E\N{U+060c} d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd\N{U+200f}/MM",
      Md => "d/\N{U+200f}M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M\N{U+200f}/y",
      yMEd => "E\N{U+060c} d/\N{U+200f}M/\N{U+200f}y",
      yMM => "MM\N{U+200f}/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d\N{U+200f}/M\N{U+200f}/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ar-MA",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "dd\N{U+200f}/MM\N{U+200f}/y",
    date_format_short => "d\N{U+200f}/M\N{U+200f}/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_format_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_narrow => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+064a}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d %b, %Y",
    glibc_datetime_format => "%d %b, %Y %Z %I:%M:%S %p",
    glibc_time_12_format => "%Z %I:%M:%S %p",
    glibc_time_format => "%Z %I:%M:%S ",
    language => "Arabic",
    month_format_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}\N{U+0632}",
      "\N{U+063a}\N{U+0634}\N{U+062a}",
      "\N{U+0634}\N{U+062a}\N{U+0646}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0646}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+062c}\N{U+0646}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0645}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0634}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_format_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}\N{U+0632}",
      "\N{U+063a}\N{U+0634}\N{U+062a}",
      "\N{U+0634}\N{U+062a}\N{U+0646}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0646}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+062c}\N{U+0646}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}\N{U+0632}",
      "\N{U+063a}\N{U+0634}\N{U+062a}",
      "\N{U+0634}\N{U+062a}\N{U+0646}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0646}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+062c}\N{U+0646}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0645}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0634}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_stand_alone_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}\N{U+0632}",
      "\N{U+063a}\N{U+0634}\N{U+062a}",
      "\N{U+0634}\N{U+062a}\N{U+0646}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0646}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+062c}\N{U+0646}\N{U+0628}\N{U+0631}"
    ],
    name => "Arabic Morocco",
    native_language => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",
    native_name => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+063a}\N{U+0631}\N{U+0628}",
    native_script => undef,
    native_territory => "\N{U+0627}\N{U+0644}\N{U+0645}\N{U+063a}\N{U+0631}\N{U+0628}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_format_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    script => undef,
    territory => "Morocco",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ar-MR ]__
  {
    am_pm_abbreviated => [
      "\N{U+0635}",
      "\N{U+0645}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E\N{U+060c} d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMEd => "E\N{U+060c} d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd\N{U+200f}/MM",
      Md => "d/\N{U+200f}M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M\N{U+200f}/y",
      yMEd => "E\N{U+060c} d/\N{U+200f}M/\N{U+200f}y",
      yMM => "MM\N{U+200f}/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d\N{U+200f}/M\N{U+200f}/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ar-MR",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "dd\N{U+200f}/MM\N{U+200f}/y",
    date_format_short => "d\N{U+200f}/M\N{U+200f}/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_format_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_narrow => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+064a}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Arabic",
    month_format_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0625}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0634}\N{U+062a}",
      "\N{U+0634}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+062c}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0625}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0634}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_format_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0625}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0634}\N{U+062a}",
      "\N{U+0634}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+062c}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0625}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0634}\N{U+062a}",
      "\N{U+0634}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+062c}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0625}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0634}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_stand_alone_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0625}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0634}\N{U+062a}",
      "\N{U+0634}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+062c}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Arabic Mauritania",
    native_language => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",
    native_name => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0645}\N{U+0648}\N{U+0631}\N{U+064a}\N{U+062a}\N{U+0627}\N{U+0646}\N{U+064a}\N{U+0627}",
    native_script => undef,
    native_territory => "\N{U+0645}\N{U+0648}\N{U+0631}\N{U+064a}\N{U+062a}\N{U+0627}\N{U+0646}\N{U+064a}\N{U+0627}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_format_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    script => undef,
    territory => "Mauritania",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ar-OM ]__
  {
    am_pm_abbreviated => [
      "\N{U+0635}",
      "\N{U+0645}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E\N{U+060c} d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMEd => "E\N{U+060c} d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd\N{U+200f}/MM",
      Md => "d/\N{U+200f}M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M\N{U+200f}/y",
      yMEd => "E\N{U+060c} d/\N{U+200f}M/\N{U+200f}y",
      yMM => "MM\N{U+200f}/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d\N{U+200f}/M\N{U+200f}/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ar-OM",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "dd\N{U+200f}/MM\N{U+200f}/y",
    date_format_short => "d\N{U+200f}/M\N{U+200f}/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_format_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_narrow => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+064a}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d %b, %Y",
    glibc_datetime_format => "%d %b, %Y %Z %I:%M:%S %p",
    glibc_time_12_format => "%Z %I:%M:%S %p",
    glibc_time_format => "%Z %I:%M:%S ",
    language => "Arabic",
    month_format_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_format_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_stand_alone_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Arabic Oman",
    native_language => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",
    native_name => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0639}\N{U+064f}\N{U+0645}\N{U+0627}\N{U+0646}",
    native_script => undef,
    native_territory => "\N{U+0639}\N{U+064f}\N{U+0645}\N{U+0627}\N{U+0646}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_format_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    script => undef,
    territory => "Oman",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ar-PS ]__
  {
    am_pm_abbreviated => [
      "\N{U+0635}",
      "\N{U+0645}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E\N{U+060c} d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMEd => "E\N{U+060c} d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd\N{U+200f}/MM",
      Md => "d/\N{U+200f}M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M\N{U+200f}/y",
      yMEd => "E\N{U+060c} d/\N{U+200f}M/\N{U+200f}y",
      yMM => "MM\N{U+200f}/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d\N{U+200f}/M\N{U+200f}/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ar-PS",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "dd\N{U+200f}/MM\N{U+200f}/y",
    date_format_short => "d\N{U+200f}/M\N{U+200f}/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_format_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_narrow => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+064a}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Arabic",
    month_format_abbreviated => [
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0634}\N{U+0628}\N{U+0627}\N{U+0637}",
      "\N{U+0622}\N{U+0630}\N{U+0627}\N{U+0631}",
      "\N{U+0646}\N{U+064a}\N{U+0633}\N{U+0627}\N{U+0646}",
      "\N{U+0623}\N{U+064a}\N{U+0627}\N{U+0631}",
      "\N{U+062d}\N{U+0632}\N{U+064a}\N{U+0631}\N{U+0627}\N{U+0646}",
      "\N{U+062a}\N{U+0645}\N{U+0648}\N{U+0632}",
      "\N{U+0622}\N{U+0628}",
      "\N{U+0623}\N{U+064a}\N{U+0644}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}"
    ],
    month_format_narrow => [
      "\N{U+0643}",
      "\N{U+0634}",
      "\N{U+0622}",
      "\N{U+0646}",
      "\N{U+0623}",
      "\N{U+062d}",
      "\N{U+062a}",
      "\N{U+0622}",
      "\N{U+0623}",
      "\N{U+062a}",
      "\N{U+062a}",
      "\N{U+0643}"
    ],
    month_format_wide => [
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0634}\N{U+0628}\N{U+0627}\N{U+0637}",
      "\N{U+0622}\N{U+0630}\N{U+0627}\N{U+0631}",
      "\N{U+0646}\N{U+064a}\N{U+0633}\N{U+0627}\N{U+0646}",
      "\N{U+0623}\N{U+064a}\N{U+0627}\N{U+0631}",
      "\N{U+062d}\N{U+0632}\N{U+064a}\N{U+0631}\N{U+0627}\N{U+0646}",
      "\N{U+062a}\N{U+0645}\N{U+0648}\N{U+0632}",
      "\N{U+0622}\N{U+0628}",
      "\N{U+0623}\N{U+064a}\N{U+0644}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0634}\N{U+0628}\N{U+0627}\N{U+0637}",
      "\N{U+0622}\N{U+0630}\N{U+0627}\N{U+0631}",
      "\N{U+0646}\N{U+064a}\N{U+0633}\N{U+0627}\N{U+0646}",
      "\N{U+0623}\N{U+064a}\N{U+0627}\N{U+0631}",
      "\N{U+062d}\N{U+0632}\N{U+064a}\N{U+0631}\N{U+0627}\N{U+0646}",
      "\N{U+062a}\N{U+0645}\N{U+0648}\N{U+0632}",
      "\N{U+0622}\N{U+0628}",
      "\N{U+0623}\N{U+064a}\N{U+0644}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0643}",
      "\N{U+0634}",
      "\N{U+0622}",
      "\N{U+0646}",
      "\N{U+0623}",
      "\N{U+062d}",
      "\N{U+062a}",
      "\N{U+0622}",
      "\N{U+0623}",
      "\N{U+062a}",
      "\N{U+062a}",
      "\N{U+0643}"
    ],
    month_stand_alone_wide => [
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0634}\N{U+0628}\N{U+0627}\N{U+0637}",
      "\N{U+0622}\N{U+0630}\N{U+0627}\N{U+0631}",
      "\N{U+0646}\N{U+064a}\N{U+0633}\N{U+0627}\N{U+0646}",
      "\N{U+0623}\N{U+064a}\N{U+0627}\N{U+0631}",
      "\N{U+062d}\N{U+0632}\N{U+064a}\N{U+0631}\N{U+0627}\N{U+0646}",
      "\N{U+062a}\N{U+0645}\N{U+0648}\N{U+0632}",
      "\N{U+0622}\N{U+0628}",
      "\N{U+0623}\N{U+064a}\N{U+0644}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}"
    ],
    name => "Arabic Palestinian Territories",
    native_language => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",
    native_name => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0627}\N{U+0636}\N{U+064a} \N{U+0627}\N{U+0644}\N{U+0641}\N{U+0644}\N{U+0633}\N{U+0637}\N{U+064a}\N{U+0646}\N{U+064a}\N{U+0629}",
    native_script => undef,
    native_territory => "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0627}\N{U+0636}\N{U+064a} \N{U+0627}\N{U+0644}\N{U+0641}\N{U+0644}\N{U+0633}\N{U+0637}\N{U+064a}\N{U+0646}\N{U+064a}\N{U+0629}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_format_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    script => undef,
    territory => "Palestinian Territories",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ar-QA ]__
  {
    am_pm_abbreviated => [
      "\N{U+0635}",
      "\N{U+0645}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E\N{U+060c} d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMEd => "E\N{U+060c} d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd\N{U+200f}/MM",
      Md => "d/\N{U+200f}M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M\N{U+200f}/y",
      yMEd => "E\N{U+060c} d/\N{U+200f}M/\N{U+200f}y",
      yMM => "MM\N{U+200f}/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d\N{U+200f}/M\N{U+200f}/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ar-QA",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "dd\N{U+200f}/MM\N{U+200f}/y",
    date_format_short => "d\N{U+200f}/M\N{U+200f}/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_format_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_narrow => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+064a}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d %b, %Y",
    glibc_datetime_format => "%d %b, %Y %Z %I:%M:%S %p",
    glibc_time_12_format => "%Z %I:%M:%S %p",
    glibc_time_format => "%Z %I:%M:%S ",
    language => "Arabic",
    month_format_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_format_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_stand_alone_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Arabic Qatar",
    native_language => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",
    native_name => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0642}\N{U+0637}\N{U+0631}",
    native_script => undef,
    native_territory => "\N{U+0642}\N{U+0637}\N{U+0631}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_format_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    script => undef,
    territory => "Qatar",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ar-SA ]__
  {
    am_pm_abbreviated => [
      "\N{U+0635}",
      "\N{U+0645}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E\N{U+060c} d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMEd => "E\N{U+060c} d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd\N{U+200f}/MM",
      Md => "d/\N{U+200f}M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M\N{U+200f}/y",
      yMEd => "E\N{U+060c} d/\N{U+200f}M/\N{U+200f}y",
      yMM => "MM\N{U+200f}/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d\N{U+200f}/M\N{U+200f}/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ar-SA",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "dd\N{U+200f}/MM\N{U+200f}/y",
    date_format_short => "d\N{U+200f}/M\N{U+200f}/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_format_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_narrow => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+064a}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%A %e %B %Y",
    glibc_datetime_format => "%A %e %B %Y  %k:%M:%S",
    glibc_time_12_format => "%k:%M:%S",
    glibc_time_format => "%k:%M:%S",
    language => "Arabic",
    month_format_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_format_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_stand_alone_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Arabic Saudi Arabia",
    native_language => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",
    native_name => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+0645}\N{U+0644}\N{U+0643}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0633}\N{U+0639}\N{U+0648}\N{U+062f}\N{U+064a}\N{U+0629}",
    native_script => undef,
    native_territory => "\N{U+0627}\N{U+0644}\N{U+0645}\N{U+0645}\N{U+0644}\N{U+0643}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0633}\N{U+0639}\N{U+0648}\N{U+062f}\N{U+064a}\N{U+0629}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_format_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    script => undef,
    territory => "Saudi Arabia",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ar-SD ]__
  {
    am_pm_abbreviated => [
      "\N{U+0635}",
      "\N{U+0645}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E\N{U+060c} d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMEd => "E\N{U+060c} d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd\N{U+200f}/MM",
      Md => "d/\N{U+200f}M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M\N{U+200f}/y",
      yMEd => "E\N{U+060c} d/\N{U+200f}M/\N{U+200f}y",
      yMM => "MM\N{U+200f}/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d\N{U+200f}/M\N{U+200f}/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ar-SD",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "dd\N{U+200f}/MM\N{U+200f}/y",
    date_format_short => "d\N{U+200f}/M\N{U+200f}/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_format_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_narrow => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+064a}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d %b, %Y",
    glibc_datetime_format => "%d %b, %Y %Z %I:%M:%S %p",
    glibc_time_12_format => "%Z %I:%M:%S %p",
    glibc_time_format => "%Z %I:%M:%S ",
    language => "Arabic",
    month_format_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_format_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_stand_alone_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Arabic Sudan",
    native_language => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",
    native_name => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0633}\N{U+0648}\N{U+062f}\N{U+0627}\N{U+0646}",
    native_script => undef,
    native_territory => "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0648}\N{U+062f}\N{U+0627}\N{U+0646}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_format_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    script => undef,
    territory => "Sudan",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ar-SO ]__
  {
    am_pm_abbreviated => [
      "\N{U+0635}",
      "\N{U+0645}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E\N{U+060c} d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMEd => "E\N{U+060c} d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd\N{U+200f}/MM",
      Md => "d/\N{U+200f}M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M\N{U+200f}/y",
      yMEd => "E\N{U+060c} d/\N{U+200f}M/\N{U+200f}y",
      yMM => "MM\N{U+200f}/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d\N{U+200f}/M\N{U+200f}/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ar-SO",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "dd\N{U+200f}/MM\N{U+200f}/y",
    date_format_short => "d\N{U+200f}/M\N{U+200f}/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_format_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_narrow => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+064a}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Arabic",
    month_format_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_format_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_stand_alone_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Arabic Somalia",
    native_language => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",
    native_name => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+0635}\N{U+0648}\N{U+0645}\N{U+0627}\N{U+0644}",
    native_script => undef,
    native_territory => "\N{U+0627}\N{U+0644}\N{U+0635}\N{U+0648}\N{U+0645}\N{U+0627}\N{U+0644}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_format_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    script => undef,
    territory => "Somalia",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ar-SS ]__
  {
    am_pm_abbreviated => [
      "\N{U+0635}",
      "\N{U+0645}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E\N{U+060c} d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMEd => "E\N{U+060c} d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd\N{U+200f}/MM",
      Md => "d/\N{U+200f}M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M\N{U+200f}/y",
      yMEd => "E\N{U+060c} d/\N{U+200f}M/\N{U+200f}y",
      yMM => "MM\N{U+200f}/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d\N{U+200f}/M\N{U+200f}/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ar-SS",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "dd\N{U+200f}/MM\N{U+200f}/y",
    date_format_short => "d\N{U+200f}/M\N{U+200f}/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_format_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_narrow => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+064a}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d %b, %Y",
    glibc_datetime_format => "%d %b, %Y %Z %I:%M:%S %p",
    glibc_time_12_format => "%Z %I:%M:%S %p",
    glibc_time_format => "%Z %I:%M:%S ",
    language => "Arabic",
    month_format_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_format_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_stand_alone_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Arabic South Sudan",
    native_language => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",
    native_name => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+062c}\N{U+0646}\N{U+0648}\N{U+0628} \N{U+0627}\N{U+0644}\N{U+0633}\N{U+0648}\N{U+062f}\N{U+0627}\N{U+0646}",
    native_script => undef,
    native_territory => "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0628} \N{U+0627}\N{U+0644}\N{U+0633}\N{U+0648}\N{U+062f}\N{U+0627}\N{U+0646}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_format_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    script => undef,
    territory => "South Sudan",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ar-SY ]__
  {
    am_pm_abbreviated => [
      "\N{U+0635}",
      "\N{U+0645}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E\N{U+060c} d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMEd => "E\N{U+060c} d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd\N{U+200f}/MM",
      Md => "d/\N{U+200f}M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M\N{U+200f}/y",
      yMEd => "E\N{U+060c} d/\N{U+200f}M/\N{U+200f}y",
      yMM => "MM\N{U+200f}/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d\N{U+200f}/M\N{U+200f}/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ar-SY",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "dd\N{U+200f}/MM\N{U+200f}/y",
    date_format_short => "d\N{U+200f}/M\N{U+200f}/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_format_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_narrow => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+064a}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d %b, %Y",
    glibc_datetime_format => "%d %b, %Y %Z %I:%M:%S %p",
    glibc_time_12_format => "%Z %I:%M:%S %p",
    glibc_time_format => "%Z %I:%M:%S ",
    language => "Arabic",
    month_format_abbreviated => [
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0634}\N{U+0628}\N{U+0627}\N{U+0637}",
      "\N{U+0622}\N{U+0630}\N{U+0627}\N{U+0631}",
      "\N{U+0646}\N{U+064a}\N{U+0633}\N{U+0627}\N{U+0646}",
      "\N{U+0623}\N{U+064a}\N{U+0627}\N{U+0631}",
      "\N{U+062d}\N{U+0632}\N{U+064a}\N{U+0631}\N{U+0627}\N{U+0646}",
      "\N{U+062a}\N{U+0645}\N{U+0648}\N{U+0632}",
      "\N{U+0622}\N{U+0628}",
      "\N{U+0623}\N{U+064a}\N{U+0644}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}"
    ],
    month_format_narrow => [
      "\N{U+0643}",
      "\N{U+0634}",
      "\N{U+0622}",
      "\N{U+0646}",
      "\N{U+0623}",
      "\N{U+062d}",
      "\N{U+062a}",
      "\N{U+0622}",
      "\N{U+0623}",
      "\N{U+062a}",
      "\N{U+062a}",
      "\N{U+0643}"
    ],
    month_format_wide => [
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0634}\N{U+0628}\N{U+0627}\N{U+0637}",
      "\N{U+0622}\N{U+0630}\N{U+0627}\N{U+0631}",
      "\N{U+0646}\N{U+064a}\N{U+0633}\N{U+0627}\N{U+0646}",
      "\N{U+0623}\N{U+064a}\N{U+0627}\N{U+0631}",
      "\N{U+062d}\N{U+0632}\N{U+064a}\N{U+0631}\N{U+0627}\N{U+0646}",
      "\N{U+062a}\N{U+0645}\N{U+0648}\N{U+0632}",
      "\N{U+0622}\N{U+0628}",
      "\N{U+0623}\N{U+064a}\N{U+0644}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0634}\N{U+0628}\N{U+0627}\N{U+0637}",
      "\N{U+0622}\N{U+0630}\N{U+0627}\N{U+0631}",
      "\N{U+0646}\N{U+064a}\N{U+0633}\N{U+0627}\N{U+0646}",
      "\N{U+0623}\N{U+064a}\N{U+0627}\N{U+0631}",
      "\N{U+062d}\N{U+0632}\N{U+064a}\N{U+0631}\N{U+0627}\N{U+0646}",
      "\N{U+062a}\N{U+0645}\N{U+0648}\N{U+0632}",
      "\N{U+0622}\N{U+0628}",
      "\N{U+0623}\N{U+064a}\N{U+0644}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0643}",
      "\N{U+0634}",
      "\N{U+0622}",
      "\N{U+0646}",
      "\N{U+0623}",
      "\N{U+062d}",
      "\N{U+062a}",
      "\N{U+0622}",
      "\N{U+0623}",
      "\N{U+062a}",
      "\N{U+062a}",
      "\N{U+0643}"
    ],
    month_stand_alone_wide => [
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0634}\N{U+0628}\N{U+0627}\N{U+0637}",
      "\N{U+0622}\N{U+0630}\N{U+0627}\N{U+0631}",
      "\N{U+0646}\N{U+064a}\N{U+0633}\N{U+0627}\N{U+0646}",
      "\N{U+0623}\N{U+064a}\N{U+0627}\N{U+0631}",
      "\N{U+062d}\N{U+0632}\N{U+064a}\N{U+0631}\N{U+0627}\N{U+0646}",
      "\N{U+062a}\N{U+0645}\N{U+0648}\N{U+0632}",
      "\N{U+0622}\N{U+0628}",
      "\N{U+0623}\N{U+064a}\N{U+0644}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+062a}\N{U+0634}\N{U+0631}\N{U+064a}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0643}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+0646} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}"
    ],
    name => "Arabic Syria",
    native_language => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",
    native_name => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0633}\N{U+0648}\N{U+0631}\N{U+064a}\N{U+0627}",
    native_script => undef,
    native_territory => "\N{U+0633}\N{U+0648}\N{U+0631}\N{U+064a}\N{U+0627}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_format_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    script => undef,
    territory => "Syria",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ar-TD ]__
  {
    am_pm_abbreviated => [
      "\N{U+0635}",
      "\N{U+0645}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E\N{U+060c} d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMEd => "E\N{U+060c} d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd\N{U+200f}/MM",
      Md => "d/\N{U+200f}M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M\N{U+200f}/y",
      yMEd => "E\N{U+060c} d/\N{U+200f}M/\N{U+200f}y",
      yMM => "MM\N{U+200f}/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d\N{U+200f}/M\N{U+200f}/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ar-TD",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "dd\N{U+200f}/MM\N{U+200f}/y",
    date_format_short => "d\N{U+200f}/M\N{U+200f}/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_format_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_narrow => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+064a}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Arabic",
    month_format_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_format_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_stand_alone_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Arabic Chad",
    native_language => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",
    native_name => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+062a}\N{U+0634}\N{U+0627}\N{U+062f}",
    native_script => undef,
    native_territory => "\N{U+062a}\N{U+0634}\N{U+0627}\N{U+062f}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_format_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    script => undef,
    territory => "Chad",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ar-TN ]__
  {
    am_pm_abbreviated => [
      "\N{U+0635}",
      "\N{U+0645}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E\N{U+060c} d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMEd => "E\N{U+060c} d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd\N{U+200f}/MM",
      Md => "d/\N{U+200f}M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M\N{U+200f}/y",
      yMEd => "E\N{U+060c} d/\N{U+200f}M/\N{U+200f}y",
      yMM => "MM\N{U+200f}/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d\N{U+200f}/M\N{U+200f}/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ar-TN",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "dd\N{U+200f}/MM\N{U+200f}/y",
    date_format_short => "d\N{U+200f}/M\N{U+200f}/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_format_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_narrow => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+064a}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d %b, %Y",
    glibc_datetime_format => "%d %b, %Y %Z %I:%M:%S %p",
    glibc_time_12_format => "%Z %I:%M:%S %p",
    glibc_time_format => "%Z %I:%M:%S ",
    language => "Arabic",
    month_format_abbreviated => [
      "\N{U+062c}\N{U+0627}\N{U+0646}\N{U+0641}\N{U+064a}",
      "\N{U+0641}\N{U+064a}\N{U+0641}\N{U+0631}\N{U+064a}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0641}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}",
      "\N{U+062c}\N{U+0648}\N{U+0627}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+064a}\N{U+0644}\N{U+064a}\N{U+0629}",
      "\N{U+0623}\N{U+0648}\N{U+062a}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      "\N{U+062c}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0645}",
      "\N{U+062c}",
      "\N{U+062c}",
      "\N{U+0623}",
      "\N{U+0633}",
      "\N{U+0623}",
      "\N{U+0646}",
      "\N{U+062f}"
    ],
    month_format_wide => [
      "\N{U+062c}\N{U+0627}\N{U+0646}\N{U+0641}\N{U+064a}",
      "\N{U+0641}\N{U+064a}\N{U+0641}\N{U+0631}\N{U+064a}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0641}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}",
      "\N{U+062c}\N{U+0648}\N{U+0627}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+064a}\N{U+0644}\N{U+064a}\N{U+0629}",
      "\N{U+0623}\N{U+0648}\N{U+062a}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+062c}\N{U+0627}\N{U+0646}\N{U+0641}\N{U+064a}",
      "\N{U+0641}\N{U+064a}\N{U+0641}\N{U+0631}\N{U+064a}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0641}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}",
      "\N{U+062c}\N{U+0648}\N{U+0627}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+064a}\N{U+0644}\N{U+064a}\N{U+0629}",
      "\N{U+0623}\N{U+0648}\N{U+062a}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "\N{U+062c}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0645}",
      "\N{U+062c}",
      "\N{U+062c}",
      "\N{U+0623}",
      "\N{U+0633}",
      "\N{U+0623}",
      "\N{U+0646}",
      "\N{U+062f}"
    ],
    month_stand_alone_wide => [
      "\N{U+062c}\N{U+0627}\N{U+0646}\N{U+0641}\N{U+064a}",
      "\N{U+0641}\N{U+064a}\N{U+0641}\N{U+0631}\N{U+064a}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0641}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}",
      "\N{U+062c}\N{U+0648}\N{U+0627}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+064a}\N{U+0644}\N{U+064a}\N{U+0629}",
      "\N{U+0623}\N{U+0648}\N{U+062a}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Arabic Tunisia",
    native_language => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",
    native_name => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+062a}\N{U+0648}\N{U+0646}\N{U+0633}",
    native_script => undef,
    native_territory => "\N{U+062a}\N{U+0648}\N{U+0646}\N{U+0633}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_format_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    script => undef,
    territory => "Tunisia",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ar-YE ]__
  {
    am_pm_abbreviated => [
      "\N{U+0635}",
      "\N{U+0645}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E\N{U+060c} d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMEd => "E\N{U+060c} d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd\N{U+200f}/MM",
      Md => "d/\N{U+200f}M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M\N{U+200f}/y",
      yMEd => "E\N{U+060c} d/\N{U+200f}M/\N{U+200f}y",
      yMM => "MM\N{U+200f}/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d\N{U+200f}/M\N{U+200f}/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ar-YE",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "dd\N{U+200f}/MM\N{U+200f}/y",
    date_format_short => "d\N{U+200f}/M\N{U+200f}/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_format_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0646}",
      "\N{U+062b}",
      "\N{U+0631}",
      "\N{U+062e}",
      "\N{U+062c}",
      "\N{U+0633}",
      "\N{U+062d}"
    ],
    day_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0646}\N{U+064a}\N{U+0646}",
      "\N{U+0627}\N{U+0644}\N{U+062b}\N{U+0644}\N{U+0627}\N{U+062b}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+0631}\N{U+0628}\N{U+0639}\N{U+0627}\N{U+0621}",
      "\N{U+0627}\N{U+0644}\N{U+062e}\N{U+0645}\N{U+064a}\N{U+0633}",
      "\N{U+0627}\N{U+0644}\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0629}",
      "\N{U+0627}\N{U+0644}\N{U+0633}\N{U+0628}\N{U+062a}",
      "\N{U+0627}\N{U+0644}\N{U+0623}\N{U+062d}\N{U+062f}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_narrow => [
      "\N{U+0642}.\N{U+0645}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0644}\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+064a}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+064a}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d %b, %Y",
    glibc_datetime_format => "%d %b, %Y %Z %I:%M:%S %p",
    glibc_time_12_format => "%Z %I:%M:%S %p",
    glibc_time_format => "%Z %I:%M:%S ",
    language => "Arabic",
    month_format_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_format_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "\N{U+064a}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0623}",
      "\N{U+0648}",
      "\N{U+0646}",
      "\N{U+0644}",
      "\N{U+063a}",
      "\N{U+0633}",
      "\N{U+0643}",
      "\N{U+0628}",
      "\N{U+062f}"
    ],
    month_stand_alone_wide => [
      "\N{U+064a}\N{U+0646}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0627}\N{U+064a}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0623}\N{U+0628}\N{U+0631}\N{U+064a}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0646}\N{U+064a}\N{U+0648}",
      "\N{U+064a}\N{U+0648}\N{U+0644}\N{U+064a}\N{U+0648}",
      "\N{U+0623}\N{U+063a}\N{U+0633}\N{U+0637}\N{U+0633}",
      "\N{U+0633}\N{U+0628}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0623}\N{U+0643}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0641}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+064a}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Arabic Yemen",
    native_language => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629}",
    native_name => "\N{U+0627}\N{U+0644}\N{U+0639}\N{U+0631}\N{U+0628}\N{U+064a}\N{U+0629} \N{U+0627}\N{U+0644}\N{U+064a}\N{U+0645}\N{U+0646}",
    native_script => undef,
    native_territory => "\N{U+0627}\N{U+0644}\N{U+064a}\N{U+0645}\N{U+0646}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_format_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_format_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0661}",
      "\N{U+0662}",
      "\N{U+0663}",
      "\N{U+0664}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0623}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0646}\N{U+064a}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+062b}\N{U+0627}\N{U+0644}\N{U+062b}",
      "\N{U+0627}\N{U+0644}\N{U+0631}\N{U+0628}\N{U+0639} \N{U+0627}\N{U+0644}\N{U+0631}\N{U+0627}\N{U+0628}\N{U+0639}"
    ],
    script => undef,
    territory => "Yemen",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ as ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "as",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+09b8}\N{U+09cb}\N{U+09ae}",
      "\N{U+09ae}\N{U+0999}\N{U+09cd}\N{U+0997}\N{U+09b2}",
      "\N{U+09ac}\N{U+09c1}\N{U+09a7}",
      "\N{U+09ac}\N{U+09c3}\N{U+09b9}\N{U+09b7}\N{U+09cd}\N{U+09aa}\N{U+09a4}\N{U+09bf}",
      "\N{U+09b6}\N{U+09c1}\N{U+0995}\N{U+09cd}\N{U+09f0}",
      "\N{U+09b6}\N{U+09a8}\N{U+09bf}",
      "\N{U+09f0}\N{U+09ac}\N{U+09bf}"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "\N{U+09b8}\N{U+09cb}\N{U+09ae}\N{U+09ac}\N{U+09be}\N{U+09f0}",
      "\N{U+09ae}\N{U+0999}\N{U+09cd}\N{U+0997}\N{U+09b2}\N{U+09ac}\N{U+09be}\N{U+09f0}",
      "\N{U+09ac}\N{U+09c1}\N{U+09a7}\N{U+09ac}\N{U+09be}\N{U+09f0}",
      "\N{U+09ac}\N{U+09c3}\N{U+09b9}\N{U+09b7}\N{U+09cd}\N{U+09aa}\N{U+09a4}\N{U+09bf}\N{U+09ac}\N{U+09be}\N{U+09f0}",
      "\N{U+09b6}\N{U+09c1}\N{U+0995}\N{U+09cd}\N{U+09f0}\N{U+09ac}\N{U+09be}\N{U+09f0}",
      "\N{U+09b6}\N{U+09a8}\N{U+09bf}\N{U+09ac}\N{U+09be}\N{U+09f0}",
      "\N{U+09a6}\N{U+09c7}\N{U+0993}\N{U+09ac}\N{U+09be}\N{U+09f0}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+09b8}\N{U+09cb}\N{U+09ae}",
      "\N{U+09ae}\N{U+0999}\N{U+09cd}\N{U+0997}\N{U+09b2}",
      "\N{U+09ac}\N{U+09c1}\N{U+09a7}",
      "\N{U+09ac}\N{U+09c3}\N{U+09b9}\N{U+09b7}\N{U+09cd}\N{U+09aa}\N{U+09a4}\N{U+09bf}",
      "\N{U+09b6}\N{U+09c1}\N{U+0995}\N{U+09cd}\N{U+09f0}",
      "\N{U+09b6}\N{U+09a8}\N{U+09bf}",
      "\N{U+09f0}\N{U+09ac}\N{U+09bf}"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "\N{U+09b8}\N{U+09cb}\N{U+09ae}\N{U+09ac}\N{U+09be}\N{U+09f0}",
      "\N{U+09ae}\N{U+0999}\N{U+09cd}\N{U+0997}\N{U+09b2}\N{U+09ac}\N{U+09be}\N{U+09f0}",
      "\N{U+09ac}\N{U+09c1}\N{U+09a7}\N{U+09ac}\N{U+09be}\N{U+09f0}",
      "\N{U+09ac}\N{U+09c3}\N{U+09b9}\N{U+09b7}\N{U+09cd}\N{U+09aa}\N{U+09a4}\N{U+09bf}\N{U+09ac}\N{U+09be}\N{U+09f0}",
      "\N{U+09b6}\N{U+09c1}\N{U+0995}\N{U+09cd}\N{U+09f0}\N{U+09ac}\N{U+09be}\N{U+09f0}",
      "\N{U+09b6}\N{U+09a8}\N{U+09bf}\N{U+09ac}\N{U+09be}\N{U+09f0}",
      "\N{U+09a6}\N{U+09c7}\N{U+0993}\N{U+09ac}\N{U+09be}\N{U+09f0}"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Assamese",
    month_format_abbreviated => [
      "\N{U+099c}\N{U+09be}\N{U+09a8}\N{U+09c1}",
      "\N{U+09ab}\N{U+09c7}\N{U+09ac}\N{U+09cd}\N{U+09f0}\N{U+09c1}",
      "\N{U+09ae}\N{U+09be}\N{U+09f0}\N{U+09cd}\N{U+099a}",
      "\N{U+098f}\N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09bf}\N{U+09b2}",
      "\N{U+09ae}\N{U+09c7}",
      "\N{U+099c}\N{U+09c1}\N{U+09a8}",
      "\N{U+099c}\N{U+09c1}\N{U+09b2}\N{U+09be}\N{U+0987}",
      "\N{U+0986}\N{U+0997}",
      "\N{U+09b8}\N{U+09c7}\N{U+09aa}\N{U+09cd}\N{U+099f}",
      "\N{U+0985}\N{U+0995}\N{U+09cd}\N{U+099f}\N{U+09cb}",
      "\N{U+09a8}\N{U+09ad}\N{U+09c7}",
      "\N{U+09a1}\N{U+09bf}\N{U+09b8}\N{U+09c7}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+099c}\N{U+09be}\N{U+09a8}\N{U+09c1}\N{U+09f1}\N{U+09be}\N{U+09f0}\N{U+09c0}",
      "\N{U+09ab}\N{U+09c7}\N{U+09ac}\N{U+09cd}\N{U+09f0}\N{U+09c1}\N{U+09f1}\N{U+09be}\N{U+09f0}\N{U+09c0}",
      "\N{U+09ae}\N{U+09be}\N{U+09f0}\N{U+09cd}\N{U+099a}",
      "\N{U+098f}\N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09bf}\N{U+09b2}",
      "\N{U+09ae}\N{U+09c7}",
      "\N{U+099c}\N{U+09c1}\N{U+09a8}",
      "\N{U+099c}\N{U+09c1}\N{U+09b2}\N{U+09be}\N{U+0987}",
      "\N{U+0986}\N{U+0997}\N{U+09b7}\N{U+09cd}\N{U+099f}",
      "\N{U+099b}\N{U+09c7}\N{U+09aa}\N{U+09cd}\N{U+09a4}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09f0}",
      "\N{U+0985}\N{U+0995}\N{U+09cd}\N{U+099f}\N{U+09cb}\N{U+09ac}\N{U+09f0}",
      "\N{U+09a8}\N{U+09f1}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09f0}",
      "\N{U+09a1}\N{U+09bf}\N{U+099a}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09f0}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+099c}\N{U+09be}\N{U+09a8}\N{U+09c1}",
      "\N{U+09ab}\N{U+09c7}\N{U+09ac}\N{U+09cd}\N{U+09f0}\N{U+09c1}",
      "\N{U+09ae}\N{U+09be}\N{U+09f0}\N{U+09cd}\N{U+099a}",
      "\N{U+098f}\N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09bf}\N{U+09b2}",
      "\N{U+09ae}\N{U+09c7}",
      "\N{U+099c}\N{U+09c1}\N{U+09a8}",
      "\N{U+099c}\N{U+09c1}\N{U+09b2}\N{U+09be}\N{U+0987}",
      "\N{U+0986}\N{U+0997}",
      "\N{U+09b8}\N{U+09c7}\N{U+09aa}\N{U+09cd}\N{U+099f}",
      "\N{U+0985}\N{U+0995}\N{U+09cd}\N{U+099f}\N{U+09cb}",
      "\N{U+09a8}\N{U+09ad}\N{U+09c7}",
      "\N{U+09a1}\N{U+09bf}\N{U+09b8}\N{U+09c7}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+099c}\N{U+09be}\N{U+09a8}\N{U+09c1}\N{U+09f1}\N{U+09be}\N{U+09f0}\N{U+09c0}",
      "\N{U+09ab}\N{U+09c7}\N{U+09ac}\N{U+09cd}\N{U+09f0}\N{U+09c1}\N{U+09f1}\N{U+09be}\N{U+09f0}\N{U+09c0}",
      "\N{U+09ae}\N{U+09be}\N{U+09f0}\N{U+09cd}\N{U+099a}",
      "\N{U+098f}\N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09bf}\N{U+09b2}",
      "\N{U+09ae}\N{U+09c7}",
      "\N{U+099c}\N{U+09c1}\N{U+09a8}",
      "\N{U+099c}\N{U+09c1}\N{U+09b2}\N{U+09be}\N{U+0987}",
      "\N{U+0986}\N{U+0997}\N{U+09b7}\N{U+09cd}\N{U+099f}",
      "\N{U+099b}\N{U+09c7}\N{U+09aa}\N{U+09cd}\N{U+09a4}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09f0}",
      "\N{U+0985}\N{U+0995}\N{U+09cd}\N{U+099f}\N{U+09cb}\N{U+09ac}\N{U+09f0}",
      "\N{U+09a8}\N{U+09f1}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09f0}",
      "\N{U+09a1}\N{U+09bf}\N{U+099a}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09f0}"
    ],
    name => "Assamese",
    native_language => "\N{U+0985}\N{U+09b8}\N{U+09ae}\N{U+09c0}\N{U+09af}\N{U+09bc}\N{U+09be}",
    native_name => "\N{U+0985}\N{U+09b8}\N{U+09ae}\N{U+09c0}\N{U+09af}\N{U+09bc}\N{U+09be}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09a5}\N{U+09ae} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}",
      "\N{U+09a6}\N{U+09cd}\N{U+09ac}\N{U+09bf}\N{U+09a4}\N{U+09c0}\N{U+09af}\N{U+09bc} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}",
      "\N{U+09a4}\N{U+09c3}\N{U+09a4}\N{U+09c0}\N{U+09af}\N{U+09bc} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}",
      "\N{U+099a}\N{U+09a4}\N{U+09c1}\N{U+09f0}\N{U+09cd}\N{U+09a5} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09a5}\N{U+09ae} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}",
      "\N{U+09a6}\N{U+09cd}\N{U+09ac}\N{U+09bf}\N{U+09a4}\N{U+09c0}\N{U+09af}\N{U+09bc} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}",
      "\N{U+09a4}\N{U+09c3}\N{U+09a4}\N{U+09c0}\N{U+09af}\N{U+09bc} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}",
      "\N{U+099a}\N{U+09a4}\N{U+09c1}\N{U+09f0}\N{U+09cd}\N{U+09a5} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09a5}\N{U+09ae} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}",
      "\N{U+09a6}\N{U+09cd}\N{U+09ac}\N{U+09bf}\N{U+09a4}\N{U+09c0}\N{U+09af}\N{U+09bc} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}",
      "\N{U+09a4}\N{U+09c3}\N{U+09a4}\N{U+09c0}\N{U+09af}\N{U+09bc} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}",
      "\N{U+099a}\N{U+09a4}\N{U+09c1}\N{U+09f0}\N{U+09cd}\N{U+09a5} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09a5}\N{U+09ae} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}",
      "\N{U+09a6}\N{U+09cd}\N{U+09ac}\N{U+09bf}\N{U+09a4}\N{U+09c0}\N{U+09af}\N{U+09bc} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}",
      "\N{U+09a4}\N{U+09c3}\N{U+09a4}\N{U+09c0}\N{U+09af}\N{U+09bc} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}",
      "\N{U+099a}\N{U+09a4}\N{U+09c1}\N{U+09f0}\N{U+09cd}\N{U+09a5} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ as-IN ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "as-IN",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+09b8}\N{U+09cb}\N{U+09ae}",
      "\N{U+09ae}\N{U+0999}\N{U+09cd}\N{U+0997}\N{U+09b2}",
      "\N{U+09ac}\N{U+09c1}\N{U+09a7}",
      "\N{U+09ac}\N{U+09c3}\N{U+09b9}\N{U+09b7}\N{U+09cd}\N{U+09aa}\N{U+09a4}\N{U+09bf}",
      "\N{U+09b6}\N{U+09c1}\N{U+0995}\N{U+09cd}\N{U+09f0}",
      "\N{U+09b6}\N{U+09a8}\N{U+09bf}",
      "\N{U+09f0}\N{U+09ac}\N{U+09bf}"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "\N{U+09b8}\N{U+09cb}\N{U+09ae}\N{U+09ac}\N{U+09be}\N{U+09f0}",
      "\N{U+09ae}\N{U+0999}\N{U+09cd}\N{U+0997}\N{U+09b2}\N{U+09ac}\N{U+09be}\N{U+09f0}",
      "\N{U+09ac}\N{U+09c1}\N{U+09a7}\N{U+09ac}\N{U+09be}\N{U+09f0}",
      "\N{U+09ac}\N{U+09c3}\N{U+09b9}\N{U+09b7}\N{U+09cd}\N{U+09aa}\N{U+09a4}\N{U+09bf}\N{U+09ac}\N{U+09be}\N{U+09f0}",
      "\N{U+09b6}\N{U+09c1}\N{U+0995}\N{U+09cd}\N{U+09f0}\N{U+09ac}\N{U+09be}\N{U+09f0}",
      "\N{U+09b6}\N{U+09a8}\N{U+09bf}\N{U+09ac}\N{U+09be}\N{U+09f0}",
      "\N{U+09a6}\N{U+09c7}\N{U+0993}\N{U+09ac}\N{U+09be}\N{U+09f0}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+09b8}\N{U+09cb}\N{U+09ae}",
      "\N{U+09ae}\N{U+0999}\N{U+09cd}\N{U+0997}\N{U+09b2}",
      "\N{U+09ac}\N{U+09c1}\N{U+09a7}",
      "\N{U+09ac}\N{U+09c3}\N{U+09b9}\N{U+09b7}\N{U+09cd}\N{U+09aa}\N{U+09a4}\N{U+09bf}",
      "\N{U+09b6}\N{U+09c1}\N{U+0995}\N{U+09cd}\N{U+09f0}",
      "\N{U+09b6}\N{U+09a8}\N{U+09bf}",
      "\N{U+09f0}\N{U+09ac}\N{U+09bf}"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "\N{U+09b8}\N{U+09cb}\N{U+09ae}\N{U+09ac}\N{U+09be}\N{U+09f0}",
      "\N{U+09ae}\N{U+0999}\N{U+09cd}\N{U+0997}\N{U+09b2}\N{U+09ac}\N{U+09be}\N{U+09f0}",
      "\N{U+09ac}\N{U+09c1}\N{U+09a7}\N{U+09ac}\N{U+09be}\N{U+09f0}",
      "\N{U+09ac}\N{U+09c3}\N{U+09b9}\N{U+09b7}\N{U+09cd}\N{U+09aa}\N{U+09a4}\N{U+09bf}\N{U+09ac}\N{U+09be}\N{U+09f0}",
      "\N{U+09b6}\N{U+09c1}\N{U+0995}\N{U+09cd}\N{U+09f0}\N{U+09ac}\N{U+09be}\N{U+09f0}",
      "\N{U+09b6}\N{U+09a8}\N{U+09bf}\N{U+09ac}\N{U+09be}\N{U+09f0}",
      "\N{U+09a6}\N{U+09c7}\N{U+0993}\N{U+09ac}\N{U+09be}\N{U+09f0}"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%e-%m-%Y",
    glibc_datetime_format => "%e %B, %Y %I.%M.%S %p %Z",
    glibc_time_12_format => "%I.%M.%S %p",
    glibc_time_format => "%I.%M.%S %p",
    language => "Assamese",
    month_format_abbreviated => [
      "\N{U+099c}\N{U+09be}\N{U+09a8}\N{U+09c1}",
      "\N{U+09ab}\N{U+09c7}\N{U+09ac}\N{U+09cd}\N{U+09f0}\N{U+09c1}",
      "\N{U+09ae}\N{U+09be}\N{U+09f0}\N{U+09cd}\N{U+099a}",
      "\N{U+098f}\N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09bf}\N{U+09b2}",
      "\N{U+09ae}\N{U+09c7}",
      "\N{U+099c}\N{U+09c1}\N{U+09a8}",
      "\N{U+099c}\N{U+09c1}\N{U+09b2}\N{U+09be}\N{U+0987}",
      "\N{U+0986}\N{U+0997}",
      "\N{U+09b8}\N{U+09c7}\N{U+09aa}\N{U+09cd}\N{U+099f}",
      "\N{U+0985}\N{U+0995}\N{U+09cd}\N{U+099f}\N{U+09cb}",
      "\N{U+09a8}\N{U+09ad}\N{U+09c7}",
      "\N{U+09a1}\N{U+09bf}\N{U+09b8}\N{U+09c7}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+099c}\N{U+09be}\N{U+09a8}\N{U+09c1}\N{U+09f1}\N{U+09be}\N{U+09f0}\N{U+09c0}",
      "\N{U+09ab}\N{U+09c7}\N{U+09ac}\N{U+09cd}\N{U+09f0}\N{U+09c1}\N{U+09f1}\N{U+09be}\N{U+09f0}\N{U+09c0}",
      "\N{U+09ae}\N{U+09be}\N{U+09f0}\N{U+09cd}\N{U+099a}",
      "\N{U+098f}\N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09bf}\N{U+09b2}",
      "\N{U+09ae}\N{U+09c7}",
      "\N{U+099c}\N{U+09c1}\N{U+09a8}",
      "\N{U+099c}\N{U+09c1}\N{U+09b2}\N{U+09be}\N{U+0987}",
      "\N{U+0986}\N{U+0997}\N{U+09b7}\N{U+09cd}\N{U+099f}",
      "\N{U+099b}\N{U+09c7}\N{U+09aa}\N{U+09cd}\N{U+09a4}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09f0}",
      "\N{U+0985}\N{U+0995}\N{U+09cd}\N{U+099f}\N{U+09cb}\N{U+09ac}\N{U+09f0}",
      "\N{U+09a8}\N{U+09f1}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09f0}",
      "\N{U+09a1}\N{U+09bf}\N{U+099a}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09f0}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+099c}\N{U+09be}\N{U+09a8}\N{U+09c1}",
      "\N{U+09ab}\N{U+09c7}\N{U+09ac}\N{U+09cd}\N{U+09f0}\N{U+09c1}",
      "\N{U+09ae}\N{U+09be}\N{U+09f0}\N{U+09cd}\N{U+099a}",
      "\N{U+098f}\N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09bf}\N{U+09b2}",
      "\N{U+09ae}\N{U+09c7}",
      "\N{U+099c}\N{U+09c1}\N{U+09a8}",
      "\N{U+099c}\N{U+09c1}\N{U+09b2}\N{U+09be}\N{U+0987}",
      "\N{U+0986}\N{U+0997}",
      "\N{U+09b8}\N{U+09c7}\N{U+09aa}\N{U+09cd}\N{U+099f}",
      "\N{U+0985}\N{U+0995}\N{U+09cd}\N{U+099f}\N{U+09cb}",
      "\N{U+09a8}\N{U+09ad}\N{U+09c7}",
      "\N{U+09a1}\N{U+09bf}\N{U+09b8}\N{U+09c7}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+099c}\N{U+09be}\N{U+09a8}\N{U+09c1}\N{U+09f1}\N{U+09be}\N{U+09f0}\N{U+09c0}",
      "\N{U+09ab}\N{U+09c7}\N{U+09ac}\N{U+09cd}\N{U+09f0}\N{U+09c1}\N{U+09f1}\N{U+09be}\N{U+09f0}\N{U+09c0}",
      "\N{U+09ae}\N{U+09be}\N{U+09f0}\N{U+09cd}\N{U+099a}",
      "\N{U+098f}\N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09bf}\N{U+09b2}",
      "\N{U+09ae}\N{U+09c7}",
      "\N{U+099c}\N{U+09c1}\N{U+09a8}",
      "\N{U+099c}\N{U+09c1}\N{U+09b2}\N{U+09be}\N{U+0987}",
      "\N{U+0986}\N{U+0997}\N{U+09b7}\N{U+09cd}\N{U+099f}",
      "\N{U+099b}\N{U+09c7}\N{U+09aa}\N{U+09cd}\N{U+09a4}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09f0}",
      "\N{U+0985}\N{U+0995}\N{U+09cd}\N{U+099f}\N{U+09cb}\N{U+09ac}\N{U+09f0}",
      "\N{U+09a8}\N{U+09f1}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09f0}",
      "\N{U+09a1}\N{U+09bf}\N{U+099a}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09f0}"
    ],
    name => "Assamese India",
    native_language => "\N{U+0985}\N{U+09b8}\N{U+09ae}\N{U+09c0}\N{U+09af}\N{U+09bc}\N{U+09be}",
    native_name => "\N{U+0985}\N{U+09b8}\N{U+09ae}\N{U+09c0}\N{U+09af}\N{U+09bc}\N{U+09be} \N{U+09ad}\N{U+09be}\N{U+09f0}\N{U+09a4}",
    native_script => undef,
    native_territory => "\N{U+09ad}\N{U+09be}\N{U+09f0}\N{U+09a4}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09a5}\N{U+09ae} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}",
      "\N{U+09a6}\N{U+09cd}\N{U+09ac}\N{U+09bf}\N{U+09a4}\N{U+09c0}\N{U+09af}\N{U+09bc} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}",
      "\N{U+09a4}\N{U+09c3}\N{U+09a4}\N{U+09c0}\N{U+09af}\N{U+09bc} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}",
      "\N{U+099a}\N{U+09a4}\N{U+09c1}\N{U+09f0}\N{U+09cd}\N{U+09a5} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09a5}\N{U+09ae} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}",
      "\N{U+09a6}\N{U+09cd}\N{U+09ac}\N{U+09bf}\N{U+09a4}\N{U+09c0}\N{U+09af}\N{U+09bc} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}",
      "\N{U+09a4}\N{U+09c3}\N{U+09a4}\N{U+09c0}\N{U+09af}\N{U+09bc} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}",
      "\N{U+099a}\N{U+09a4}\N{U+09c1}\N{U+09f0}\N{U+09cd}\N{U+09a5} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09a5}\N{U+09ae} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}",
      "\N{U+09a6}\N{U+09cd}\N{U+09ac}\N{U+09bf}\N{U+09a4}\N{U+09c0}\N{U+09af}\N{U+09bc} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}",
      "\N{U+09a4}\N{U+09c3}\N{U+09a4}\N{U+09c0}\N{U+09af}\N{U+09bc} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}",
      "\N{U+099a}\N{U+09a4}\N{U+09c1}\N{U+09f0}\N{U+09cd}\N{U+09a5} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09a5}\N{U+09ae} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}",
      "\N{U+09a6}\N{U+09cd}\N{U+09ac}\N{U+09bf}\N{U+09a4}\N{U+09c0}\N{U+09af}\N{U+09bc} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}",
      "\N{U+09a4}\N{U+09c3}\N{U+09a4}\N{U+09c0}\N{U+09af}\N{U+09bc} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}",
      "\N{U+099a}\N{U+09a4}\N{U+09c1}\N{U+09f0}\N{U+09cd}\N{U+09a5} \N{U+09aa}\N{U+09cd}\N{U+09f0}\N{U+09b9}\N{U+09f0}"
    ],
    script => undef,
    territory => "India",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ asa ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "asa",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Jtt",
      "Jnn",
      "Jtn",
      "Alh",
      "Ijm",
      "Jmo",
      "Jpi"
    ],
    day_format_narrow => [
      "J",
      "J",
      "J",
      "A",
      "I",
      "J",
      "J"
    ],
    day_format_wide => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapili"
    ],
    day_stand_alone_abbreviated => [
      "Jtt",
      "Jnn",
      "Jtn",
      "Alh",
      "Ijm",
      "Jmo",
      "Jpi"
    ],
    day_stand_alone_narrow => [
      "J",
      "J",
      "J",
      "A",
      "I",
      "J",
      "J"
    ],
    day_stand_alone_wide => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapili"
    ],
    era_abbreviated => [
      "KM",
      "BM"
    ],
    era_narrow => [
      "KM",
      "BM"
    ],
    era_wide => [
      "Kabla yakwe Yethu",
      "Baada yakwe Yethu"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Asu",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Aprili",
      "Mei",
      "Juni",
      "Julai",
      "Agosti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Aprili",
      "Mei",
      "Juni",
      "Julai",
      "Agosti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    name => "Asu",
    native_language => "Kipare",
    native_name => "Kipare",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Robo 1",
      "Robo 2",
      "Robo 3",
      "Robo 4"
    ],
    quarter_stand_alone_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Robo 1",
      "Robo 2",
      "Robo 3",
      "Robo 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ asa-TZ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "asa-TZ",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Jtt",
      "Jnn",
      "Jtn",
      "Alh",
      "Ijm",
      "Jmo",
      "Jpi"
    ],
    day_format_narrow => [
      "J",
      "J",
      "J",
      "A",
      "I",
      "J",
      "J"
    ],
    day_format_wide => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapili"
    ],
    day_stand_alone_abbreviated => [
      "Jtt",
      "Jnn",
      "Jtn",
      "Alh",
      "Ijm",
      "Jmo",
      "Jpi"
    ],
    day_stand_alone_narrow => [
      "J",
      "J",
      "J",
      "A",
      "I",
      "J",
      "J"
    ],
    day_stand_alone_wide => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapili"
    ],
    era_abbreviated => [
      "KM",
      "BM"
    ],
    era_narrow => [
      "KM",
      "BM"
    ],
    era_wide => [
      "Kabla yakwe Yethu",
      "Baada yakwe Yethu"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Asu",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Aprili",
      "Mei",
      "Juni",
      "Julai",
      "Agosti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Aprili",
      "Mei",
      "Juni",
      "Julai",
      "Agosti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    name => "Asu Tanzania",
    native_language => "Kipare",
    native_name => "Kipare Tadhania",
    native_script => undef,
    native_territory => "Tadhania",
    native_variant => undef,
    quarter_format_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Robo 1",
      "Robo 2",
      "Robo 3",
      "Robo 4"
    ],
    quarter_stand_alone_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Robo 1",
      "Robo 2",
      "Robo 3",
      "Robo 4"
    ],
    script => undef,
    territory => "Tanzania",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ast ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "LLLL 'de' y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ast",
    date_format_full => "EEEE, d MMMM 'de' y",
    date_format_long => "d MMMM 'de' y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} 'a' 'les' {0}",
    datetime_format_long => "{1} 'a' 'les' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "llu",
      "mar",
      "mi\N{U+00e9}",
      "xue",
      "vie",
      "s\N{U+00e1}b",
      "dom"
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "X",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "llunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "xueves",
      "vienres",
      "s\N{U+00e1}badu",
      "domingu"
    ],
    day_stand_alone_abbreviated => [
      "llu",
      "mar",
      "mi\N{U+00e9}",
      "xue",
      "vie",
      "s\N{U+00e1}b",
      "dom"
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "X",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "llunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "xueves",
      "vienres",
      "s\N{U+00e1}badu",
      "domingu"
    ],
    era_abbreviated => [
      "a.C.",
      "d.C."
    ],
    era_narrow => [
      "aC",
      "dC"
    ],
    era_wide => [
      "a.C.",
      "despu\N{U+00e9}s de Cristu"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Asturian",
    month_format_abbreviated => [
      "xin",
      "feb",
      "mar",
      "abr",
      "may",
      "xun",
      "xnt",
      "ago",
      "set",
      "och",
      "pay",
      "avi"
    ],
    month_format_narrow => [
      "X",
      "F",
      "M",
      "A",
      "M",
      "X",
      "X",
      "A",
      "S",
      "O",
      "P",
      "A"
    ],
    month_format_wide => [
      "de xineru",
      "de febreru",
      "de marzu",
      "d\N{U+2019}abril",
      "de mayu",
      "de xunu",
      "de xunetu",
      "d\N{U+2019}agostu",
      "de setiembre",
      "d\N{U+2019}ochobre",
      "de payares",
      "d\N{U+2019}avientu"
    ],
    month_stand_alone_abbreviated => [
      "Xin",
      "Feb",
      "Mar",
      "Abr",
      "May",
      "Xun",
      "Xnt",
      "Ago",
      "Set",
      "Och",
      "Pay",
      "Avi"
    ],
    month_stand_alone_narrow => [
      "X",
      "F",
      "M",
      "A",
      "M",
      "X",
      "X",
      "A",
      "S",
      "O",
      "P",
      "A"
    ],
    month_stand_alone_wide => [
      "xineru",
      "febreru",
      "marzu",
      "abril",
      "mayu",
      "xunu",
      "xunetu",
      "agostu",
      "setiembre",
      "ochobre",
      "payares",
      "avientu"
    ],
    name => "Asturian",
    native_language => "asturianu",
    native_name => "asturianu",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "1T",
      "2T",
      "3T",
      "4T"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2u trimestre",
      "3er trimestre",
      "4u trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "1T",
      "2T",
      "3T",
      "4T"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2u trimestre",
      "3er trimestre",
      "4u trimestre"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ast-ES ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "LLLL 'de' y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ast-ES",
    date_format_full => "EEEE, d MMMM 'de' y",
    date_format_long => "d MMMM 'de' y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} 'a' 'les' {0}",
    datetime_format_long => "{1} 'a' 'les' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "llu",
      "mar",
      "mi\N{U+00e9}",
      "xue",
      "vie",
      "s\N{U+00e1}b",
      "dom"
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "X",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "llunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "xueves",
      "vienres",
      "s\N{U+00e1}badu",
      "domingu"
    ],
    day_stand_alone_abbreviated => [
      "llu",
      "mar",
      "mi\N{U+00e9}",
      "xue",
      "vie",
      "s\N{U+00e1}b",
      "dom"
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "X",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "llunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "xueves",
      "vienres",
      "s\N{U+00e1}badu",
      "domingu"
    ],
    era_abbreviated => [
      "a.C.",
      "d.C."
    ],
    era_narrow => [
      "aC",
      "dC"
    ],
    era_wide => [
      "a.C.",
      "despu\N{U+00e9}s de Cristu"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Asturian",
    month_format_abbreviated => [
      "xin",
      "feb",
      "mar",
      "abr",
      "may",
      "xun",
      "xnt",
      "ago",
      "set",
      "och",
      "pay",
      "avi"
    ],
    month_format_narrow => [
      "X",
      "F",
      "M",
      "A",
      "M",
      "X",
      "X",
      "A",
      "S",
      "O",
      "P",
      "A"
    ],
    month_format_wide => [
      "de xineru",
      "de febreru",
      "de marzu",
      "d\N{U+2019}abril",
      "de mayu",
      "de xunu",
      "de xunetu",
      "d\N{U+2019}agostu",
      "de setiembre",
      "d\N{U+2019}ochobre",
      "de payares",
      "d\N{U+2019}avientu"
    ],
    month_stand_alone_abbreviated => [
      "Xin",
      "Feb",
      "Mar",
      "Abr",
      "May",
      "Xun",
      "Xnt",
      "Ago",
      "Set",
      "Och",
      "Pay",
      "Avi"
    ],
    month_stand_alone_narrow => [
      "X",
      "F",
      "M",
      "A",
      "M",
      "X",
      "X",
      "A",
      "S",
      "O",
      "P",
      "A"
    ],
    month_stand_alone_wide => [
      "xineru",
      "febreru",
      "marzu",
      "abril",
      "mayu",
      "xunu",
      "xunetu",
      "agostu",
      "setiembre",
      "ochobre",
      "payares",
      "avientu"
    ],
    name => "Asturian Spain",
    native_language => "asturianu",
    native_name => "asturianu Espa\N{U+00f1}a",
    native_script => undef,
    native_territory => "Espa\N{U+00f1}a",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1T",
      "2T",
      "3T",
      "4T"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2u trimestre",
      "3er trimestre",
      "4u trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "1T",
      "2T",
      "3T",
      "4T"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2u trimestre",
      "3er trimestre",
      "4u trimestre"
    ],
    script => undef,
    territory => "Spain",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ az ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G MMM y",
      GyMMMEd => "G d MMM y, E",
      GyMMMd => "G d MMM y",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "dd.MM, E",
      MMM => "LLL",
      MMMEd => "d MMM, E",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "dd.MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM.y",
      yMEd => "dd.MM.y, E",
      yMMM => "MMM y",
      yMMMEd => "d MMM y, E",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "dd.MM.y",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "az",
    date_format_full => "d MMMM y, EEEE",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "B.E.",
      "\N{U+00c7}.A.",
      "\N{U+00c7}.",
      "C.A.",
      "C.",
      "\N{U+015e}.",
      "B."
    ],
    day_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7
    ],
    day_format_wide => [
      "bazar ert\N{U+0259}si",
      "\N{U+00e7}\N{U+0259}r\N{U+015f}\N{U+0259}nb\N{U+0259} ax\N{U+015f}am\N{U+0131}",
      "\N{U+00e7}\N{U+0259}r\N{U+015f}\N{U+0259}nb\N{U+0259}",
      "c\N{U+00fc}m\N{U+0259} ax\N{U+015f}am\N{U+0131}",
      "c\N{U+00fc}m\N{U+0259}",
      "\N{U+015f}\N{U+0259}nb\N{U+0259}",
      "bazar"
    ],
    day_stand_alone_abbreviated => [
      "B.E.",
      "\N{U+00c7}.A.",
      "\N{U+00c7}.",
      "C.A.",
      "C.",
      "\N{U+015e}.",
      "B."
    ],
    day_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7
    ],
    day_stand_alone_wide => [
      "bazar ert\N{U+0259}si",
      "\N{U+00e7}\N{U+0259}r\N{U+015f}\N{U+0259}nb\N{U+0259} ax\N{U+015f}am\N{U+0131}",
      "\N{U+00e7}\N{U+0259}r\N{U+015f}\N{U+0259}nb\N{U+0259}",
      "c\N{U+00fc}m\N{U+0259} ax\N{U+015f}am\N{U+0131}",
      "c\N{U+00fc}m\N{U+0259}",
      "\N{U+015f}\N{U+0259}nb\N{U+0259}",
      "bazar"
    ],
    era_abbreviated => [
      "e.\N{U+0259}.",
      "b.e."
    ],
    era_narrow => [
      "e.\N{U+0259}.",
      "b.e."
    ],
    era_wide => [
      "eram\N{U+0131}zdan \N{U+0259}vv\N{U+0259}l",
      "eram\N{U+0131}z"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Azerbaijani",
    month_format_abbreviated => [
      "yan",
      "fev",
      "mar",
      "apr",
      "may",
      "iyn",
      "iyl",
      "avq",
      "sen",
      "okt",
      "noy",
      "dek"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "yanvar",
      "fevral",
      "mart",
      "aprel",
      "may",
      "iyun",
      "iyul",
      "avqust",
      "sentyabr",
      "oktyabr",
      "noyabr",
      "dekabr"
    ],
    month_stand_alone_abbreviated => [
      "yan",
      "fev",
      "mar",
      "apr",
      "may",
      "iyn",
      "iyl",
      "avq",
      "sen",
      "okt",
      "noy",
      "dek"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Yanvar",
      "Fevral",
      "Mart",
      "Aprel",
      "May",
      "\N{U+0130}yun",
      "\N{U+0130}yul",
      "Avqust",
      "Sentyabr",
      "Oktyabr",
      "Noyabr",
      "Dekabr"
    ],
    name => "Azerbaijani",
    native_language => "az\N{U+0259}rbaycan dili",
    native_name => "az\N{U+0259}rbaycan dili",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "1-ci kv.",
      "2-ci kv.",
      "3-c\N{U+00fc} kv.",
      "4-c\N{U+00fc} kv."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1-ci kvartal",
      "2-ci kvartal",
      "3-c\N{U+00fc} kvartal",
      "4-c\N{U+00fc} kvartal"
    ],
    quarter_stand_alone_abbreviated => [
      "1-ci kv.",
      "2-ci kv.",
      "3-c\N{U+00fc} kv.",
      "4-c\N{U+00fc} kv."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-ci kvartal",
      "2-ci kvartal",
      "3-c\N{U+00fc} kvartal",
      "4-c\N{U+00fc} kvartal"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ az-Cyrl ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd.MM",
      MMM => "LLL",
      MMMEd => "E, d, MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "dd.MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM.y",
      yMEd => "E, dd.MM.y",
      yMMM => "MMM, y",
      yMMMEd => "E, d, MMM, y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM, y",
      yMd => "dd.MM.y",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "az-Cyrl",
    date_format_full => "EEEE, d, MMMM, y",
    date_format_long => "d MMMM, y",
    date_format_medium => "d MMM, y",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0431}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+0440} \N{U+0435}\N{U+0440}\N{U+0442}\N{U+04d9}\N{U+0441}\N{U+0438}",
      "\N{U+0447}\N{U+04d9}\N{U+0440}\N{U+0448}\N{U+04d9}\N{U+043d}\N{U+0431}\N{U+04d9} \N{U+0430}\N{U+0445}\N{U+0448}\N{U+0430}\N{U+043c}\N{U+044b}",
      "\N{U+0447}\N{U+04d9}\N{U+0440}\N{U+0448}\N{U+04d9}\N{U+043d}\N{U+0431}\N{U+04d9}",
      "\N{U+04b9}\N{U+04af}\N{U+043c}\N{U+04d9} \N{U+0430}\N{U+0445}\N{U+0448}\N{U+0430}\N{U+043c}\N{U+044b}",
      "\N{U+04b9}\N{U+04af}\N{U+043c}\N{U+04d9}",
      "\N{U+0448}\N{U+04d9}\N{U+043d}\N{U+0431}\N{U+04d9}",
      "\N{U+0431}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+0440}"
    ],
    day_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7
    ],
    day_format_wide => [
      "\N{U+0431}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+0440} \N{U+0435}\N{U+0440}\N{U+0442}\N{U+04d9}\N{U+0441}\N{U+0438}",
      "\N{U+0447}\N{U+04d9}\N{U+0440}\N{U+0448}\N{U+04d9}\N{U+043d}\N{U+0431}\N{U+04d9} \N{U+0430}\N{U+0445}\N{U+0448}\N{U+0430}\N{U+043c}\N{U+044b}",
      "\N{U+0447}\N{U+04d9}\N{U+0440}\N{U+0448}\N{U+04d9}\N{U+043d}\N{U+0431}\N{U+04d9}",
      "\N{U+04b9}\N{U+04af}\N{U+043c}\N{U+04d9} \N{U+0430}\N{U+0445}\N{U+0448}\N{U+0430}\N{U+043c}\N{U+044b}",
      "\N{U+04b9}\N{U+04af}\N{U+043c}\N{U+04d9}",
      "\N{U+0448}\N{U+04d9}\N{U+043d}\N{U+0431}\N{U+04d9}",
      "\N{U+0431}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+0440}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0431}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+0440} \N{U+0435}\N{U+0440}\N{U+0442}\N{U+04d9}\N{U+0441}\N{U+0438}",
      "\N{U+0447}\N{U+04d9}\N{U+0440}\N{U+0448}\N{U+04d9}\N{U+043d}\N{U+0431}\N{U+04d9} \N{U+0430}\N{U+0445}\N{U+0448}\N{U+0430}\N{U+043c}\N{U+044b}",
      "\N{U+0447}\N{U+04d9}\N{U+0440}\N{U+0448}\N{U+04d9}\N{U+043d}\N{U+0431}\N{U+04d9}",
      "\N{U+04b9}\N{U+04af}\N{U+043c}\N{U+04d9} \N{U+0430}\N{U+0445}\N{U+0448}\N{U+0430}\N{U+043c}\N{U+044b}",
      "\N{U+04b9}\N{U+04af}\N{U+043c}\N{U+04d9}",
      "\N{U+0448}\N{U+04d9}\N{U+043d}\N{U+0431}\N{U+04d9}",
      "\N{U+0431}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+0440}"
    ],
    day_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7
    ],
    day_stand_alone_wide => [
      "\N{U+0431}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+0440} \N{U+0435}\N{U+0440}\N{U+0442}\N{U+04d9}\N{U+0441}\N{U+0438}",
      "\N{U+0447}\N{U+04d9}\N{U+0440}\N{U+0448}\N{U+04d9}\N{U+043d}\N{U+0431}\N{U+04d9} \N{U+0430}\N{U+0445}\N{U+0448}\N{U+0430}\N{U+043c}\N{U+044b}",
      "\N{U+0447}\N{U+04d9}\N{U+0440}\N{U+0448}\N{U+04d9}\N{U+043d}\N{U+0431}\N{U+04d9}",
      "\N{U+04b9}\N{U+04af}\N{U+043c}\N{U+04d9} \N{U+0430}\N{U+0445}\N{U+0448}\N{U+0430}\N{U+043c}\N{U+044b}",
      "\N{U+04b9}\N{U+04af}\N{U+043c}\N{U+04d9}",
      "\N{U+0448}\N{U+04d9}\N{U+043d}\N{U+0431}\N{U+04d9}",
      "\N{U+0431}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+0440}"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Azerbaijani",
    month_format_abbreviated => [
      "\N{U+0458}\N{U+0430}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0438}\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+0458}\N{U+0430}\N{U+0431}\N{U+0440}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+0458}\N{U+0430}\N{U+0431}\N{U+0440}",
      "\N{U+043d}\N{U+043e}\N{U+0458}\N{U+0430}\N{U+0431}\N{U+0440}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+0458}\N{U+0430}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0438}\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+0458}\N{U+0430}\N{U+0431}\N{U+0440}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+0458}\N{U+0430}\N{U+0431}\N{U+0440}",
      "\N{U+043d}\N{U+043e}\N{U+0458}\N{U+0430}\N{U+0431}\N{U+0440}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0458}\N{U+0430}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0438}\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+0458}\N{U+0430}\N{U+0431}\N{U+0440}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+0458}\N{U+0430}\N{U+0431}\N{U+0440}",
      "\N{U+043d}\N{U+043e}\N{U+0458}\N{U+0430}\N{U+0431}\N{U+0440}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+0458}\N{U+0430}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0438}\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+0458}\N{U+0430}\N{U+0431}\N{U+0440}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+0458}\N{U+0430}\N{U+0431}\N{U+0440}",
      "\N{U+043d}\N{U+043e}\N{U+0458}\N{U+0430}\N{U+0431}\N{U+0440}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}"
    ],
    name => "Azerbaijani Cyrillic",
    native_language => "\N{U+0430}\N{U+0437}\N{U+04d9}\N{U+0440}\N{U+0431}\N{U+0430}\N{U+0458}\N{U+04b9}\N{U+0430}\N{U+043d} \N{U+0434}\N{U+0438}\N{U+043b}\N{U+0438}",
    native_name => "\N{U+0430}\N{U+0437}\N{U+04d9}\N{U+0440}\N{U+0431}\N{U+0430}\N{U+0458}\N{U+04b9}\N{U+0430}\N{U+043d} \N{U+0434}\N{U+0438}\N{U+043b}\N{U+0438} \N{U+041a}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}",
    native_script => "\N{U+041a}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}",
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => "Cyrillic",
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ az-Cyrl-AZ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd.MM",
      MMM => "LLL",
      MMMEd => "E, d, MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "dd.MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM.y",
      yMEd => "E, dd.MM.y",
      yMMM => "MMM, y",
      yMMMEd => "E, d, MMM, y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM, y",
      yMd => "dd.MM.y",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "az-Cyrl-AZ",
    date_format_full => "EEEE, d, MMMM, y",
    date_format_long => "d MMMM, y",
    date_format_medium => "d MMM, y",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0431}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+0440} \N{U+0435}\N{U+0440}\N{U+0442}\N{U+04d9}\N{U+0441}\N{U+0438}",
      "\N{U+0447}\N{U+04d9}\N{U+0440}\N{U+0448}\N{U+04d9}\N{U+043d}\N{U+0431}\N{U+04d9} \N{U+0430}\N{U+0445}\N{U+0448}\N{U+0430}\N{U+043c}\N{U+044b}",
      "\N{U+0447}\N{U+04d9}\N{U+0440}\N{U+0448}\N{U+04d9}\N{U+043d}\N{U+0431}\N{U+04d9}",
      "\N{U+04b9}\N{U+04af}\N{U+043c}\N{U+04d9} \N{U+0430}\N{U+0445}\N{U+0448}\N{U+0430}\N{U+043c}\N{U+044b}",
      "\N{U+04b9}\N{U+04af}\N{U+043c}\N{U+04d9}",
      "\N{U+0448}\N{U+04d9}\N{U+043d}\N{U+0431}\N{U+04d9}",
      "\N{U+0431}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+0440}"
    ],
    day_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7
    ],
    day_format_wide => [
      "\N{U+0431}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+0440} \N{U+0435}\N{U+0440}\N{U+0442}\N{U+04d9}\N{U+0441}\N{U+0438}",
      "\N{U+0447}\N{U+04d9}\N{U+0440}\N{U+0448}\N{U+04d9}\N{U+043d}\N{U+0431}\N{U+04d9} \N{U+0430}\N{U+0445}\N{U+0448}\N{U+0430}\N{U+043c}\N{U+044b}",
      "\N{U+0447}\N{U+04d9}\N{U+0440}\N{U+0448}\N{U+04d9}\N{U+043d}\N{U+0431}\N{U+04d9}",
      "\N{U+04b9}\N{U+04af}\N{U+043c}\N{U+04d9} \N{U+0430}\N{U+0445}\N{U+0448}\N{U+0430}\N{U+043c}\N{U+044b}",
      "\N{U+04b9}\N{U+04af}\N{U+043c}\N{U+04d9}",
      "\N{U+0448}\N{U+04d9}\N{U+043d}\N{U+0431}\N{U+04d9}",
      "\N{U+0431}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+0440}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0431}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+0440} \N{U+0435}\N{U+0440}\N{U+0442}\N{U+04d9}\N{U+0441}\N{U+0438}",
      "\N{U+0447}\N{U+04d9}\N{U+0440}\N{U+0448}\N{U+04d9}\N{U+043d}\N{U+0431}\N{U+04d9} \N{U+0430}\N{U+0445}\N{U+0448}\N{U+0430}\N{U+043c}\N{U+044b}",
      "\N{U+0447}\N{U+04d9}\N{U+0440}\N{U+0448}\N{U+04d9}\N{U+043d}\N{U+0431}\N{U+04d9}",
      "\N{U+04b9}\N{U+04af}\N{U+043c}\N{U+04d9} \N{U+0430}\N{U+0445}\N{U+0448}\N{U+0430}\N{U+043c}\N{U+044b}",
      "\N{U+04b9}\N{U+04af}\N{U+043c}\N{U+04d9}",
      "\N{U+0448}\N{U+04d9}\N{U+043d}\N{U+0431}\N{U+04d9}",
      "\N{U+0431}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+0440}"
    ],
    day_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7
    ],
    day_stand_alone_wide => [
      "\N{U+0431}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+0440} \N{U+0435}\N{U+0440}\N{U+0442}\N{U+04d9}\N{U+0441}\N{U+0438}",
      "\N{U+0447}\N{U+04d9}\N{U+0440}\N{U+0448}\N{U+04d9}\N{U+043d}\N{U+0431}\N{U+04d9} \N{U+0430}\N{U+0445}\N{U+0448}\N{U+0430}\N{U+043c}\N{U+044b}",
      "\N{U+0447}\N{U+04d9}\N{U+0440}\N{U+0448}\N{U+04d9}\N{U+043d}\N{U+0431}\N{U+04d9}",
      "\N{U+04b9}\N{U+04af}\N{U+043c}\N{U+04d9} \N{U+0430}\N{U+0445}\N{U+0448}\N{U+0430}\N{U+043c}\N{U+044b}",
      "\N{U+04b9}\N{U+04af}\N{U+043c}\N{U+04d9}",
      "\N{U+0448}\N{U+04d9}\N{U+043d}\N{U+0431}\N{U+04d9}",
      "\N{U+0431}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+0440}"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Azerbaijani",
    month_format_abbreviated => [
      "\N{U+0458}\N{U+0430}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0438}\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+0458}\N{U+0430}\N{U+0431}\N{U+0440}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+0458}\N{U+0430}\N{U+0431}\N{U+0440}",
      "\N{U+043d}\N{U+043e}\N{U+0458}\N{U+0430}\N{U+0431}\N{U+0440}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+0458}\N{U+0430}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0438}\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+0458}\N{U+0430}\N{U+0431}\N{U+0440}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+0458}\N{U+0430}\N{U+0431}\N{U+0440}",
      "\N{U+043d}\N{U+043e}\N{U+0458}\N{U+0430}\N{U+0431}\N{U+0440}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0458}\N{U+0430}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0438}\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+0458}\N{U+0430}\N{U+0431}\N{U+0440}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+0458}\N{U+0430}\N{U+0431}\N{U+0440}",
      "\N{U+043d}\N{U+043e}\N{U+0458}\N{U+0430}\N{U+0431}\N{U+0440}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+0458}\N{U+0430}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0438}\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+0458}\N{U+0430}\N{U+0431}\N{U+0440}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+0458}\N{U+0430}\N{U+0431}\N{U+0440}",
      "\N{U+043d}\N{U+043e}\N{U+0458}\N{U+0430}\N{U+0431}\N{U+0440}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}"
    ],
    name => "Azerbaijani Azerbaijan Cyrillic",
    native_language => "\N{U+0430}\N{U+0437}\N{U+04d9}\N{U+0440}\N{U+0431}\N{U+0430}\N{U+0458}\N{U+04b9}\N{U+0430}\N{U+043d} \N{U+0434}\N{U+0438}\N{U+043b}\N{U+0438}",
    native_name => "\N{U+0430}\N{U+0437}\N{U+04d9}\N{U+0440}\N{U+0431}\N{U+0430}\N{U+0458}\N{U+04b9}\N{U+0430}\N{U+043d} \N{U+0434}\N{U+0438}\N{U+043b}\N{U+0438} \N{U+0410}\N{U+0437}\N{U+04d9}\N{U+0440}\N{U+0431}\N{U+0430}\N{U+0458}\N{U+04b9}\N{U+0430}\N{U+043d} \N{U+041a}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}",
    native_script => "\N{U+041a}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}",
    native_territory => "\N{U+0410}\N{U+0437}\N{U+04d9}\N{U+0440}\N{U+0431}\N{U+0430}\N{U+0458}\N{U+04b9}\N{U+0430}\N{U+043d}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => "Cyrillic",
    territory => "Azerbaijan",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ az-Latn ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G MMM y",
      GyMMMEd => "G d MMM y, E",
      GyMMMd => "G d MMM y",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "dd.MM, E",
      MMM => "LLL",
      MMMEd => "d MMM, E",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "dd.MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM.y",
      yMEd => "dd.MM.y, E",
      yMMM => "MMM y",
      yMMMEd => "d MMM y, E",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "dd.MM.y",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "az-Latn",
    date_format_full => "d MMMM y, EEEE",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "B.E.",
      "\N{U+00c7}.A.",
      "\N{U+00c7}.",
      "C.A.",
      "C.",
      "\N{U+015e}.",
      "B."
    ],
    day_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7
    ],
    day_format_wide => [
      "bazar ert\N{U+0259}si",
      "\N{U+00e7}\N{U+0259}r\N{U+015f}\N{U+0259}nb\N{U+0259} ax\N{U+015f}am\N{U+0131}",
      "\N{U+00e7}\N{U+0259}r\N{U+015f}\N{U+0259}nb\N{U+0259}",
      "c\N{U+00fc}m\N{U+0259} ax\N{U+015f}am\N{U+0131}",
      "c\N{U+00fc}m\N{U+0259}",
      "\N{U+015f}\N{U+0259}nb\N{U+0259}",
      "bazar"
    ],
    day_stand_alone_abbreviated => [
      "B.E.",
      "\N{U+00c7}.A.",
      "\N{U+00c7}.",
      "C.A.",
      "C.",
      "\N{U+015e}.",
      "B."
    ],
    day_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7
    ],
    day_stand_alone_wide => [
      "bazar ert\N{U+0259}si",
      "\N{U+00e7}\N{U+0259}r\N{U+015f}\N{U+0259}nb\N{U+0259} ax\N{U+015f}am\N{U+0131}",
      "\N{U+00e7}\N{U+0259}r\N{U+015f}\N{U+0259}nb\N{U+0259}",
      "c\N{U+00fc}m\N{U+0259} ax\N{U+015f}am\N{U+0131}",
      "c\N{U+00fc}m\N{U+0259}",
      "\N{U+015f}\N{U+0259}nb\N{U+0259}",
      "bazar"
    ],
    era_abbreviated => [
      "e.\N{U+0259}.",
      "b.e."
    ],
    era_narrow => [
      "e.\N{U+0259}.",
      "b.e."
    ],
    era_wide => [
      "eram\N{U+0131}zdan \N{U+0259}vv\N{U+0259}l",
      "eram\N{U+0131}z"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Azerbaijani",
    month_format_abbreviated => [
      "yan",
      "fev",
      "mar",
      "apr",
      "may",
      "iyn",
      "iyl",
      "avq",
      "sen",
      "okt",
      "noy",
      "dek"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "yanvar",
      "fevral",
      "mart",
      "aprel",
      "may",
      "iyun",
      "iyul",
      "avqust",
      "sentyabr",
      "oktyabr",
      "noyabr",
      "dekabr"
    ],
    month_stand_alone_abbreviated => [
      "yan",
      "fev",
      "mar",
      "apr",
      "may",
      "iyn",
      "iyl",
      "avq",
      "sen",
      "okt",
      "noy",
      "dek"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Yanvar",
      "Fevral",
      "Mart",
      "Aprel",
      "May",
      "\N{U+0130}yun",
      "\N{U+0130}yul",
      "Avqust",
      "Sentyabr",
      "Oktyabr",
      "Noyabr",
      "Dekabr"
    ],
    name => "Azerbaijani Latin",
    native_language => "az\N{U+0259}rbaycan dili",
    native_name => "az\N{U+0259}rbaycan dili lat\N{U+0131}n",
    native_script => "lat\N{U+0131}n",
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "1-ci kv.",
      "2-ci kv.",
      "3-c\N{U+00fc} kv.",
      "4-c\N{U+00fc} kv."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1-ci kvartal",
      "2-ci kvartal",
      "3-c\N{U+00fc} kvartal",
      "4-c\N{U+00fc} kvartal"
    ],
    quarter_stand_alone_abbreviated => [
      "1-ci kv.",
      "2-ci kv.",
      "3-c\N{U+00fc} kv.",
      "4-c\N{U+00fc} kv."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-ci kvartal",
      "2-ci kvartal",
      "3-c\N{U+00fc} kvartal",
      "4-c\N{U+00fc} kvartal"
    ],
    script => "Latin",
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ az-Latn-AZ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G MMM y",
      GyMMMEd => "G d MMM y, E",
      GyMMMd => "G d MMM y",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "dd.MM, E",
      MMM => "LLL",
      MMMEd => "d MMM, E",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "dd.MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM.y",
      yMEd => "dd.MM.y, E",
      yMMM => "MMM y",
      yMMMEd => "d MMM y, E",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "dd.MM.y",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "az-Latn-AZ",
    date_format_full => "d MMMM y, EEEE",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "B.E.",
      "\N{U+00c7}.A.",
      "\N{U+00c7}.",
      "C.A.",
      "C.",
      "\N{U+015e}.",
      "B."
    ],
    day_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7
    ],
    day_format_wide => [
      "bazar ert\N{U+0259}si",
      "\N{U+00e7}\N{U+0259}r\N{U+015f}\N{U+0259}nb\N{U+0259} ax\N{U+015f}am\N{U+0131}",
      "\N{U+00e7}\N{U+0259}r\N{U+015f}\N{U+0259}nb\N{U+0259}",
      "c\N{U+00fc}m\N{U+0259} ax\N{U+015f}am\N{U+0131}",
      "c\N{U+00fc}m\N{U+0259}",
      "\N{U+015f}\N{U+0259}nb\N{U+0259}",
      "bazar"
    ],
    day_stand_alone_abbreviated => [
      "B.E.",
      "\N{U+00c7}.A.",
      "\N{U+00c7}.",
      "C.A.",
      "C.",
      "\N{U+015e}.",
      "B."
    ],
    day_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7
    ],
    day_stand_alone_wide => [
      "bazar ert\N{U+0259}si",
      "\N{U+00e7}\N{U+0259}r\N{U+015f}\N{U+0259}nb\N{U+0259} ax\N{U+015f}am\N{U+0131}",
      "\N{U+00e7}\N{U+0259}r\N{U+015f}\N{U+0259}nb\N{U+0259}",
      "c\N{U+00fc}m\N{U+0259} ax\N{U+015f}am\N{U+0131}",
      "c\N{U+00fc}m\N{U+0259}",
      "\N{U+015f}\N{U+0259}nb\N{U+0259}",
      "bazar"
    ],
    era_abbreviated => [
      "e.\N{U+0259}.",
      "b.e."
    ],
    era_narrow => [
      "e.\N{U+0259}.",
      "b.e."
    ],
    era_wide => [
      "eram\N{U+0131}zdan \N{U+0259}vv\N{U+0259}l",
      "eram\N{U+0131}z"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Azerbaijani",
    month_format_abbreviated => [
      "yan",
      "fev",
      "mar",
      "apr",
      "may",
      "iyn",
      "iyl",
      "avq",
      "sen",
      "okt",
      "noy",
      "dek"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "yanvar",
      "fevral",
      "mart",
      "aprel",
      "may",
      "iyun",
      "iyul",
      "avqust",
      "sentyabr",
      "oktyabr",
      "noyabr",
      "dekabr"
    ],
    month_stand_alone_abbreviated => [
      "yan",
      "fev",
      "mar",
      "apr",
      "may",
      "iyn",
      "iyl",
      "avq",
      "sen",
      "okt",
      "noy",
      "dek"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Yanvar",
      "Fevral",
      "Mart",
      "Aprel",
      "May",
      "\N{U+0130}yun",
      "\N{U+0130}yul",
      "Avqust",
      "Sentyabr",
      "Oktyabr",
      "Noyabr",
      "Dekabr"
    ],
    name => "Azerbaijani Azerbaijan Latin",
    native_language => "az\N{U+0259}rbaycan dili",
    native_name => "az\N{U+0259}rbaycan dili Az\N{U+0259}rbaycan lat\N{U+0131}n",
    native_script => "lat\N{U+0131}n",
    native_territory => "Az\N{U+0259}rbaycan",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1-ci kv.",
      "2-ci kv.",
      "3-c\N{U+00fc} kv.",
      "4-c\N{U+00fc} kv."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1-ci kvartal",
      "2-ci kvartal",
      "3-c\N{U+00fc} kvartal",
      "4-c\N{U+00fc} kvartal"
    ],
    quarter_stand_alone_abbreviated => [
      "1-ci kv.",
      "2-ci kv.",
      "3-c\N{U+00fc} kv.",
      "4-c\N{U+00fc} kv."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-ci kvartal",
      "2-ci kvartal",
      "3-c\N{U+00fc} kvartal",
      "4-c\N{U+00fc} kvartal"
    ],
    script => "Latin",
    territory => "Azerbaijan",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ bas ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "bas",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "nja",
      "uum",
      "\N{U+014b}ge",
      "mb\N{U+0254}",
      "k\N{U+0254}\N{U+0254}",
      "jon",
      "n\N{U+0254}y"
    ],
    day_format_narrow => [
      "n",
      "u",
      "\N{U+014b}",
      "m",
      "k",
      "j",
      "n"
    ],
    day_format_wide => [
      "\N{U+014b}gw\N{U+00e0} nja\N{U+014b}gumba",
      "\N{U+014b}gw\N{U+00e0} \N{U+00fb}m",
      "\N{U+014b}gw\N{U+00e0} \N{U+014b}g\N{U+00ea}",
      "\N{U+014b}gw\N{U+00e0} mb\N{U+0254}k",
      "\N{U+014b}gw\N{U+00e0} k\N{U+0254}\N{U+0254}",
      "\N{U+014b}gw\N{U+00e0} j\N{U+00f4}n",
      "\N{U+014b}gw\N{U+00e0} n\N{U+0254}\N{U+0302}y"
    ],
    day_stand_alone_abbreviated => [
      "nja",
      "uum",
      "\N{U+014b}ge",
      "mb\N{U+0254}",
      "k\N{U+0254}\N{U+0254}",
      "jon",
      "n\N{U+0254}y"
    ],
    day_stand_alone_narrow => [
      "n",
      "u",
      "\N{U+014b}",
      "m",
      "k",
      "j",
      "n"
    ],
    day_stand_alone_wide => [
      "\N{U+014b}gw\N{U+00e0} nja\N{U+014b}gumba",
      "\N{U+014b}gw\N{U+00e0} \N{U+00fb}m",
      "\N{U+014b}gw\N{U+00e0} \N{U+014b}g\N{U+00ea}",
      "\N{U+014b}gw\N{U+00e0} mb\N{U+0254}k",
      "\N{U+014b}gw\N{U+00e0} k\N{U+0254}\N{U+0254}",
      "\N{U+014b}gw\N{U+00e0} j\N{U+00f4}n",
      "\N{U+014b}gw\N{U+00e0} n\N{U+0254}\N{U+0302}y"
    ],
    era_abbreviated => [
      "b.Y.K",
      "m.Y.K"
    ],
    era_narrow => [
      "b.Y.K",
      "m.Y.K"
    ],
    era_wide => [
      "bis\N{U+016b} bi Yes\N{U+00f9} Kr\N{U+01d0}st\N{U+00f2}",
      "i mb\N{U+016b}s Yes\N{U+00f9} Kr\N{U+01d0}st\N{U+00f2}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Basaa",
    month_format_abbreviated => [
      "k\N{U+0254}n",
      "mac",
      "mat",
      "mto",
      "mpu",
      "hil",
      "nje",
      "hik",
      "dip",
      "bio",
      "may",
      "li\N{U+0253}"
    ],
    month_format_narrow => [
      "k",
      "m",
      "m",
      "m",
      "m",
      "h",
      "n",
      "h",
      "d",
      "b",
      "m",
      "l"
    ],
    month_format_wide => [
      "K\N{U+0254}nd\N{U+0254}\N{U+014b}",
      "M\N{U+00e0}c\N{U+025b}\N{U+0302}l",
      "M\N{U+00e0}t\N{U+00f9}mb",
      "M\N{U+00e0}top",
      "M\N{U+0300}puy\N{U+025b}",
      "H\N{U+00ec}l\N{U+00f2}nd\N{U+025b}\N{U+0300}",
      "Nj\N{U+00e8}b\N{U+00e0}",
      "H\N{U+00ec}ka\N{U+014b}",
      "D\N{U+00ec}p\N{U+0254}\N{U+0300}s",
      "B\N{U+00ec}\N{U+00f2}\N{U+00f4}m",
      "M\N{U+00e0}y\N{U+025b}s\N{U+00e8}p",
      "L\N{U+00ec}buy li \N{U+0144}y\N{U+00e8}e"
    ],
    month_stand_alone_abbreviated => [
      "k\N{U+0254}n",
      "mac",
      "mat",
      "mto",
      "mpu",
      "hil",
      "nje",
      "hik",
      "dip",
      "bio",
      "may",
      "li\N{U+0253}"
    ],
    month_stand_alone_narrow => [
      "k",
      "m",
      "m",
      "m",
      "m",
      "h",
      "n",
      "h",
      "d",
      "b",
      "m",
      "l"
    ],
    month_stand_alone_wide => [
      "K\N{U+0254}nd\N{U+0254}\N{U+014b}",
      "M\N{U+00e0}c\N{U+025b}\N{U+0302}l",
      "M\N{U+00e0}t\N{U+00f9}mb",
      "M\N{U+00e0}top",
      "M\N{U+0300}puy\N{U+025b}",
      "H\N{U+00ec}l\N{U+00f2}nd\N{U+025b}\N{U+0300}",
      "Nj\N{U+00e8}b\N{U+00e0}",
      "H\N{U+00ec}ka\N{U+014b}",
      "D\N{U+00ec}p\N{U+0254}\N{U+0300}s",
      "B\N{U+00ec}\N{U+00f2}\N{U+00f4}m",
      "M\N{U+00e0}y\N{U+025b}s\N{U+00e8}p",
      "L\N{U+00ec}buy li \N{U+0144}y\N{U+00e8}e"
    ],
    name => "Basaa",
    native_language => "\N{U+0181}\N{U+00e0}s\N{U+00e0}a",
    native_name => "\N{U+0181}\N{U+00e0}s\N{U+00e0}a",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1s3",
      "K2s3",
      "K3s3",
      "K4s3"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "K\N{U+00e8}k bisu i so\N{U+014b} ia\N{U+00e2}",
      "K\N{U+00e8}k i \N{U+0144}yonos bi\N{U+0253}a\N{U+00e0} i so\N{U+014b} ia\N{U+00e2}",
      "K\N{U+00e8}k i \N{U+0144}yonos bia\N{U+00e2} i so\N{U+014b} ia\N{U+00e2}",
      "K\N{U+00e8}k i \N{U+0144}yonos bin\N{U+00e2} i so\N{U+014b} ia\N{U+00e2}"
    ],
    quarter_stand_alone_abbreviated => [
      "K1s3",
      "K2s3",
      "K3s3",
      "K4s3"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "K\N{U+00e8}k bisu i so\N{U+014b} ia\N{U+00e2}",
      "K\N{U+00e8}k i \N{U+0144}yonos bi\N{U+0253}a\N{U+00e0} i so\N{U+014b} ia\N{U+00e2}",
      "K\N{U+00e8}k i \N{U+0144}yonos bia\N{U+00e2} i so\N{U+014b} ia\N{U+00e2}",
      "K\N{U+00e8}k i \N{U+0144}yonos bin\N{U+00e2} i so\N{U+014b} ia\N{U+00e2}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ bas-CM ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "bas-CM",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "nja",
      "uum",
      "\N{U+014b}ge",
      "mb\N{U+0254}",
      "k\N{U+0254}\N{U+0254}",
      "jon",
      "n\N{U+0254}y"
    ],
    day_format_narrow => [
      "n",
      "u",
      "\N{U+014b}",
      "m",
      "k",
      "j",
      "n"
    ],
    day_format_wide => [
      "\N{U+014b}gw\N{U+00e0} nja\N{U+014b}gumba",
      "\N{U+014b}gw\N{U+00e0} \N{U+00fb}m",
      "\N{U+014b}gw\N{U+00e0} \N{U+014b}g\N{U+00ea}",
      "\N{U+014b}gw\N{U+00e0} mb\N{U+0254}k",
      "\N{U+014b}gw\N{U+00e0} k\N{U+0254}\N{U+0254}",
      "\N{U+014b}gw\N{U+00e0} j\N{U+00f4}n",
      "\N{U+014b}gw\N{U+00e0} n\N{U+0254}\N{U+0302}y"
    ],
    day_stand_alone_abbreviated => [
      "nja",
      "uum",
      "\N{U+014b}ge",
      "mb\N{U+0254}",
      "k\N{U+0254}\N{U+0254}",
      "jon",
      "n\N{U+0254}y"
    ],
    day_stand_alone_narrow => [
      "n",
      "u",
      "\N{U+014b}",
      "m",
      "k",
      "j",
      "n"
    ],
    day_stand_alone_wide => [
      "\N{U+014b}gw\N{U+00e0} nja\N{U+014b}gumba",
      "\N{U+014b}gw\N{U+00e0} \N{U+00fb}m",
      "\N{U+014b}gw\N{U+00e0} \N{U+014b}g\N{U+00ea}",
      "\N{U+014b}gw\N{U+00e0} mb\N{U+0254}k",
      "\N{U+014b}gw\N{U+00e0} k\N{U+0254}\N{U+0254}",
      "\N{U+014b}gw\N{U+00e0} j\N{U+00f4}n",
      "\N{U+014b}gw\N{U+00e0} n\N{U+0254}\N{U+0302}y"
    ],
    era_abbreviated => [
      "b.Y.K",
      "m.Y.K"
    ],
    era_narrow => [
      "b.Y.K",
      "m.Y.K"
    ],
    era_wide => [
      "bis\N{U+016b} bi Yes\N{U+00f9} Kr\N{U+01d0}st\N{U+00f2}",
      "i mb\N{U+016b}s Yes\N{U+00f9} Kr\N{U+01d0}st\N{U+00f2}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Basaa",
    month_format_abbreviated => [
      "k\N{U+0254}n",
      "mac",
      "mat",
      "mto",
      "mpu",
      "hil",
      "nje",
      "hik",
      "dip",
      "bio",
      "may",
      "li\N{U+0253}"
    ],
    month_format_narrow => [
      "k",
      "m",
      "m",
      "m",
      "m",
      "h",
      "n",
      "h",
      "d",
      "b",
      "m",
      "l"
    ],
    month_format_wide => [
      "K\N{U+0254}nd\N{U+0254}\N{U+014b}",
      "M\N{U+00e0}c\N{U+025b}\N{U+0302}l",
      "M\N{U+00e0}t\N{U+00f9}mb",
      "M\N{U+00e0}top",
      "M\N{U+0300}puy\N{U+025b}",
      "H\N{U+00ec}l\N{U+00f2}nd\N{U+025b}\N{U+0300}",
      "Nj\N{U+00e8}b\N{U+00e0}",
      "H\N{U+00ec}ka\N{U+014b}",
      "D\N{U+00ec}p\N{U+0254}\N{U+0300}s",
      "B\N{U+00ec}\N{U+00f2}\N{U+00f4}m",
      "M\N{U+00e0}y\N{U+025b}s\N{U+00e8}p",
      "L\N{U+00ec}buy li \N{U+0144}y\N{U+00e8}e"
    ],
    month_stand_alone_abbreviated => [
      "k\N{U+0254}n",
      "mac",
      "mat",
      "mto",
      "mpu",
      "hil",
      "nje",
      "hik",
      "dip",
      "bio",
      "may",
      "li\N{U+0253}"
    ],
    month_stand_alone_narrow => [
      "k",
      "m",
      "m",
      "m",
      "m",
      "h",
      "n",
      "h",
      "d",
      "b",
      "m",
      "l"
    ],
    month_stand_alone_wide => [
      "K\N{U+0254}nd\N{U+0254}\N{U+014b}",
      "M\N{U+00e0}c\N{U+025b}\N{U+0302}l",
      "M\N{U+00e0}t\N{U+00f9}mb",
      "M\N{U+00e0}top",
      "M\N{U+0300}puy\N{U+025b}",
      "H\N{U+00ec}l\N{U+00f2}nd\N{U+025b}\N{U+0300}",
      "Nj\N{U+00e8}b\N{U+00e0}",
      "H\N{U+00ec}ka\N{U+014b}",
      "D\N{U+00ec}p\N{U+0254}\N{U+0300}s",
      "B\N{U+00ec}\N{U+00f2}\N{U+00f4}m",
      "M\N{U+00e0}y\N{U+025b}s\N{U+00e8}p",
      "L\N{U+00ec}buy li \N{U+0144}y\N{U+00e8}e"
    ],
    name => "Basaa Cameroon",
    native_language => "\N{U+0181}\N{U+00e0}s\N{U+00e0}a",
    native_name => "\N{U+0181}\N{U+00e0}s\N{U+00e0}a K\N{U+00e0}m\N{U+025b}\N{U+0300}r\N{U+00fb}n",
    native_script => undef,
    native_territory => "K\N{U+00e0}m\N{U+025b}\N{U+0300}r\N{U+00fb}n",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1s3",
      "K2s3",
      "K3s3",
      "K4s3"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "K\N{U+00e8}k bisu i so\N{U+014b} ia\N{U+00e2}",
      "K\N{U+00e8}k i \N{U+0144}yonos bi\N{U+0253}a\N{U+00e0} i so\N{U+014b} ia\N{U+00e2}",
      "K\N{U+00e8}k i \N{U+0144}yonos bia\N{U+00e2} i so\N{U+014b} ia\N{U+00e2}",
      "K\N{U+00e8}k i \N{U+0144}yonos bin\N{U+00e2} i so\N{U+014b} ia\N{U+00e2}"
    ],
    quarter_stand_alone_abbreviated => [
      "K1s3",
      "K2s3",
      "K3s3",
      "K4s3"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "K\N{U+00e8}k bisu i so\N{U+014b} ia\N{U+00e2}",
      "K\N{U+00e8}k i \N{U+0144}yonos bi\N{U+0253}a\N{U+00e0} i so\N{U+014b} ia\N{U+00e2}",
      "K\N{U+00e8}k i \N{U+0144}yonos bia\N{U+00e2} i so\N{U+014b} ia\N{U+00e2}",
      "K\N{U+00e8}k i \N{U+0144}yonos bin\N{U+00e2} i so\N{U+014b} ia\N{U+00e2}"
    ],
    script => undef,
    territory => "Cameroon",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ be ]__
  {
    am_pm_abbreviated => [
      "\N{U+0440}\N{U+0430}\N{U+043d}\N{U+0456}\N{U+0446}\N{U+044b}",
      "\N{U+0432}\N{U+0435}\N{U+0447}\N{U+0430}\N{U+0440}\N{U+0430}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH.mm",
      EHms => "E HH.mm.ss",
      Ed => "d, E",
      Ehm => "E hh.mm a",
      Ehms => "E hh.mm.ss a",
      Gy => "y G",
      GyMMM => "LLL y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH.mm",
      Hms => "HH.mm.ss",
      Hmsv => "HH.mm.ss v",
      Hmv => "HH.mm v",
      M => "L",
      MEd => "E, d.M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d.M",
      d => "d",
      h => "hh a",
      hm => "hh.mm a",
      hms => "hh.mm.ss a",
      hmsv => "hh.mm.ss a v",
      hmv => "hh.mm a v",
      ms => "mm.ss",
      y => "y",
      yM => "M.y",
      yMEd => "E, d.M.y",
      yMMM => "LLL y",
      yMMMEd => "E, d MMM y",
      yMMMM => "LLLL y",
      yMMMd => "d MMM y",
      yMd => "d.M.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "be",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d.M.y",
    date_format_short => "d.M.yy",
    datetime_format_full => "{1} '\N{U+0443}' {0}",
    datetime_format_long => "{1} '\N{U+0443}' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+043f}\N{U+043d}",
      "\N{U+0430}\N{U+045e}",
      "\N{U+0441}\N{U+0440}",
      "\N{U+0447}\N{U+0446}",
      "\N{U+043f}\N{U+0442}",
      "\N{U+0441}\N{U+0431}",
      "\N{U+043d}\N{U+0434}"
    ],
    day_format_narrow => [
      "\N{U+043f}",
      "\N{U+0430}",
      "\N{U+0441}",
      "\N{U+0447}",
      "\N{U+043f}",
      "\N{U+0441}",
      "\N{U+043d}"
    ],
    day_format_wide => [
      "\N{U+043f}\N{U+0430}\N{U+043d}\N{U+044f}\N{U+0434}\N{U+0437}\N{U+0435}\N{U+043b}\N{U+0430}\N{U+043a}",
      "\N{U+0430}\N{U+045e}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0435}\N{U+0440}\N{U+0430}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0430}\N{U+0446}\N{U+0432}\N{U+0435}\N{U+0440}",
      "\N{U+043f}\N{U+044f}\N{U+0442}\N{U+043d}\N{U+0456}\N{U+0446}\N{U+0430}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+044f}\N{U+0434}\N{U+0437}\N{U+0435}\N{U+043b}\N{U+044f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+043f}\N{U+043d}",
      "\N{U+0430}\N{U+045e}",
      "\N{U+0441}\N{U+0440}",
      "\N{U+0447}\N{U+0446}",
      "\N{U+043f}\N{U+0442}",
      "\N{U+0441}\N{U+0431}",
      "\N{U+043d}\N{U+0434}"
    ],
    day_stand_alone_narrow => [
      "\N{U+043f}",
      "\N{U+0430}",
      "\N{U+0441}",
      "\N{U+0447}",
      "\N{U+043f}",
      "\N{U+0441}",
      "\N{U+043d}"
    ],
    day_stand_alone_wide => [
      "\N{U+043f}\N{U+0430}\N{U+043d}\N{U+044f}\N{U+0434}\N{U+0437}\N{U+0435}\N{U+043b}\N{U+0430}\N{U+043a}",
      "\N{U+0430}\N{U+045e}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0435}\N{U+0440}\N{U+0430}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0430}\N{U+0446}\N{U+0432}\N{U+0435}\N{U+0440}",
      "\N{U+043f}\N{U+044f}\N{U+0442}\N{U+043d}\N{U+0456}\N{U+0446}\N{U+0430}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+044f}\N{U+0434}\N{U+0437}\N{U+0435}\N{U+043b}\N{U+044f}"
    ],
    era_abbreviated => [
      "\N{U+0434}\N{U+0430} \N{U+043d}.\N{U+044d}.",
      "\N{U+043d}.\N{U+044d}."
    ],
    era_narrow => [
      "\N{U+0434}\N{U+0430} \N{U+043d}.\N{U+044d}.",
      "\N{U+043d}.\N{U+044d}."
    ],
    era_wide => [
      "\N{U+0434}\N{U+0430} \N{U+043d}\N{U+0430}\N{U+0448}\N{U+0430}\N{U+0439} \N{U+044d}\N{U+0440}\N{U+044b}",
      "\N{U+043d}\N{U+0430}\N{U+0448}\N{U+0430}\N{U+0439} \N{U+044d}\N{U+0440}\N{U+044b}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Belarusian",
    month_format_abbreviated => [
      "\N{U+0441}\N{U+0442}\N{U+0443}",
      "\N{U+043b}\N{U+044e}\N{U+0442}",
      "\N{U+0441}\N{U+0430}\N{U+043a}",
      "\N{U+043a}\N{U+0440}\N{U+0430}",
      "\N{U+043c}\N{U+0430}\N{U+044f}",
      "\N{U+0447}\N{U+044d}\N{U+0440}",
      "\N{U+043b}\N{U+0456}\N{U+043f}",
      "\N{U+0436}\N{U+043d}\N{U+0456}",
      "\N{U+0432}\N{U+0435}\N{U+0440}",
      "\N{U+043a}\N{U+0430}\N{U+0441}",
      "\N{U+043b}\N{U+0456}\N{U+0441}",
      "\N{U+0441}\N{U+043d}\N{U+0435}"
    ],
    month_format_narrow => [
      "\N{U+0441}",
      "\N{U+043b}",
      "\N{U+0441}",
      "\N{U+043a}",
      "\N{U+043c}",
      "\N{U+0447}",
      "\N{U+043b}",
      "\N{U+0436}",
      "\N{U+0432}",
      "\N{U+043a}",
      "\N{U+043b}",
      "\N{U+0441}"
    ],
    month_format_wide => [
      "\N{U+0441}\N{U+0442}\N{U+0443}\N{U+0434}\N{U+0437}\N{U+0435}\N{U+043d}\N{U+044f}",
      "\N{U+043b}\N{U+044e}\N{U+0442}\N{U+0430}\N{U+0433}\N{U+0430}",
      "\N{U+0441}\N{U+0430}\N{U+043a}\N{U+0430}\N{U+0432}\N{U+0456}\N{U+043a}\N{U+0430}",
      "\N{U+043a}\N{U+0440}\N{U+0430}\N{U+0441}\N{U+0430}\N{U+0432}\N{U+0456}\N{U+043a}\N{U+0430}",
      "\N{U+043c}\N{U+0430}\N{U+044f}",
      "\N{U+0447}\N{U+044d}\N{U+0440}\N{U+0432}\N{U+0435}\N{U+043d}\N{U+044f}",
      "\N{U+043b}\N{U+0456}\N{U+043f}\N{U+0435}\N{U+043d}\N{U+044f}",
      "\N{U+0436}\N{U+043d}\N{U+0456}\N{U+045e}\N{U+043d}\N{U+044f}",
      "\N{U+0432}\N{U+0435}\N{U+0440}\N{U+0430}\N{U+0441}\N{U+043d}\N{U+044f}",
      "\N{U+043a}\N{U+0430}\N{U+0441}\N{U+0442}\N{U+0440}\N{U+044b}\N{U+0447}\N{U+043d}\N{U+0456}\N{U+043a}\N{U+0430}",
      "\N{U+043b}\N{U+0456}\N{U+0441}\N{U+0442}\N{U+0430}\N{U+043f}\N{U+0430}\N{U+0434}\N{U+0430}",
      "\N{U+0441}\N{U+043d}\N{U+0435}\N{U+0436}\N{U+043d}\N{U+044f}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0441}\N{U+0442}\N{U+0443}",
      "\N{U+043b}\N{U+044e}\N{U+0442}",
      "\N{U+0441}\N{U+0430}\N{U+043a}",
      "\N{U+043a}\N{U+0440}\N{U+0430}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0447}\N{U+044d}\N{U+0440}",
      "\N{U+043b}\N{U+0456}\N{U+043f}",
      "\N{U+0436}\N{U+043d}\N{U+0456}",
      "\N{U+0432}\N{U+0435}\N{U+0440}",
      "\N{U+043a}\N{U+0430}\N{U+0441}",
      "\N{U+043b}\N{U+0456}\N{U+0441}",
      "\N{U+0441}\N{U+043d}\N{U+0435}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0441}",
      "\N{U+043b}",
      "\N{U+0441}",
      "\N{U+043a}",
      "\N{U+043c}",
      "\N{U+0447}",
      "\N{U+043b}",
      "\N{U+0436}",
      "\N{U+0432}",
      "\N{U+043a}",
      "\N{U+043b}",
      "\N{U+0441}"
    ],
    month_stand_alone_wide => [
      "\N{U+0441}\N{U+0442}\N{U+0443}\N{U+0434}\N{U+0437}\N{U+0435}\N{U+043d}\N{U+044c}",
      "\N{U+043b}\N{U+044e}\N{U+0442}\N{U+044b}",
      "\N{U+0441}\N{U+0430}\N{U+043a}\N{U+0430}\N{U+0432}\N{U+0456}\N{U+043a}",
      "\N{U+043a}\N{U+0440}\N{U+0430}\N{U+0441}\N{U+0430}\N{U+0432}\N{U+0456}\N{U+043a}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0447}\N{U+044d}\N{U+0440}\N{U+0432}\N{U+0435}\N{U+043d}\N{U+044c}",
      "\N{U+043b}\N{U+0456}\N{U+043f}\N{U+0435}\N{U+043d}\N{U+044c}",
      "\N{U+0436}\N{U+043d}\N{U+0456}\N{U+0432}\N{U+0435}\N{U+043d}\N{U+044c}",
      "\N{U+0432}\N{U+0435}\N{U+0440}\N{U+0430}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+044c}",
      "\N{U+043a}\N{U+0430}\N{U+0441}\N{U+0442}\N{U+0440}\N{U+044b}\N{U+0447}\N{U+043d}\N{U+0456}\N{U+043a}",
      "\N{U+043b}\N{U+0456}\N{U+0441}\N{U+0442}\N{U+0430}\N{U+043f}\N{U+0430}\N{U+0434}",
      "\N{U+0441}\N{U+043d}\N{U+0435}\N{U+0436}\N{U+0430}\N{U+043d}\N{U+044c}"
    ],
    name => "Belarusian",
    native_language => "\N{U+0431}\N{U+0435}\N{U+043b}\N{U+0430}\N{U+0440}\N{U+0443}\N{U+0441}\N{U+043a}\N{U+0430}\N{U+044f}",
    native_name => "\N{U+0431}\N{U+0435}\N{U+043b}\N{U+0430}\N{U+0440}\N{U+0443}\N{U+0441}\N{U+043a}\N{U+0430}\N{U+044f}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "1-\N{U+0448}\N{U+044b} \N{U+043a}\N{U+0432}.",
      "2-\N{U+0433}\N{U+0456} \N{U+043a}\N{U+0432}.",
      "3-\N{U+0446}\N{U+0456} \N{U+043a}\N{U+0432}.",
      "4-\N{U+0442}\N{U+044b} \N{U+043a}\N{U+0432}."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1-\N{U+0448}\N{U+044b} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0433}\N{U+0456} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0446}\N{U+0456} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+0442}\N{U+044b} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    quarter_stand_alone_abbreviated => [
      "1-\N{U+0448}\N{U+044b} \N{U+043a}\N{U+0432}.",
      "2-\N{U+0433}\N{U+0456} \N{U+043a}\N{U+0432}.",
      "3-\N{U+0446}\N{U+0456} \N{U+043a}\N{U+0432}.",
      "4-\N{U+0442}\N{U+044b} \N{U+043a}\N{U+0432}."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-\N{U+0448}\N{U+044b} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0433}\N{U+0456} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0446}\N{U+0456} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+0442}\N{U+044b} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH.mm.ss zzzz",
    time_format_long => "HH.mm.ss z",
    time_format_medium => "HH.mm.ss",
    time_format_short => "HH.mm",
    variant => undef,
    version => 28
  }
  __[ be-BY ]__
  {
    am_pm_abbreviated => [
      "\N{U+0440}\N{U+0430}\N{U+043d}\N{U+0456}\N{U+0446}\N{U+044b}",
      "\N{U+0432}\N{U+0435}\N{U+0447}\N{U+0430}\N{U+0440}\N{U+0430}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH.mm",
      EHms => "E HH.mm.ss",
      Ed => "d, E",
      Ehm => "E hh.mm a",
      Ehms => "E hh.mm.ss a",
      Gy => "y G",
      GyMMM => "LLL y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH.mm",
      Hms => "HH.mm.ss",
      Hmsv => "HH.mm.ss v",
      Hmv => "HH.mm v",
      M => "L",
      MEd => "E, d.M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d.M",
      d => "d",
      h => "hh a",
      hm => "hh.mm a",
      hms => "hh.mm.ss a",
      hmsv => "hh.mm.ss a v",
      hmv => "hh.mm a v",
      ms => "mm.ss",
      y => "y",
      yM => "M.y",
      yMEd => "E, d.M.y",
      yMMM => "LLL y",
      yMMMEd => "E, d MMM y",
      yMMMM => "LLLL y",
      yMMMd => "d MMM y",
      yMd => "d.M.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "be-BY",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d.M.y",
    date_format_short => "d.M.yy",
    datetime_format_full => "{1} '\N{U+0443}' {0}",
    datetime_format_long => "{1} '\N{U+0443}' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+043f}\N{U+043d}",
      "\N{U+0430}\N{U+045e}",
      "\N{U+0441}\N{U+0440}",
      "\N{U+0447}\N{U+0446}",
      "\N{U+043f}\N{U+0442}",
      "\N{U+0441}\N{U+0431}",
      "\N{U+043d}\N{U+0434}"
    ],
    day_format_narrow => [
      "\N{U+043f}",
      "\N{U+0430}",
      "\N{U+0441}",
      "\N{U+0447}",
      "\N{U+043f}",
      "\N{U+0441}",
      "\N{U+043d}"
    ],
    day_format_wide => [
      "\N{U+043f}\N{U+0430}\N{U+043d}\N{U+044f}\N{U+0434}\N{U+0437}\N{U+0435}\N{U+043b}\N{U+0430}\N{U+043a}",
      "\N{U+0430}\N{U+045e}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0435}\N{U+0440}\N{U+0430}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0430}\N{U+0446}\N{U+0432}\N{U+0435}\N{U+0440}",
      "\N{U+043f}\N{U+044f}\N{U+0442}\N{U+043d}\N{U+0456}\N{U+0446}\N{U+0430}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+044f}\N{U+0434}\N{U+0437}\N{U+0435}\N{U+043b}\N{U+044f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+043f}\N{U+043d}",
      "\N{U+0430}\N{U+045e}",
      "\N{U+0441}\N{U+0440}",
      "\N{U+0447}\N{U+0446}",
      "\N{U+043f}\N{U+0442}",
      "\N{U+0441}\N{U+0431}",
      "\N{U+043d}\N{U+0434}"
    ],
    day_stand_alone_narrow => [
      "\N{U+043f}",
      "\N{U+0430}",
      "\N{U+0441}",
      "\N{U+0447}",
      "\N{U+043f}",
      "\N{U+0441}",
      "\N{U+043d}"
    ],
    day_stand_alone_wide => [
      "\N{U+043f}\N{U+0430}\N{U+043d}\N{U+044f}\N{U+0434}\N{U+0437}\N{U+0435}\N{U+043b}\N{U+0430}\N{U+043a}",
      "\N{U+0430}\N{U+045e}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0435}\N{U+0440}\N{U+0430}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0430}\N{U+0446}\N{U+0432}\N{U+0435}\N{U+0440}",
      "\N{U+043f}\N{U+044f}\N{U+0442}\N{U+043d}\N{U+0456}\N{U+0446}\N{U+0430}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+044f}\N{U+0434}\N{U+0437}\N{U+0435}\N{U+043b}\N{U+044f}"
    ],
    era_abbreviated => [
      "\N{U+0434}\N{U+0430} \N{U+043d}.\N{U+044d}.",
      "\N{U+043d}.\N{U+044d}."
    ],
    era_narrow => [
      "\N{U+0434}\N{U+0430} \N{U+043d}.\N{U+044d}.",
      "\N{U+043d}.\N{U+044d}."
    ],
    era_wide => [
      "\N{U+0434}\N{U+0430} \N{U+043d}\N{U+0430}\N{U+0448}\N{U+0430}\N{U+0439} \N{U+044d}\N{U+0440}\N{U+044b}",
      "\N{U+043d}\N{U+0430}\N{U+0448}\N{U+0430}\N{U+0439} \N{U+044d}\N{U+0440}\N{U+044b}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d.%m.%Y",
    glibc_datetime_format => "%a %d %b %Y %T",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Belarusian",
    month_format_abbreviated => [
      "\N{U+0441}\N{U+0442}\N{U+0443}",
      "\N{U+043b}\N{U+044e}\N{U+0442}",
      "\N{U+0441}\N{U+0430}\N{U+043a}",
      "\N{U+043a}\N{U+0440}\N{U+0430}",
      "\N{U+043c}\N{U+0430}\N{U+044f}",
      "\N{U+0447}\N{U+044d}\N{U+0440}",
      "\N{U+043b}\N{U+0456}\N{U+043f}",
      "\N{U+0436}\N{U+043d}\N{U+0456}",
      "\N{U+0432}\N{U+0435}\N{U+0440}",
      "\N{U+043a}\N{U+0430}\N{U+0441}",
      "\N{U+043b}\N{U+0456}\N{U+0441}",
      "\N{U+0441}\N{U+043d}\N{U+0435}"
    ],
    month_format_narrow => [
      "\N{U+0441}",
      "\N{U+043b}",
      "\N{U+0441}",
      "\N{U+043a}",
      "\N{U+043c}",
      "\N{U+0447}",
      "\N{U+043b}",
      "\N{U+0436}",
      "\N{U+0432}",
      "\N{U+043a}",
      "\N{U+043b}",
      "\N{U+0441}"
    ],
    month_format_wide => [
      "\N{U+0441}\N{U+0442}\N{U+0443}\N{U+0434}\N{U+0437}\N{U+0435}\N{U+043d}\N{U+044f}",
      "\N{U+043b}\N{U+044e}\N{U+0442}\N{U+0430}\N{U+0433}\N{U+0430}",
      "\N{U+0441}\N{U+0430}\N{U+043a}\N{U+0430}\N{U+0432}\N{U+0456}\N{U+043a}\N{U+0430}",
      "\N{U+043a}\N{U+0440}\N{U+0430}\N{U+0441}\N{U+0430}\N{U+0432}\N{U+0456}\N{U+043a}\N{U+0430}",
      "\N{U+043c}\N{U+0430}\N{U+044f}",
      "\N{U+0447}\N{U+044d}\N{U+0440}\N{U+0432}\N{U+0435}\N{U+043d}\N{U+044f}",
      "\N{U+043b}\N{U+0456}\N{U+043f}\N{U+0435}\N{U+043d}\N{U+044f}",
      "\N{U+0436}\N{U+043d}\N{U+0456}\N{U+045e}\N{U+043d}\N{U+044f}",
      "\N{U+0432}\N{U+0435}\N{U+0440}\N{U+0430}\N{U+0441}\N{U+043d}\N{U+044f}",
      "\N{U+043a}\N{U+0430}\N{U+0441}\N{U+0442}\N{U+0440}\N{U+044b}\N{U+0447}\N{U+043d}\N{U+0456}\N{U+043a}\N{U+0430}",
      "\N{U+043b}\N{U+0456}\N{U+0441}\N{U+0442}\N{U+0430}\N{U+043f}\N{U+0430}\N{U+0434}\N{U+0430}",
      "\N{U+0441}\N{U+043d}\N{U+0435}\N{U+0436}\N{U+043d}\N{U+044f}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0441}\N{U+0442}\N{U+0443}",
      "\N{U+043b}\N{U+044e}\N{U+0442}",
      "\N{U+0441}\N{U+0430}\N{U+043a}",
      "\N{U+043a}\N{U+0440}\N{U+0430}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0447}\N{U+044d}\N{U+0440}",
      "\N{U+043b}\N{U+0456}\N{U+043f}",
      "\N{U+0436}\N{U+043d}\N{U+0456}",
      "\N{U+0432}\N{U+0435}\N{U+0440}",
      "\N{U+043a}\N{U+0430}\N{U+0441}",
      "\N{U+043b}\N{U+0456}\N{U+0441}",
      "\N{U+0441}\N{U+043d}\N{U+0435}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0441}",
      "\N{U+043b}",
      "\N{U+0441}",
      "\N{U+043a}",
      "\N{U+043c}",
      "\N{U+0447}",
      "\N{U+043b}",
      "\N{U+0436}",
      "\N{U+0432}",
      "\N{U+043a}",
      "\N{U+043b}",
      "\N{U+0441}"
    ],
    month_stand_alone_wide => [
      "\N{U+0441}\N{U+0442}\N{U+0443}\N{U+0434}\N{U+0437}\N{U+0435}\N{U+043d}\N{U+044c}",
      "\N{U+043b}\N{U+044e}\N{U+0442}\N{U+044b}",
      "\N{U+0441}\N{U+0430}\N{U+043a}\N{U+0430}\N{U+0432}\N{U+0456}\N{U+043a}",
      "\N{U+043a}\N{U+0440}\N{U+0430}\N{U+0441}\N{U+0430}\N{U+0432}\N{U+0456}\N{U+043a}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0447}\N{U+044d}\N{U+0440}\N{U+0432}\N{U+0435}\N{U+043d}\N{U+044c}",
      "\N{U+043b}\N{U+0456}\N{U+043f}\N{U+0435}\N{U+043d}\N{U+044c}",
      "\N{U+0436}\N{U+043d}\N{U+0456}\N{U+0432}\N{U+0435}\N{U+043d}\N{U+044c}",
      "\N{U+0432}\N{U+0435}\N{U+0440}\N{U+0430}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+044c}",
      "\N{U+043a}\N{U+0430}\N{U+0441}\N{U+0442}\N{U+0440}\N{U+044b}\N{U+0447}\N{U+043d}\N{U+0456}\N{U+043a}",
      "\N{U+043b}\N{U+0456}\N{U+0441}\N{U+0442}\N{U+0430}\N{U+043f}\N{U+0430}\N{U+0434}",
      "\N{U+0441}\N{U+043d}\N{U+0435}\N{U+0436}\N{U+0430}\N{U+043d}\N{U+044c}"
    ],
    name => "Belarusian Belarus",
    native_language => "\N{U+0431}\N{U+0435}\N{U+043b}\N{U+0430}\N{U+0440}\N{U+0443}\N{U+0441}\N{U+043a}\N{U+0430}\N{U+044f}",
    native_name => "\N{U+0431}\N{U+0435}\N{U+043b}\N{U+0430}\N{U+0440}\N{U+0443}\N{U+0441}\N{U+043a}\N{U+0430}\N{U+044f} \N{U+0411}\N{U+0435}\N{U+043b}\N{U+0430}\N{U+0440}\N{U+0443}\N{U+0441}\N{U+044c}",
    native_script => undef,
    native_territory => "\N{U+0411}\N{U+0435}\N{U+043b}\N{U+0430}\N{U+0440}\N{U+0443}\N{U+0441}\N{U+044c}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1-\N{U+0448}\N{U+044b} \N{U+043a}\N{U+0432}.",
      "2-\N{U+0433}\N{U+0456} \N{U+043a}\N{U+0432}.",
      "3-\N{U+0446}\N{U+0456} \N{U+043a}\N{U+0432}.",
      "4-\N{U+0442}\N{U+044b} \N{U+043a}\N{U+0432}."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1-\N{U+0448}\N{U+044b} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0433}\N{U+0456} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0446}\N{U+0456} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+0442}\N{U+044b} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    quarter_stand_alone_abbreviated => [
      "1-\N{U+0448}\N{U+044b} \N{U+043a}\N{U+0432}.",
      "2-\N{U+0433}\N{U+0456} \N{U+043a}\N{U+0432}.",
      "3-\N{U+0446}\N{U+0456} \N{U+043a}\N{U+0432}.",
      "4-\N{U+0442}\N{U+044b} \N{U+043a}\N{U+0432}."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-\N{U+0448}\N{U+044b} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0433}\N{U+0456} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0446}\N{U+0456} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+0442}\N{U+044b} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    script => undef,
    territory => "Belarus",
    time_format_full => "HH.mm.ss zzzz",
    time_format_long => "HH.mm.ss z",
    time_format_medium => "HH.mm.ss",
    time_format_short => "HH.mm",
    variant => undef,
    version => 28
  }
  __[ bem ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "bem",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Palichimo",
      "Palichibuli",
      "Palichitatu",
      "Palichine",
      "Palichisano",
      "Pachibelushi",
      "Pa Mulungu"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Palichimo",
      "Palichibuli",
      "Palichitatu",
      "Palichine",
      "Palichisano",
      "Pachibelushi",
      "Pa Mulungu"
    ],
    day_stand_alone_abbreviated => [
      "Palichimo",
      "Palichibuli",
      "Palichitatu",
      "Palichine",
      "Palichisano",
      "Pachibelushi",
      "Pa Mulungu"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Palichimo",
      "Palichibuli",
      "Palichitatu",
      "Palichine",
      "Palichisano",
      "Pachibelushi",
      "Pa Mulungu"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "Before Yesu",
      "After Yesu"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Bemba",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Epr",
      "Mei",
      "Jun",
      "Jul",
      "Oga",
      "Sep",
      "Okt",
      "Nov",
      "Dis"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "E",
      "M",
      "J",
      "J",
      "O",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Epreo",
      "Mei",
      "Juni",
      "Julai",
      "Ogasti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Disemba"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Epr",
      "Mei",
      "Jun",
      "Jul",
      "Oga",
      "Sep",
      "Okt",
      "Nov",
      "Dis"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "E",
      "M",
      "J",
      "J",
      "O",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Epreo",
      "Mei",
      "Juni",
      "Julai",
      "Ogasti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Disemba"
    ],
    name => "Bemba",
    native_language => "Ichibemba",
    native_name => "Ichibemba",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ bem-ZM ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "bem-ZM",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Palichimo",
      "Palichibuli",
      "Palichitatu",
      "Palichine",
      "Palichisano",
      "Pachibelushi",
      "Pa Mulungu"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Palichimo",
      "Palichibuli",
      "Palichitatu",
      "Palichine",
      "Palichisano",
      "Pachibelushi",
      "Pa Mulungu"
    ],
    day_stand_alone_abbreviated => [
      "Palichimo",
      "Palichibuli",
      "Palichitatu",
      "Palichine",
      "Palichisano",
      "Pachibelushi",
      "Pa Mulungu"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Palichimo",
      "Palichibuli",
      "Palichitatu",
      "Palichine",
      "Palichisano",
      "Pachibelushi",
      "Pa Mulungu"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "Before Yesu",
      "After Yesu"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%Y",
    glibc_datetime_format => "%a %d %b %Y %R %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Bemba",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Epr",
      "Mei",
      "Jun",
      "Jul",
      "Oga",
      "Sep",
      "Okt",
      "Nov",
      "Dis"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "E",
      "M",
      "J",
      "J",
      "O",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Epreo",
      "Mei",
      "Juni",
      "Julai",
      "Ogasti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Disemba"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Epr",
      "Mei",
      "Jun",
      "Jul",
      "Oga",
      "Sep",
      "Okt",
      "Nov",
      "Dis"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "E",
      "M",
      "J",
      "J",
      "O",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Epreo",
      "Mei",
      "Juni",
      "Julai",
      "Ogasti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Disemba"
    ],
    name => "Bemba Zambia",
    native_language => "Ichibemba",
    native_name => "Ichibemba Zambia",
    native_script => undef,
    native_territory => "Zambia",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "Zambia",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ bez ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "bez",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Vil",
      "Hiv",
      "Hid",
      "Hit",
      "Hih",
      "Lem",
      "Mul"
    ],
    day_format_narrow => [
      "J",
      "H",
      "H",
      "H",
      "W",
      "J",
      "M"
    ],
    day_format_wide => [
      "pa shahuviluha",
      "pa hivili",
      "pa hidatu",
      "pa hitayi",
      "pa hihanu",
      "pa shahulembela",
      "pa mulungu"
    ],
    day_stand_alone_abbreviated => [
      "Vil",
      "Hiv",
      "Hid",
      "Hit",
      "Hih",
      "Lem",
      "Mul"
    ],
    day_stand_alone_narrow => [
      "J",
      "H",
      "H",
      "H",
      "W",
      "J",
      "M"
    ],
    day_stand_alone_wide => [
      "pa shahuviluha",
      "pa hivili",
      "pa hidatu",
      "pa hitayi",
      "pa hihanu",
      "pa shahulembela",
      "pa mulungu"
    ],
    era_abbreviated => [
      "KM",
      "BM"
    ],
    era_narrow => [
      "KM",
      "BM"
    ],
    era_wide => [
      "Kabla ya Mtwaa",
      "Baada ya Mtwaa"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Bena",
    month_format_abbreviated => [
      "Hut",
      "Vil",
      "Dat",
      "Tai",
      "Han",
      "Sit",
      "Sab",
      "Nan",
      "Tis",
      "Kum",
      "Kmj",
      "Kmb"
    ],
    month_format_narrow => [
      "H",
      "V",
      "D",
      "T",
      "H",
      "S",
      "S",
      "N",
      "T",
      "K",
      "K",
      "K"
    ],
    month_format_wide => [
      "pa mwedzi gwa hutala",
      "pa mwedzi gwa wuvili",
      "pa mwedzi gwa wudatu",
      "pa mwedzi gwa wutai",
      "pa mwedzi gwa wuhanu",
      "pa mwedzi gwa sita",
      "pa mwedzi gwa saba",
      "pa mwedzi gwa nane",
      "pa mwedzi gwa tisa",
      "pa mwedzi gwa kumi",
      "pa mwedzi gwa kumi na moja",
      "pa mwedzi gwa kumi na mbili"
    ],
    month_stand_alone_abbreviated => [
      "Hut",
      "Vil",
      "Dat",
      "Tai",
      "Han",
      "Sit",
      "Sab",
      "Nan",
      "Tis",
      "Kum",
      "Kmj",
      "Kmb"
    ],
    month_stand_alone_narrow => [
      "H",
      "V",
      "D",
      "T",
      "H",
      "S",
      "S",
      "N",
      "T",
      "K",
      "K",
      "K"
    ],
    month_stand_alone_wide => [
      "pa mwedzi gwa hutala",
      "pa mwedzi gwa wuvili",
      "pa mwedzi gwa wudatu",
      "pa mwedzi gwa wutai",
      "pa mwedzi gwa wuhanu",
      "pa mwedzi gwa sita",
      "pa mwedzi gwa saba",
      "pa mwedzi gwa nane",
      "pa mwedzi gwa tisa",
      "pa mwedzi gwa kumi",
      "pa mwedzi gwa kumi na moja",
      "pa mwedzi gwa kumi na mbili"
    ],
    name => "Bena",
    native_language => "Hibena",
    native_name => "Hibena",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "L1",
      "L2",
      "L3",
      "L4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Lobo 1",
      "Lobo 2",
      "Lobo 3",
      "Lobo 4"
    ],
    quarter_stand_alone_abbreviated => [
      "L1",
      "L2",
      "L3",
      "L4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Lobo 1",
      "Lobo 2",
      "Lobo 3",
      "Lobo 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ bez-TZ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "bez-TZ",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Vil",
      "Hiv",
      "Hid",
      "Hit",
      "Hih",
      "Lem",
      "Mul"
    ],
    day_format_narrow => [
      "J",
      "H",
      "H",
      "H",
      "W",
      "J",
      "M"
    ],
    day_format_wide => [
      "pa shahuviluha",
      "pa hivili",
      "pa hidatu",
      "pa hitayi",
      "pa hihanu",
      "pa shahulembela",
      "pa mulungu"
    ],
    day_stand_alone_abbreviated => [
      "Vil",
      "Hiv",
      "Hid",
      "Hit",
      "Hih",
      "Lem",
      "Mul"
    ],
    day_stand_alone_narrow => [
      "J",
      "H",
      "H",
      "H",
      "W",
      "J",
      "M"
    ],
    day_stand_alone_wide => [
      "pa shahuviluha",
      "pa hivili",
      "pa hidatu",
      "pa hitayi",
      "pa hihanu",
      "pa shahulembela",
      "pa mulungu"
    ],
    era_abbreviated => [
      "KM",
      "BM"
    ],
    era_narrow => [
      "KM",
      "BM"
    ],
    era_wide => [
      "Kabla ya Mtwaa",
      "Baada ya Mtwaa"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Bena",
    month_format_abbreviated => [
      "Hut",
      "Vil",
      "Dat",
      "Tai",
      "Han",
      "Sit",
      "Sab",
      "Nan",
      "Tis",
      "Kum",
      "Kmj",
      "Kmb"
    ],
    month_format_narrow => [
      "H",
      "V",
      "D",
      "T",
      "H",
      "S",
      "S",
      "N",
      "T",
      "K",
      "K",
      "K"
    ],
    month_format_wide => [
      "pa mwedzi gwa hutala",
      "pa mwedzi gwa wuvili",
      "pa mwedzi gwa wudatu",
      "pa mwedzi gwa wutai",
      "pa mwedzi gwa wuhanu",
      "pa mwedzi gwa sita",
      "pa mwedzi gwa saba",
      "pa mwedzi gwa nane",
      "pa mwedzi gwa tisa",
      "pa mwedzi gwa kumi",
      "pa mwedzi gwa kumi na moja",
      "pa mwedzi gwa kumi na mbili"
    ],
    month_stand_alone_abbreviated => [
      "Hut",
      "Vil",
      "Dat",
      "Tai",
      "Han",
      "Sit",
      "Sab",
      "Nan",
      "Tis",
      "Kum",
      "Kmj",
      "Kmb"
    ],
    month_stand_alone_narrow => [
      "H",
      "V",
      "D",
      "T",
      "H",
      "S",
      "S",
      "N",
      "T",
      "K",
      "K",
      "K"
    ],
    month_stand_alone_wide => [
      "pa mwedzi gwa hutala",
      "pa mwedzi gwa wuvili",
      "pa mwedzi gwa wudatu",
      "pa mwedzi gwa wutai",
      "pa mwedzi gwa wuhanu",
      "pa mwedzi gwa sita",
      "pa mwedzi gwa saba",
      "pa mwedzi gwa nane",
      "pa mwedzi gwa tisa",
      "pa mwedzi gwa kumi",
      "pa mwedzi gwa kumi na moja",
      "pa mwedzi gwa kumi na mbili"
    ],
    name => "Bena Tanzania",
    native_language => "Hibena",
    native_name => "Hibena Hutanzania",
    native_script => undef,
    native_territory => "Hutanzania",
    native_variant => undef,
    quarter_format_abbreviated => [
      "L1",
      "L2",
      "L3",
      "L4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Lobo 1",
      "Lobo 2",
      "Lobo 3",
      "Lobo 4"
    ],
    quarter_stand_alone_abbreviated => [
      "L1",
      "L2",
      "L3",
      "L4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Lobo 1",
      "Lobo 2",
      "Lobo 3",
      "Lobo 4"
    ],
    script => undef,
    territory => "Tanzania",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ bg ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, H:mm:ss",
      Ed => "E, d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y '\N{U+0433}'. G",
      GyMMM => "MM.y '\N{U+0433}'. G",
      GyMMMEd => "E, d.MM.y '\N{U+0433}'. G",
      GyMMMM => "MMMM y '\N{U+0433}'. G",
      GyMMMMEd => "E, d MMMM y '\N{U+0433}'. G",
      GyMMMMd => "d MMMM y '\N{U+0433}'. G",
      GyMMMd => "d.MM.y '\N{U+0433}'. G",
      H => "H",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.MM",
      MMM => "MM",
      MMMEd => "E, d.MM",
      MMMM => "LLLL",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMMdd => "d MMMM",
      MMMd => "d.MM",
      Md => "d.MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y '\N{U+0433}'.",
      yM => "M.y '\N{U+0433}'.",
      yMEd => "E, d.MM.y '\N{U+0433}'.",
      yMMM => "MM.y '\N{U+0433}'.",
      yMMMEd => "E, d.MM.y '\N{U+0433}'.",
      yMMMM => "MMMM y '\N{U+0433}'.",
      yMMMMEd => "E, d MMMM y '\N{U+0433}'.",
      yMMMMd => "d MMMM y '\N{U+0433}'.",
      yMMMd => "d.MM.y '\N{U+0433}'.",
      yMd => "d.MM.y '\N{U+0433}'.",
      yQQQ => "QQQ y '\N{U+0433}'.",
      yQQQQ => "QQQQ y '\N{U+0433}'."
    },
    code => "bg",
    date_format_full => "EEEE, d MMMM y '\N{U+0433}'.",
    date_format_long => "d MMMM y '\N{U+0433}'.",
    date_format_medium => "d.MM.y '\N{U+0433}'.",
    date_format_short => "d.MM.yy '\N{U+0433}'.",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+043f}\N{U+043d}",
      "\N{U+0432}\N{U+0442}",
      "\N{U+0441}\N{U+0440}",
      "\N{U+0447}\N{U+0442}",
      "\N{U+043f}\N{U+0442}",
      "\N{U+0441}\N{U+0431}",
      "\N{U+043d}\N{U+0434}"
    ],
    day_format_narrow => [
      "\N{U+043f}",
      "\N{U+0432}",
      "\N{U+0441}",
      "\N{U+0447}",
      "\N{U+043f}",
      "\N{U+0441}",
      "\N{U+043d}"
    ],
    day_format_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+043b}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0432}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+044f}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+044a}\N{U+0440}\N{U+0442}\N{U+044a}\N{U+043a}",
      "\N{U+043f}\N{U+0435}\N{U+0442}\N{U+044a}\N{U+043a}",
      "\N{U+0441}\N{U+044a}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+043b}\N{U+044f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+043f}\N{U+043d}",
      "\N{U+0432}\N{U+0442}",
      "\N{U+0441}\N{U+0440}",
      "\N{U+0447}\N{U+0442}",
      "\N{U+043f}\N{U+0442}",
      "\N{U+0441}\N{U+0431}",
      "\N{U+043d}\N{U+0434}"
    ],
    day_stand_alone_narrow => [
      "\N{U+043f}",
      "\N{U+0432}",
      "\N{U+0441}",
      "\N{U+0447}",
      "\N{U+043f}",
      "\N{U+0441}",
      "\N{U+043d}"
    ],
    day_stand_alone_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+043b}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0432}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+044f}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+044a}\N{U+0440}\N{U+0442}\N{U+044a}\N{U+043a}",
      "\N{U+043f}\N{U+0435}\N{U+0442}\N{U+044a}\N{U+043a}",
      "\N{U+0441}\N{U+044a}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+043b}\N{U+044f}"
    ],
    era_abbreviated => [
      "\N{U+043f}\N{U+0440}.\N{U+0425}\N{U+0440}.",
      "\N{U+0441}\N{U+043b}.\N{U+0425}\N{U+0440}."
    ],
    era_narrow => [
      "\N{U+043f}\N{U+0440}.\N{U+0425}\N{U+0440}.",
      "\N{U+0441}\N{U+043b}.\N{U+0425}\N{U+0440}."
    ],
    era_wide => [
      "\N{U+043f}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0438} \N{U+0425}\N{U+0440}\N{U+0438}\N{U+0441}\N{U+0442}\N{U+0430}",
      "\N{U+0441}\N{U+043b}\N{U+0435}\N{U+0434} \N{U+0425}\N{U+0440}\N{U+0438}\N{U+0441}\N{U+0442}\N{U+0430}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Bulgarian",
    month_format_abbreviated => [
      "\N{U+044f}\N{U+043d}\N{U+0443}",
      "\N{U+0444}\N{U+0435}\N{U+0432}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+044e}\N{U+043d}\N{U+0438}",
      "\N{U+044e}\N{U+043b}\N{U+0438}",
      "\N{U+0430}\N{U+0432}\N{U+0433}",
      "\N{U+0441}\N{U+0435}\N{U+043f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}",
      "\N{U+043d}\N{U+043e}\N{U+0435}",
      "\N{U+0434}\N{U+0435}\N{U+043a}"
    ],
    month_format_narrow => [
      "\N{U+044f}",
      "\N{U+0444}",
      "\N{U+043c}",
      "\N{U+0430}",
      "\N{U+043c}",
      "\N{U+044e}",
      "\N{U+044e}",
      "\N{U+0430}",
      "\N{U+0441}",
      "\N{U+043e}",
      "\N{U+043d}",
      "\N{U+0434}"
    ],
    month_format_wide => [
      "\N{U+044f}\N{U+043d}\N{U+0443}\N{U+0430}\N{U+0440}\N{U+0438}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0443}\N{U+0430}\N{U+0440}\N{U+0438}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0438}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+044e}\N{U+043d}\N{U+0438}",
      "\N{U+044e}\N{U+043b}\N{U+0438}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043f}\N{U+0442}\N{U+0435}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+043e}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}",
      "\N{U+043d}\N{U+043e}\N{U+0435}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0435}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+044f}\N{U+043d}\N{U+0443}",
      "\N{U+0444}\N{U+0435}\N{U+0432}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+044e}\N{U+043d}\N{U+0438}",
      "\N{U+044e}\N{U+043b}\N{U+0438}",
      "\N{U+0430}\N{U+0432}\N{U+0433}",
      "\N{U+0441}\N{U+0435}\N{U+043f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}",
      "\N{U+043d}\N{U+043e}\N{U+0435}",
      "\N{U+0434}\N{U+0435}\N{U+043a}"
    ],
    month_stand_alone_narrow => [
      "\N{U+044f}",
      "\N{U+0444}",
      "\N{U+043c}",
      "\N{U+0430}",
      "\N{U+043c}",
      "\N{U+044e}",
      "\N{U+044e}",
      "\N{U+0430}",
      "\N{U+0441}",
      "\N{U+043e}",
      "\N{U+043d}",
      "\N{U+0434}"
    ],
    month_stand_alone_wide => [
      "\N{U+044f}\N{U+043d}\N{U+0443}\N{U+0430}\N{U+0440}\N{U+0438}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0443}\N{U+0430}\N{U+0440}\N{U+0438}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0438}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+044e}\N{U+043d}\N{U+0438}",
      "\N{U+044e}\N{U+043b}\N{U+0438}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043f}\N{U+0442}\N{U+0435}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+043e}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}",
      "\N{U+043d}\N{U+043e}\N{U+0435}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0435}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}"
    ],
    name => "Bulgarian",
    native_language => "\N{U+0431}\N{U+044a}\N{U+043b}\N{U+0433}\N{U+0430}\N{U+0440}\N{U+0441}\N{U+043a}\N{U+0438}",
    native_name => "\N{U+0431}\N{U+044a}\N{U+043b}\N{U+0433}\N{U+0430}\N{U+0440}\N{U+0441}\N{U+043a}\N{U+0438}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "1. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}.",
      "2. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}.",
      "3. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}.",
      "4. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0438}\N{U+0435}",
      "2. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0438}\N{U+0435}",
      "3. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0438}\N{U+0435}",
      "4. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0438}\N{U+0435}"
    ],
    quarter_stand_alone_abbreviated => [
      "1. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}.",
      "2. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}.",
      "3. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}.",
      "4. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0438}\N{U+0435}",
      "2. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0438}\N{U+0435}",
      "3. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0438}\N{U+0435}",
      "4. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0438}\N{U+0435}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "H:mm:ss zzzz",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ bg-BG ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, H:mm:ss",
      Ed => "E, d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y '\N{U+0433}'. G",
      GyMMM => "MM.y '\N{U+0433}'. G",
      GyMMMEd => "E, d.MM.y '\N{U+0433}'. G",
      GyMMMM => "MMMM y '\N{U+0433}'. G",
      GyMMMMEd => "E, d MMMM y '\N{U+0433}'. G",
      GyMMMMd => "d MMMM y '\N{U+0433}'. G",
      GyMMMd => "d.MM.y '\N{U+0433}'. G",
      H => "H",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.MM",
      MMM => "MM",
      MMMEd => "E, d.MM",
      MMMM => "LLLL",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMMdd => "d MMMM",
      MMMd => "d.MM",
      Md => "d.MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y '\N{U+0433}'.",
      yM => "M.y '\N{U+0433}'.",
      yMEd => "E, d.MM.y '\N{U+0433}'.",
      yMMM => "MM.y '\N{U+0433}'.",
      yMMMEd => "E, d.MM.y '\N{U+0433}'.",
      yMMMM => "MMMM y '\N{U+0433}'.",
      yMMMMEd => "E, d MMMM y '\N{U+0433}'.",
      yMMMMd => "d MMMM y '\N{U+0433}'.",
      yMMMd => "d.MM.y '\N{U+0433}'.",
      yMd => "d.MM.y '\N{U+0433}'.",
      yQQQ => "QQQ y '\N{U+0433}'.",
      yQQQQ => "QQQQ y '\N{U+0433}'."
    },
    code => "bg-BG",
    date_format_full => "EEEE, d MMMM y '\N{U+0433}'.",
    date_format_long => "d MMMM y '\N{U+0433}'.",
    date_format_medium => "d.MM.y '\N{U+0433}'.",
    date_format_short => "d.MM.yy '\N{U+0433}'.",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+043f}\N{U+043d}",
      "\N{U+0432}\N{U+0442}",
      "\N{U+0441}\N{U+0440}",
      "\N{U+0447}\N{U+0442}",
      "\N{U+043f}\N{U+0442}",
      "\N{U+0441}\N{U+0431}",
      "\N{U+043d}\N{U+0434}"
    ],
    day_format_narrow => [
      "\N{U+043f}",
      "\N{U+0432}",
      "\N{U+0441}",
      "\N{U+0447}",
      "\N{U+043f}",
      "\N{U+0441}",
      "\N{U+043d}"
    ],
    day_format_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+043b}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0432}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+044f}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+044a}\N{U+0440}\N{U+0442}\N{U+044a}\N{U+043a}",
      "\N{U+043f}\N{U+0435}\N{U+0442}\N{U+044a}\N{U+043a}",
      "\N{U+0441}\N{U+044a}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+043b}\N{U+044f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+043f}\N{U+043d}",
      "\N{U+0432}\N{U+0442}",
      "\N{U+0441}\N{U+0440}",
      "\N{U+0447}\N{U+0442}",
      "\N{U+043f}\N{U+0442}",
      "\N{U+0441}\N{U+0431}",
      "\N{U+043d}\N{U+0434}"
    ],
    day_stand_alone_narrow => [
      "\N{U+043f}",
      "\N{U+0432}",
      "\N{U+0441}",
      "\N{U+0447}",
      "\N{U+043f}",
      "\N{U+0441}",
      "\N{U+043d}"
    ],
    day_stand_alone_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+043b}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0432}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+044f}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+044a}\N{U+0440}\N{U+0442}\N{U+044a}\N{U+043a}",
      "\N{U+043f}\N{U+0435}\N{U+0442}\N{U+044a}\N{U+043a}",
      "\N{U+0441}\N{U+044a}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+043b}\N{U+044f}"
    ],
    era_abbreviated => [
      "\N{U+043f}\N{U+0440}.\N{U+0425}\N{U+0440}.",
      "\N{U+0441}\N{U+043b}.\N{U+0425}\N{U+0440}."
    ],
    era_narrow => [
      "\N{U+043f}\N{U+0440}.\N{U+0425}\N{U+0440}.",
      "\N{U+0441}\N{U+043b}.\N{U+0425}\N{U+0440}."
    ],
    era_wide => [
      "\N{U+043f}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0438} \N{U+0425}\N{U+0440}\N{U+0438}\N{U+0441}\N{U+0442}\N{U+0430}",
      "\N{U+0441}\N{U+043b}\N{U+0435}\N{U+0434} \N{U+0425}\N{U+0440}\N{U+0438}\N{U+0441}\N{U+0442}\N{U+0430}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%e.%m.%Y",
    glibc_datetime_format => "%x (%a) %X %Z",
    glibc_time_12_format => "%l,%M,%S",
    glibc_time_format => "%k,%M,%S",
    language => "Bulgarian",
    month_format_abbreviated => [
      "\N{U+044f}\N{U+043d}\N{U+0443}",
      "\N{U+0444}\N{U+0435}\N{U+0432}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+044e}\N{U+043d}\N{U+0438}",
      "\N{U+044e}\N{U+043b}\N{U+0438}",
      "\N{U+0430}\N{U+0432}\N{U+0433}",
      "\N{U+0441}\N{U+0435}\N{U+043f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}",
      "\N{U+043d}\N{U+043e}\N{U+0435}",
      "\N{U+0434}\N{U+0435}\N{U+043a}"
    ],
    month_format_narrow => [
      "\N{U+044f}",
      "\N{U+0444}",
      "\N{U+043c}",
      "\N{U+0430}",
      "\N{U+043c}",
      "\N{U+044e}",
      "\N{U+044e}",
      "\N{U+0430}",
      "\N{U+0441}",
      "\N{U+043e}",
      "\N{U+043d}",
      "\N{U+0434}"
    ],
    month_format_wide => [
      "\N{U+044f}\N{U+043d}\N{U+0443}\N{U+0430}\N{U+0440}\N{U+0438}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0443}\N{U+0430}\N{U+0440}\N{U+0438}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0438}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+044e}\N{U+043d}\N{U+0438}",
      "\N{U+044e}\N{U+043b}\N{U+0438}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043f}\N{U+0442}\N{U+0435}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+043e}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}",
      "\N{U+043d}\N{U+043e}\N{U+0435}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0435}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+044f}\N{U+043d}\N{U+0443}",
      "\N{U+0444}\N{U+0435}\N{U+0432}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+044e}\N{U+043d}\N{U+0438}",
      "\N{U+044e}\N{U+043b}\N{U+0438}",
      "\N{U+0430}\N{U+0432}\N{U+0433}",
      "\N{U+0441}\N{U+0435}\N{U+043f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}",
      "\N{U+043d}\N{U+043e}\N{U+0435}",
      "\N{U+0434}\N{U+0435}\N{U+043a}"
    ],
    month_stand_alone_narrow => [
      "\N{U+044f}",
      "\N{U+0444}",
      "\N{U+043c}",
      "\N{U+0430}",
      "\N{U+043c}",
      "\N{U+044e}",
      "\N{U+044e}",
      "\N{U+0430}",
      "\N{U+0441}",
      "\N{U+043e}",
      "\N{U+043d}",
      "\N{U+0434}"
    ],
    month_stand_alone_wide => [
      "\N{U+044f}\N{U+043d}\N{U+0443}\N{U+0430}\N{U+0440}\N{U+0438}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0443}\N{U+0430}\N{U+0440}\N{U+0438}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0438}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+044e}\N{U+043d}\N{U+0438}",
      "\N{U+044e}\N{U+043b}\N{U+0438}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043f}\N{U+0442}\N{U+0435}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+043e}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}",
      "\N{U+043d}\N{U+043e}\N{U+0435}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0435}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}"
    ],
    name => "Bulgarian Bulgaria",
    native_language => "\N{U+0431}\N{U+044a}\N{U+043b}\N{U+0433}\N{U+0430}\N{U+0440}\N{U+0441}\N{U+043a}\N{U+0438}",
    native_name => "\N{U+0431}\N{U+044a}\N{U+043b}\N{U+0433}\N{U+0430}\N{U+0440}\N{U+0441}\N{U+043a}\N{U+0438} \N{U+0411}\N{U+044a}\N{U+043b}\N{U+0433}\N{U+0430}\N{U+0440}\N{U+0438}\N{U+044f}",
    native_script => undef,
    native_territory => "\N{U+0411}\N{U+044a}\N{U+043b}\N{U+0433}\N{U+0430}\N{U+0440}\N{U+0438}\N{U+044f}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}.",
      "2. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}.",
      "3. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}.",
      "4. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0438}\N{U+0435}",
      "2. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0438}\N{U+0435}",
      "3. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0438}\N{U+0435}",
      "4. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0438}\N{U+0435}"
    ],
    quarter_stand_alone_abbreviated => [
      "1. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}.",
      "2. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}.",
      "3. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}.",
      "4. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0438}\N{U+0435}",
      "2. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0438}\N{U+0435}",
      "3. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0438}\N{U+0435}",
      "4. \N{U+0442}\N{U+0440}\N{U+0438}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0438}\N{U+0435}"
    ],
    script => undef,
    territory => "Bulgaria",
    time_format_full => "H:mm:ss zzzz",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ bm ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "M",
      MEd => "MM-dd, E",
      MMM => "MMM",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMd => "d/MM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "bm",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "nt\N{U+025b}",
      "tar",
      "ara",
      "ala",
      "jum",
      "sib",
      "kar"
    ],
    day_format_narrow => [
      "N",
      "T",
      "A",
      "A",
      "J",
      "S",
      "K"
    ],
    day_format_wide => [
      "nt\N{U+025b}n\N{U+025b}",
      "tarata",
      "araba",
      "alamisa",
      "juma",
      "sibiri",
      "kari"
    ],
    day_stand_alone_abbreviated => [
      "nt\N{U+025b}",
      "tar",
      "ara",
      "ala",
      "jum",
      "sib",
      "kar"
    ],
    day_stand_alone_narrow => [
      "N",
      "T",
      "A",
      "A",
      "J",
      "S",
      "K"
    ],
    day_stand_alone_wide => [
      "nt\N{U+025b}n\N{U+025b}",
      "tarata",
      "araba",
      "alamisa",
      "juma",
      "sibiri",
      "kari"
    ],
    era_abbreviated => [
      "J.-C. \N{U+0272}\N{U+025b}",
      "ni J.-C."
    ],
    era_narrow => [
      "J.-C. \N{U+0272}\N{U+025b}",
      "ni J.-C."
    ],
    era_wide => [
      "jezu krisiti \N{U+0272}\N{U+025b}",
      "jezu krisiti mink\N{U+025b}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Bambara",
    month_format_abbreviated => [
      "zan",
      "feb",
      "mar",
      "awi",
      "m\N{U+025b}",
      "zuw",
      "zul",
      "uti",
      "s\N{U+025b}t",
      "\N{U+0254}ku",
      "now",
      "des"
    ],
    month_format_narrow => [
      "Z",
      "F",
      "M",
      "A",
      "M",
      "Z",
      "Z",
      "U",
      "S",
      "\N{U+0186}",
      "N",
      "D"
    ],
    month_format_wide => [
      "zanwuye",
      "feburuye",
      "marisi",
      "awirili",
      "m\N{U+025b}",
      "zuw\N{U+025b}n",
      "zuluye",
      "uti",
      "s\N{U+025b}tanburu",
      "\N{U+0254}kut\N{U+0254}buru",
      "nowanburu",
      "desanburu"
    ],
    month_stand_alone_abbreviated => [
      "zan",
      "feb",
      "mar",
      "awi",
      "m\N{U+025b}",
      "zuw",
      "zul",
      "uti",
      "s\N{U+025b}t",
      "\N{U+0254}ku",
      "now",
      "des"
    ],
    month_stand_alone_narrow => [
      "Z",
      "F",
      "M",
      "A",
      "M",
      "Z",
      "Z",
      "U",
      "S",
      "\N{U+0186}",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "zanwuye",
      "feburuye",
      "marisi",
      "awirili",
      "m\N{U+025b}",
      "zuw\N{U+025b}n",
      "zuluye",
      "uti",
      "s\N{U+025b}tanburu",
      "\N{U+0254}kut\N{U+0254}buru",
      "nowanburu",
      "desanburu"
    ],
    name => "Bambara",
    native_language => "bamanakan",
    native_name => "bamanakan",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "KS1",
      "KS2",
      "KS3",
      "KS4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "kalo saba f\N{U+0254}l\N{U+0254}",
      "kalo saba filanan",
      "kalo saba sabanan",
      "kalo saba naaninan"
    ],
    quarter_stand_alone_abbreviated => [
      "KS1",
      "KS2",
      "KS3",
      "KS4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "kalo saba f\N{U+0254}l\N{U+0254}",
      "kalo saba filanan",
      "kalo saba sabanan",
      "kalo saba naaninan"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ bm-ML ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "M",
      MEd => "MM-dd, E",
      MMM => "MMM",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMd => "d/MM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "bm-ML",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "nt\N{U+025b}",
      "tar",
      "ara",
      "ala",
      "jum",
      "sib",
      "kar"
    ],
    day_format_narrow => [
      "N",
      "T",
      "A",
      "A",
      "J",
      "S",
      "K"
    ],
    day_format_wide => [
      "nt\N{U+025b}n\N{U+025b}",
      "tarata",
      "araba",
      "alamisa",
      "juma",
      "sibiri",
      "kari"
    ],
    day_stand_alone_abbreviated => [
      "nt\N{U+025b}",
      "tar",
      "ara",
      "ala",
      "jum",
      "sib",
      "kar"
    ],
    day_stand_alone_narrow => [
      "N",
      "T",
      "A",
      "A",
      "J",
      "S",
      "K"
    ],
    day_stand_alone_wide => [
      "nt\N{U+025b}n\N{U+025b}",
      "tarata",
      "araba",
      "alamisa",
      "juma",
      "sibiri",
      "kari"
    ],
    era_abbreviated => [
      "J.-C. \N{U+0272}\N{U+025b}",
      "ni J.-C."
    ],
    era_narrow => [
      "J.-C. \N{U+0272}\N{U+025b}",
      "ni J.-C."
    ],
    era_wide => [
      "jezu krisiti \N{U+0272}\N{U+025b}",
      "jezu krisiti mink\N{U+025b}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Bambara",
    month_format_abbreviated => [
      "zan",
      "feb",
      "mar",
      "awi",
      "m\N{U+025b}",
      "zuw",
      "zul",
      "uti",
      "s\N{U+025b}t",
      "\N{U+0254}ku",
      "now",
      "des"
    ],
    month_format_narrow => [
      "Z",
      "F",
      "M",
      "A",
      "M",
      "Z",
      "Z",
      "U",
      "S",
      "\N{U+0186}",
      "N",
      "D"
    ],
    month_format_wide => [
      "zanwuye",
      "feburuye",
      "marisi",
      "awirili",
      "m\N{U+025b}",
      "zuw\N{U+025b}n",
      "zuluye",
      "uti",
      "s\N{U+025b}tanburu",
      "\N{U+0254}kut\N{U+0254}buru",
      "nowanburu",
      "desanburu"
    ],
    month_stand_alone_abbreviated => [
      "zan",
      "feb",
      "mar",
      "awi",
      "m\N{U+025b}",
      "zuw",
      "zul",
      "uti",
      "s\N{U+025b}t",
      "\N{U+0254}ku",
      "now",
      "des"
    ],
    month_stand_alone_narrow => [
      "Z",
      "F",
      "M",
      "A",
      "M",
      "Z",
      "Z",
      "U",
      "S",
      "\N{U+0186}",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "zanwuye",
      "feburuye",
      "marisi",
      "awirili",
      "m\N{U+025b}",
      "zuw\N{U+025b}n",
      "zuluye",
      "uti",
      "s\N{U+025b}tanburu",
      "\N{U+0254}kut\N{U+0254}buru",
      "nowanburu",
      "desanburu"
    ],
    name => "Bambara Mali",
    native_language => "bamanakan",
    native_name => "bamanakan Mali",
    native_script => undef,
    native_territory => "Mali",
    native_variant => undef,
    quarter_format_abbreviated => [
      "KS1",
      "KS2",
      "KS3",
      "KS4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "kalo saba f\N{U+0254}l\N{U+0254}",
      "kalo saba filanan",
      "kalo saba sabanan",
      "kalo saba naaninan"
    ],
    quarter_stand_alone_abbreviated => [
      "KS1",
      "KS2",
      "KS3",
      "KS4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "kalo saba f\N{U+0254}l\N{U+0254}",
      "kalo saba filanan",
      "kalo saba sabanan",
      "kalo saba naaninan"
    ],
    script => undef,
    territory => "Mali",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ bn ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM, y G",
      GyMMMd => "d MMM, y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d-M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd-MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMM => "MM-y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM, y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM, y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "bn",
    date_format_full => "EEEE, d MMMM, y",
    date_format_long => "d MMMM, y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+09b8}\N{U+09cb}\N{U+09ae}",
      "\N{U+09ae}\N{U+0999}\N{U+09cd}\N{U+0997}\N{U+09b2}",
      "\N{U+09ac}\N{U+09c1}\N{U+09a7}",
      "\N{U+09ac}\N{U+09c3}\N{U+09b9}\N{U+09b8}\N{U+09cd}\N{U+09aa}\N{U+09a4}\N{U+09bf}",
      "\N{U+09b6}\N{U+09c1}\N{U+0995}\N{U+09cd}\N{U+09b0}",
      "\N{U+09b6}\N{U+09a8}\N{U+09bf}",
      "\N{U+09b0}\N{U+09ac}\N{U+09bf}"
    ],
    day_format_narrow => [
      "\N{U+09b8}\N{U+09cb}",
      "\N{U+09ae}",
      "\N{U+09ac}\N{U+09c1}",
      "\N{U+09ac}\N{U+09c3}",
      "\N{U+09b6}\N{U+09c1}",
      "\N{U+09b6}",
      "\N{U+09b0}"
    ],
    day_format_wide => [
      "\N{U+09b8}\N{U+09cb}\N{U+09ae}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09ae}\N{U+0999}\N{U+09cd}\N{U+0997}\N{U+09b2}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09ac}\N{U+09c1}\N{U+09a7}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09ac}\N{U+09c3}\N{U+09b9}\N{U+09b8}\N{U+09cd}\N{U+09aa}\N{U+09a4}\N{U+09bf}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09b6}\N{U+09c1}\N{U+0995}\N{U+09cd}\N{U+09b0}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09b6}\N{U+09a8}\N{U+09bf}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09b0}\N{U+09ac}\N{U+09bf}\N{U+09ac}\N{U+09be}\N{U+09b0}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+09b8}\N{U+09cb}\N{U+09ae}",
      "\N{U+09ae}\N{U+0999}\N{U+09cd}\N{U+0997}\N{U+09b2}",
      "\N{U+09ac}\N{U+09c1}\N{U+09a7}",
      "\N{U+09ac}\N{U+09c3}\N{U+09b9}\N{U+09b8}\N{U+09cd}\N{U+09aa}\N{U+09a4}\N{U+09bf}",
      "\N{U+09b6}\N{U+09c1}\N{U+0995}\N{U+09cd}\N{U+09b0}",
      "\N{U+09b6}\N{U+09a8}\N{U+09bf}",
      "\N{U+09b0}\N{U+09ac}\N{U+09bf}"
    ],
    day_stand_alone_narrow => [
      "\N{U+09b8}\N{U+09cb}",
      "\N{U+09ae}",
      "\N{U+09ac}\N{U+09c1}",
      "\N{U+09ac}\N{U+09c3}",
      "\N{U+09b6}\N{U+09c1}",
      "\N{U+09b6}",
      "\N{U+09b0}"
    ],
    day_stand_alone_wide => [
      "\N{U+09b8}\N{U+09cb}\N{U+09ae}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09ae}\N{U+0999}\N{U+09cd}\N{U+0997}\N{U+09b2}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09ac}\N{U+09c1}\N{U+09a7}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09ac}\N{U+09c3}\N{U+09b9}\N{U+09b7}\N{U+09cd}\N{U+09aa}\N{U+09a4}\N{U+09bf}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09b6}\N{U+09c1}\N{U+0995}\N{U+09cd}\N{U+09b0}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09b6}\N{U+09a8}\N{U+09bf}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09b0}\N{U+09ac}\N{U+09bf}\N{U+09ac}\N{U+09be}\N{U+09b0}"
    ],
    era_abbreviated => [
      "\N{U+0996}\N{U+09cd}\N{U+09b0}\N{U+09bf}\N{U+09b8}\N{U+09cd}\N{U+099f}\N{U+09aa}\N{U+09c2}\N{U+09b0}\N{U+09cd}\N{U+09ac}",
      "\N{U+0996}\N{U+09c3}\N{U+09b7}\N{U+09cd}\N{U+099f}\N{U+09be}\N{U+09ac}\N{U+09cd}\N{U+09a6}"
    ],
    era_narrow => [
      "\N{U+0996}\N{U+09cd}\N{U+09b0}\N{U+09bf}\N{U+09b8}\N{U+09cd}\N{U+099f}\N{U+09aa}\N{U+09c2}\N{U+09b0}\N{U+09cd}\N{U+09ac}",
      "\N{U+0996}\N{U+09c3}\N{U+09b7}\N{U+09cd}\N{U+099f}\N{U+09be}\N{U+09ac}\N{U+09cd}\N{U+09a6}"
    ],
    era_wide => [
      "\N{U+0996}\N{U+09cd}\N{U+09b0}\N{U+09bf}\N{U+09b8}\N{U+09cd}\N{U+099f}\N{U+09aa}\N{U+09c2}\N{U+09b0}\N{U+09cd}\N{U+09ac}",
      "\N{U+0996}\N{U+09c3}\N{U+09b7}\N{U+09cd}\N{U+099f}\N{U+09be}\N{U+09ac}\N{U+09cd}\N{U+09a6}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Bengali",
    month_format_abbreviated => [
      "\N{U+099c}\N{U+09be}\N{U+09a8}\N{U+09c1}\N{U+09af}\N{U+09bc}\N{U+09be}\N{U+09b0}\N{U+09c0}",
      "\N{U+09ab}\N{U+09c7}\N{U+09ac}\N{U+09cd}\N{U+09b0}\N{U+09c1}\N{U+09af}\N{U+09bc}\N{U+09be}\N{U+09b0}\N{U+09c0}",
      "\N{U+09ae}\N{U+09be}\N{U+09b0}\N{U+09cd}\N{U+099a}",
      "\N{U+098f}\N{U+09aa}\N{U+09cd}\N{U+09b0}\N{U+09bf}\N{U+09b2}",
      "\N{U+09ae}\N{U+09c7}",
      "\N{U+099c}\N{U+09c1}\N{U+09a8}",
      "\N{U+099c}\N{U+09c1}\N{U+09b2}\N{U+09be}\N{U+0987}",
      "\N{U+0986}\N{U+0997}\N{U+09b8}\N{U+09cd}\N{U+099f}",
      "\N{U+09b8}\N{U+09c7}\N{U+09aa}\N{U+09cd}\N{U+099f}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}",
      "\N{U+0985}\N{U+0995}\N{U+09cd}\N{U+099f}\N{U+09cb}\N{U+09ac}\N{U+09b0}",
      "\N{U+09a8}\N{U+09ad}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}",
      "\N{U+09a1}\N{U+09bf}\N{U+09b8}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}"
    ],
    month_format_narrow => [
      "\N{U+099c}\N{U+09be}",
      "\N{U+09ab}\N{U+09c7}",
      "\N{U+09ae}\N{U+09be}",
      "\N{U+098f}",
      "\N{U+09ae}\N{U+09c7}",
      "\N{U+099c}\N{U+09c1}\N{U+09a8}",
      "\N{U+099c}\N{U+09c1}",
      "\N{U+0986}",
      "\N{U+09b8}\N{U+09c7}",
      "\N{U+0985}",
      "\N{U+09a8}",
      "\N{U+09a1}\N{U+09bf}"
    ],
    month_format_wide => [
      "\N{U+099c}\N{U+09be}\N{U+09a8}\N{U+09c1}\N{U+09af}\N{U+09bc}\N{U+09be}\N{U+09b0}\N{U+09c0}",
      "\N{U+09ab}\N{U+09c7}\N{U+09ac}\N{U+09cd}\N{U+09b0}\N{U+09c1}\N{U+09af}\N{U+09bc}\N{U+09be}\N{U+09b0}\N{U+09c0}",
      "\N{U+09ae}\N{U+09be}\N{U+09b0}\N{U+09cd}\N{U+099a}",
      "\N{U+098f}\N{U+09aa}\N{U+09cd}\N{U+09b0}\N{U+09bf}\N{U+09b2}",
      "\N{U+09ae}\N{U+09c7}",
      "\N{U+099c}\N{U+09c1}\N{U+09a8}",
      "\N{U+099c}\N{U+09c1}\N{U+09b2}\N{U+09be}\N{U+0987}",
      "\N{U+0986}\N{U+0997}\N{U+09b8}\N{U+09cd}\N{U+099f}",
      "\N{U+09b8}\N{U+09c7}\N{U+09aa}\N{U+09cd}\N{U+099f}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}",
      "\N{U+0985}\N{U+0995}\N{U+09cd}\N{U+099f}\N{U+09cb}\N{U+09ac}\N{U+09b0}",
      "\N{U+09a8}\N{U+09ad}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}",
      "\N{U+09a1}\N{U+09bf}\N{U+09b8}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+099c}\N{U+09be}\N{U+09a8}\N{U+09c1}\N{U+09af}\N{U+09bc}\N{U+09be}\N{U+09b0}\N{U+09c0}",
      "\N{U+09ab}\N{U+09c7}\N{U+09ac}\N{U+09cd}\N{U+09b0}\N{U+09c1}\N{U+09af}\N{U+09bc}\N{U+09be}\N{U+09b0}\N{U+09c0}",
      "\N{U+09ae}\N{U+09be}\N{U+09b0}\N{U+09cd}\N{U+099a}",
      "\N{U+098f}\N{U+09aa}\N{U+09cd}\N{U+09b0}\N{U+09bf}\N{U+09b2}",
      "\N{U+09ae}\N{U+09c7}",
      "\N{U+099c}\N{U+09c1}\N{U+09a8}",
      "\N{U+099c}\N{U+09c1}\N{U+09b2}\N{U+09be}\N{U+0987}",
      "\N{U+0986}\N{U+0997}\N{U+09b8}\N{U+09cd}\N{U+099f}",
      "\N{U+09b8}\N{U+09c7}\N{U+09aa}\N{U+09cd}\N{U+099f}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}",
      "\N{U+0985}\N{U+0995}\N{U+09cd}\N{U+099f}\N{U+09cb}\N{U+09ac}\N{U+09b0}",
      "\N{U+09a8}\N{U+09ad}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}",
      "\N{U+09a1}\N{U+09bf}\N{U+09b8}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}"
    ],
    month_stand_alone_narrow => [
      "\N{U+099c}\N{U+09be}",
      "\N{U+09ab}\N{U+09c7}",
      "\N{U+09ae}\N{U+09be}",
      "\N{U+098f}",
      "\N{U+09ae}\N{U+09c7}",
      "\N{U+099c}\N{U+09c1}\N{U+09a8}",
      "\N{U+099c}\N{U+09c1}",
      "\N{U+0986}",
      "\N{U+09b8}\N{U+09c7}",
      "\N{U+0985}",
      "\N{U+09a8}",
      "\N{U+09a1}\N{U+09bf}"
    ],
    month_stand_alone_wide => [
      "\N{U+099c}\N{U+09be}\N{U+09a8}\N{U+09c1}\N{U+09af}\N{U+09bc}\N{U+09be}\N{U+09b0}\N{U+09c0}",
      "\N{U+09ab}\N{U+09c7}\N{U+09ac}\N{U+09cd}\N{U+09b0}\N{U+09c1}\N{U+09af}\N{U+09bc}\N{U+09be}\N{U+09b0}\N{U+09c0}",
      "\N{U+09ae}\N{U+09be}\N{U+09b0}\N{U+09cd}\N{U+099a}",
      "\N{U+098f}\N{U+09aa}\N{U+09cd}\N{U+09b0}\N{U+09bf}\N{U+09b2}",
      "\N{U+09ae}\N{U+09c7}",
      "\N{U+099c}\N{U+09c1}\N{U+09a8}",
      "\N{U+099c}\N{U+09c1}\N{U+09b2}\N{U+09be}\N{U+0987}",
      "\N{U+0986}\N{U+0997}\N{U+09b8}\N{U+09cd}\N{U+099f}",
      "\N{U+09b8}\N{U+09c7}\N{U+09aa}\N{U+09cd}\N{U+099f}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}",
      "\N{U+0985}\N{U+0995}\N{U+09cd}\N{U+099f}\N{U+09cb}\N{U+09ac}\N{U+09b0}",
      "\N{U+09a8}\N{U+09ad}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}",
      "\N{U+09a1}\N{U+09bf}\N{U+09b8}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}"
    ],
    name => "Bengali",
    native_language => "\N{U+09ac}\N{U+09be}\N{U+0982}\N{U+09b2}\N{U+09be}",
    native_name => "\N{U+09ac}\N{U+09be}\N{U+0982}\N{U+09b2}\N{U+09be}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      "\N{U+09e7}",
      "\N{U+09e8}",
      "\N{U+09e9}",
      "\N{U+09ea}"
    ],
    quarter_format_wide => [
      "\N{U+09a4}\N{U+09cd}\N{U+09b0}\N{U+09c8}\N{U+09ae}\N{U+09be}\N{U+09b8}\N{U+09bf}\N{U+0995}",
      "\N{U+09a6}\N{U+09cd}\N{U+09ac}\N{U+09bf}\N{U+09a4}\N{U+09c0}\N{U+09af}\N{U+09bc} \N{U+09a4}\N{U+09cd}\N{U+09b0}\N{U+09c8}\N{U+09ae}\N{U+09be}\N{U+09b8}\N{U+09bf}\N{U+0995}",
      "\N{U+09a4}\N{U+09c3}\N{U+09a4}\N{U+09c0}\N{U+09af}\N{U+09bc} \N{U+09a4}\N{U+09cd}\N{U+09b0}\N{U+09c8}\N{U+09ae}\N{U+09be}\N{U+09b8}\N{U+09bf}\N{U+0995}",
      "\N{U+099a}\N{U+09a4}\N{U+09c1}\N{U+09b0}\N{U+09cd}\N{U+09a5} \N{U+09a4}\N{U+09cd}\N{U+09b0}\N{U+09c8}\N{U+09ae}\N{U+09be}\N{U+09b8}\N{U+09bf}\N{U+0995}"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+09e7}",
      "\N{U+09e8}",
      "\N{U+09e9}",
      "\N{U+09ea}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+09a4}\N{U+09cd}\N{U+09b0}\N{U+09c8}\N{U+09ae}\N{U+09be}\N{U+09b8}\N{U+09bf}\N{U+0995}",
      "\N{U+09a6}\N{U+09cd}\N{U+09ac}\N{U+09bf}\N{U+09a4}\N{U+09c0}\N{U+09af}\N{U+09bc} \N{U+09a4}\N{U+09cd}\N{U+09b0}\N{U+09c8}\N{U+09ae}\N{U+09be}\N{U+09b8}\N{U+09bf}\N{U+0995}",
      "\N{U+09a4}\N{U+09c3}\N{U+09a4}\N{U+09c0}\N{U+09af}\N{U+09bc} \N{U+09a4}\N{U+09cd}\N{U+09b0}\N{U+09c8}\N{U+09ae}\N{U+09be}\N{U+09b8}\N{U+09bf}\N{U+0995}",
      "\N{U+099a}\N{U+09a4}\N{U+09c1}\N{U+09b0}\N{U+09cd}\N{U+09a5} \N{U+09a4}\N{U+09cd}\N{U+09b0}\N{U+09c8}\N{U+09ae}\N{U+09be}\N{U+09b8}\N{U+09bf}\N{U+0995}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ bn-BD ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM, y G",
      GyMMMd => "d MMM, y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d-M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd-MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMM => "MM-y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM, y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM, y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "bn-BD",
    date_format_full => "EEEE, d MMMM, y",
    date_format_long => "d MMMM, y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+09b8}\N{U+09cb}\N{U+09ae}",
      "\N{U+09ae}\N{U+0999}\N{U+09cd}\N{U+0997}\N{U+09b2}",
      "\N{U+09ac}\N{U+09c1}\N{U+09a7}",
      "\N{U+09ac}\N{U+09c3}\N{U+09b9}\N{U+09b8}\N{U+09cd}\N{U+09aa}\N{U+09a4}\N{U+09bf}",
      "\N{U+09b6}\N{U+09c1}\N{U+0995}\N{U+09cd}\N{U+09b0}",
      "\N{U+09b6}\N{U+09a8}\N{U+09bf}",
      "\N{U+09b0}\N{U+09ac}\N{U+09bf}"
    ],
    day_format_narrow => [
      "\N{U+09b8}\N{U+09cb}",
      "\N{U+09ae}",
      "\N{U+09ac}\N{U+09c1}",
      "\N{U+09ac}\N{U+09c3}",
      "\N{U+09b6}\N{U+09c1}",
      "\N{U+09b6}",
      "\N{U+09b0}"
    ],
    day_format_wide => [
      "\N{U+09b8}\N{U+09cb}\N{U+09ae}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09ae}\N{U+0999}\N{U+09cd}\N{U+0997}\N{U+09b2}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09ac}\N{U+09c1}\N{U+09a7}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09ac}\N{U+09c3}\N{U+09b9}\N{U+09b8}\N{U+09cd}\N{U+09aa}\N{U+09a4}\N{U+09bf}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09b6}\N{U+09c1}\N{U+0995}\N{U+09cd}\N{U+09b0}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09b6}\N{U+09a8}\N{U+09bf}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09b0}\N{U+09ac}\N{U+09bf}\N{U+09ac}\N{U+09be}\N{U+09b0}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+09b8}\N{U+09cb}\N{U+09ae}",
      "\N{U+09ae}\N{U+0999}\N{U+09cd}\N{U+0997}\N{U+09b2}",
      "\N{U+09ac}\N{U+09c1}\N{U+09a7}",
      "\N{U+09ac}\N{U+09c3}\N{U+09b9}\N{U+09b8}\N{U+09cd}\N{U+09aa}\N{U+09a4}\N{U+09bf}",
      "\N{U+09b6}\N{U+09c1}\N{U+0995}\N{U+09cd}\N{U+09b0}",
      "\N{U+09b6}\N{U+09a8}\N{U+09bf}",
      "\N{U+09b0}\N{U+09ac}\N{U+09bf}"
    ],
    day_stand_alone_narrow => [
      "\N{U+09b8}\N{U+09cb}",
      "\N{U+09ae}",
      "\N{U+09ac}\N{U+09c1}",
      "\N{U+09ac}\N{U+09c3}",
      "\N{U+09b6}\N{U+09c1}",
      "\N{U+09b6}",
      "\N{U+09b0}"
    ],
    day_stand_alone_wide => [
      "\N{U+09b8}\N{U+09cb}\N{U+09ae}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09ae}\N{U+0999}\N{U+09cd}\N{U+0997}\N{U+09b2}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09ac}\N{U+09c1}\N{U+09a7}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09ac}\N{U+09c3}\N{U+09b9}\N{U+09b7}\N{U+09cd}\N{U+09aa}\N{U+09a4}\N{U+09bf}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09b6}\N{U+09c1}\N{U+0995}\N{U+09cd}\N{U+09b0}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09b6}\N{U+09a8}\N{U+09bf}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09b0}\N{U+09ac}\N{U+09bf}\N{U+09ac}\N{U+09be}\N{U+09b0}"
    ],
    era_abbreviated => [
      "\N{U+0996}\N{U+09cd}\N{U+09b0}\N{U+09bf}\N{U+09b8}\N{U+09cd}\N{U+099f}\N{U+09aa}\N{U+09c2}\N{U+09b0}\N{U+09cd}\N{U+09ac}",
      "\N{U+0996}\N{U+09c3}\N{U+09b7}\N{U+09cd}\N{U+099f}\N{U+09be}\N{U+09ac}\N{U+09cd}\N{U+09a6}"
    ],
    era_narrow => [
      "\N{U+0996}\N{U+09cd}\N{U+09b0}\N{U+09bf}\N{U+09b8}\N{U+09cd}\N{U+099f}\N{U+09aa}\N{U+09c2}\N{U+09b0}\N{U+09cd}\N{U+09ac}",
      "\N{U+0996}\N{U+09c3}\N{U+09b7}\N{U+09cd}\N{U+099f}\N{U+09be}\N{U+09ac}\N{U+09cd}\N{U+09a6}"
    ],
    era_wide => [
      "\N{U+0996}\N{U+09cd}\N{U+09b0}\N{U+09bf}\N{U+09b8}\N{U+09cd}\N{U+099f}\N{U+09aa}\N{U+09c2}\N{U+09b0}\N{U+09cd}\N{U+09ac}",
      "\N{U+0996}\N{U+09c3}\N{U+09b7}\N{U+09cd}\N{U+099f}\N{U+09be}\N{U+09ac}\N{U+09cd}\N{U+09a6}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%A %d %b %Y",
    glibc_datetime_format => "%A %d %b %Y %I:%M:%S %p %Z",
    glibc_time_12_format => "%I:%M:%S %p %Z",
    glibc_time_format => "%I:%M:%S  %Z",
    language => "Bengali",
    month_format_abbreviated => [
      "\N{U+099c}\N{U+09be}\N{U+09a8}\N{U+09c1}\N{U+09af}\N{U+09bc}\N{U+09be}\N{U+09b0}\N{U+09c0}",
      "\N{U+09ab}\N{U+09c7}\N{U+09ac}\N{U+09cd}\N{U+09b0}\N{U+09c1}\N{U+09af}\N{U+09bc}\N{U+09be}\N{U+09b0}\N{U+09c0}",
      "\N{U+09ae}\N{U+09be}\N{U+09b0}\N{U+09cd}\N{U+099a}",
      "\N{U+098f}\N{U+09aa}\N{U+09cd}\N{U+09b0}\N{U+09bf}\N{U+09b2}",
      "\N{U+09ae}\N{U+09c7}",
      "\N{U+099c}\N{U+09c1}\N{U+09a8}",
      "\N{U+099c}\N{U+09c1}\N{U+09b2}\N{U+09be}\N{U+0987}",
      "\N{U+0986}\N{U+0997}\N{U+09b8}\N{U+09cd}\N{U+099f}",
      "\N{U+09b8}\N{U+09c7}\N{U+09aa}\N{U+09cd}\N{U+099f}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}",
      "\N{U+0985}\N{U+0995}\N{U+09cd}\N{U+099f}\N{U+09cb}\N{U+09ac}\N{U+09b0}",
      "\N{U+09a8}\N{U+09ad}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}",
      "\N{U+09a1}\N{U+09bf}\N{U+09b8}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}"
    ],
    month_format_narrow => [
      "\N{U+099c}\N{U+09be}",
      "\N{U+09ab}\N{U+09c7}",
      "\N{U+09ae}\N{U+09be}",
      "\N{U+098f}",
      "\N{U+09ae}\N{U+09c7}",
      "\N{U+099c}\N{U+09c1}\N{U+09a8}",
      "\N{U+099c}\N{U+09c1}",
      "\N{U+0986}",
      "\N{U+09b8}\N{U+09c7}",
      "\N{U+0985}",
      "\N{U+09a8}",
      "\N{U+09a1}\N{U+09bf}"
    ],
    month_format_wide => [
      "\N{U+099c}\N{U+09be}\N{U+09a8}\N{U+09c1}\N{U+09af}\N{U+09bc}\N{U+09be}\N{U+09b0}\N{U+09c0}",
      "\N{U+09ab}\N{U+09c7}\N{U+09ac}\N{U+09cd}\N{U+09b0}\N{U+09c1}\N{U+09af}\N{U+09bc}\N{U+09be}\N{U+09b0}\N{U+09c0}",
      "\N{U+09ae}\N{U+09be}\N{U+09b0}\N{U+09cd}\N{U+099a}",
      "\N{U+098f}\N{U+09aa}\N{U+09cd}\N{U+09b0}\N{U+09bf}\N{U+09b2}",
      "\N{U+09ae}\N{U+09c7}",
      "\N{U+099c}\N{U+09c1}\N{U+09a8}",
      "\N{U+099c}\N{U+09c1}\N{U+09b2}\N{U+09be}\N{U+0987}",
      "\N{U+0986}\N{U+0997}\N{U+09b8}\N{U+09cd}\N{U+099f}",
      "\N{U+09b8}\N{U+09c7}\N{U+09aa}\N{U+09cd}\N{U+099f}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}",
      "\N{U+0985}\N{U+0995}\N{U+09cd}\N{U+099f}\N{U+09cb}\N{U+09ac}\N{U+09b0}",
      "\N{U+09a8}\N{U+09ad}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}",
      "\N{U+09a1}\N{U+09bf}\N{U+09b8}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+099c}\N{U+09be}\N{U+09a8}\N{U+09c1}\N{U+09af}\N{U+09bc}\N{U+09be}\N{U+09b0}\N{U+09c0}",
      "\N{U+09ab}\N{U+09c7}\N{U+09ac}\N{U+09cd}\N{U+09b0}\N{U+09c1}\N{U+09af}\N{U+09bc}\N{U+09be}\N{U+09b0}\N{U+09c0}",
      "\N{U+09ae}\N{U+09be}\N{U+09b0}\N{U+09cd}\N{U+099a}",
      "\N{U+098f}\N{U+09aa}\N{U+09cd}\N{U+09b0}\N{U+09bf}\N{U+09b2}",
      "\N{U+09ae}\N{U+09c7}",
      "\N{U+099c}\N{U+09c1}\N{U+09a8}",
      "\N{U+099c}\N{U+09c1}\N{U+09b2}\N{U+09be}\N{U+0987}",
      "\N{U+0986}\N{U+0997}\N{U+09b8}\N{U+09cd}\N{U+099f}",
      "\N{U+09b8}\N{U+09c7}\N{U+09aa}\N{U+09cd}\N{U+099f}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}",
      "\N{U+0985}\N{U+0995}\N{U+09cd}\N{U+099f}\N{U+09cb}\N{U+09ac}\N{U+09b0}",
      "\N{U+09a8}\N{U+09ad}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}",
      "\N{U+09a1}\N{U+09bf}\N{U+09b8}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}"
    ],
    month_stand_alone_narrow => [
      "\N{U+099c}\N{U+09be}",
      "\N{U+09ab}\N{U+09c7}",
      "\N{U+09ae}\N{U+09be}",
      "\N{U+098f}",
      "\N{U+09ae}\N{U+09c7}",
      "\N{U+099c}\N{U+09c1}\N{U+09a8}",
      "\N{U+099c}\N{U+09c1}",
      "\N{U+0986}",
      "\N{U+09b8}\N{U+09c7}",
      "\N{U+0985}",
      "\N{U+09a8}",
      "\N{U+09a1}\N{U+09bf}"
    ],
    month_stand_alone_wide => [
      "\N{U+099c}\N{U+09be}\N{U+09a8}\N{U+09c1}\N{U+09af}\N{U+09bc}\N{U+09be}\N{U+09b0}\N{U+09c0}",
      "\N{U+09ab}\N{U+09c7}\N{U+09ac}\N{U+09cd}\N{U+09b0}\N{U+09c1}\N{U+09af}\N{U+09bc}\N{U+09be}\N{U+09b0}\N{U+09c0}",
      "\N{U+09ae}\N{U+09be}\N{U+09b0}\N{U+09cd}\N{U+099a}",
      "\N{U+098f}\N{U+09aa}\N{U+09cd}\N{U+09b0}\N{U+09bf}\N{U+09b2}",
      "\N{U+09ae}\N{U+09c7}",
      "\N{U+099c}\N{U+09c1}\N{U+09a8}",
      "\N{U+099c}\N{U+09c1}\N{U+09b2}\N{U+09be}\N{U+0987}",
      "\N{U+0986}\N{U+0997}\N{U+09b8}\N{U+09cd}\N{U+099f}",
      "\N{U+09b8}\N{U+09c7}\N{U+09aa}\N{U+09cd}\N{U+099f}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}",
      "\N{U+0985}\N{U+0995}\N{U+09cd}\N{U+099f}\N{U+09cb}\N{U+09ac}\N{U+09b0}",
      "\N{U+09a8}\N{U+09ad}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}",
      "\N{U+09a1}\N{U+09bf}\N{U+09b8}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}"
    ],
    name => "Bengali Bangladesh",
    native_language => "\N{U+09ac}\N{U+09be}\N{U+0982}\N{U+09b2}\N{U+09be}",
    native_name => "\N{U+09ac}\N{U+09be}\N{U+0982}\N{U+09b2}\N{U+09be} \N{U+09ac}\N{U+09be}\N{U+0982}\N{U+09b2}\N{U+09be}\N{U+09a6}\N{U+09c7}\N{U+09b6}",
    native_script => undef,
    native_territory => "\N{U+09ac}\N{U+09be}\N{U+0982}\N{U+09b2}\N{U+09be}\N{U+09a6}\N{U+09c7}\N{U+09b6}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      "\N{U+09e7}",
      "\N{U+09e8}",
      "\N{U+09e9}",
      "\N{U+09ea}"
    ],
    quarter_format_wide => [
      "\N{U+09a4}\N{U+09cd}\N{U+09b0}\N{U+09c8}\N{U+09ae}\N{U+09be}\N{U+09b8}\N{U+09bf}\N{U+0995}",
      "\N{U+09a6}\N{U+09cd}\N{U+09ac}\N{U+09bf}\N{U+09a4}\N{U+09c0}\N{U+09af}\N{U+09bc} \N{U+09a4}\N{U+09cd}\N{U+09b0}\N{U+09c8}\N{U+09ae}\N{U+09be}\N{U+09b8}\N{U+09bf}\N{U+0995}",
      "\N{U+09a4}\N{U+09c3}\N{U+09a4}\N{U+09c0}\N{U+09af}\N{U+09bc} \N{U+09a4}\N{U+09cd}\N{U+09b0}\N{U+09c8}\N{U+09ae}\N{U+09be}\N{U+09b8}\N{U+09bf}\N{U+0995}",
      "\N{U+099a}\N{U+09a4}\N{U+09c1}\N{U+09b0}\N{U+09cd}\N{U+09a5} \N{U+09a4}\N{U+09cd}\N{U+09b0}\N{U+09c8}\N{U+09ae}\N{U+09be}\N{U+09b8}\N{U+09bf}\N{U+0995}"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+09e7}",
      "\N{U+09e8}",
      "\N{U+09e9}",
      "\N{U+09ea}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+09a4}\N{U+09cd}\N{U+09b0}\N{U+09c8}\N{U+09ae}\N{U+09be}\N{U+09b8}\N{U+09bf}\N{U+0995}",
      "\N{U+09a6}\N{U+09cd}\N{U+09ac}\N{U+09bf}\N{U+09a4}\N{U+09c0}\N{U+09af}\N{U+09bc} \N{U+09a4}\N{U+09cd}\N{U+09b0}\N{U+09c8}\N{U+09ae}\N{U+09be}\N{U+09b8}\N{U+09bf}\N{U+0995}",
      "\N{U+09a4}\N{U+09c3}\N{U+09a4}\N{U+09c0}\N{U+09af}\N{U+09bc} \N{U+09a4}\N{U+09cd}\N{U+09b0}\N{U+09c8}\N{U+09ae}\N{U+09be}\N{U+09b8}\N{U+09bf}\N{U+0995}",
      "\N{U+099a}\N{U+09a4}\N{U+09c1}\N{U+09b0}\N{U+09cd}\N{U+09a5} \N{U+09a4}\N{U+09cd}\N{U+09b0}\N{U+09c8}\N{U+09ae}\N{U+09be}\N{U+09b8}\N{U+09bf}\N{U+0995}"
    ],
    script => undef,
    territory => "Bangladesh",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ bn-IN ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM, y G",
      GyMMMd => "d MMM, y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d-M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd-MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMM => "MM-y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM, y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM, y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "bn-IN",
    date_format_full => "EEEE, d MMMM, y",
    date_format_long => "d MMMM, y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+09b8}\N{U+09cb}\N{U+09ae}",
      "\N{U+09ae}\N{U+0999}\N{U+09cd}\N{U+0997}\N{U+09b2}",
      "\N{U+09ac}\N{U+09c1}\N{U+09a7}",
      "\N{U+09ac}\N{U+09c3}\N{U+09b9}\N{U+09b8}\N{U+09cd}\N{U+09aa}\N{U+09a4}\N{U+09bf}",
      "\N{U+09b6}\N{U+09c1}\N{U+0995}\N{U+09cd}\N{U+09b0}",
      "\N{U+09b6}\N{U+09a8}\N{U+09bf}",
      "\N{U+09b0}\N{U+09ac}\N{U+09bf}"
    ],
    day_format_narrow => [
      "\N{U+09b8}\N{U+09cb}",
      "\N{U+09ae}",
      "\N{U+09ac}\N{U+09c1}",
      "\N{U+09ac}\N{U+09c3}",
      "\N{U+09b6}\N{U+09c1}",
      "\N{U+09b6}",
      "\N{U+09b0}"
    ],
    day_format_wide => [
      "\N{U+09b8}\N{U+09cb}\N{U+09ae}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09ae}\N{U+0999}\N{U+09cd}\N{U+0997}\N{U+09b2}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09ac}\N{U+09c1}\N{U+09a7}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09ac}\N{U+09c3}\N{U+09b9}\N{U+09b8}\N{U+09cd}\N{U+09aa}\N{U+09a4}\N{U+09bf}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09b6}\N{U+09c1}\N{U+0995}\N{U+09cd}\N{U+09b0}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09b6}\N{U+09a8}\N{U+09bf}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09b0}\N{U+09ac}\N{U+09bf}\N{U+09ac}\N{U+09be}\N{U+09b0}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+09b8}\N{U+09cb}\N{U+09ae}",
      "\N{U+09ae}\N{U+0999}\N{U+09cd}\N{U+0997}\N{U+09b2}",
      "\N{U+09ac}\N{U+09c1}\N{U+09a7}",
      "\N{U+09ac}\N{U+09c3}\N{U+09b9}\N{U+09b8}\N{U+09cd}\N{U+09aa}\N{U+09a4}\N{U+09bf}",
      "\N{U+09b6}\N{U+09c1}\N{U+0995}\N{U+09cd}\N{U+09b0}",
      "\N{U+09b6}\N{U+09a8}\N{U+09bf}",
      "\N{U+09b0}\N{U+09ac}\N{U+09bf}"
    ],
    day_stand_alone_narrow => [
      "\N{U+09b8}\N{U+09cb}",
      "\N{U+09ae}",
      "\N{U+09ac}\N{U+09c1}",
      "\N{U+09ac}\N{U+09c3}",
      "\N{U+09b6}\N{U+09c1}",
      "\N{U+09b6}",
      "\N{U+09b0}"
    ],
    day_stand_alone_wide => [
      "\N{U+09b8}\N{U+09cb}\N{U+09ae}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09ae}\N{U+0999}\N{U+09cd}\N{U+0997}\N{U+09b2}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09ac}\N{U+09c1}\N{U+09a7}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09ac}\N{U+09c3}\N{U+09b9}\N{U+09b7}\N{U+09cd}\N{U+09aa}\N{U+09a4}\N{U+09bf}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09b6}\N{U+09c1}\N{U+0995}\N{U+09cd}\N{U+09b0}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09b6}\N{U+09a8}\N{U+09bf}\N{U+09ac}\N{U+09be}\N{U+09b0}",
      "\N{U+09b0}\N{U+09ac}\N{U+09bf}\N{U+09ac}\N{U+09be}\N{U+09b0}"
    ],
    era_abbreviated => [
      "\N{U+0996}\N{U+09cd}\N{U+09b0}\N{U+09bf}\N{U+09b8}\N{U+09cd}\N{U+099f}\N{U+09aa}\N{U+09c2}\N{U+09b0}\N{U+09cd}\N{U+09ac}",
      "\N{U+0996}\N{U+09c3}\N{U+09b7}\N{U+09cd}\N{U+099f}\N{U+09be}\N{U+09ac}\N{U+09cd}\N{U+09a6}"
    ],
    era_narrow => [
      "\N{U+0996}\N{U+09cd}\N{U+09b0}\N{U+09bf}\N{U+09b8}\N{U+09cd}\N{U+099f}\N{U+09aa}\N{U+09c2}\N{U+09b0}\N{U+09cd}\N{U+09ac}",
      "\N{U+0996}\N{U+09c3}\N{U+09b7}\N{U+09cd}\N{U+099f}\N{U+09be}\N{U+09ac}\N{U+09cd}\N{U+09a6}"
    ],
    era_wide => [
      "\N{U+0996}\N{U+09cd}\N{U+09b0}\N{U+09bf}\N{U+09b8}\N{U+09cd}\N{U+099f}\N{U+09aa}\N{U+09c2}\N{U+09b0}\N{U+09cd}\N{U+09ac}",
      "\N{U+0996}\N{U+09c3}\N{U+09b7}\N{U+09cd}\N{U+099f}\N{U+09be}\N{U+09ac}\N{U+09cd}\N{U+09a6}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%A %d %b %Y",
    glibc_datetime_format => "%A %d %b %Y %I:%M:%S %p %Z",
    glibc_time_12_format => "%I:%M:%S %p %Z",
    glibc_time_format => "%I:%M:%S  %Z",
    language => "Bengali",
    month_format_abbreviated => [
      "\N{U+099c}\N{U+09be}\N{U+09a8}\N{U+09c1}\N{U+09af}\N{U+09bc}\N{U+09be}\N{U+09b0}\N{U+09c0}",
      "\N{U+09ab}\N{U+09c7}\N{U+09ac}\N{U+09cd}\N{U+09b0}\N{U+09c1}\N{U+09af}\N{U+09bc}\N{U+09be}\N{U+09b0}\N{U+09c0}",
      "\N{U+09ae}\N{U+09be}\N{U+09b0}\N{U+09cd}\N{U+099a}",
      "\N{U+098f}\N{U+09aa}\N{U+09cd}\N{U+09b0}\N{U+09bf}\N{U+09b2}",
      "\N{U+09ae}\N{U+09c7}",
      "\N{U+099c}\N{U+09c1}\N{U+09a8}",
      "\N{U+099c}\N{U+09c1}\N{U+09b2}\N{U+09be}\N{U+0987}",
      "\N{U+0986}\N{U+0997}\N{U+09b8}\N{U+09cd}\N{U+099f}",
      "\N{U+09b8}\N{U+09c7}\N{U+09aa}\N{U+09cd}\N{U+099f}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}",
      "\N{U+0985}\N{U+0995}\N{U+09cd}\N{U+099f}\N{U+09cb}\N{U+09ac}\N{U+09b0}",
      "\N{U+09a8}\N{U+09ad}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}",
      "\N{U+09a1}\N{U+09bf}\N{U+09b8}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}"
    ],
    month_format_narrow => [
      "\N{U+099c}\N{U+09be}",
      "\N{U+09ab}\N{U+09c7}",
      "\N{U+09ae}\N{U+09be}",
      "\N{U+098f}",
      "\N{U+09ae}\N{U+09c7}",
      "\N{U+099c}\N{U+09c1}\N{U+09a8}",
      "\N{U+099c}\N{U+09c1}",
      "\N{U+0986}",
      "\N{U+09b8}\N{U+09c7}",
      "\N{U+0985}",
      "\N{U+09a8}",
      "\N{U+09a1}\N{U+09bf}"
    ],
    month_format_wide => [
      "\N{U+099c}\N{U+09be}\N{U+09a8}\N{U+09c1}\N{U+09af}\N{U+09bc}\N{U+09be}\N{U+09b0}\N{U+09c0}",
      "\N{U+09ab}\N{U+09c7}\N{U+09ac}\N{U+09cd}\N{U+09b0}\N{U+09c1}\N{U+09af}\N{U+09bc}\N{U+09be}\N{U+09b0}\N{U+09c0}",
      "\N{U+09ae}\N{U+09be}\N{U+09b0}\N{U+09cd}\N{U+099a}",
      "\N{U+098f}\N{U+09aa}\N{U+09cd}\N{U+09b0}\N{U+09bf}\N{U+09b2}",
      "\N{U+09ae}\N{U+09c7}",
      "\N{U+099c}\N{U+09c1}\N{U+09a8}",
      "\N{U+099c}\N{U+09c1}\N{U+09b2}\N{U+09be}\N{U+0987}",
      "\N{U+0986}\N{U+0997}\N{U+09b8}\N{U+09cd}\N{U+099f}",
      "\N{U+09b8}\N{U+09c7}\N{U+09aa}\N{U+09cd}\N{U+099f}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}",
      "\N{U+0985}\N{U+0995}\N{U+09cd}\N{U+099f}\N{U+09cb}\N{U+09ac}\N{U+09b0}",
      "\N{U+09a8}\N{U+09ad}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}",
      "\N{U+09a1}\N{U+09bf}\N{U+09b8}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+099c}\N{U+09be}\N{U+09a8}\N{U+09c1}\N{U+09af}\N{U+09bc}\N{U+09be}\N{U+09b0}\N{U+09c0}",
      "\N{U+09ab}\N{U+09c7}\N{U+09ac}\N{U+09cd}\N{U+09b0}\N{U+09c1}\N{U+09af}\N{U+09bc}\N{U+09be}\N{U+09b0}\N{U+09c0}",
      "\N{U+09ae}\N{U+09be}\N{U+09b0}\N{U+09cd}\N{U+099a}",
      "\N{U+098f}\N{U+09aa}\N{U+09cd}\N{U+09b0}\N{U+09bf}\N{U+09b2}",
      "\N{U+09ae}\N{U+09c7}",
      "\N{U+099c}\N{U+09c1}\N{U+09a8}",
      "\N{U+099c}\N{U+09c1}\N{U+09b2}\N{U+09be}\N{U+0987}",
      "\N{U+0986}\N{U+0997}\N{U+09b8}\N{U+09cd}\N{U+099f}",
      "\N{U+09b8}\N{U+09c7}\N{U+09aa}\N{U+09cd}\N{U+099f}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}",
      "\N{U+0985}\N{U+0995}\N{U+09cd}\N{U+099f}\N{U+09cb}\N{U+09ac}\N{U+09b0}",
      "\N{U+09a8}\N{U+09ad}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}",
      "\N{U+09a1}\N{U+09bf}\N{U+09b8}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}"
    ],
    month_stand_alone_narrow => [
      "\N{U+099c}\N{U+09be}",
      "\N{U+09ab}\N{U+09c7}",
      "\N{U+09ae}\N{U+09be}",
      "\N{U+098f}",
      "\N{U+09ae}\N{U+09c7}",
      "\N{U+099c}\N{U+09c1}\N{U+09a8}",
      "\N{U+099c}\N{U+09c1}",
      "\N{U+0986}",
      "\N{U+09b8}\N{U+09c7}",
      "\N{U+0985}",
      "\N{U+09a8}",
      "\N{U+09a1}\N{U+09bf}"
    ],
    month_stand_alone_wide => [
      "\N{U+099c}\N{U+09be}\N{U+09a8}\N{U+09c1}\N{U+09af}\N{U+09bc}\N{U+09be}\N{U+09b0}\N{U+09c0}",
      "\N{U+09ab}\N{U+09c7}\N{U+09ac}\N{U+09cd}\N{U+09b0}\N{U+09c1}\N{U+09af}\N{U+09bc}\N{U+09be}\N{U+09b0}\N{U+09c0}",
      "\N{U+09ae}\N{U+09be}\N{U+09b0}\N{U+09cd}\N{U+099a}",
      "\N{U+098f}\N{U+09aa}\N{U+09cd}\N{U+09b0}\N{U+09bf}\N{U+09b2}",
      "\N{U+09ae}\N{U+09c7}",
      "\N{U+099c}\N{U+09c1}\N{U+09a8}",
      "\N{U+099c}\N{U+09c1}\N{U+09b2}\N{U+09be}\N{U+0987}",
      "\N{U+0986}\N{U+0997}\N{U+09b8}\N{U+09cd}\N{U+099f}",
      "\N{U+09b8}\N{U+09c7}\N{U+09aa}\N{U+09cd}\N{U+099f}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}",
      "\N{U+0985}\N{U+0995}\N{U+09cd}\N{U+099f}\N{U+09cb}\N{U+09ac}\N{U+09b0}",
      "\N{U+09a8}\N{U+09ad}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}",
      "\N{U+09a1}\N{U+09bf}\N{U+09b8}\N{U+09c7}\N{U+09ae}\N{U+09cd}\N{U+09ac}\N{U+09b0}"
    ],
    name => "Bengali India",
    native_language => "\N{U+09ac}\N{U+09be}\N{U+0982}\N{U+09b2}\N{U+09be}",
    native_name => "\N{U+09ac}\N{U+09be}\N{U+0982}\N{U+09b2}\N{U+09be} \N{U+09ad}\N{U+09be}\N{U+09b0}\N{U+09a4}",
    native_script => undef,
    native_territory => "\N{U+09ad}\N{U+09be}\N{U+09b0}\N{U+09a4}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      "\N{U+09e7}",
      "\N{U+09e8}",
      "\N{U+09e9}",
      "\N{U+09ea}"
    ],
    quarter_format_wide => [
      "\N{U+09a4}\N{U+09cd}\N{U+09b0}\N{U+09c8}\N{U+09ae}\N{U+09be}\N{U+09b8}\N{U+09bf}\N{U+0995}",
      "\N{U+09a6}\N{U+09cd}\N{U+09ac}\N{U+09bf}\N{U+09a4}\N{U+09c0}\N{U+09af}\N{U+09bc} \N{U+09a4}\N{U+09cd}\N{U+09b0}\N{U+09c8}\N{U+09ae}\N{U+09be}\N{U+09b8}\N{U+09bf}\N{U+0995}",
      "\N{U+09a4}\N{U+09c3}\N{U+09a4}\N{U+09c0}\N{U+09af}\N{U+09bc} \N{U+09a4}\N{U+09cd}\N{U+09b0}\N{U+09c8}\N{U+09ae}\N{U+09be}\N{U+09b8}\N{U+09bf}\N{U+0995}",
      "\N{U+099a}\N{U+09a4}\N{U+09c1}\N{U+09b0}\N{U+09cd}\N{U+09a5} \N{U+09a4}\N{U+09cd}\N{U+09b0}\N{U+09c8}\N{U+09ae}\N{U+09be}\N{U+09b8}\N{U+09bf}\N{U+0995}"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+09e7}",
      "\N{U+09e8}",
      "\N{U+09e9}",
      "\N{U+09ea}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+09a4}\N{U+09cd}\N{U+09b0}\N{U+09c8}\N{U+09ae}\N{U+09be}\N{U+09b8}\N{U+09bf}\N{U+0995}",
      "\N{U+09a6}\N{U+09cd}\N{U+09ac}\N{U+09bf}\N{U+09a4}\N{U+09c0}\N{U+09af}\N{U+09bc} \N{U+09a4}\N{U+09cd}\N{U+09b0}\N{U+09c8}\N{U+09ae}\N{U+09be}\N{U+09b8}\N{U+09bf}\N{U+0995}",
      "\N{U+09a4}\N{U+09c3}\N{U+09a4}\N{U+09c0}\N{U+09af}\N{U+09bc} \N{U+09a4}\N{U+09cd}\N{U+09b0}\N{U+09c8}\N{U+09ae}\N{U+09be}\N{U+09b8}\N{U+09bf}\N{U+0995}",
      "\N{U+099a}\N{U+09a4}\N{U+09c1}\N{U+09b0}\N{U+09cd}\N{U+09a5} \N{U+09a4}\N{U+09cd}\N{U+09b0}\N{U+09c8}\N{U+09ae}\N{U+09be}\N{U+09b8}\N{U+09bf}\N{U+0995}"
    ],
    script => undef,
    territory => "India",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ bo ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y LLLL",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM\N{U+0f5a}\N{U+0f7a}\N{U+0f66}\N{U+0f0b}d, E",
      MMMMd => "MMMM\N{U+0f60}\N{U+0f72}\N{U+0f0b}\N{U+0f5a}\N{U+0f7a}\N{U+0f66}\N{U+0f0b}d",
      MMMd => "MMM\N{U+0f5a}\N{U+0f7a}\N{U+0f66}\N{U+0f0b}d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y LLL",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMMd => "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}\N{U+0f0b}y MMMM\N{U+0f60}\N{U+0f72}\N{U+0f0b}\N{U+0f5a}\N{U+0f7a}\N{U+0f66}\N{U+0f0b}d",
      yMMMd => "y \N{U+0f63}\N{U+0f7c}\N{U+0f60}\N{U+0f72}\N{U+0f0b}MMM\N{U+0f5a}\N{U+0f7a}\N{U+0f66}\N{U+0f0b}d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "bo",
    date_format_full => "y MMMM\N{U+0f60}\N{U+0f72}\N{U+0f0b}\N{U+0f5a}\N{U+0f7a}\N{U+0f66}\N{U+0f0b}d, EEEE",
    date_format_long => "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}\N{U+0f0b}y MMMM\N{U+0f60}\N{U+0f72}\N{U+0f0b}\N{U+0f5a}\N{U+0f7a}\N{U+0f66}\N{U+0f0b}d",
    date_format_medium => "y \N{U+0f63}\N{U+0f7c}\N{U+0f60}\N{U+0f72}\N{U+0f0b}MMM\N{U+0f5a}\N{U+0f7a}\N{U+0f66}\N{U+0f0b}d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}",
      "\N{U+0f58}\N{U+0f72}\N{U+0f42}\N{U+0f0b}\N{U+0f51}\N{U+0f58}\N{U+0f62}\N{U+0f0b}",
      "\N{U+0f63}\N{U+0fb7}\N{U+0f42}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f55}\N{U+0f74}\N{U+0f62}\N{U+0f0b}\N{U+0f56}\N{U+0f74}\N{U+0f0b}",
      "\N{U+0f54}\N{U+0f0b}\N{U+0f66}\N{U+0f44}\N{U+0f66}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0f7a}\N{U+0f53}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f49}\N{U+0f72}\N{U+0f0b}\N{U+0f58}\N{U+0f0b}"
    ],
    day_format_narrow => [
      "\N{U+0f5f}\N{U+0fb3}",
      "\N{U+0f58}\N{U+0f72}\N{U+0f42}",
      "\N{U+0f63}\N{U+0fb7}\N{U+0f42}",
      "\N{U+0f55}\N{U+0f74}\N{U+0f62}",
      "\N{U+0f66}\N{U+0f44}\N{U+0f66}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0f7a}\N{U+0f53}",
      "\N{U+0f49}\N{U+0f72}"
    ],
    day_format_wide => [
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f58}\N{U+0f72}\N{U+0f42}\N{U+0f0b}\N{U+0f51}\N{U+0f58}\N{U+0f62}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f63}\N{U+0fb7}\N{U+0f42}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f55}\N{U+0f74}\N{U+0f62}\N{U+0f0b}\N{U+0f56}\N{U+0f74}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}\N{U+0f66}\N{U+0f44}\N{U+0f66}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f66}\N{U+0fa4}\N{U+0f7a}\N{U+0f53}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f49}\N{U+0f72}\N{U+0f0b}\N{U+0f58}\N{U+0f0b}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}",
      "\N{U+0f58}\N{U+0f72}\N{U+0f42}\N{U+0f0b}\N{U+0f51}\N{U+0f58}\N{U+0f62}\N{U+0f0b}",
      "\N{U+0f63}\N{U+0fb7}\N{U+0f42}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f55}\N{U+0f74}\N{U+0f62}\N{U+0f0b}\N{U+0f56}\N{U+0f74}\N{U+0f0b}",
      "\N{U+0f54}\N{U+0f0b}\N{U+0f66}\N{U+0f44}\N{U+0f66}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0f7a}\N{U+0f53}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f49}\N{U+0f72}\N{U+0f0b}\N{U+0f58}\N{U+0f0b}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0f5f}\N{U+0fb3}",
      "\N{U+0f58}\N{U+0f72}\N{U+0f42}",
      "\N{U+0f63}\N{U+0fb7}\N{U+0f42}",
      "\N{U+0f55}\N{U+0f74}\N{U+0f62}",
      "\N{U+0f66}\N{U+0f44}\N{U+0f66}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0f7a}\N{U+0f53}",
      "\N{U+0f49}\N{U+0f72}"
    ],
    day_stand_alone_wide => [
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f58}\N{U+0f72}\N{U+0f42}\N{U+0f0b}\N{U+0f51}\N{U+0f58}\N{U+0f62}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f63}\N{U+0fb7}\N{U+0f42}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f55}\N{U+0f74}\N{U+0f62}\N{U+0f0b}\N{U+0f56}\N{U+0f74}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}\N{U+0f66}\N{U+0f44}\N{U+0f66}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f66}\N{U+0fa4}\N{U+0f7a}\N{U+0f53}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f49}\N{U+0f72}\N{U+0f0b}\N{U+0f58}\N{U+0f0b}"
    ],
    era_abbreviated => [
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}\N{U+0f0b}\N{U+0f66}\N{U+0f94}\N{U+0f7c}\N{U+0f53}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}\N{U+0f0b}"
    ],
    era_narrow => [
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}\N{U+0f0b}\N{U+0f66}\N{U+0f94}\N{U+0f7c}\N{U+0f53}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}\N{U+0f0b}"
    ],
    era_wide => [
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}\N{U+0f0b}\N{U+0f66}\N{U+0f94}\N{U+0f7c}\N{U+0f53}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}\N{U+0f0b}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Tibetan",
    month_format_abbreviated => [
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f22}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f23}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f24}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f25}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f26}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f27}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f28}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f29}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}\N{U+0f20}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}\N{U+0f21}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}\N{U+0f22}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f51}\N{U+0f44}\N{U+0f0b}\N{U+0f54}\N{U+0f7c}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f42}\N{U+0f66}\N{U+0f74}\N{U+0f58}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f63}\N{U+0f94}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f51}\N{U+0fb2}\N{U+0f74}\N{U+0f42}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f51}\N{U+0f74}\N{U+0f53}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f62}\N{U+0f92}\N{U+0fb1}\N{U+0f51}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f51}\N{U+0f42}\N{U+0f74}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f45}\N{U+0f74}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f45}\N{U+0f74}\N{U+0f0b}\N{U+0f42}\N{U+0f45}\N{U+0f72}\N{U+0f42}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f45}\N{U+0f74}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f22}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f23}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f24}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f25}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f26}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f27}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f28}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f29}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}\N{U+0f20}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}\N{U+0f21}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}\N{U+0f22}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f51}\N{U+0f44}\N{U+0f0b}\N{U+0f54}\N{U+0f7c}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f42}\N{U+0f66}\N{U+0f74}\N{U+0f58}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f63}\N{U+0f94}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f51}\N{U+0fb2}\N{U+0f74}\N{U+0f42}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f51}\N{U+0f74}\N{U+0f53}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f62}\N{U+0f92}\N{U+0fb1}\N{U+0f51}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f51}\N{U+0f42}\N{U+0f74}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f45}\N{U+0f74}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f45}\N{U+0f74}\N{U+0f0b}\N{U+0f42}\N{U+0f45}\N{U+0f72}\N{U+0f42}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f45}\N{U+0f74}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}"
    ],
    name => "Tibetan",
    native_language => "\N{U+0f56}\N{U+0f7c}\N{U+0f51}\N{U+0f0b}\N{U+0f66}\N{U+0f90}\N{U+0f51}\N{U+0f0b}",
    native_name => "\N{U+0f56}\N{U+0f7c}\N{U+0f51}\N{U+0f0b}\N{U+0f66}\N{U+0f90}\N{U+0f51}\N{U+0f0b}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f51}\N{U+0f44}\N{U+0f0b}\N{U+0f54}\N{U+0f7c}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f42}\N{U+0f66}\N{U+0f74}\N{U+0f58}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f51}\N{U+0f44}\N{U+0f0b}\N{U+0f54}\N{U+0f7c}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f42}\N{U+0f66}\N{U+0f74}\N{U+0f58}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f51}\N{U+0f44}\N{U+0f0b}\N{U+0f54}\N{U+0f7c}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f42}\N{U+0f66}\N{U+0f74}\N{U+0f58}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f51}\N{U+0f44}\N{U+0f0b}\N{U+0f54}\N{U+0f7c}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f42}\N{U+0f66}\N{U+0f74}\N{U+0f58}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ bo-CN ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y LLLL",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM\N{U+0f5a}\N{U+0f7a}\N{U+0f66}\N{U+0f0b}d, E",
      MMMMd => "MMMM\N{U+0f60}\N{U+0f72}\N{U+0f0b}\N{U+0f5a}\N{U+0f7a}\N{U+0f66}\N{U+0f0b}d",
      MMMd => "MMM\N{U+0f5a}\N{U+0f7a}\N{U+0f66}\N{U+0f0b}d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y LLL",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMMd => "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}\N{U+0f0b}y MMMM\N{U+0f60}\N{U+0f72}\N{U+0f0b}\N{U+0f5a}\N{U+0f7a}\N{U+0f66}\N{U+0f0b}d",
      yMMMd => "y \N{U+0f63}\N{U+0f7c}\N{U+0f60}\N{U+0f72}\N{U+0f0b}MMM\N{U+0f5a}\N{U+0f7a}\N{U+0f66}\N{U+0f0b}d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "bo-CN",
    date_format_full => "y MMMM\N{U+0f60}\N{U+0f72}\N{U+0f0b}\N{U+0f5a}\N{U+0f7a}\N{U+0f66}\N{U+0f0b}d, EEEE",
    date_format_long => "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}\N{U+0f0b}y MMMM\N{U+0f60}\N{U+0f72}\N{U+0f0b}\N{U+0f5a}\N{U+0f7a}\N{U+0f66}\N{U+0f0b}d",
    date_format_medium => "y \N{U+0f63}\N{U+0f7c}\N{U+0f60}\N{U+0f72}\N{U+0f0b}MMM\N{U+0f5a}\N{U+0f7a}\N{U+0f66}\N{U+0f0b}d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}",
      "\N{U+0f58}\N{U+0f72}\N{U+0f42}\N{U+0f0b}\N{U+0f51}\N{U+0f58}\N{U+0f62}\N{U+0f0b}",
      "\N{U+0f63}\N{U+0fb7}\N{U+0f42}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f55}\N{U+0f74}\N{U+0f62}\N{U+0f0b}\N{U+0f56}\N{U+0f74}\N{U+0f0b}",
      "\N{U+0f54}\N{U+0f0b}\N{U+0f66}\N{U+0f44}\N{U+0f66}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0f7a}\N{U+0f53}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f49}\N{U+0f72}\N{U+0f0b}\N{U+0f58}\N{U+0f0b}"
    ],
    day_format_narrow => [
      "\N{U+0f5f}\N{U+0fb3}",
      "\N{U+0f58}\N{U+0f72}\N{U+0f42}",
      "\N{U+0f63}\N{U+0fb7}\N{U+0f42}",
      "\N{U+0f55}\N{U+0f74}\N{U+0f62}",
      "\N{U+0f66}\N{U+0f44}\N{U+0f66}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0f7a}\N{U+0f53}",
      "\N{U+0f49}\N{U+0f72}"
    ],
    day_format_wide => [
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f58}\N{U+0f72}\N{U+0f42}\N{U+0f0b}\N{U+0f51}\N{U+0f58}\N{U+0f62}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f63}\N{U+0fb7}\N{U+0f42}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f55}\N{U+0f74}\N{U+0f62}\N{U+0f0b}\N{U+0f56}\N{U+0f74}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}\N{U+0f66}\N{U+0f44}\N{U+0f66}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f66}\N{U+0fa4}\N{U+0f7a}\N{U+0f53}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f49}\N{U+0f72}\N{U+0f0b}\N{U+0f58}\N{U+0f0b}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}",
      "\N{U+0f58}\N{U+0f72}\N{U+0f42}\N{U+0f0b}\N{U+0f51}\N{U+0f58}\N{U+0f62}\N{U+0f0b}",
      "\N{U+0f63}\N{U+0fb7}\N{U+0f42}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f55}\N{U+0f74}\N{U+0f62}\N{U+0f0b}\N{U+0f56}\N{U+0f74}\N{U+0f0b}",
      "\N{U+0f54}\N{U+0f0b}\N{U+0f66}\N{U+0f44}\N{U+0f66}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0f7a}\N{U+0f53}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f49}\N{U+0f72}\N{U+0f0b}\N{U+0f58}\N{U+0f0b}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0f5f}\N{U+0fb3}",
      "\N{U+0f58}\N{U+0f72}\N{U+0f42}",
      "\N{U+0f63}\N{U+0fb7}\N{U+0f42}",
      "\N{U+0f55}\N{U+0f74}\N{U+0f62}",
      "\N{U+0f66}\N{U+0f44}\N{U+0f66}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0f7a}\N{U+0f53}",
      "\N{U+0f49}\N{U+0f72}"
    ],
    day_stand_alone_wide => [
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f58}\N{U+0f72}\N{U+0f42}\N{U+0f0b}\N{U+0f51}\N{U+0f58}\N{U+0f62}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f63}\N{U+0fb7}\N{U+0f42}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f55}\N{U+0f74}\N{U+0f62}\N{U+0f0b}\N{U+0f56}\N{U+0f74}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}\N{U+0f66}\N{U+0f44}\N{U+0f66}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f66}\N{U+0fa4}\N{U+0f7a}\N{U+0f53}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f49}\N{U+0f72}\N{U+0f0b}\N{U+0f58}\N{U+0f0b}"
    ],
    era_abbreviated => [
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}\N{U+0f0b}\N{U+0f66}\N{U+0f94}\N{U+0f7c}\N{U+0f53}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}\N{U+0f0b}"
    ],
    era_narrow => [
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}\N{U+0f0b}\N{U+0f66}\N{U+0f94}\N{U+0f7c}\N{U+0f53}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}\N{U+0f0b}"
    ],
    era_wide => [
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}\N{U+0f0b}\N{U+0f66}\N{U+0f94}\N{U+0f7c}\N{U+0f53}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}\N{U+0f0b}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "\N{U+0f54}\N{U+0f66}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}%y\N{U+0f5f}\N{U+0f63}%m\N{U+0f5a}\N{U+0f7a}\N{U+0f66}%d",
    glibc_datetime_format => "\N{U+0f54}\N{U+0f66}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}%y\N{U+0f5f}\N{U+0f63}%m\N{U+0f5a}\N{U+0f7a}\N{U+0f66}%d\N{U+0f46}\N{U+0f74}\N{U+0f0b}\N{U+0f5a}\N{U+0f7c}\N{U+0f51}%H\N{U+0f40}\N{U+0f66}\N{U+0f62}\N{U+0f0b}\N{U+0f58}%M\N{U+0f40}\N{U+0f66}\N{U+0f62}\N{U+0f0b}\N{U+0f46}%S",
    glibc_time_12_format => "\N{U+0f46}\N{U+0f74}\N{U+0f0b}\N{U+0f5a}\N{U+0f7c}\N{U+0f51}%I\N{U+0f40}\N{U+0f66}\N{U+0f62}\N{U+0f0b}\N{U+0f58}%M\N{U+0f40}\N{U+0f66}\N{U+0f62}\N{U+0f0b}\N{U+0f46}%S %p",
    glibc_time_format => "\N{U+0f46}\N{U+0f74}\N{U+0f0b}\N{U+0f5a}\N{U+0f7c}\N{U+0f51}%H\N{U+0f40}\N{U+0f66}\N{U+0f62}\N{U+0f0b}\N{U+0f58}%M\N{U+0f40}\N{U+0f66}\N{U+0f62}\N{U+0f0b}\N{U+0f46}%S",
    language => "Tibetan",
    month_format_abbreviated => [
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f22}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f23}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f24}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f25}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f26}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f27}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f28}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f29}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}\N{U+0f20}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}\N{U+0f21}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}\N{U+0f22}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f51}\N{U+0f44}\N{U+0f0b}\N{U+0f54}\N{U+0f7c}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f42}\N{U+0f66}\N{U+0f74}\N{U+0f58}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f63}\N{U+0f94}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f51}\N{U+0fb2}\N{U+0f74}\N{U+0f42}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f51}\N{U+0f74}\N{U+0f53}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f62}\N{U+0f92}\N{U+0fb1}\N{U+0f51}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f51}\N{U+0f42}\N{U+0f74}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f45}\N{U+0f74}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f45}\N{U+0f74}\N{U+0f0b}\N{U+0f42}\N{U+0f45}\N{U+0f72}\N{U+0f42}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f45}\N{U+0f74}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f22}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f23}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f24}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f25}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f26}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f27}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f28}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f29}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}\N{U+0f20}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}\N{U+0f21}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}\N{U+0f22}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f51}\N{U+0f44}\N{U+0f0b}\N{U+0f54}\N{U+0f7c}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f42}\N{U+0f66}\N{U+0f74}\N{U+0f58}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f63}\N{U+0f94}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f51}\N{U+0fb2}\N{U+0f74}\N{U+0f42}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f51}\N{U+0f74}\N{U+0f53}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f62}\N{U+0f92}\N{U+0fb1}\N{U+0f51}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f51}\N{U+0f42}\N{U+0f74}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f45}\N{U+0f74}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f45}\N{U+0f74}\N{U+0f0b}\N{U+0f42}\N{U+0f45}\N{U+0f72}\N{U+0f42}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f45}\N{U+0f74}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}"
    ],
    name => "Tibetan China",
    native_language => "\N{U+0f56}\N{U+0f7c}\N{U+0f51}\N{U+0f0b}\N{U+0f66}\N{U+0f90}\N{U+0f51}\N{U+0f0b}",
    native_name => "\N{U+0f56}\N{U+0f7c}\N{U+0f51}\N{U+0f0b}\N{U+0f66}\N{U+0f90}\N{U+0f51}\N{U+0f0b} \N{U+0f62}\N{U+0f92}\N{U+0fb1}\N{U+0f0b}\N{U+0f53}\N{U+0f42}",
    native_script => undef,
    native_territory => "\N{U+0f62}\N{U+0f92}\N{U+0fb1}\N{U+0f0b}\N{U+0f53}\N{U+0f42}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f51}\N{U+0f44}\N{U+0f0b}\N{U+0f54}\N{U+0f7c}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f42}\N{U+0f66}\N{U+0f74}\N{U+0f58}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f51}\N{U+0f44}\N{U+0f0b}\N{U+0f54}\N{U+0f7c}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f42}\N{U+0f66}\N{U+0f74}\N{U+0f58}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f51}\N{U+0f44}\N{U+0f0b}\N{U+0f54}\N{U+0f7c}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f42}\N{U+0f66}\N{U+0f74}\N{U+0f58}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f51}\N{U+0f44}\N{U+0f0b}\N{U+0f54}\N{U+0f7c}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f42}\N{U+0f66}\N{U+0f74}\N{U+0f58}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}"
    ],
    script => undef,
    territory => "China",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ bo-IN ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y LLLL",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM\N{U+0f5a}\N{U+0f7a}\N{U+0f66}\N{U+0f0b}d, E",
      MMMMd => "MMMM\N{U+0f60}\N{U+0f72}\N{U+0f0b}\N{U+0f5a}\N{U+0f7a}\N{U+0f66}\N{U+0f0b}d",
      MMMd => "MMM\N{U+0f5a}\N{U+0f7a}\N{U+0f66}\N{U+0f0b}d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y LLL",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMMd => "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}\N{U+0f0b}y MMMM\N{U+0f60}\N{U+0f72}\N{U+0f0b}\N{U+0f5a}\N{U+0f7a}\N{U+0f66}\N{U+0f0b}d",
      yMMMd => "y \N{U+0f63}\N{U+0f7c}\N{U+0f60}\N{U+0f72}\N{U+0f0b}MMM\N{U+0f5a}\N{U+0f7a}\N{U+0f66}\N{U+0f0b}d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "bo-IN",
    date_format_full => "y MMMM\N{U+0f60}\N{U+0f72}\N{U+0f0b}\N{U+0f5a}\N{U+0f7a}\N{U+0f66}\N{U+0f0b}d, EEEE",
    date_format_long => "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}\N{U+0f0b}y MMMM\N{U+0f60}\N{U+0f72}\N{U+0f0b}\N{U+0f5a}\N{U+0f7a}\N{U+0f66}\N{U+0f0b}d",
    date_format_medium => "y \N{U+0f63}\N{U+0f7c}\N{U+0f60}\N{U+0f72}\N{U+0f0b}MMM\N{U+0f5a}\N{U+0f7a}\N{U+0f66}\N{U+0f0b}d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}",
      "\N{U+0f58}\N{U+0f72}\N{U+0f42}\N{U+0f0b}\N{U+0f51}\N{U+0f58}\N{U+0f62}\N{U+0f0b}",
      "\N{U+0f63}\N{U+0fb7}\N{U+0f42}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f55}\N{U+0f74}\N{U+0f62}\N{U+0f0b}\N{U+0f56}\N{U+0f74}\N{U+0f0b}",
      "\N{U+0f54}\N{U+0f0b}\N{U+0f66}\N{U+0f44}\N{U+0f66}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0f7a}\N{U+0f53}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f49}\N{U+0f72}\N{U+0f0b}\N{U+0f58}\N{U+0f0b}"
    ],
    day_format_narrow => [
      "\N{U+0f5f}\N{U+0fb3}",
      "\N{U+0f58}\N{U+0f72}\N{U+0f42}",
      "\N{U+0f63}\N{U+0fb7}\N{U+0f42}",
      "\N{U+0f55}\N{U+0f74}\N{U+0f62}",
      "\N{U+0f66}\N{U+0f44}\N{U+0f66}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0f7a}\N{U+0f53}",
      "\N{U+0f49}\N{U+0f72}"
    ],
    day_format_wide => [
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f58}\N{U+0f72}\N{U+0f42}\N{U+0f0b}\N{U+0f51}\N{U+0f58}\N{U+0f62}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f63}\N{U+0fb7}\N{U+0f42}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f55}\N{U+0f74}\N{U+0f62}\N{U+0f0b}\N{U+0f56}\N{U+0f74}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}\N{U+0f66}\N{U+0f44}\N{U+0f66}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f66}\N{U+0fa4}\N{U+0f7a}\N{U+0f53}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f49}\N{U+0f72}\N{U+0f0b}\N{U+0f58}\N{U+0f0b}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}",
      "\N{U+0f58}\N{U+0f72}\N{U+0f42}\N{U+0f0b}\N{U+0f51}\N{U+0f58}\N{U+0f62}\N{U+0f0b}",
      "\N{U+0f63}\N{U+0fb7}\N{U+0f42}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f55}\N{U+0f74}\N{U+0f62}\N{U+0f0b}\N{U+0f56}\N{U+0f74}\N{U+0f0b}",
      "\N{U+0f54}\N{U+0f0b}\N{U+0f66}\N{U+0f44}\N{U+0f66}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0f7a}\N{U+0f53}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f49}\N{U+0f72}\N{U+0f0b}\N{U+0f58}\N{U+0f0b}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0f5f}\N{U+0fb3}",
      "\N{U+0f58}\N{U+0f72}\N{U+0f42}",
      "\N{U+0f63}\N{U+0fb7}\N{U+0f42}",
      "\N{U+0f55}\N{U+0f74}\N{U+0f62}",
      "\N{U+0f66}\N{U+0f44}\N{U+0f66}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0f7a}\N{U+0f53}",
      "\N{U+0f49}\N{U+0f72}"
    ],
    day_stand_alone_wide => [
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f58}\N{U+0f72}\N{U+0f42}\N{U+0f0b}\N{U+0f51}\N{U+0f58}\N{U+0f62}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f63}\N{U+0fb7}\N{U+0f42}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f55}\N{U+0f74}\N{U+0f62}\N{U+0f0b}\N{U+0f56}\N{U+0f74}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}\N{U+0f66}\N{U+0f44}\N{U+0f66}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f66}\N{U+0fa4}\N{U+0f7a}\N{U+0f53}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f49}\N{U+0f72}\N{U+0f0b}\N{U+0f58}\N{U+0f0b}"
    ],
    era_abbreviated => [
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}\N{U+0f0b}\N{U+0f66}\N{U+0f94}\N{U+0f7c}\N{U+0f53}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}\N{U+0f0b}"
    ],
    era_narrow => [
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}\N{U+0f0b}\N{U+0f66}\N{U+0f94}\N{U+0f7c}\N{U+0f53}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}\N{U+0f0b}"
    ],
    era_wide => [
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}\N{U+0f0b}\N{U+0f66}\N{U+0f94}\N{U+0f7c}\N{U+0f53}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}\N{U+0f0b}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Tibetan",
    month_format_abbreviated => [
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f22}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f23}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f24}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f25}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f26}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f27}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f28}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f29}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}\N{U+0f20}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}\N{U+0f21}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}\N{U+0f22}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f51}\N{U+0f44}\N{U+0f0b}\N{U+0f54}\N{U+0f7c}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f42}\N{U+0f66}\N{U+0f74}\N{U+0f58}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f63}\N{U+0f94}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f51}\N{U+0fb2}\N{U+0f74}\N{U+0f42}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f51}\N{U+0f74}\N{U+0f53}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f62}\N{U+0f92}\N{U+0fb1}\N{U+0f51}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f51}\N{U+0f42}\N{U+0f74}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f45}\N{U+0f74}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f45}\N{U+0f74}\N{U+0f0b}\N{U+0f42}\N{U+0f45}\N{U+0f72}\N{U+0f42}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f45}\N{U+0f74}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f22}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f23}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f24}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f25}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f26}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f27}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f28}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f29}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}\N{U+0f20}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}\N{U+0f21}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}\N{U+0f22}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f51}\N{U+0f44}\N{U+0f0b}\N{U+0f54}\N{U+0f7c}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f42}\N{U+0f66}\N{U+0f74}\N{U+0f58}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f63}\N{U+0f94}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f51}\N{U+0fb2}\N{U+0f74}\N{U+0f42}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f51}\N{U+0f74}\N{U+0f53}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f62}\N{U+0f92}\N{U+0fb1}\N{U+0f51}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f51}\N{U+0f42}\N{U+0f74}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f45}\N{U+0f74}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f45}\N{U+0f74}\N{U+0f0b}\N{U+0f42}\N{U+0f45}\N{U+0f72}\N{U+0f42}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}\N{U+0f56}\N{U+0f45}\N{U+0f74}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}"
    ],
    name => "Tibetan India",
    native_language => "\N{U+0f56}\N{U+0f7c}\N{U+0f51}\N{U+0f0b}\N{U+0f66}\N{U+0f90}\N{U+0f51}\N{U+0f0b}",
    native_name => "\N{U+0f56}\N{U+0f7c}\N{U+0f51}\N{U+0f0b}\N{U+0f66}\N{U+0f90}\N{U+0f51}\N{U+0f0b} \N{U+0f62}\N{U+0f92}\N{U+0fb1}\N{U+0f0b}\N{U+0f42}\N{U+0f62}\N{U+0f0b}",
    native_script => undef,
    native_territory => "\N{U+0f62}\N{U+0f92}\N{U+0fb1}\N{U+0f0b}\N{U+0f42}\N{U+0f62}\N{U+0f0b}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f51}\N{U+0f44}\N{U+0f0b}\N{U+0f54}\N{U+0f7c}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f42}\N{U+0f66}\N{U+0f74}\N{U+0f58}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f51}\N{U+0f44}\N{U+0f0b}\N{U+0f54}\N{U+0f7c}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f42}\N{U+0f66}\N{U+0f74}\N{U+0f58}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f51}\N{U+0f44}\N{U+0f0b}\N{U+0f54}\N{U+0f7c}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f42}\N{U+0f66}\N{U+0f74}\N{U+0f58}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f51}\N{U+0f44}\N{U+0f0b}\N{U+0f54}\N{U+0f7c}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f42}\N{U+0f66}\N{U+0f74}\N{U+0f58}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}",
      "\N{U+0f51}\N{U+0f74}\N{U+0f66}\N{U+0f0b}\N{U+0f5a}\N{U+0f72}\N{U+0f42}\N{U+0f66}\N{U+0f0b}\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f54}\N{U+0f0d}"
    ],
    script => undef,
    territory => "India",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ br ]__
  {
    am_pm_abbreviated => [
      "A.M.",
      "G.M."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "MM",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "br",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} 'da' {0}",
    datetime_format_long => "{1} 'da' {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Lun",
      "Meu.",
      "Mer.",
      "Yaou",
      "Gwe.",
      "Sad.",
      "Sul"
    ],
    day_format_narrow => [
      "L",
      "Mz",
      "Mc",
      "Y",
      "G",
      "Sa",
      "Su"
    ],
    day_format_wide => [
      "Lun",
      "Meurzh",
      "Merc\N{U+02bc}her",
      "Yaou",
      "Gwener",
      "Sadorn",
      "Sul"
    ],
    day_stand_alone_abbreviated => [
      "Lun",
      "Meu.",
      "Mer.",
      "Yaou",
      "Gwe.",
      "Sad.",
      "Sul"
    ],
    day_stand_alone_narrow => [
      "L",
      "Mz",
      "Mc",
      "Y",
      "G",
      "Sa",
      "Su"
    ],
    day_stand_alone_wide => [
      "Lun",
      "Meurzh",
      "Merc\N{U+02bc}her",
      "Yaou",
      "Gwener",
      "Sadorn",
      "Sul"
    ],
    era_abbreviated => [
      "a-raok J.K.",
      "goude J.K."
    ],
    era_narrow => [
      "a-raok J.K.",
      "goude J.K."
    ],
    era_wide => [
      "a-raok Jezuz-Krist",
      "goude Jezuz-Krist"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Breton",
    month_format_abbreviated => [
      "Gen.",
      "C\N{U+02bc}hwe.",
      "Meur.",
      "Ebr.",
      "Mae",
      "Mezh.",
      "Goue.",
      "Eost",
      "Gwen.",
      "Here",
      "Du",
      "Kzu."
    ],
    month_format_narrow => [
      "01",
      "02",
      "03",
      "04",
      "05",
      "06",
      "07",
      "08",
      "09",
      10,
      11,
      12
    ],
    month_format_wide => [
      "Genver",
      "C\N{U+02bc}hwevrer",
      "Meurzh",
      "Ebrel",
      "Mae",
      "Mezheven",
      "Gouere",
      "Eost",
      "Gwengolo",
      "Here",
      "Du",
      "Kerzu"
    ],
    month_stand_alone_abbreviated => [
      "Gen.",
      "C\N{U+02bc}hwe.",
      "Meur.",
      "Ebr.",
      "Mae",
      "Mezh.",
      "Goue.",
      "Eost",
      "Gwen.",
      "Here",
      "Du",
      "Ker."
    ],
    month_stand_alone_narrow => [
      "01",
      "02",
      "03",
      "04",
      "05",
      "06",
      "07",
      "08",
      "09",
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Genver",
      "C\N{U+02bc}hwevrer",
      "Meurzh",
      "Ebrel",
      "Mae",
      "Mezheven",
      "Gouere",
      "Eost",
      "Gwengolo",
      "Here",
      "Du",
      "Kerzu"
    ],
    name => "Breton",
    native_language => "brezhoneg",
    native_name => "brezhoneg",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "1a\N{U+00f1} trim.",
      "2l trim.",
      "3e trim.",
      "4e trim."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1a\N{U+00f1} trimiziad",
      "2l trimiziad",
      "3e trimiziad",
      "4e trimiziad"
    ],
    quarter_stand_alone_abbreviated => [
      "1a\N{U+00f1} trim.",
      "2l trim.",
      "3e trim.",
      "4e trim."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1a\N{U+00f1} trimiziad",
      "2l trimiziad",
      "3e trimiziad",
      "4e trimiziad"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ br-FR ]__
  {
    am_pm_abbreviated => [
      "A.M.",
      "G.M."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "MM",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "br-FR",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} 'da' {0}",
    datetime_format_long => "{1} 'da' {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Lun",
      "Meu.",
      "Mer.",
      "Yaou",
      "Gwe.",
      "Sad.",
      "Sul"
    ],
    day_format_narrow => [
      "L",
      "Mz",
      "Mc",
      "Y",
      "G",
      "Sa",
      "Su"
    ],
    day_format_wide => [
      "Lun",
      "Meurzh",
      "Merc\N{U+02bc}her",
      "Yaou",
      "Gwener",
      "Sadorn",
      "Sul"
    ],
    day_stand_alone_abbreviated => [
      "Lun",
      "Meu.",
      "Mer.",
      "Yaou",
      "Gwe.",
      "Sad.",
      "Sul"
    ],
    day_stand_alone_narrow => [
      "L",
      "Mz",
      "Mc",
      "Y",
      "G",
      "Sa",
      "Su"
    ],
    day_stand_alone_wide => [
      "Lun",
      "Meurzh",
      "Merc\N{U+02bc}her",
      "Yaou",
      "Gwener",
      "Sadorn",
      "Sul"
    ],
    era_abbreviated => [
      "a-raok J.K.",
      "goude J.K."
    ],
    era_narrow => [
      "a-raok J.K.",
      "goude J.K."
    ],
    era_wide => [
      "a-raok Jezuz-Krist",
      "goude Jezuz-Krist"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d.%m.%Y",
    glibc_datetime_format => "D'ar %A %d a viz %B %Y",
    glibc_time_12_format => "%Ie%M:%S %p",
    glibc_time_format => "%T",
    language => "Breton",
    month_format_abbreviated => [
      "Gen.",
      "C\N{U+02bc}hwe.",
      "Meur.",
      "Ebr.",
      "Mae",
      "Mezh.",
      "Goue.",
      "Eost",
      "Gwen.",
      "Here",
      "Du",
      "Kzu."
    ],
    month_format_narrow => [
      "01",
      "02",
      "03",
      "04",
      "05",
      "06",
      "07",
      "08",
      "09",
      10,
      11,
      12
    ],
    month_format_wide => [
      "Genver",
      "C\N{U+02bc}hwevrer",
      "Meurzh",
      "Ebrel",
      "Mae",
      "Mezheven",
      "Gouere",
      "Eost",
      "Gwengolo",
      "Here",
      "Du",
      "Kerzu"
    ],
    month_stand_alone_abbreviated => [
      "Gen.",
      "C\N{U+02bc}hwe.",
      "Meur.",
      "Ebr.",
      "Mae",
      "Mezh.",
      "Goue.",
      "Eost",
      "Gwen.",
      "Here",
      "Du",
      "Ker."
    ],
    month_stand_alone_narrow => [
      "01",
      "02",
      "03",
      "04",
      "05",
      "06",
      "07",
      "08",
      "09",
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Genver",
      "C\N{U+02bc}hwevrer",
      "Meurzh",
      "Ebrel",
      "Mae",
      "Mezheven",
      "Gouere",
      "Eost",
      "Gwengolo",
      "Here",
      "Du",
      "Kerzu"
    ],
    name => "Breton France",
    native_language => "brezhoneg",
    native_name => "brezhoneg Fra\N{U+00f1}s",
    native_script => undef,
    native_territory => "Fra\N{U+00f1}s",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1a\N{U+00f1} trim.",
      "2l trim.",
      "3e trim.",
      "4e trim."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1a\N{U+00f1} trimiziad",
      "2l trimiziad",
      "3e trimiziad",
      "4e trimiziad"
    ],
    quarter_stand_alone_abbreviated => [
      "1a\N{U+00f1} trim.",
      "2l trim.",
      "3e trim.",
      "4e trim."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1a\N{U+00f1} trimiziad",
      "2l trimiziad",
      "3e trimiziad",
      "4e trimiziad"
    ],
    script => undef,
    territory => "France",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ brx ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM, y G",
      GyMMMEd => "E, MMM d, y G",
      GyMMMd => "MMM d, y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "d-MMM",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "brx",
    date_format_full => "EEEE, MMMM d, y",
    date_format_long => "MMMM d, y",
    date_format_medium => "MMM d, y",
    date_format_short => "M/d/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0938}\N{U+092e}",
      "\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0932}",
      "\N{U+092c}\N{U+0941}\N{U+0926}",
      "\N{U+092c}\N{U+093f}\N{U+0938}\N{U+0925}\N{U+093f}",
      "\N{U+0938}\N{U+0941}\N{U+0916}\N{U+0941}\N{U+0930}",
      "\N{U+0938}\N{U+0941}\N{U+0928}\N{U+093f}",
      "\N{U+0930}\N{U+092c}\N{U+093f}"
    ],
    day_format_narrow => [
      "\N{U+0938}",
      "\N{U+092e}\N{U+0902}",
      "\N{U+092c}\N{U+0941}",
      "\N{U+092c}\N{U+093f}",
      "\N{U+0938}\N{U+0941}",
      "\N{U+0938}\N{U+0941}",
      "\N{U+0930}"
    ],
    day_format_wide => [
      "\N{U+0938}\N{U+092e}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0932}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+092c}\N{U+0941}\N{U+0926}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+092c}\N{U+093f}\N{U+0938}\N{U+0925}\N{U+093f}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+0938}\N{U+0941}\N{U+0916}\N{U+0941}\N{U+0930}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+0938}\N{U+0941}\N{U+0928}\N{U+093f}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+0930}\N{U+092c}\N{U+093f}\N{U+092c}\N{U+093e}\N{U+0930}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0938}\N{U+092e}",
      "\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0932}",
      "\N{U+092c}\N{U+0941}\N{U+0926}",
      "\N{U+092c}\N{U+093f}\N{U+0938}\N{U+0925}\N{U+093f}",
      "\N{U+0938}\N{U+0941}\N{U+0916}\N{U+0941}\N{U+0930}",
      "\N{U+0938}\N{U+0941}\N{U+0928}\N{U+093f}",
      "\N{U+0930}\N{U+092c}\N{U+093f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0938}",
      "\N{U+092e}\N{U+0902}",
      "\N{U+092c}\N{U+0941}",
      "\N{U+092c}\N{U+093f}",
      "\N{U+0938}\N{U+0941}",
      "\N{U+0938}\N{U+0941}",
      "\N{U+0930}"
    ],
    day_stand_alone_wide => [
      "\N{U+0938}\N{U+092e}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0932}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+092c}\N{U+0941}\N{U+0926}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+092c}\N{U+093f}\N{U+0938}\N{U+0925}\N{U+093f}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+0938}\N{U+0941}\N{U+0916}\N{U+0941}\N{U+0930}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+0938}\N{U+0941}\N{U+0928}\N{U+093f}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+0930}\N{U+092c}\N{U+093f}\N{U+092c}\N{U+093e}\N{U+0930}"
    ],
    era_abbreviated => [
      "\N{U+0908}\N{U+0938}\N{U+093e}.\N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}",
      "\N{U+0938}\N{U+0928}"
    ],
    era_narrow => [
      "\N{U+0908}\N{U+0938}\N{U+093e}.\N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}",
      "\N{U+0938}\N{U+0928}"
    ],
    era_wide => [
      "\N{U+0908}\N{U+0938}\N{U+093e}.\N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}",
      "\N{U+0938}\N{U+0928}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Bodo",
    month_format_abbreviated => [
      "\N{U+091c}\N{U+093e}\N{U+0928}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+0938}",
      "\N{U+090f}\N{U+092b}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0941}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+093e}\N{U+0907}",
      "\N{U+0906}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+0925}",
      "\N{U+0938}\N{U+0947}\N{U+092c}\N{U+0925}\N{U+0947}\N{U+091c}\N{U+094d}\N{U+092c}\N{U+093c}\N{U+0930}",
      "\N{U+0905}\N{U+0916}\N{U+0925}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+092c}\N{U+0947}\N{U+091c}\N{U+094d}\N{U+092c}\N{U+093c}\N{U+0930}",
      "\N{U+0926}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+091c}\N{U+094d}\N{U+092c}\N{U+093c}\N{U+0930}"
    ],
    month_format_narrow => [
      "\N{U+091c}",
      "\N{U+092b}\N{U+0947}",
      "\N{U+092e}\N{U+093e}",
      "\N{U+090f}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0941}",
      "\N{U+091c}\N{U+0941}",
      "\N{U+0906}",
      "\N{U+0938}\N{U+0947}",
      "\N{U+0905}",
      "\N{U+0928}",
      "\N{U+0926}\N{U+093f}"
    ],
    month_format_wide => [
      "\N{U+091c}\N{U+093e}\N{U+0928}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+0938}",
      "\N{U+090f}\N{U+092b}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0941}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+093e}\N{U+0907}",
      "\N{U+0906}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+0925}",
      "\N{U+0938}\N{U+0947}\N{U+092c}\N{U+0925}\N{U+0947}\N{U+091c}\N{U+094d}\N{U+092c}\N{U+093c}\N{U+0930}",
      "\N{U+0905}\N{U+0916}\N{U+0925}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+092c}\N{U+0947}\N{U+091c}\N{U+094d}\N{U+092c}\N{U+093c}\N{U+0930}",
      "\N{U+0926}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+091c}\N{U+094d}\N{U+092c}\N{U+093c}\N{U+0930}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+091c}\N{U+093e}\N{U+0928}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+0938}",
      "\N{U+090f}\N{U+092b}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0941}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+093e}\N{U+0907}",
      "\N{U+0906}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+0925}",
      "\N{U+0938}\N{U+0947}\N{U+092c}\N{U+0925}\N{U+0947}\N{U+091c}\N{U+094d}\N{U+092c}\N{U+093c}\N{U+0930}",
      "\N{U+0905}\N{U+0916}\N{U+0925}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+092c}\N{U+0947}\N{U+091c}\N{U+094d}\N{U+092c}\N{U+093c}\N{U+0930}",
      "\N{U+0926}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+091c}\N{U+094d}\N{U+092c}\N{U+093c}\N{U+0930}"
    ],
    month_stand_alone_narrow => [
      "\N{U+091c}",
      "\N{U+092b}\N{U+0947}",
      "\N{U+092e}\N{U+093e}",
      "\N{U+090f}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0941}",
      "\N{U+091c}\N{U+0941}",
      "\N{U+0906}",
      "\N{U+0938}\N{U+0947}",
      "\N{U+0905}",
      "\N{U+0928}",
      "\N{U+0926}\N{U+093f}"
    ],
    month_stand_alone_wide => [
      "\N{U+091c}\N{U+093e}\N{U+0928}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+0938}",
      "\N{U+090f}\N{U+092b}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0941}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+093e}\N{U+0907}",
      "\N{U+0906}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+0925}",
      "\N{U+0938}\N{U+0947}\N{U+092c}\N{U+0925}\N{U+0947}\N{U+091c}\N{U+094d}\N{U+092c}\N{U+093c}\N{U+0930}",
      "\N{U+0905}\N{U+0916}\N{U+0925}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+092c}\N{U+0947}\N{U+091c}\N{U+094d}\N{U+092c}\N{U+093c}\N{U+0930}",
      "\N{U+0926}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+091c}\N{U+094d}\N{U+092c}\N{U+093c}\N{U+0930}"
    ],
    name => "Bodo",
    native_language => "\N{U+092c}\N{U+0921}\N{U+093c}\N{U+094b}",
    native_name => "\N{U+092c}\N{U+0921}\N{U+093c}\N{U+094b}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0938}\N{U+093f}\N{U+0925}\N{U+093e}\N{U+0938}\N{U+0947}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+0938}\N{U+0947}/\N{U+092c}\N{U+093e}\N{U+0939}\N{U+093e}\N{U+0917}\N{U+094b}\N{U+0938}\N{U+0947}",
      "\N{U+0916}\N{U+093e}\N{U+0935}\N{U+0938}\N{U+0947}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+0928}\N{U+0948}/\N{U+092c}\N{U+093e}\N{U+0939}\N{U+093e}\N{U+0917}\N{U+094b}\N{U+0928}\N{U+0948}",
      "\N{U+0916}\N{U+093e}\N{U+0935}\N{U+0925}\N{U+093e}\N{U+092e}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+0925}\N{U+093e}\N{U+092e}/\N{U+092c}\N{U+093e}\N{U+0939}\N{U+093e}\N{U+0917}\N{U+094b}\N{U+0925}\N{U+093e}\N{U+092e}",
      "\N{U+0916}\N{U+093e}\N{U+0935}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0948}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0948}/\N{U+092b}\N{U+0941}\N{U+0930}\N{U+093e}/\N{U+0906}\N{U+092c}\N{U+0941}\N{U+0902}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+0938}\N{U+093f}\N{U+0925}\N{U+093e}\N{U+0938}\N{U+0947}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+0938}\N{U+0947}/\N{U+092c}\N{U+093e}\N{U+0939}\N{U+093e}\N{U+0917}\N{U+094b}\N{U+0938}\N{U+0947}",
      "\N{U+0916}\N{U+093e}\N{U+0935}\N{U+0938}\N{U+0947}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+0928}\N{U+0948}/\N{U+092c}\N{U+093e}\N{U+0939}\N{U+093e}\N{U+0917}\N{U+094b}\N{U+0928}\N{U+0948}",
      "\N{U+0916}\N{U+093e}\N{U+0935}\N{U+0925}\N{U+093e}\N{U+092e}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+0925}\N{U+093e}\N{U+092e}/\N{U+092c}\N{U+093e}\N{U+0939}\N{U+093e}\N{U+0917}\N{U+094b}\N{U+0925}\N{U+093e}\N{U+092e}",
      "\N{U+0916}\N{U+093e}\N{U+0935}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0948}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0948}/\N{U+092b}\N{U+0941}\N{U+0930}\N{U+093e}/\N{U+0906}\N{U+092c}\N{U+0941}\N{U+0902}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0938}\N{U+093f}\N{U+0925}\N{U+093e}\N{U+0938}\N{U+0947}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+0938}\N{U+0947}/\N{U+092c}\N{U+093e}\N{U+0939}\N{U+093e}\N{U+0917}\N{U+094b}\N{U+0938}\N{U+0947}",
      "\N{U+0916}\N{U+093e}\N{U+0935}\N{U+0938}\N{U+0947}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+0928}\N{U+0948}/\N{U+092c}\N{U+093e}\N{U+0939}\N{U+093e}\N{U+0917}\N{U+094b}\N{U+0928}\N{U+0948}",
      "\N{U+0916}\N{U+093e}\N{U+0935}\N{U+0925}\N{U+093e}\N{U+092e}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+0925}\N{U+093e}\N{U+092e}/\N{U+092c}\N{U+093e}\N{U+0939}\N{U+093e}\N{U+0917}\N{U+094b}\N{U+0925}\N{U+093e}\N{U+092e}",
      "\N{U+0916}\N{U+093e}\N{U+0935}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0948}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0948}/\N{U+092b}\N{U+0941}\N{U+0930}\N{U+093e}/\N{U+0906}\N{U+092c}\N{U+0941}\N{U+0902}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+0938}\N{U+093f}\N{U+0925}\N{U+093e}\N{U+0938}\N{U+0947}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+0938}\N{U+0947}/\N{U+092c}\N{U+093e}\N{U+0939}\N{U+093e}\N{U+0917}\N{U+094b}\N{U+0938}\N{U+0947}",
      "\N{U+0916}\N{U+093e}\N{U+0935}\N{U+0938}\N{U+0947}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+0928}\N{U+0948}/\N{U+092c}\N{U+093e}\N{U+0939}\N{U+093e}\N{U+0917}\N{U+094b}\N{U+0928}\N{U+0948}",
      "\N{U+0916}\N{U+093e}\N{U+0935}\N{U+0925}\N{U+093e}\N{U+092e}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+0925}\N{U+093e}\N{U+092e}/\N{U+092c}\N{U+093e}\N{U+0939}\N{U+093e}\N{U+0917}\N{U+094b}\N{U+0925}\N{U+093e}\N{U+092e}",
      "\N{U+0916}\N{U+093e}\N{U+0935}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0948}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0948}/\N{U+092b}\N{U+0941}\N{U+0930}\N{U+093e}/\N{U+0906}\N{U+092c}\N{U+0941}\N{U+0902}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ brx-IN ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM, y G",
      GyMMMEd => "E, MMM d, y G",
      GyMMMd => "MMM d, y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "d-MMM",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "brx-IN",
    date_format_full => "EEEE, MMMM d, y",
    date_format_long => "MMMM d, y",
    date_format_medium => "MMM d, y",
    date_format_short => "M/d/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0938}\N{U+092e}",
      "\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0932}",
      "\N{U+092c}\N{U+0941}\N{U+0926}",
      "\N{U+092c}\N{U+093f}\N{U+0938}\N{U+0925}\N{U+093f}",
      "\N{U+0938}\N{U+0941}\N{U+0916}\N{U+0941}\N{U+0930}",
      "\N{U+0938}\N{U+0941}\N{U+0928}\N{U+093f}",
      "\N{U+0930}\N{U+092c}\N{U+093f}"
    ],
    day_format_narrow => [
      "\N{U+0938}",
      "\N{U+092e}\N{U+0902}",
      "\N{U+092c}\N{U+0941}",
      "\N{U+092c}\N{U+093f}",
      "\N{U+0938}\N{U+0941}",
      "\N{U+0938}\N{U+0941}",
      "\N{U+0930}"
    ],
    day_format_wide => [
      "\N{U+0938}\N{U+092e}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0932}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+092c}\N{U+0941}\N{U+0926}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+092c}\N{U+093f}\N{U+0938}\N{U+0925}\N{U+093f}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+0938}\N{U+0941}\N{U+0916}\N{U+0941}\N{U+0930}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+0938}\N{U+0941}\N{U+0928}\N{U+093f}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+0930}\N{U+092c}\N{U+093f}\N{U+092c}\N{U+093e}\N{U+0930}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0938}\N{U+092e}",
      "\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0932}",
      "\N{U+092c}\N{U+0941}\N{U+0926}",
      "\N{U+092c}\N{U+093f}\N{U+0938}\N{U+0925}\N{U+093f}",
      "\N{U+0938}\N{U+0941}\N{U+0916}\N{U+0941}\N{U+0930}",
      "\N{U+0938}\N{U+0941}\N{U+0928}\N{U+093f}",
      "\N{U+0930}\N{U+092c}\N{U+093f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0938}",
      "\N{U+092e}\N{U+0902}",
      "\N{U+092c}\N{U+0941}",
      "\N{U+092c}\N{U+093f}",
      "\N{U+0938}\N{U+0941}",
      "\N{U+0938}\N{U+0941}",
      "\N{U+0930}"
    ],
    day_stand_alone_wide => [
      "\N{U+0938}\N{U+092e}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0932}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+092c}\N{U+0941}\N{U+0926}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+092c}\N{U+093f}\N{U+0938}\N{U+0925}\N{U+093f}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+0938}\N{U+0941}\N{U+0916}\N{U+0941}\N{U+0930}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+0938}\N{U+0941}\N{U+0928}\N{U+093f}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+0930}\N{U+092c}\N{U+093f}\N{U+092c}\N{U+093e}\N{U+0930}"
    ],
    era_abbreviated => [
      "\N{U+0908}\N{U+0938}\N{U+093e}.\N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}",
      "\N{U+0938}\N{U+0928}"
    ],
    era_narrow => [
      "\N{U+0908}\N{U+0938}\N{U+093e}.\N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}",
      "\N{U+0938}\N{U+0928}"
    ],
    era_wide => [
      "\N{U+0908}\N{U+0938}\N{U+093e}.\N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}",
      "\N{U+0938}\N{U+0928}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%A %d %b %Y",
    glibc_datetime_format => "%A %d %b %Y %I:%M:%S %p %Z",
    glibc_time_12_format => "%I:%M:%S %p %Z",
    glibc_time_format => "%I:%M:%S  %Z",
    language => "Bodo",
    month_format_abbreviated => [
      "\N{U+091c}\N{U+093e}\N{U+0928}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+0938}",
      "\N{U+090f}\N{U+092b}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0941}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+093e}\N{U+0907}",
      "\N{U+0906}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+0925}",
      "\N{U+0938}\N{U+0947}\N{U+092c}\N{U+0925}\N{U+0947}\N{U+091c}\N{U+094d}\N{U+092c}\N{U+093c}\N{U+0930}",
      "\N{U+0905}\N{U+0916}\N{U+0925}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+092c}\N{U+0947}\N{U+091c}\N{U+094d}\N{U+092c}\N{U+093c}\N{U+0930}",
      "\N{U+0926}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+091c}\N{U+094d}\N{U+092c}\N{U+093c}\N{U+0930}"
    ],
    month_format_narrow => [
      "\N{U+091c}",
      "\N{U+092b}\N{U+0947}",
      "\N{U+092e}\N{U+093e}",
      "\N{U+090f}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0941}",
      "\N{U+091c}\N{U+0941}",
      "\N{U+0906}",
      "\N{U+0938}\N{U+0947}",
      "\N{U+0905}",
      "\N{U+0928}",
      "\N{U+0926}\N{U+093f}"
    ],
    month_format_wide => [
      "\N{U+091c}\N{U+093e}\N{U+0928}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+0938}",
      "\N{U+090f}\N{U+092b}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0941}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+093e}\N{U+0907}",
      "\N{U+0906}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+0925}",
      "\N{U+0938}\N{U+0947}\N{U+092c}\N{U+0925}\N{U+0947}\N{U+091c}\N{U+094d}\N{U+092c}\N{U+093c}\N{U+0930}",
      "\N{U+0905}\N{U+0916}\N{U+0925}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+092c}\N{U+0947}\N{U+091c}\N{U+094d}\N{U+092c}\N{U+093c}\N{U+0930}",
      "\N{U+0926}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+091c}\N{U+094d}\N{U+092c}\N{U+093c}\N{U+0930}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+091c}\N{U+093e}\N{U+0928}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+0938}",
      "\N{U+090f}\N{U+092b}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0941}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+093e}\N{U+0907}",
      "\N{U+0906}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+0925}",
      "\N{U+0938}\N{U+0947}\N{U+092c}\N{U+0925}\N{U+0947}\N{U+091c}\N{U+094d}\N{U+092c}\N{U+093c}\N{U+0930}",
      "\N{U+0905}\N{U+0916}\N{U+0925}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+092c}\N{U+0947}\N{U+091c}\N{U+094d}\N{U+092c}\N{U+093c}\N{U+0930}",
      "\N{U+0926}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+091c}\N{U+094d}\N{U+092c}\N{U+093c}\N{U+0930}"
    ],
    month_stand_alone_narrow => [
      "\N{U+091c}",
      "\N{U+092b}\N{U+0947}",
      "\N{U+092e}\N{U+093e}",
      "\N{U+090f}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0941}",
      "\N{U+091c}\N{U+0941}",
      "\N{U+0906}",
      "\N{U+0938}\N{U+0947}",
      "\N{U+0905}",
      "\N{U+0928}",
      "\N{U+0926}\N{U+093f}"
    ],
    month_stand_alone_wide => [
      "\N{U+091c}\N{U+093e}\N{U+0928}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+0938}",
      "\N{U+090f}\N{U+092b}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0941}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+093e}\N{U+0907}",
      "\N{U+0906}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+0925}",
      "\N{U+0938}\N{U+0947}\N{U+092c}\N{U+0925}\N{U+0947}\N{U+091c}\N{U+094d}\N{U+092c}\N{U+093c}\N{U+0930}",
      "\N{U+0905}\N{U+0916}\N{U+0925}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+092c}\N{U+0947}\N{U+091c}\N{U+094d}\N{U+092c}\N{U+093c}\N{U+0930}",
      "\N{U+0926}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+091c}\N{U+094d}\N{U+092c}\N{U+093c}\N{U+0930}"
    ],
    name => "Bodo India",
    native_language => "\N{U+092c}\N{U+0921}\N{U+093c}\N{U+094b}",
    native_name => "\N{U+092c}\N{U+0921}\N{U+093c}\N{U+094b} \N{U+092d}\N{U+093e}\N{U+0930}\N{U+0924}",
    native_script => undef,
    native_territory => "\N{U+092d}\N{U+093e}\N{U+0930}\N{U+0924}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0938}\N{U+093f}\N{U+0925}\N{U+093e}\N{U+0938}\N{U+0947}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+0938}\N{U+0947}/\N{U+092c}\N{U+093e}\N{U+0939}\N{U+093e}\N{U+0917}\N{U+094b}\N{U+0938}\N{U+0947}",
      "\N{U+0916}\N{U+093e}\N{U+0935}\N{U+0938}\N{U+0947}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+0928}\N{U+0948}/\N{U+092c}\N{U+093e}\N{U+0939}\N{U+093e}\N{U+0917}\N{U+094b}\N{U+0928}\N{U+0948}",
      "\N{U+0916}\N{U+093e}\N{U+0935}\N{U+0925}\N{U+093e}\N{U+092e}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+0925}\N{U+093e}\N{U+092e}/\N{U+092c}\N{U+093e}\N{U+0939}\N{U+093e}\N{U+0917}\N{U+094b}\N{U+0925}\N{U+093e}\N{U+092e}",
      "\N{U+0916}\N{U+093e}\N{U+0935}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0948}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0948}/\N{U+092b}\N{U+0941}\N{U+0930}\N{U+093e}/\N{U+0906}\N{U+092c}\N{U+0941}\N{U+0902}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+0938}\N{U+093f}\N{U+0925}\N{U+093e}\N{U+0938}\N{U+0947}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+0938}\N{U+0947}/\N{U+092c}\N{U+093e}\N{U+0939}\N{U+093e}\N{U+0917}\N{U+094b}\N{U+0938}\N{U+0947}",
      "\N{U+0916}\N{U+093e}\N{U+0935}\N{U+0938}\N{U+0947}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+0928}\N{U+0948}/\N{U+092c}\N{U+093e}\N{U+0939}\N{U+093e}\N{U+0917}\N{U+094b}\N{U+0928}\N{U+0948}",
      "\N{U+0916}\N{U+093e}\N{U+0935}\N{U+0925}\N{U+093e}\N{U+092e}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+0925}\N{U+093e}\N{U+092e}/\N{U+092c}\N{U+093e}\N{U+0939}\N{U+093e}\N{U+0917}\N{U+094b}\N{U+0925}\N{U+093e}\N{U+092e}",
      "\N{U+0916}\N{U+093e}\N{U+0935}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0948}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0948}/\N{U+092b}\N{U+0941}\N{U+0930}\N{U+093e}/\N{U+0906}\N{U+092c}\N{U+0941}\N{U+0902}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0938}\N{U+093f}\N{U+0925}\N{U+093e}\N{U+0938}\N{U+0947}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+0938}\N{U+0947}/\N{U+092c}\N{U+093e}\N{U+0939}\N{U+093e}\N{U+0917}\N{U+094b}\N{U+0938}\N{U+0947}",
      "\N{U+0916}\N{U+093e}\N{U+0935}\N{U+0938}\N{U+0947}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+0928}\N{U+0948}/\N{U+092c}\N{U+093e}\N{U+0939}\N{U+093e}\N{U+0917}\N{U+094b}\N{U+0928}\N{U+0948}",
      "\N{U+0916}\N{U+093e}\N{U+0935}\N{U+0925}\N{U+093e}\N{U+092e}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+0925}\N{U+093e}\N{U+092e}/\N{U+092c}\N{U+093e}\N{U+0939}\N{U+093e}\N{U+0917}\N{U+094b}\N{U+0925}\N{U+093e}\N{U+092e}",
      "\N{U+0916}\N{U+093e}\N{U+0935}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0948}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0948}/\N{U+092b}\N{U+0941}\N{U+0930}\N{U+093e}/\N{U+0906}\N{U+092c}\N{U+0941}\N{U+0902}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+0938}\N{U+093f}\N{U+0925}\N{U+093e}\N{U+0938}\N{U+0947}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+0938}\N{U+0947}/\N{U+092c}\N{U+093e}\N{U+0939}\N{U+093e}\N{U+0917}\N{U+094b}\N{U+0938}\N{U+0947}",
      "\N{U+0916}\N{U+093e}\N{U+0935}\N{U+0938}\N{U+0947}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+0928}\N{U+0948}/\N{U+092c}\N{U+093e}\N{U+0939}\N{U+093e}\N{U+0917}\N{U+094b}\N{U+0928}\N{U+0948}",
      "\N{U+0916}\N{U+093e}\N{U+0935}\N{U+0925}\N{U+093e}\N{U+092e}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+0925}\N{U+093e}\N{U+092e}/\N{U+092c}\N{U+093e}\N{U+0939}\N{U+093e}\N{U+0917}\N{U+094b}\N{U+0925}\N{U+093e}\N{U+092e}",
      "\N{U+0916}\N{U+093e}\N{U+0935}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0948}/\N{U+0916}\N{U+094b}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+094b}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0948}/\N{U+092b}\N{U+0941}\N{U+0930}\N{U+093e}/\N{U+0906}\N{U+092c}\N{U+0941}\N{U+0902}"
    ],
    script => undef,
    territory => "India",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ bs ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E, dd.",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y. G",
      GyMMM => "MMM y. G",
      GyMMMEd => "E, dd. MMM y. G",
      GyMMMd => "dd. MMM y. G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd.MM.",
      MMM => "LLL",
      MMMEd => "E, dd. MMM",
      MMMMEd => "E, d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "dd. MMM",
      MMdd => "dd. MM.",
      Md => "dd.MM.",
      d => "d",
      h => "h a",
      hm => "hh:mm a",
      hms => "hh:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y.",
      yM => "MM.y.",
      yMEd => "E, dd.MM.y.",
      yMM => "MM. y.",
      yMMM => "MMM y.",
      yMMMEd => "E, dd. MMM y.",
      yMMMM => "LLLL y.",
      yMMMd => "dd. MMM y.",
      yMd => "dd.MM.y.",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "bs",
    date_format_full => "EEEE, dd. MMMM y.",
    date_format_long => "dd. MMMM y.",
    date_format_medium => "dd. MMM. y.",
    date_format_short => "dd.MM.yy.",
    datetime_format_full => "{1} 'u' {0}",
    datetime_format_long => "{1} 'u' {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "pon",
      "uto",
      "sri",
      "\N{U+010d}et",
      "pet",
      "sub",
      "ned"
    ],
    day_format_narrow => [
      "P",
      "U",
      "S",
      "\N{U+010c}",
      "P",
      "S",
      "N"
    ],
    day_format_wide => [
      "ponedjeljak",
      "utorak",
      "srijeda",
      "\N{U+010d}etvrtak",
      "petak",
      "subota",
      "nedjelja"
    ],
    day_stand_alone_abbreviated => [
      "pon",
      "uto",
      "sri",
      "\N{U+010d}et",
      "pet",
      "sub",
      "ned"
    ],
    day_stand_alone_narrow => [
      "p",
      "u",
      "s",
      "\N{U+010d}",
      "p",
      "s",
      "n"
    ],
    day_stand_alone_wide => [
      "ponedjeljak",
      "utorak",
      "srijeda",
      "\N{U+010d}etvrtak",
      "petak",
      "subota",
      "nedjelja"
    ],
    era_abbreviated => [
      "p. n. e.",
      "n. e."
    ],
    era_narrow => [
      "p. n. e.",
      "n. e."
    ],
    era_wide => [
      "Prije nove ere",
      "Nove ere"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Bosnian",
    month_format_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "maj",
      "jun",
      "jul",
      "aug",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_format_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "januar",
      "februar",
      "mart",
      "april",
      "maj",
      "juni",
      "juli",
      "august",
      "septembar",
      "oktobar",
      "novembar",
      "decembar"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "maj",
      "jun",
      "jul",
      "aug",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_stand_alone_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_stand_alone_wide => [
      "januar",
      "februar",
      "mart",
      "april",
      "maj",
      "juni",
      "juli",
      "august",
      "septembar",
      "oktobar",
      "novembar",
      "decembar"
    ],
    name => "Bosnian",
    native_language => "bosanski",
    native_name => "bosanski",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_format_wide => [
      "Prvi kvartal",
      "Drugi kvartal",
      "Tre\N{U+0107}i kvartal",
      "\N{U+010c}etvrti kvartal"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "Prvi kvartal",
      "Drugi kvartal",
      "Tre\N{U+0107}i kvartal",
      "\N{U+010c}etvrti kvartal"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ bs-Cyrl ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E, d.",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y. G",
      GyMMM => "MMM y. G",
      GyMMMEd => "E, dd. MMM y. G",
      GyMMMd => "dd. MMM y. G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd.MM.",
      MMM => "LLL",
      MMMEd => "E, dd. MMM",
      MMMMd => "MMMM d",
      MMMd => "dd. MMM",
      Md => "dd.MM.",
      d => "d",
      h => "hh a",
      hm => "hh:mm a",
      hms => "hh:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y.",
      yM => "MM.y.",
      yMEd => "E, dd.MM.y.",
      yMMM => "MMM y.",
      yMMMEd => "E, dd. MMM y.",
      yMMMM => "y MMMM",
      yMMMd => "dd. MMM y.",
      yMd => "dd.MM.y.",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "bs-Cyrl",
    date_format_full => "EEEE, dd. MMMM y.",
    date_format_long => "dd. MMMM y.",
    date_format_medium => "dd.MM.y.",
    date_format_short => "d.M.yy.",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+043f}\N{U+043e}\N{U+043d}",
      "\N{U+0443}\N{U+0442}\N{U+043e}",
      "\N{U+0441}\N{U+0440}\N{U+0438}",
      "\N{U+0447}\N{U+0435}\N{U+0442}",
      "\N{U+043f}\N{U+0435}\N{U+0442}",
      "\N{U+0441}\N{U+0443}\N{U+0431}",
      "\N{U+043d}\N{U+0435}\N{U+0434}"
    ],
    day_format_narrow => [
      "\N{U+043f}",
      "\N{U+0443}",
      "\N{U+0441}",
      "\N{U+0447}",
      "\N{U+043f}",
      "\N{U+0441}",
      "\N{U+043d}"
    ],
    day_format_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}\N{U+043a}",
      "\N{U+0443}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0438}\N{U+0458}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+043f}\N{U+0435}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+043f}\N{U+043e}\N{U+043d}",
      "\N{U+0443}\N{U+0442}\N{U+043e}",
      "\N{U+0441}\N{U+0440}\N{U+0438}",
      "\N{U+0447}\N{U+0435}\N{U+0442}",
      "\N{U+043f}\N{U+0435}\N{U+0442}",
      "\N{U+0441}\N{U+0443}\N{U+0431}",
      "\N{U+043d}\N{U+0435}\N{U+0434}"
    ],
    day_stand_alone_narrow => [
      "\N{U+043f}",
      "\N{U+0443}",
      "\N{U+0441}",
      "\N{U+0447}",
      "\N{U+043f}",
      "\N{U+0441}",
      "\N{U+043d}"
    ],
    day_stand_alone_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}\N{U+043a}",
      "\N{U+0443}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0438}\N{U+0458}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+043f}\N{U+0435}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}"
    ],
    era_abbreviated => [
      "\N{U+043f}. \N{U+043d}. \N{U+0435}.",
      "\N{U+043d}. \N{U+0435}."
    ],
    era_narrow => [
      "\N{U+043f}.\N{U+043d}.\N{U+0435}.",
      "\N{U+043d}.\N{U+0435}."
    ],
    era_wide => [
      "\N{U+041f}\N{U+0440}\N{U+0435} \N{U+043d}\N{U+043e}\N{U+0432}\N{U+0435} \N{U+0435}\N{U+0440}\N{U+0435}",
      "\N{U+041d}\N{U+043e}\N{U+0432}\N{U+0435} \N{U+0435}\N{U+0440}\N{U+0435}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Bosnian",
    month_format_abbreviated => [
      "\N{U+0458}\N{U+0430}\N{U+043d}",
      "\N{U+0444}\N{U+0435}\N{U+0431}",
      "\N{U+043c}\N{U+0430}\N{U+0440}",
      "\N{U+0430}\N{U+043f}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}",
      "\N{U+0441}\N{U+0435}\N{U+043f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}",
      "\N{U+043d}\N{U+043e}\N{U+0432}",
      "\N{U+0434}\N{U+0435}\N{U+0446}"
    ],
    month_format_narrow => [
      "\N{U+0458}",
      "\N{U+0444}",
      "\N{U+043c}",
      "\N{U+0430}",
      "\N{U+043c}",
      "\N{U+0458}",
      "\N{U+0458}",
      "\N{U+0430}",
      "\N{U+0441}",
      "\N{U+043e}",
      "\N{U+043d}",
      "\N{U+0434}"
    ],
    month_format_wide => [
      "\N{U+0458}\N{U+0430}\N{U+043d}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+0444}\N{U+0435}\N{U+0431}\N{U+0440}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0438}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}\N{U+0438}",
      "\N{U+0458}\N{U+0443}\N{U+043b}\N{U+0438}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043f}\N{U+0442}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+043e}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043d}\N{U+043e}\N{U+0432}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+0434}\N{U+0435}\N{U+0446}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0458}\N{U+0430}\N{U+043d}",
      "\N{U+0444}\N{U+0435}\N{U+0431}",
      "\N{U+043c}\N{U+0430}\N{U+0440}",
      "\N{U+0430}\N{U+043f}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}",
      "\N{U+0441}\N{U+0435}\N{U+043f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}",
      "\N{U+043d}\N{U+043e}\N{U+0432}",
      "\N{U+0434}\N{U+0435}\N{U+0446}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0458}",
      "\N{U+0444}",
      "\N{U+043c}",
      "\N{U+0430}",
      "\N{U+043c}",
      "\N{U+0458}",
      "\N{U+0458}",
      "\N{U+0430}",
      "\N{U+0441}",
      "\N{U+043e}",
      "\N{U+043d}",
      "\N{U+0434}"
    ],
    month_stand_alone_wide => [
      "\N{U+0458}\N{U+0430}\N{U+043d}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+0444}\N{U+0435}\N{U+0431}\N{U+0440}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0438}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}\N{U+0438}",
      "\N{U+0458}\N{U+0443}\N{U+043b}\N{U+0438}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043f}\N{U+0442}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+043e}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043d}\N{U+043e}\N{U+0432}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+0434}\N{U+0435}\N{U+0446}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}"
    ],
    name => "Bosnian Cyrillic",
    native_language => "\N{U+0431}\N{U+043e}\N{U+0441}\N{U+0430}\N{U+043d}\N{U+0441}\N{U+043a}\N{U+0438}",
    native_name => "\N{U+0431}\N{U+043e}\N{U+0441}\N{U+0430}\N{U+043d}\N{U+0441}\N{U+043a}\N{U+0438} \N{U+040b}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}\N{U+0438}\N{U+0446}\N{U+0430}",
    native_script => "\N{U+040b}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}\N{U+0438}\N{U+0446}\N{U+0430}",
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+041a}1",
      "\N{U+041a}2",
      "\N{U+041a}3",
      "\N{U+041a}4"
    ],
    quarter_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_format_wide => [
      "\N{U+041f}\N{U+0440}\N{U+0432}\N{U+043e} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}",
      "\N{U+0414}\N{U+0440}\N{U+0443}\N{U+0433}\N{U+043e} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}",
      "\N{U+0422}\N{U+0440}\N{U+0435}\N{U+045b}\N{U+0435} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}",
      "\N{U+0427}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+043e} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+041a}1",
      "\N{U+041a}2",
      "\N{U+041a}3",
      "\N{U+041a}4"
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "\N{U+041f}\N{U+0440}\N{U+0432}\N{U+043e} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}",
      "\N{U+0414}\N{U+0440}\N{U+0443}\N{U+0433}\N{U+043e} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}",
      "\N{U+0422}\N{U+0440}\N{U+0435}\N{U+045b}\N{U+0435} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}",
      "\N{U+0427}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+043e} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}"
    ],
    script => "Cyrillic",
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ bs-Cyrl-BA ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E, d.",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y. G",
      GyMMM => "MMM y. G",
      GyMMMEd => "E, dd. MMM y. G",
      GyMMMd => "dd. MMM y. G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd.MM.",
      MMM => "LLL",
      MMMEd => "E, dd. MMM",
      MMMMd => "MMMM d",
      MMMd => "dd. MMM",
      Md => "dd.MM.",
      d => "d",
      h => "hh a",
      hm => "hh:mm a",
      hms => "hh:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y.",
      yM => "MM.y.",
      yMEd => "E, dd.MM.y.",
      yMMM => "MMM y.",
      yMMMEd => "E, dd. MMM y.",
      yMMMM => "y MMMM",
      yMMMd => "dd. MMM y.",
      yMd => "dd.MM.y.",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "bs-Cyrl-BA",
    date_format_full => "EEEE, dd. MMMM y.",
    date_format_long => "dd. MMMM y.",
    date_format_medium => "dd.MM.y.",
    date_format_short => "d.M.yy.",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+043f}\N{U+043e}\N{U+043d}",
      "\N{U+0443}\N{U+0442}\N{U+043e}",
      "\N{U+0441}\N{U+0440}\N{U+0438}",
      "\N{U+0447}\N{U+0435}\N{U+0442}",
      "\N{U+043f}\N{U+0435}\N{U+0442}",
      "\N{U+0441}\N{U+0443}\N{U+0431}",
      "\N{U+043d}\N{U+0435}\N{U+0434}"
    ],
    day_format_narrow => [
      "\N{U+043f}",
      "\N{U+0443}",
      "\N{U+0441}",
      "\N{U+0447}",
      "\N{U+043f}",
      "\N{U+0441}",
      "\N{U+043d}"
    ],
    day_format_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}\N{U+043a}",
      "\N{U+0443}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0438}\N{U+0458}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+043f}\N{U+0435}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+043f}\N{U+043e}\N{U+043d}",
      "\N{U+0443}\N{U+0442}\N{U+043e}",
      "\N{U+0441}\N{U+0440}\N{U+0438}",
      "\N{U+0447}\N{U+0435}\N{U+0442}",
      "\N{U+043f}\N{U+0435}\N{U+0442}",
      "\N{U+0441}\N{U+0443}\N{U+0431}",
      "\N{U+043d}\N{U+0435}\N{U+0434}"
    ],
    day_stand_alone_narrow => [
      "\N{U+043f}",
      "\N{U+0443}",
      "\N{U+0441}",
      "\N{U+0447}",
      "\N{U+043f}",
      "\N{U+0441}",
      "\N{U+043d}"
    ],
    day_stand_alone_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}\N{U+043a}",
      "\N{U+0443}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0438}\N{U+0458}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+043f}\N{U+0435}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}"
    ],
    era_abbreviated => [
      "\N{U+043f}. \N{U+043d}. \N{U+0435}.",
      "\N{U+043d}. \N{U+0435}."
    ],
    era_narrow => [
      "\N{U+043f}.\N{U+043d}.\N{U+0435}.",
      "\N{U+043d}.\N{U+0435}."
    ],
    era_wide => [
      "\N{U+041f}\N{U+0440}\N{U+0435} \N{U+043d}\N{U+043e}\N{U+0432}\N{U+0435} \N{U+0435}\N{U+0440}\N{U+0435}",
      "\N{U+041d}\N{U+043e}\N{U+0432}\N{U+0435} \N{U+0435}\N{U+0440}\N{U+0435}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Bosnian",
    month_format_abbreviated => [
      "\N{U+0458}\N{U+0430}\N{U+043d}",
      "\N{U+0444}\N{U+0435}\N{U+0431}",
      "\N{U+043c}\N{U+0430}\N{U+0440}",
      "\N{U+0430}\N{U+043f}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}",
      "\N{U+0441}\N{U+0435}\N{U+043f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}",
      "\N{U+043d}\N{U+043e}\N{U+0432}",
      "\N{U+0434}\N{U+0435}\N{U+0446}"
    ],
    month_format_narrow => [
      "\N{U+0458}",
      "\N{U+0444}",
      "\N{U+043c}",
      "\N{U+0430}",
      "\N{U+043c}",
      "\N{U+0458}",
      "\N{U+0458}",
      "\N{U+0430}",
      "\N{U+0441}",
      "\N{U+043e}",
      "\N{U+043d}",
      "\N{U+0434}"
    ],
    month_format_wide => [
      "\N{U+0458}\N{U+0430}\N{U+043d}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+0444}\N{U+0435}\N{U+0431}\N{U+0440}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0438}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}\N{U+0438}",
      "\N{U+0458}\N{U+0443}\N{U+043b}\N{U+0438}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043f}\N{U+0442}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+043e}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043d}\N{U+043e}\N{U+0432}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+0434}\N{U+0435}\N{U+0446}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0458}\N{U+0430}\N{U+043d}",
      "\N{U+0444}\N{U+0435}\N{U+0431}",
      "\N{U+043c}\N{U+0430}\N{U+0440}",
      "\N{U+0430}\N{U+043f}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}",
      "\N{U+0441}\N{U+0435}\N{U+043f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}",
      "\N{U+043d}\N{U+043e}\N{U+0432}",
      "\N{U+0434}\N{U+0435}\N{U+0446}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0458}",
      "\N{U+0444}",
      "\N{U+043c}",
      "\N{U+0430}",
      "\N{U+043c}",
      "\N{U+0458}",
      "\N{U+0458}",
      "\N{U+0430}",
      "\N{U+0441}",
      "\N{U+043e}",
      "\N{U+043d}",
      "\N{U+0434}"
    ],
    month_stand_alone_wide => [
      "\N{U+0458}\N{U+0430}\N{U+043d}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+0444}\N{U+0435}\N{U+0431}\N{U+0440}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0438}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}\N{U+0438}",
      "\N{U+0458}\N{U+0443}\N{U+043b}\N{U+0438}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043f}\N{U+0442}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+043e}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043d}\N{U+043e}\N{U+0432}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+0434}\N{U+0435}\N{U+0446}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}"
    ],
    name => "Bosnian Bosnia & Herzegovina Cyrillic",
    native_language => "\N{U+0431}\N{U+043e}\N{U+0441}\N{U+0430}\N{U+043d}\N{U+0441}\N{U+043a}\N{U+0438}",
    native_name => "\N{U+0431}\N{U+043e}\N{U+0441}\N{U+0430}\N{U+043d}\N{U+0441}\N{U+043a}\N{U+0438} \N{U+0411}\N{U+043e}\N{U+0441}\N{U+043d}\N{U+0430} \N{U+0438} \N{U+0425}\N{U+0435}\N{U+0440}\N{U+0446}\N{U+0435}\N{U+0433}\N{U+043e}\N{U+0432}\N{U+0438}\N{U+043d}\N{U+0430} \N{U+040b}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}\N{U+0438}\N{U+0446}\N{U+0430}",
    native_script => "\N{U+040b}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}\N{U+0438}\N{U+0446}\N{U+0430}",
    native_territory => "\N{U+0411}\N{U+043e}\N{U+0441}\N{U+043d}\N{U+0430} \N{U+0438} \N{U+0425}\N{U+0435}\N{U+0440}\N{U+0446}\N{U+0435}\N{U+0433}\N{U+043e}\N{U+0432}\N{U+0438}\N{U+043d}\N{U+0430}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+041a}1",
      "\N{U+041a}2",
      "\N{U+041a}3",
      "\N{U+041a}4"
    ],
    quarter_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_format_wide => [
      "\N{U+041f}\N{U+0440}\N{U+0432}\N{U+043e} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}",
      "\N{U+0414}\N{U+0440}\N{U+0443}\N{U+0433}\N{U+043e} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}",
      "\N{U+0422}\N{U+0440}\N{U+0435}\N{U+045b}\N{U+0435} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}",
      "\N{U+0427}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+043e} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+041a}1",
      "\N{U+041a}2",
      "\N{U+041a}3",
      "\N{U+041a}4"
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "\N{U+041f}\N{U+0440}\N{U+0432}\N{U+043e} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}",
      "\N{U+0414}\N{U+0440}\N{U+0443}\N{U+0433}\N{U+043e} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}",
      "\N{U+0422}\N{U+0440}\N{U+0435}\N{U+045b}\N{U+0435} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}",
      "\N{U+0427}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+043e} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}"
    ],
    script => "Cyrillic",
    territory => "Bosnia & Herzegovina",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ bs-Latn ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E, dd.",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y. G",
      GyMMM => "MMM y. G",
      GyMMMEd => "E, dd. MMM y. G",
      GyMMMd => "dd. MMM y. G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd.MM.",
      MMM => "LLL",
      MMMEd => "E, dd. MMM",
      MMMMEd => "E, d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "dd. MMM",
      MMdd => "dd. MM.",
      Md => "dd.MM.",
      d => "d",
      h => "h a",
      hm => "hh:mm a",
      hms => "hh:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y.",
      yM => "MM.y.",
      yMEd => "E, dd.MM.y.",
      yMM => "MM. y.",
      yMMM => "MMM y.",
      yMMMEd => "E, dd. MMM y.",
      yMMMM => "LLLL y.",
      yMMMd => "dd. MMM y.",
      yMd => "dd.MM.y.",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "bs-Latn",
    date_format_full => "EEEE, dd. MMMM y.",
    date_format_long => "dd. MMMM y.",
    date_format_medium => "dd. MMM. y.",
    date_format_short => "dd.MM.yy.",
    datetime_format_full => "{1} 'u' {0}",
    datetime_format_long => "{1} 'u' {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "pon",
      "uto",
      "sri",
      "\N{U+010d}et",
      "pet",
      "sub",
      "ned"
    ],
    day_format_narrow => [
      "P",
      "U",
      "S",
      "\N{U+010c}",
      "P",
      "S",
      "N"
    ],
    day_format_wide => [
      "ponedjeljak",
      "utorak",
      "srijeda",
      "\N{U+010d}etvrtak",
      "petak",
      "subota",
      "nedjelja"
    ],
    day_stand_alone_abbreviated => [
      "pon",
      "uto",
      "sri",
      "\N{U+010d}et",
      "pet",
      "sub",
      "ned"
    ],
    day_stand_alone_narrow => [
      "p",
      "u",
      "s",
      "\N{U+010d}",
      "p",
      "s",
      "n"
    ],
    day_stand_alone_wide => [
      "ponedjeljak",
      "utorak",
      "srijeda",
      "\N{U+010d}etvrtak",
      "petak",
      "subota",
      "nedjelja"
    ],
    era_abbreviated => [
      "p. n. e.",
      "n. e."
    ],
    era_narrow => [
      "p. n. e.",
      "n. e."
    ],
    era_wide => [
      "Prije nove ere",
      "Nove ere"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Bosnian",
    month_format_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "maj",
      "jun",
      "jul",
      "aug",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_format_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "januar",
      "februar",
      "mart",
      "april",
      "maj",
      "juni",
      "juli",
      "august",
      "septembar",
      "oktobar",
      "novembar",
      "decembar"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "maj",
      "jun",
      "jul",
      "aug",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_stand_alone_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_stand_alone_wide => [
      "januar",
      "februar",
      "mart",
      "april",
      "maj",
      "juni",
      "juli",
      "august",
      "septembar",
      "oktobar",
      "novembar",
      "decembar"
    ],
    name => "Bosnian Latin",
    native_language => "bosanski",
    native_name => "bosanski latinica",
    native_script => "latinica",
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_format_wide => [
      "Prvi kvartal",
      "Drugi kvartal",
      "Tre\N{U+0107}i kvartal",
      "\N{U+010c}etvrti kvartal"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "Prvi kvartal",
      "Drugi kvartal",
      "Tre\N{U+0107}i kvartal",
      "\N{U+010c}etvrti kvartal"
    ],
    script => "Latin",
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ bs-Latn-BA ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E, dd.",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y. G",
      GyMMM => "MMM y. G",
      GyMMMEd => "E, dd. MMM y. G",
      GyMMMd => "dd. MMM y. G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd.MM.",
      MMM => "LLL",
      MMMEd => "E, dd. MMM",
      MMMMEd => "E, d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "dd. MMM",
      MMdd => "dd. MM.",
      Md => "dd.MM.",
      d => "d",
      h => "h a",
      hm => "hh:mm a",
      hms => "hh:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y.",
      yM => "MM.y.",
      yMEd => "E, dd.MM.y.",
      yMM => "MM. y.",
      yMMM => "MMM y.",
      yMMMEd => "E, dd. MMM y.",
      yMMMM => "LLLL y.",
      yMMMd => "dd. MMM y.",
      yMd => "dd.MM.y.",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "bs-Latn-BA",
    date_format_full => "EEEE, dd. MMMM y.",
    date_format_long => "dd. MMMM y.",
    date_format_medium => "dd. MMM. y.",
    date_format_short => "dd.MM.yy.",
    datetime_format_full => "{1} 'u' {0}",
    datetime_format_long => "{1} 'u' {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "pon",
      "uto",
      "sri",
      "\N{U+010d}et",
      "pet",
      "sub",
      "ned"
    ],
    day_format_narrow => [
      "P",
      "U",
      "S",
      "\N{U+010c}",
      "P",
      "S",
      "N"
    ],
    day_format_wide => [
      "ponedjeljak",
      "utorak",
      "srijeda",
      "\N{U+010d}etvrtak",
      "petak",
      "subota",
      "nedjelja"
    ],
    day_stand_alone_abbreviated => [
      "pon",
      "uto",
      "sri",
      "\N{U+010d}et",
      "pet",
      "sub",
      "ned"
    ],
    day_stand_alone_narrow => [
      "p",
      "u",
      "s",
      "\N{U+010d}",
      "p",
      "s",
      "n"
    ],
    day_stand_alone_wide => [
      "ponedjeljak",
      "utorak",
      "srijeda",
      "\N{U+010d}etvrtak",
      "petak",
      "subota",
      "nedjelja"
    ],
    era_abbreviated => [
      "p. n. e.",
      "n. e."
    ],
    era_narrow => [
      "p. n. e.",
      "n. e."
    ],
    era_wide => [
      "Prije nove ere",
      "Nove ere"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Bosnian",
    month_format_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "maj",
      "jun",
      "jul",
      "aug",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_format_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "januar",
      "februar",
      "mart",
      "april",
      "maj",
      "juni",
      "juli",
      "august",
      "septembar",
      "oktobar",
      "novembar",
      "decembar"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "maj",
      "jun",
      "jul",
      "aug",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_stand_alone_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_stand_alone_wide => [
      "januar",
      "februar",
      "mart",
      "april",
      "maj",
      "juni",
      "juli",
      "august",
      "septembar",
      "oktobar",
      "novembar",
      "decembar"
    ],
    name => "Bosnian Bosnia & Herzegovina Latin",
    native_language => "bosanski",
    native_name => "bosanski Bosna i Hercegovina latinica",
    native_script => "latinica",
    native_territory => "Bosna i Hercegovina",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_format_wide => [
      "Prvi kvartal",
      "Drugi kvartal",
      "Tre\N{U+0107}i kvartal",
      "\N{U+010c}etvrti kvartal"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "Prvi kvartal",
      "Drugi kvartal",
      "Tre\N{U+0107}i kvartal",
      "\N{U+010c}etvrti kvartal"
    ],
    script => "Latin",
    territory => "Bosnia & Herzegovina",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ca ]__
  {
    am_pm_abbreviated => [
      "a. m.",
      "p. m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E H:mm",
      EHms => "E H:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "LLL y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "LLLL 'de' y G",
      GyMMMMEd => "E, d MMMM 'de' y G",
      GyMMMMd => "d MMMM 'de' y G",
      GyMMMd => "d MMM y G",
      H => "H",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMMM => "LLL 'de' y",
      yMMMEd => "E, d MMM y",
      yMMMM => "LLLL 'de' y",
      yMMMMEd => "E, d MMMM 'de' y",
      yMMMMd => "d MMMM 'de' y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ca",
    date_format_full => "EEEE, d MMMM 'de' y",
    date_format_long => "d MMMM 'de' y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} 'a' 'les' {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "dl.",
      "dt.",
      "dc.",
      "dj.",
      "dv.",
      "ds.",
      "dg."
    ],
    day_format_narrow => [
      "dl",
      "dt",
      "dc",
      "dj",
      "dv",
      "ds",
      "dg"
    ],
    day_format_wide => [
      "dilluns",
      "dimarts",
      "dimecres",
      "dijous",
      "divendres",
      "dissabte",
      "diumenge"
    ],
    day_stand_alone_abbreviated => [
      "dl.",
      "dt.",
      "dc.",
      "dj.",
      "dv.",
      "ds.",
      "dg."
    ],
    day_stand_alone_narrow => [
      "dl",
      "dt",
      "dc",
      "dj",
      "dv",
      "ds",
      "dg"
    ],
    day_stand_alone_wide => [
      "dilluns",
      "dimarts",
      "dimecres",
      "dijous",
      "divendres",
      "dissabte",
      "diumenge"
    ],
    era_abbreviated => [
      "aC",
      "dC"
    ],
    era_narrow => [
      "aC",
      "dC"
    ],
    era_wide => [
      "abans de Crist",
      "despr\N{U+00e9}s de Crist"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Catalan",
    month_format_abbreviated => [
      "gen.",
      "febr.",
      "mar\N{U+00e7}",
      "abr.",
      "maig",
      "juny",
      "jul.",
      "ag.",
      "set.",
      "oct.",
      "nov.",
      "des."
    ],
    month_format_narrow => [
      "GN",
      "FB",
      "M\N{U+00c7}",
      "AB",
      "MG",
      "JN",
      "JL",
      "AG",
      "ST",
      "OC",
      "NV",
      "DS"
    ],
    month_format_wide => [
      "de gener",
      "de febrer",
      "de mar\N{U+00e7}",
      "d\N{U+2019}abril",
      "de maig",
      "de juny",
      "de juliol",
      "d\N{U+2019}agost",
      "de setembre",
      "d\N{U+2019}octubre",
      "de novembre",
      "de desembre"
    ],
    month_stand_alone_abbreviated => [
      "gen.",
      "febr.",
      "mar\N{U+00e7}",
      "abr.",
      "maig",
      "juny",
      "jul.",
      "ag.",
      "set.",
      "oct.",
      "nov.",
      "des."
    ],
    month_stand_alone_narrow => [
      "GN",
      "FB",
      "M\N{U+00c7}",
      "AB",
      "MG",
      "JN",
      "JL",
      "AG",
      "ST",
      "OC",
      "NV",
      "DS"
    ],
    month_stand_alone_wide => [
      "gener",
      "febrer",
      "mar\N{U+00e7}",
      "abril",
      "maig",
      "juny",
      "juliol",
      "agost",
      "setembre",
      "octubre",
      "novembre",
      "desembre"
    ],
    name => "Catalan",
    native_language => "catal\N{U+00e0}",
    native_name => "catal\N{U+00e0}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "1T",
      "2T",
      "3T",
      "4T"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1r trimestre",
      "2n trimestre",
      "3r trimestre",
      "4t trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "1T",
      "2T",
      "3T",
      "4T"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1r trimestre",
      "2n trimestre",
      "3r trimestre",
      "4t trimestre"
    ],
    script => undef,
    territory => undef,
    time_format_full => "H:mm:ss zzzz",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ ca-AD ]__
  {
    am_pm_abbreviated => [
      "a. m.",
      "p. m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E H:mm",
      EHms => "E H:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "LLL y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "LLLL 'de' y G",
      GyMMMMEd => "E, d MMMM 'de' y G",
      GyMMMMd => "d MMMM 'de' y G",
      GyMMMd => "d MMM y G",
      H => "H",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMMM => "LLL 'de' y",
      yMMMEd => "E, d MMM y",
      yMMMM => "LLLL 'de' y",
      yMMMMEd => "E, d MMMM 'de' y",
      yMMMMd => "d MMMM 'de' y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ca-AD",
    date_format_full => "EEEE, d MMMM 'de' y",
    date_format_long => "d MMMM 'de' y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} 'a' 'les' {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "dl.",
      "dt.",
      "dc.",
      "dj.",
      "dv.",
      "ds.",
      "dg."
    ],
    day_format_narrow => [
      "dl",
      "dt",
      "dc",
      "dj",
      "dv",
      "ds",
      "dg"
    ],
    day_format_wide => [
      "dilluns",
      "dimarts",
      "dimecres",
      "dijous",
      "divendres",
      "dissabte",
      "diumenge"
    ],
    day_stand_alone_abbreviated => [
      "dl.",
      "dt.",
      "dc.",
      "dj.",
      "dv.",
      "ds.",
      "dg."
    ],
    day_stand_alone_narrow => [
      "dl",
      "dt",
      "dc",
      "dj",
      "dv",
      "ds",
      "dg"
    ],
    day_stand_alone_wide => [
      "dilluns",
      "dimarts",
      "dimecres",
      "dijous",
      "divendres",
      "dissabte",
      "diumenge"
    ],
    era_abbreviated => [
      "aC",
      "dC"
    ],
    era_narrow => [
      "aC",
      "dC"
    ],
    era_wide => [
      "abans de Crist",
      "despr\N{U+00e9}s de Crist"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Catalan",
    month_format_abbreviated => [
      "gen.",
      "febr.",
      "mar\N{U+00e7}",
      "abr.",
      "maig",
      "juny",
      "jul.",
      "ag.",
      "set.",
      "oct.",
      "nov.",
      "des."
    ],
    month_format_narrow => [
      "GN",
      "FB",
      "M\N{U+00c7}",
      "AB",
      "MG",
      "JN",
      "JL",
      "AG",
      "ST",
      "OC",
      "NV",
      "DS"
    ],
    month_format_wide => [
      "de gener",
      "de febrer",
      "de mar\N{U+00e7}",
      "d\N{U+2019}abril",
      "de maig",
      "de juny",
      "de juliol",
      "d\N{U+2019}agost",
      "de setembre",
      "d\N{U+2019}octubre",
      "de novembre",
      "de desembre"
    ],
    month_stand_alone_abbreviated => [
      "gen.",
      "febr.",
      "mar\N{U+00e7}",
      "abr.",
      "maig",
      "juny",
      "jul.",
      "ag.",
      "set.",
      "oct.",
      "nov.",
      "des."
    ],
    month_stand_alone_narrow => [
      "GN",
      "FB",
      "M\N{U+00c7}",
      "AB",
      "MG",
      "JN",
      "JL",
      "AG",
      "ST",
      "OC",
      "NV",
      "DS"
    ],
    month_stand_alone_wide => [
      "gener",
      "febrer",
      "mar\N{U+00e7}",
      "abril",
      "maig",
      "juny",
      "juliol",
      "agost",
      "setembre",
      "octubre",
      "novembre",
      "desembre"
    ],
    name => "Catalan Andorra",
    native_language => "catal\N{U+00e0}",
    native_name => "catal\N{U+00e0} Andorra",
    native_script => undef,
    native_territory => "Andorra",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1T",
      "2T",
      "3T",
      "4T"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1r trimestre",
      "2n trimestre",
      "3r trimestre",
      "4t trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "1T",
      "2T",
      "3T",
      "4T"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1r trimestre",
      "2n trimestre",
      "3r trimestre",
      "4t trimestre"
    ],
    script => undef,
    territory => "Andorra",
    time_format_full => "H:mm:ss zzzz",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ ca-ES ]__
  {
    am_pm_abbreviated => [
      "a. m.",
      "p. m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E H:mm",
      EHms => "E H:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "LLL y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "LLLL 'de' y G",
      GyMMMMEd => "E, d MMMM 'de' y G",
      GyMMMMd => "d MMMM 'de' y G",
      GyMMMd => "d MMM y G",
      H => "H",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMMM => "LLL 'de' y",
      yMMMEd => "E, d MMM y",
      yMMMM => "LLLL 'de' y",
      yMMMMEd => "E, d MMMM 'de' y",
      yMMMMd => "d MMMM 'de' y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ca-ES",
    date_format_full => "EEEE, d MMMM 'de' y",
    date_format_long => "d MMMM 'de' y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} 'a' 'les' {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "dl.",
      "dt.",
      "dc.",
      "dj.",
      "dv.",
      "ds.",
      "dg."
    ],
    day_format_narrow => [
      "dl",
      "dt",
      "dc",
      "dj",
      "dv",
      "ds",
      "dg"
    ],
    day_format_wide => [
      "dilluns",
      "dimarts",
      "dimecres",
      "dijous",
      "divendres",
      "dissabte",
      "diumenge"
    ],
    day_stand_alone_abbreviated => [
      "dl.",
      "dt.",
      "dc.",
      "dj.",
      "dv.",
      "ds.",
      "dg."
    ],
    day_stand_alone_narrow => [
      "dl",
      "dt",
      "dc",
      "dj",
      "dv",
      "ds",
      "dg"
    ],
    day_stand_alone_wide => [
      "dilluns",
      "dimarts",
      "dimecres",
      "dijous",
      "divendres",
      "dissabte",
      "diumenge"
    ],
    era_abbreviated => [
      "aC",
      "dC"
    ],
    era_narrow => [
      "aC",
      "dC"
    ],
    era_wide => [
      "abans de Crist",
      "despr\N{U+00e9}s de Crist"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Catalan",
    month_format_abbreviated => [
      "gen.",
      "febr.",
      "mar\N{U+00e7}",
      "abr.",
      "maig",
      "juny",
      "jul.",
      "ag.",
      "set.",
      "oct.",
      "nov.",
      "des."
    ],
    month_format_narrow => [
      "GN",
      "FB",
      "M\N{U+00c7}",
      "AB",
      "MG",
      "JN",
      "JL",
      "AG",
      "ST",
      "OC",
      "NV",
      "DS"
    ],
    month_format_wide => [
      "de gener",
      "de febrer",
      "de mar\N{U+00e7}",
      "d\N{U+2019}abril",
      "de maig",
      "de juny",
      "de juliol",
      "d\N{U+2019}agost",
      "de setembre",
      "d\N{U+2019}octubre",
      "de novembre",
      "de desembre"
    ],
    month_stand_alone_abbreviated => [
      "gen.",
      "febr.",
      "mar\N{U+00e7}",
      "abr.",
      "maig",
      "juny",
      "jul.",
      "ag.",
      "set.",
      "oct.",
      "nov.",
      "des."
    ],
    month_stand_alone_narrow => [
      "GN",
      "FB",
      "M\N{U+00c7}",
      "AB",
      "MG",
      "JN",
      "JL",
      "AG",
      "ST",
      "OC",
      "NV",
      "DS"
    ],
    month_stand_alone_wide => [
      "gener",
      "febrer",
      "mar\N{U+00e7}",
      "abril",
      "maig",
      "juny",
      "juliol",
      "agost",
      "setembre",
      "octubre",
      "novembre",
      "desembre"
    ],
    name => "Catalan Spain",
    native_language => "catal\N{U+00e0}",
    native_name => "catal\N{U+00e0} Espanya",
    native_script => undef,
    native_territory => "Espanya",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1T",
      "2T",
      "3T",
      "4T"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1r trimestre",
      "2n trimestre",
      "3r trimestre",
      "4t trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "1T",
      "2T",
      "3T",
      "4T"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1r trimestre",
      "2n trimestre",
      "3r trimestre",
      "4t trimestre"
    ],
    script => undef,
    territory => "Spain",
    time_format_full => "H:mm:ss zzzz",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ ca-ES-VALENCIA ]__
  {
    am_pm_abbreviated => [
      "a. m.",
      "p. m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E H:mm",
      EHms => "E H:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "LLL y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "LLLL 'de' y G",
      GyMMMMEd => "E, d MMMM 'de' y G",
      GyMMMMd => "d MMMM 'de' y G",
      GyMMMd => "d MMM y G",
      H => "H",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMMM => "LLL 'de' y",
      yMMMEd => "E, d MMM y",
      yMMMM => "LLLL 'de' y",
      yMMMMEd => "E, d MMMM 'de' y",
      yMMMMd => "d MMMM 'de' y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ca-ES-VALENCIA",
    date_format_full => "EEEE, d MMMM 'de' y",
    date_format_long => "d MMMM 'de' y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} 'a' 'les' {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "dl.",
      "dt.",
      "dc.",
      "dj.",
      "dv.",
      "ds.",
      "dg."
    ],
    day_format_narrow => [
      "dl",
      "dt",
      "dc",
      "dj",
      "dv",
      "ds",
      "dg"
    ],
    day_format_wide => [
      "dilluns",
      "dimarts",
      "dimecres",
      "dijous",
      "divendres",
      "dissabte",
      "diumenge"
    ],
    day_stand_alone_abbreviated => [
      "dl.",
      "dt.",
      "dc.",
      "dj.",
      "dv.",
      "ds.",
      "dg."
    ],
    day_stand_alone_narrow => [
      "dl",
      "dt",
      "dc",
      "dj",
      "dv",
      "ds",
      "dg"
    ],
    day_stand_alone_wide => [
      "dilluns",
      "dimarts",
      "dimecres",
      "dijous",
      "divendres",
      "dissabte",
      "diumenge"
    ],
    era_abbreviated => [
      "aC",
      "dC"
    ],
    era_narrow => [
      "aC",
      "dC"
    ],
    era_wide => [
      "abans de Crist",
      "despr\N{U+00e9}s de Crist"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Catalan",
    month_format_abbreviated => [
      "gen.",
      "febr.",
      "mar\N{U+00e7}",
      "abr.",
      "maig",
      "juny",
      "jul.",
      "ag.",
      "set.",
      "oct.",
      "nov.",
      "des."
    ],
    month_format_narrow => [
      "GN",
      "FB",
      "M\N{U+00c7}",
      "AB",
      "MG",
      "JN",
      "JL",
      "AG",
      "ST",
      "OC",
      "NV",
      "DS"
    ],
    month_format_wide => [
      "de gener",
      "de febrer",
      "de mar\N{U+00e7}",
      "d\N{U+2019}abril",
      "de maig",
      "de juny",
      "de juliol",
      "d\N{U+2019}agost",
      "de setembre",
      "d\N{U+2019}octubre",
      "de novembre",
      "de desembre"
    ],
    month_stand_alone_abbreviated => [
      "gen.",
      "febr.",
      "mar\N{U+00e7}",
      "abr.",
      "maig",
      "juny",
      "jul.",
      "ag.",
      "set.",
      "oct.",
      "nov.",
      "des."
    ],
    month_stand_alone_narrow => [
      "GN",
      "FB",
      "M\N{U+00c7}",
      "AB",
      "MG",
      "JN",
      "JL",
      "AG",
      "ST",
      "OC",
      "NV",
      "DS"
    ],
    month_stand_alone_wide => [
      "gener",
      "febrer",
      "mar\N{U+00e7}",
      "abril",
      "maig",
      "juny",
      "juliol",
      "agost",
      "setembre",
      "octubre",
      "novembre",
      "desembre"
    ],
    name => "Catalan Spain Valencian",
    native_language => "catal\N{U+00e0}",
    native_name => "catal\N{U+00e0} Espanya valenci\N{U+00e0}",
    native_script => undef,
    native_territory => "Espanya",
    native_variant => "valenci\N{U+00e0}",
    quarter_format_abbreviated => [
      "1T",
      "2T",
      "3T",
      "4T"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1r trimestre",
      "2n trimestre",
      "3r trimestre",
      "4t trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "1T",
      "2T",
      "3T",
      "4T"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1r trimestre",
      "2n trimestre",
      "3r trimestre",
      "4t trimestre"
    ],
    script => undef,
    territory => "Spain",
    time_format_full => "H:mm:ss zzzz",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => "Valencian",
    version => 28
  }
  __[ ca-FR ]__
  {
    am_pm_abbreviated => [
      "a. m.",
      "p. m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E H:mm",
      EHms => "E H:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "LLL y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "LLLL 'de' y G",
      GyMMMMEd => "E, d MMMM 'de' y G",
      GyMMMMd => "d MMMM 'de' y G",
      GyMMMd => "d MMM y G",
      H => "H",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMMM => "LLL 'de' y",
      yMMMEd => "E, d MMM y",
      yMMMM => "LLLL 'de' y",
      yMMMMEd => "E, d MMMM 'de' y",
      yMMMMd => "d MMMM 'de' y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ca-FR",
    date_format_full => "EEEE, d MMMM 'de' y",
    date_format_long => "d MMMM 'de' y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} 'a' 'les' {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "dl.",
      "dt.",
      "dc.",
      "dj.",
      "dv.",
      "ds.",
      "dg."
    ],
    day_format_narrow => [
      "dl",
      "dt",
      "dc",
      "dj",
      "dv",
      "ds",
      "dg"
    ],
    day_format_wide => [
      "dilluns",
      "dimarts",
      "dimecres",
      "dijous",
      "divendres",
      "dissabte",
      "diumenge"
    ],
    day_stand_alone_abbreviated => [
      "dl.",
      "dt.",
      "dc.",
      "dj.",
      "dv.",
      "ds.",
      "dg."
    ],
    day_stand_alone_narrow => [
      "dl",
      "dt",
      "dc",
      "dj",
      "dv",
      "ds",
      "dg"
    ],
    day_stand_alone_wide => [
      "dilluns",
      "dimarts",
      "dimecres",
      "dijous",
      "divendres",
      "dissabte",
      "diumenge"
    ],
    era_abbreviated => [
      "aC",
      "dC"
    ],
    era_narrow => [
      "aC",
      "dC"
    ],
    era_wide => [
      "abans de Crist",
      "despr\N{U+00e9}s de Crist"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Catalan",
    month_format_abbreviated => [
      "gen.",
      "febr.",
      "mar\N{U+00e7}",
      "abr.",
      "maig",
      "juny",
      "jul.",
      "ag.",
      "set.",
      "oct.",
      "nov.",
      "des."
    ],
    month_format_narrow => [
      "GN",
      "FB",
      "M\N{U+00c7}",
      "AB",
      "MG",
      "JN",
      "JL",
      "AG",
      "ST",
      "OC",
      "NV",
      "DS"
    ],
    month_format_wide => [
      "de gener",
      "de febrer",
      "de mar\N{U+00e7}",
      "d\N{U+2019}abril",
      "de maig",
      "de juny",
      "de juliol",
      "d\N{U+2019}agost",
      "de setembre",
      "d\N{U+2019}octubre",
      "de novembre",
      "de desembre"
    ],
    month_stand_alone_abbreviated => [
      "gen.",
      "febr.",
      "mar\N{U+00e7}",
      "abr.",
      "maig",
      "juny",
      "jul.",
      "ag.",
      "set.",
      "oct.",
      "nov.",
      "des."
    ],
    month_stand_alone_narrow => [
      "GN",
      "FB",
      "M\N{U+00c7}",
      "AB",
      "MG",
      "JN",
      "JL",
      "AG",
      "ST",
      "OC",
      "NV",
      "DS"
    ],
    month_stand_alone_wide => [
      "gener",
      "febrer",
      "mar\N{U+00e7}",
      "abril",
      "maig",
      "juny",
      "juliol",
      "agost",
      "setembre",
      "octubre",
      "novembre",
      "desembre"
    ],
    name => "Catalan France",
    native_language => "catal\N{U+00e0}",
    native_name => "catal\N{U+00e0} Fran\N{U+00e7}a",
    native_script => undef,
    native_territory => "Fran\N{U+00e7}a",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1T",
      "2T",
      "3T",
      "4T"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1r trimestre",
      "2n trimestre",
      "3r trimestre",
      "4t trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "1T",
      "2T",
      "3T",
      "4T"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1r trimestre",
      "2n trimestre",
      "3r trimestre",
      "4t trimestre"
    ],
    script => undef,
    territory => "France",
    time_format_full => "H:mm:ss zzzz",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ ca-IT ]__
  {
    am_pm_abbreviated => [
      "a. m.",
      "p. m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E H:mm",
      EHms => "E H:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "LLL y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "LLLL 'de' y G",
      GyMMMMEd => "E, d MMMM 'de' y G",
      GyMMMMd => "d MMMM 'de' y G",
      GyMMMd => "d MMM y G",
      H => "H",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMMM => "LLL 'de' y",
      yMMMEd => "E, d MMM y",
      yMMMM => "LLLL 'de' y",
      yMMMMEd => "E, d MMMM 'de' y",
      yMMMMd => "d MMMM 'de' y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ca-IT",
    date_format_full => "EEEE, d MMMM 'de' y",
    date_format_long => "d MMMM 'de' y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} 'a' 'les' {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "dl.",
      "dt.",
      "dc.",
      "dj.",
      "dv.",
      "ds.",
      "dg."
    ],
    day_format_narrow => [
      "dl",
      "dt",
      "dc",
      "dj",
      "dv",
      "ds",
      "dg"
    ],
    day_format_wide => [
      "dilluns",
      "dimarts",
      "dimecres",
      "dijous",
      "divendres",
      "dissabte",
      "diumenge"
    ],
    day_stand_alone_abbreviated => [
      "dl.",
      "dt.",
      "dc.",
      "dj.",
      "dv.",
      "ds.",
      "dg."
    ],
    day_stand_alone_narrow => [
      "dl",
      "dt",
      "dc",
      "dj",
      "dv",
      "ds",
      "dg"
    ],
    day_stand_alone_wide => [
      "dilluns",
      "dimarts",
      "dimecres",
      "dijous",
      "divendres",
      "dissabte",
      "diumenge"
    ],
    era_abbreviated => [
      "aC",
      "dC"
    ],
    era_narrow => [
      "aC",
      "dC"
    ],
    era_wide => [
      "abans de Crist",
      "despr\N{U+00e9}s de Crist"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Catalan",
    month_format_abbreviated => [
      "gen.",
      "febr.",
      "mar\N{U+00e7}",
      "abr.",
      "maig",
      "juny",
      "jul.",
      "ag.",
      "set.",
      "oct.",
      "nov.",
      "des."
    ],
    month_format_narrow => [
      "GN",
      "FB",
      "M\N{U+00c7}",
      "AB",
      "MG",
      "JN",
      "JL",
      "AG",
      "ST",
      "OC",
      "NV",
      "DS"
    ],
    month_format_wide => [
      "de gener",
      "de febrer",
      "de mar\N{U+00e7}",
      "d\N{U+2019}abril",
      "de maig",
      "de juny",
      "de juliol",
      "d\N{U+2019}agost",
      "de setembre",
      "d\N{U+2019}octubre",
      "de novembre",
      "de desembre"
    ],
    month_stand_alone_abbreviated => [
      "gen.",
      "febr.",
      "mar\N{U+00e7}",
      "abr.",
      "maig",
      "juny",
      "jul.",
      "ag.",
      "set.",
      "oct.",
      "nov.",
      "des."
    ],
    month_stand_alone_narrow => [
      "GN",
      "FB",
      "M\N{U+00c7}",
      "AB",
      "MG",
      "JN",
      "JL",
      "AG",
      "ST",
      "OC",
      "NV",
      "DS"
    ],
    month_stand_alone_wide => [
      "gener",
      "febrer",
      "mar\N{U+00e7}",
      "abril",
      "maig",
      "juny",
      "juliol",
      "agost",
      "setembre",
      "octubre",
      "novembre",
      "desembre"
    ],
    name => "Catalan Italy",
    native_language => "catal\N{U+00e0}",
    native_name => "catal\N{U+00e0} It\N{U+00e0}lia",
    native_script => undef,
    native_territory => "It\N{U+00e0}lia",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1T",
      "2T",
      "3T",
      "4T"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1r trimestre",
      "2n trimestre",
      "3r trimestre",
      "4t trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "1T",
      "2T",
      "3T",
      "4T"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1r trimestre",
      "2n trimestre",
      "3r trimestre",
      "4t trimestre"
    ],
    script => undef,
    territory => "Italy",
    time_format_full => "H:mm:ss zzzz",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ ce ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "ce",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+043e}\N{U+0440}\N{U+0448}\N{U+043e}\N{U+0442}\N{U+0430}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+0448}\N{U+0438}\N{U+043d}\N{U+0430}\N{U+0440}\N{U+0438}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+043a}\N{U+0445}\N{U+0430}\N{U+0430}\N{U+0440}\N{U+0438}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+0435}\N{U+0430}\N{U+0440}\N{U+0438}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+043f}\N{U+04c0}\N{U+0435}\N{U+0440}\N{U+0430}\N{U+0441}\N{U+043a}\N{U+0430}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+0448}\N{U+043e}\N{U+0442} \N{U+0434}\N{U+0435}",
      "\N{U+043a}\N{U+04c0}\N{U+0438}\N{U+0440}\N{U+0430}\N{U+043d}\N{U+0430}\N{U+043d} \N{U+0434}\N{U+0435}"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "\N{U+043e}\N{U+0440}\N{U+0448}\N{U+043e}\N{U+0442}\N{U+0430}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+0448}\N{U+0438}\N{U+043d}\N{U+0430}\N{U+0440}\N{U+0438}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+043a}\N{U+0445}\N{U+0430}\N{U+0430}\N{U+0440}\N{U+0438}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+0435}\N{U+0430}\N{U+0440}\N{U+0438}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+043f}\N{U+04c0}\N{U+0435}\N{U+0440}\N{U+0430}\N{U+0441}\N{U+043a}\N{U+0430}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+0448}\N{U+043e}\N{U+0442} \N{U+0434}\N{U+0435}",
      "\N{U+043a}\N{U+04c0}\N{U+0438}\N{U+0440}\N{U+0430}\N{U+043d}\N{U+0430}\N{U+043d} \N{U+0434}\N{U+0435}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+043e}\N{U+0440}\N{U+0448}\N{U+043e}\N{U+0442}\N{U+0430}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+0448}\N{U+0438}\N{U+043d}\N{U+0430}\N{U+0440}\N{U+0438}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+043a}\N{U+0445}\N{U+0430}\N{U+0430}\N{U+0440}\N{U+0438}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+0435}\N{U+0430}\N{U+0440}\N{U+0438}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+043f}\N{U+04c0}\N{U+0435}\N{U+0440}\N{U+0430}\N{U+0441}\N{U+043a}\N{U+0430}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+0448}\N{U+043e}\N{U+0442} \N{U+0434}\N{U+0435}",
      "\N{U+043a}\N{U+04c0}\N{U+0438}\N{U+0440}\N{U+0430}\N{U+043d}\N{U+0430}\N{U+043d} \N{U+0434}\N{U+0435}"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "\N{U+043e}\N{U+0440}\N{U+0448}\N{U+043e}\N{U+0442}\N{U+0430}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+0448}\N{U+0438}\N{U+043d}\N{U+0430}\N{U+0440}\N{U+0438}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+043a}\N{U+0445}\N{U+0430}\N{U+0430}\N{U+0440}\N{U+0438}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+0435}\N{U+0430}\N{U+0440}\N{U+0438}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+043f}\N{U+04c0}\N{U+0435}\N{U+0440}\N{U+0430}\N{U+0441}\N{U+043a}\N{U+0430}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+0448}\N{U+043e}\N{U+0442} \N{U+0434}\N{U+0435}",
      "\N{U+043a}\N{U+04c0}\N{U+0438}\N{U+0440}\N{U+0430}\N{U+043d}\N{U+0430}\N{U+043d} \N{U+0434}\N{U+0435}"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Chechen",
    month_format_abbreviated => [
      "\N{U+044f}\N{U+043d}\N{U+0432}",
      "\N{U+0444}\N{U+0435}\N{U+0432}",
      "\N{U+043c}\N{U+0430}\N{U+0440}",
      "\N{U+0430}\N{U+043f}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+044e}\N{U+043d}",
      "\N{U+0438}\N{U+044e}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}",
      "\N{U+0441}\N{U+0435}\N{U+043d}",
      "\N{U+043e}\N{U+043a}\N{U+0442}",
      "\N{U+043d}\N{U+043e}\N{U+044f}",
      "\N{U+0434}\N{U+0435}\N{U+043a}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+044f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+044c}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}\N{U+044c}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}\N{U+044c}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044c}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044c}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}\N{U+044c}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+044f}\N{U+043d}\N{U+0432}",
      "\N{U+0444}\N{U+0435}\N{U+0432}",
      "\N{U+043c}\N{U+0430}\N{U+0440}",
      "\N{U+0430}\N{U+043f}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+044e}\N{U+043d}",
      "\N{U+0438}\N{U+044e}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}",
      "\N{U+0441}\N{U+0435}\N{U+043d}",
      "\N{U+043e}\N{U+043a}\N{U+0442}",
      "\N{U+043d}\N{U+043e}\N{U+044f}",
      "\N{U+0434}\N{U+0435}\N{U+043a}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+044f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+044c}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}\N{U+044c}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}\N{U+044c}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044c}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044c}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}\N{U+044c}"
    ],
    name => "Chechen",
    native_language => "\N{U+043d}\N{U+043e}\N{U+0445}\N{U+0447}\N{U+0438}\N{U+0439}\N{U+043d}",
    native_name => "\N{U+043d}\N{U+043e}\N{U+0445}\N{U+0447}\N{U+0438}\N{U+0439}\N{U+043d}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-\N{U+0433}\N{U+04c0}\N{U+0430} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0433}\N{U+04c0}\N{U+0430} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0433}\N{U+04c0}\N{U+0430} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+0433}\N{U+04c0}\N{U+0430} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ce-RU ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "ce-RU",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+043e}\N{U+0440}\N{U+0448}\N{U+043e}\N{U+0442}\N{U+0430}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+0448}\N{U+0438}\N{U+043d}\N{U+0430}\N{U+0440}\N{U+0438}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+043a}\N{U+0445}\N{U+0430}\N{U+0430}\N{U+0440}\N{U+0438}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+0435}\N{U+0430}\N{U+0440}\N{U+0438}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+043f}\N{U+04c0}\N{U+0435}\N{U+0440}\N{U+0430}\N{U+0441}\N{U+043a}\N{U+0430}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+0448}\N{U+043e}\N{U+0442} \N{U+0434}\N{U+0435}",
      "\N{U+043a}\N{U+04c0}\N{U+0438}\N{U+0440}\N{U+0430}\N{U+043d}\N{U+0430}\N{U+043d} \N{U+0434}\N{U+0435}"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "\N{U+043e}\N{U+0440}\N{U+0448}\N{U+043e}\N{U+0442}\N{U+0430}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+0448}\N{U+0438}\N{U+043d}\N{U+0430}\N{U+0440}\N{U+0438}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+043a}\N{U+0445}\N{U+0430}\N{U+0430}\N{U+0440}\N{U+0438}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+0435}\N{U+0430}\N{U+0440}\N{U+0438}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+043f}\N{U+04c0}\N{U+0435}\N{U+0440}\N{U+0430}\N{U+0441}\N{U+043a}\N{U+0430}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+0448}\N{U+043e}\N{U+0442} \N{U+0434}\N{U+0435}",
      "\N{U+043a}\N{U+04c0}\N{U+0438}\N{U+0440}\N{U+0430}\N{U+043d}\N{U+0430}\N{U+043d} \N{U+0434}\N{U+0435}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+043e}\N{U+0440}\N{U+0448}\N{U+043e}\N{U+0442}\N{U+0430}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+0448}\N{U+0438}\N{U+043d}\N{U+0430}\N{U+0440}\N{U+0438}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+043a}\N{U+0445}\N{U+0430}\N{U+0430}\N{U+0440}\N{U+0438}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+0435}\N{U+0430}\N{U+0440}\N{U+0438}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+043f}\N{U+04c0}\N{U+0435}\N{U+0440}\N{U+0430}\N{U+0441}\N{U+043a}\N{U+0430}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+0448}\N{U+043e}\N{U+0442} \N{U+0434}\N{U+0435}",
      "\N{U+043a}\N{U+04c0}\N{U+0438}\N{U+0440}\N{U+0430}\N{U+043d}\N{U+0430}\N{U+043d} \N{U+0434}\N{U+0435}"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "\N{U+043e}\N{U+0440}\N{U+0448}\N{U+043e}\N{U+0442}\N{U+0430}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+0448}\N{U+0438}\N{U+043d}\N{U+0430}\N{U+0440}\N{U+0438}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+043a}\N{U+0445}\N{U+0430}\N{U+0430}\N{U+0440}\N{U+0438}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+0435}\N{U+0430}\N{U+0440}\N{U+0438}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+043f}\N{U+04c0}\N{U+0435}\N{U+0440}\N{U+0430}\N{U+0441}\N{U+043a}\N{U+0430}\N{U+043d} \N{U+0434}\N{U+0435}",
      "\N{U+0448}\N{U+043e}\N{U+0442} \N{U+0434}\N{U+0435}",
      "\N{U+043a}\N{U+04c0}\N{U+0438}\N{U+0440}\N{U+0430}\N{U+043d}\N{U+0430}\N{U+043d} \N{U+0434}\N{U+0435}"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%Y.%d.%m",
    glibc_datetime_format => "%Y %d %b %a %T",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Chechen",
    month_format_abbreviated => [
      "\N{U+044f}\N{U+043d}\N{U+0432}",
      "\N{U+0444}\N{U+0435}\N{U+0432}",
      "\N{U+043c}\N{U+0430}\N{U+0440}",
      "\N{U+0430}\N{U+043f}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+044e}\N{U+043d}",
      "\N{U+0438}\N{U+044e}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}",
      "\N{U+0441}\N{U+0435}\N{U+043d}",
      "\N{U+043e}\N{U+043a}\N{U+0442}",
      "\N{U+043d}\N{U+043e}\N{U+044f}",
      "\N{U+0434}\N{U+0435}\N{U+043a}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+044f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+044c}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}\N{U+044c}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}\N{U+044c}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044c}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044c}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}\N{U+044c}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+044f}\N{U+043d}\N{U+0432}",
      "\N{U+0444}\N{U+0435}\N{U+0432}",
      "\N{U+043c}\N{U+0430}\N{U+0440}",
      "\N{U+0430}\N{U+043f}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+044e}\N{U+043d}",
      "\N{U+0438}\N{U+044e}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}",
      "\N{U+0441}\N{U+0435}\N{U+043d}",
      "\N{U+043e}\N{U+043a}\N{U+0442}",
      "\N{U+043d}\N{U+043e}\N{U+044f}",
      "\N{U+0434}\N{U+0435}\N{U+043a}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+044f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+044c}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}\N{U+044c}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}\N{U+044c}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044c}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044c}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}\N{U+044c}"
    ],
    name => "Chechen Russia",
    native_language => "\N{U+043d}\N{U+043e}\N{U+0445}\N{U+0447}\N{U+0438}\N{U+0439}\N{U+043d}",
    native_name => "\N{U+043d}\N{U+043e}\N{U+0445}\N{U+0447}\N{U+0438}\N{U+0439}\N{U+043d} \N{U+0420}\N{U+043e}\N{U+0441}\N{U+0441}\N{U+0438}",
    native_script => undef,
    native_territory => "\N{U+0420}\N{U+043e}\N{U+0441}\N{U+0441}\N{U+0438}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-\N{U+0433}\N{U+04c0}\N{U+0430} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0433}\N{U+04c0}\N{U+0430} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0433}\N{U+04c0}\N{U+0430} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+0433}\N{U+04c0}\N{U+0430} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    script => undef,
    territory => "Russia",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ cgg ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "cgg",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "ORK",
      "OKB",
      "OKS",
      "OKN",
      "OKT",
      "OMK",
      "SAN"
    ],
    day_format_narrow => [
      "K",
      "R",
      "S",
      "N",
      "T",
      "M",
      "S"
    ],
    day_format_wide => [
      "Orwokubanza",
      "Orwakabiri",
      "Orwakashatu",
      "Orwakana",
      "Orwakataano",
      "Orwamukaaga",
      "Sande"
    ],
    day_stand_alone_abbreviated => [
      "ORK",
      "OKB",
      "OKS",
      "OKN",
      "OKT",
      "OMK",
      "SAN"
    ],
    day_stand_alone_narrow => [
      "K",
      "R",
      "S",
      "N",
      "T",
      "M",
      "S"
    ],
    day_stand_alone_wide => [
      "Orwokubanza",
      "Orwakabiri",
      "Orwakashatu",
      "Orwakana",
      "Orwakataano",
      "Orwamukaaga",
      "Sande"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "Kurisito Atakaijire",
      "Kurisito Yaijire"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Chiga",
    month_format_abbreviated => [
      "KBZ",
      "KBR",
      "KST",
      "KKN",
      "KTN",
      "KMK",
      "KMS",
      "KMN",
      "KMW",
      "KKM",
      "KNK",
      "KNB"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Okwokubanza",
      "Okwakabiri",
      "Okwakashatu",
      "Okwakana",
      "Okwakataana",
      "Okwamukaaga",
      "Okwamushanju",
      "Okwamunaana",
      "Okwamwenda",
      "Okwaikumi",
      "Okwaikumi na kumwe",
      "Okwaikumi na ibiri"
    ],
    month_stand_alone_abbreviated => [
      "KBZ",
      "KBR",
      "KST",
      "KKN",
      "KTN",
      "KMK",
      "KMS",
      "KMN",
      "KMW",
      "KKM",
      "KNK",
      "KNB"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Okwokubanza",
      "Okwakabiri",
      "Okwakashatu",
      "Okwakana",
      "Okwakataana",
      "Okwamukaaga",
      "Okwamushanju",
      "Okwamunaana",
      "Okwamwenda",
      "Okwaikumi",
      "Okwaikumi na kumwe",
      "Okwaikumi na ibiri"
    ],
    name => "Chiga",
    native_language => "Rukiga",
    native_name => "Rukiga",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "KWOTA 1",
      "KWOTA 2",
      "KWOTA 3",
      "KWOTA 4"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "KWOTA 1",
      "KWOTA 2",
      "KWOTA 3",
      "KWOTA 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ cgg-UG ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "cgg-UG",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "ORK",
      "OKB",
      "OKS",
      "OKN",
      "OKT",
      "OMK",
      "SAN"
    ],
    day_format_narrow => [
      "K",
      "R",
      "S",
      "N",
      "T",
      "M",
      "S"
    ],
    day_format_wide => [
      "Orwokubanza",
      "Orwakabiri",
      "Orwakashatu",
      "Orwakana",
      "Orwakataano",
      "Orwamukaaga",
      "Sande"
    ],
    day_stand_alone_abbreviated => [
      "ORK",
      "OKB",
      "OKS",
      "OKN",
      "OKT",
      "OMK",
      "SAN"
    ],
    day_stand_alone_narrow => [
      "K",
      "R",
      "S",
      "N",
      "T",
      "M",
      "S"
    ],
    day_stand_alone_wide => [
      "Orwokubanza",
      "Orwakabiri",
      "Orwakashatu",
      "Orwakana",
      "Orwakataano",
      "Orwamukaaga",
      "Sande"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "Kurisito Atakaijire",
      "Kurisito Yaijire"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Chiga",
    month_format_abbreviated => [
      "KBZ",
      "KBR",
      "KST",
      "KKN",
      "KTN",
      "KMK",
      "KMS",
      "KMN",
      "KMW",
      "KKM",
      "KNK",
      "KNB"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Okwokubanza",
      "Okwakabiri",
      "Okwakashatu",
      "Okwakana",
      "Okwakataana",
      "Okwamukaaga",
      "Okwamushanju",
      "Okwamunaana",
      "Okwamwenda",
      "Okwaikumi",
      "Okwaikumi na kumwe",
      "Okwaikumi na ibiri"
    ],
    month_stand_alone_abbreviated => [
      "KBZ",
      "KBR",
      "KST",
      "KKN",
      "KTN",
      "KMK",
      "KMS",
      "KMN",
      "KMW",
      "KKM",
      "KNK",
      "KNB"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Okwokubanza",
      "Okwakabiri",
      "Okwakashatu",
      "Okwakana",
      "Okwakataana",
      "Okwamukaaga",
      "Okwamushanju",
      "Okwamunaana",
      "Okwamwenda",
      "Okwaikumi",
      "Okwaikumi na kumwe",
      "Okwaikumi na ibiri"
    ],
    name => "Chiga Uganda",
    native_language => "Rukiga",
    native_name => "Rukiga Uganda",
    native_script => undef,
    native_territory => "Uganda",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "KWOTA 1",
      "KWOTA 2",
      "KWOTA 3",
      "KWOTA 4"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "KWOTA 1",
      "KWOTA 2",
      "KWOTA 3",
      "KWOTA 4"
    ],
    script => undef,
    territory => "Uganda",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ chr ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, MMM d, y G",
      GyMMMd => "MMM d, y G",
      H => "HH",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "MMM d, y",
      yMd => "M/d/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "chr",
    date_format_full => "EEEE, MMMM d, y",
    date_format_long => "MMMM d, y",
    date_format_medium => "MMM d, y",
    date_format_short => "M/d/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+13c9}\N{U+13c5}\N{U+13af}",
      "\N{U+13d4}\N{U+13b5}\N{U+13c1}",
      "\N{U+13e6}\N{U+13a2}\N{U+13c1}",
      "\N{U+13c5}\N{U+13a9}\N{U+13c1}",
      "\N{U+13e7}\N{U+13be}\N{U+13a9}",
      "\N{U+13c8}\N{U+13d5}\N{U+13be}",
      "\N{U+13c6}\N{U+13cd}\N{U+13ac}"
    ],
    day_format_narrow => [
      "\N{U+13c9}",
      "\N{U+13d4}",
      "\N{U+13e6}",
      "\N{U+13c5}",
      "\N{U+13e7}",
      "\N{U+13a4}",
      "\N{U+13c6}"
    ],
    day_format_wide => [
      "\N{U+13a4}\N{U+13be}\N{U+13d9}\N{U+13d3}\N{U+13c9}\N{U+13c5}\N{U+13af}",
      "\N{U+13d4}\N{U+13b5}\N{U+13c1}\N{U+13a2}\N{U+13a6}",
      "\N{U+13e6}\N{U+13a2}\N{U+13c1}\N{U+13a2}\N{U+13a6}",
      "\N{U+13c5}\N{U+13a9}\N{U+13c1}\N{U+13a2}\N{U+13a6}",
      "\N{U+13e7}\N{U+13be}\N{U+13a9}\N{U+13b6}\N{U+13cd}\N{U+13d7}",
      "\N{U+13a4}\N{U+13be}\N{U+13d9}\N{U+13d3}\N{U+13c8}\N{U+13d5}\N{U+13be}",
      "\N{U+13a4}\N{U+13be}\N{U+13d9}\N{U+13d3}\N{U+13c6}\N{U+13cd}\N{U+13ac}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+13c9}\N{U+13c5}\N{U+13af}",
      "\N{U+13d4}\N{U+13b5}\N{U+13c1}",
      "\N{U+13e6}\N{U+13a2}\N{U+13c1}",
      "\N{U+13c5}\N{U+13a9}\N{U+13c1}",
      "\N{U+13e7}\N{U+13be}\N{U+13a9}",
      "\N{U+13c8}\N{U+13d5}\N{U+13be}",
      "\N{U+13c6}\N{U+13cd}\N{U+13ac}"
    ],
    day_stand_alone_narrow => [
      "\N{U+13c9}",
      "\N{U+13d4}",
      "\N{U+13e6}",
      "\N{U+13c5}",
      "\N{U+13e7}",
      "\N{U+13a4}",
      "\N{U+13c6}"
    ],
    day_stand_alone_wide => [
      "\N{U+13a4}\N{U+13be}\N{U+13d9}\N{U+13d3}\N{U+13c9}\N{U+13c5}\N{U+13af}",
      "\N{U+13d4}\N{U+13b5}\N{U+13c1}\N{U+13a2}\N{U+13a6}",
      "\N{U+13e6}\N{U+13a2}\N{U+13c1}\N{U+13a2}\N{U+13a6}",
      "\N{U+13c5}\N{U+13a9}\N{U+13c1}\N{U+13a2}\N{U+13a6}",
      "\N{U+13e7}\N{U+13be}\N{U+13a9}\N{U+13b6}\N{U+13cd}\N{U+13d7}",
      "\N{U+13a4}\N{U+13be}\N{U+13d9}\N{U+13d3}\N{U+13c8}\N{U+13d5}\N{U+13be}",
      "\N{U+13a4}\N{U+13be}\N{U+13d9}\N{U+13d3}\N{U+13c6}\N{U+13cd}\N{U+13ac}"
    ],
    era_abbreviated => [
      "\N{U+13a4}\N{U+13d3}\N{U+13b7}\N{U+13b8}",
      "\N{U+13a4}\N{U+13b6}\N{U+13d0}\N{U+13c5}"
    ],
    era_narrow => [
      "\N{U+13a4}\N{U+13d3}\N{U+13b7}\N{U+13b8}",
      "\N{U+13a4}\N{U+13b6}\N{U+13d0}\N{U+13c5}"
    ],
    era_wide => [
      "\N{U+13cf} \N{U+13e5}\N{U+13cc} \N{U+13be}\N{U+13d5}\N{U+13b2}\N{U+13cd}\N{U+13ac}\N{U+13be}",
      "\N{U+13a0}\N{U+13a9}\N{U+13c3}\N{U+13ae}\N{U+13b5}\N{U+13d3}\N{U+13cd}\N{U+13d7}\N{U+13f1} \N{U+13a0}\N{U+13d5}\N{U+13d8}\N{U+13f1}\N{U+13cd}\N{U+13ac} \N{U+13f1}\N{U+13b0}\N{U+13e9} \N{U+13e7}\N{U+13d3}\N{U+13c2}\N{U+13b8}\N{U+13a2}\N{U+13cd}\N{U+13d7}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Cherokee",
    month_format_abbreviated => [
      "\N{U+13a4}\N{U+13c3}",
      "\N{U+13a7}\N{U+13a6}",
      "\N{U+13a0}\N{U+13c5}",
      "\N{U+13a7}\N{U+13ec}",
      "\N{U+13a0}\N{U+13c2}",
      "\N{U+13d5}\N{U+13ad}",
      "\N{U+13ab}\N{U+13f0}",
      "\N{U+13a6}\N{U+13b6}",
      "\N{U+13da}\N{U+13b5}",
      "\N{U+13da}\N{U+13c2}",
      "\N{U+13c5}\N{U+13d3}",
      "\N{U+13a5}\N{U+13cd}"
    ],
    month_format_narrow => [
      "\N{U+13a4}",
      "\N{U+13a7}",
      "\N{U+13a0}",
      "\N{U+13a7}",
      "\N{U+13a0}",
      "\N{U+13d5}",
      "\N{U+13ab}",
      "\N{U+13a6}",
      "\N{U+13da}",
      "\N{U+13da}",
      "\N{U+13c5}",
      "\N{U+13a5}"
    ],
    month_format_wide => [
      "\N{U+13a4}\N{U+13c3}\N{U+13b8}\N{U+13d4}\N{U+13c5}",
      "\N{U+13a7}\N{U+13a6}\N{U+13b5}",
      "\N{U+13a0}\N{U+13c5}\N{U+13f1}",
      "\N{U+13a7}\N{U+13ec}\N{U+13c2}",
      "\N{U+13a0}\N{U+13c2}\N{U+13cd}\N{U+13ac}\N{U+13d8}",
      "\N{U+13d5}\N{U+13ad}\N{U+13b7}\N{U+13f1}",
      "\N{U+13ab}\N{U+13f0}\N{U+13c9}\N{U+13c2}",
      "\N{U+13a6}\N{U+13b6}\N{U+13c2}",
      "\N{U+13da}\N{U+13b5}\N{U+13cd}\N{U+13d7}",
      "\N{U+13da}\N{U+13c2}\N{U+13c5}\N{U+13d7}",
      "\N{U+13c5}\N{U+13d3}\N{U+13d5}\N{U+13c6}",
      "\N{U+13a5}\N{U+13cd}\N{U+13a9}\N{U+13f1}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+13a4}\N{U+13c3}",
      "\N{U+13a7}\N{U+13a6}",
      "\N{U+13a0}\N{U+13c5}",
      "\N{U+13a7}\N{U+13ec}",
      "\N{U+13a0}\N{U+13c2}",
      "\N{U+13d5}\N{U+13ad}",
      "\N{U+13ab}\N{U+13f0}",
      "\N{U+13a6}\N{U+13b6}",
      "\N{U+13da}\N{U+13b5}",
      "\N{U+13da}\N{U+13c2}",
      "\N{U+13c5}\N{U+13d3}",
      "\N{U+13a5}\N{U+13cd}"
    ],
    month_stand_alone_narrow => [
      "\N{U+13a4}",
      "\N{U+13a7}",
      "\N{U+13a0}",
      "\N{U+13a7}",
      "\N{U+13a0}",
      "\N{U+13d5}",
      "\N{U+13ab}",
      "\N{U+13a6}",
      "\N{U+13da}",
      "\N{U+13da}",
      "\N{U+13c5}",
      "\N{U+13a5}"
    ],
    month_stand_alone_wide => [
      "\N{U+13a4}\N{U+13c3}\N{U+13b8}\N{U+13d4}\N{U+13c5}",
      "\N{U+13a7}\N{U+13a6}\N{U+13b5}",
      "\N{U+13a0}\N{U+13c5}\N{U+13f1}",
      "\N{U+13a7}\N{U+13ec}\N{U+13c2}",
      "\N{U+13a0}\N{U+13c2}\N{U+13cd}\N{U+13ac}\N{U+13d8}",
      "\N{U+13d5}\N{U+13ad}\N{U+13b7}\N{U+13f1}",
      "\N{U+13ab}\N{U+13f0}\N{U+13c9}\N{U+13c2}",
      "\N{U+13a6}\N{U+13b6}\N{U+13c2}",
      "\N{U+13da}\N{U+13b5}\N{U+13cd}\N{U+13d7}",
      "\N{U+13da}\N{U+13c2}\N{U+13c5}\N{U+13d7}",
      "\N{U+13c5}\N{U+13d3}\N{U+13d5}\N{U+13c6}",
      "\N{U+13a5}\N{U+13cd}\N{U+13a9}\N{U+13f1}"
    ],
    name => "Cherokee",
    native_language => "\N{U+13e3}\N{U+13b3}\N{U+13a9}",
    native_name => "\N{U+13e3}\N{U+13b3}\N{U+13a9}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ chr-US ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, MMM d, y G",
      GyMMMd => "MMM d, y G",
      H => "HH",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "MMM d, y",
      yMd => "M/d/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "chr-US",
    date_format_full => "EEEE, MMMM d, y",
    date_format_long => "MMMM d, y",
    date_format_medium => "MMM d, y",
    date_format_short => "M/d/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+13c9}\N{U+13c5}\N{U+13af}",
      "\N{U+13d4}\N{U+13b5}\N{U+13c1}",
      "\N{U+13e6}\N{U+13a2}\N{U+13c1}",
      "\N{U+13c5}\N{U+13a9}\N{U+13c1}",
      "\N{U+13e7}\N{U+13be}\N{U+13a9}",
      "\N{U+13c8}\N{U+13d5}\N{U+13be}",
      "\N{U+13c6}\N{U+13cd}\N{U+13ac}"
    ],
    day_format_narrow => [
      "\N{U+13c9}",
      "\N{U+13d4}",
      "\N{U+13e6}",
      "\N{U+13c5}",
      "\N{U+13e7}",
      "\N{U+13a4}",
      "\N{U+13c6}"
    ],
    day_format_wide => [
      "\N{U+13a4}\N{U+13be}\N{U+13d9}\N{U+13d3}\N{U+13c9}\N{U+13c5}\N{U+13af}",
      "\N{U+13d4}\N{U+13b5}\N{U+13c1}\N{U+13a2}\N{U+13a6}",
      "\N{U+13e6}\N{U+13a2}\N{U+13c1}\N{U+13a2}\N{U+13a6}",
      "\N{U+13c5}\N{U+13a9}\N{U+13c1}\N{U+13a2}\N{U+13a6}",
      "\N{U+13e7}\N{U+13be}\N{U+13a9}\N{U+13b6}\N{U+13cd}\N{U+13d7}",
      "\N{U+13a4}\N{U+13be}\N{U+13d9}\N{U+13d3}\N{U+13c8}\N{U+13d5}\N{U+13be}",
      "\N{U+13a4}\N{U+13be}\N{U+13d9}\N{U+13d3}\N{U+13c6}\N{U+13cd}\N{U+13ac}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+13c9}\N{U+13c5}\N{U+13af}",
      "\N{U+13d4}\N{U+13b5}\N{U+13c1}",
      "\N{U+13e6}\N{U+13a2}\N{U+13c1}",
      "\N{U+13c5}\N{U+13a9}\N{U+13c1}",
      "\N{U+13e7}\N{U+13be}\N{U+13a9}",
      "\N{U+13c8}\N{U+13d5}\N{U+13be}",
      "\N{U+13c6}\N{U+13cd}\N{U+13ac}"
    ],
    day_stand_alone_narrow => [
      "\N{U+13c9}",
      "\N{U+13d4}",
      "\N{U+13e6}",
      "\N{U+13c5}",
      "\N{U+13e7}",
      "\N{U+13a4}",
      "\N{U+13c6}"
    ],
    day_stand_alone_wide => [
      "\N{U+13a4}\N{U+13be}\N{U+13d9}\N{U+13d3}\N{U+13c9}\N{U+13c5}\N{U+13af}",
      "\N{U+13d4}\N{U+13b5}\N{U+13c1}\N{U+13a2}\N{U+13a6}",
      "\N{U+13e6}\N{U+13a2}\N{U+13c1}\N{U+13a2}\N{U+13a6}",
      "\N{U+13c5}\N{U+13a9}\N{U+13c1}\N{U+13a2}\N{U+13a6}",
      "\N{U+13e7}\N{U+13be}\N{U+13a9}\N{U+13b6}\N{U+13cd}\N{U+13d7}",
      "\N{U+13a4}\N{U+13be}\N{U+13d9}\N{U+13d3}\N{U+13c8}\N{U+13d5}\N{U+13be}",
      "\N{U+13a4}\N{U+13be}\N{U+13d9}\N{U+13d3}\N{U+13c6}\N{U+13cd}\N{U+13ac}"
    ],
    era_abbreviated => [
      "\N{U+13a4}\N{U+13d3}\N{U+13b7}\N{U+13b8}",
      "\N{U+13a4}\N{U+13b6}\N{U+13d0}\N{U+13c5}"
    ],
    era_narrow => [
      "\N{U+13a4}\N{U+13d3}\N{U+13b7}\N{U+13b8}",
      "\N{U+13a4}\N{U+13b6}\N{U+13d0}\N{U+13c5}"
    ],
    era_wide => [
      "\N{U+13cf} \N{U+13e5}\N{U+13cc} \N{U+13be}\N{U+13d5}\N{U+13b2}\N{U+13cd}\N{U+13ac}\N{U+13be}",
      "\N{U+13a0}\N{U+13a9}\N{U+13c3}\N{U+13ae}\N{U+13b5}\N{U+13d3}\N{U+13cd}\N{U+13d7}\N{U+13f1} \N{U+13a0}\N{U+13d5}\N{U+13d8}\N{U+13f1}\N{U+13cd}\N{U+13ac} \N{U+13f1}\N{U+13b0}\N{U+13e9} \N{U+13e7}\N{U+13d3}\N{U+13c2}\N{U+13b8}\N{U+13a2}\N{U+13cd}\N{U+13d7}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Cherokee",
    month_format_abbreviated => [
      "\N{U+13a4}\N{U+13c3}",
      "\N{U+13a7}\N{U+13a6}",
      "\N{U+13a0}\N{U+13c5}",
      "\N{U+13a7}\N{U+13ec}",
      "\N{U+13a0}\N{U+13c2}",
      "\N{U+13d5}\N{U+13ad}",
      "\N{U+13ab}\N{U+13f0}",
      "\N{U+13a6}\N{U+13b6}",
      "\N{U+13da}\N{U+13b5}",
      "\N{U+13da}\N{U+13c2}",
      "\N{U+13c5}\N{U+13d3}",
      "\N{U+13a5}\N{U+13cd}"
    ],
    month_format_narrow => [
      "\N{U+13a4}",
      "\N{U+13a7}",
      "\N{U+13a0}",
      "\N{U+13a7}",
      "\N{U+13a0}",
      "\N{U+13d5}",
      "\N{U+13ab}",
      "\N{U+13a6}",
      "\N{U+13da}",
      "\N{U+13da}",
      "\N{U+13c5}",
      "\N{U+13a5}"
    ],
    month_format_wide => [
      "\N{U+13a4}\N{U+13c3}\N{U+13b8}\N{U+13d4}\N{U+13c5}",
      "\N{U+13a7}\N{U+13a6}\N{U+13b5}",
      "\N{U+13a0}\N{U+13c5}\N{U+13f1}",
      "\N{U+13a7}\N{U+13ec}\N{U+13c2}",
      "\N{U+13a0}\N{U+13c2}\N{U+13cd}\N{U+13ac}\N{U+13d8}",
      "\N{U+13d5}\N{U+13ad}\N{U+13b7}\N{U+13f1}",
      "\N{U+13ab}\N{U+13f0}\N{U+13c9}\N{U+13c2}",
      "\N{U+13a6}\N{U+13b6}\N{U+13c2}",
      "\N{U+13da}\N{U+13b5}\N{U+13cd}\N{U+13d7}",
      "\N{U+13da}\N{U+13c2}\N{U+13c5}\N{U+13d7}",
      "\N{U+13c5}\N{U+13d3}\N{U+13d5}\N{U+13c6}",
      "\N{U+13a5}\N{U+13cd}\N{U+13a9}\N{U+13f1}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+13a4}\N{U+13c3}",
      "\N{U+13a7}\N{U+13a6}",
      "\N{U+13a0}\N{U+13c5}",
      "\N{U+13a7}\N{U+13ec}",
      "\N{U+13a0}\N{U+13c2}",
      "\N{U+13d5}\N{U+13ad}",
      "\N{U+13ab}\N{U+13f0}",
      "\N{U+13a6}\N{U+13b6}",
      "\N{U+13da}\N{U+13b5}",
      "\N{U+13da}\N{U+13c2}",
      "\N{U+13c5}\N{U+13d3}",
      "\N{U+13a5}\N{U+13cd}"
    ],
    month_stand_alone_narrow => [
      "\N{U+13a4}",
      "\N{U+13a7}",
      "\N{U+13a0}",
      "\N{U+13a7}",
      "\N{U+13a0}",
      "\N{U+13d5}",
      "\N{U+13ab}",
      "\N{U+13a6}",
      "\N{U+13da}",
      "\N{U+13da}",
      "\N{U+13c5}",
      "\N{U+13a5}"
    ],
    month_stand_alone_wide => [
      "\N{U+13a4}\N{U+13c3}\N{U+13b8}\N{U+13d4}\N{U+13c5}",
      "\N{U+13a7}\N{U+13a6}\N{U+13b5}",
      "\N{U+13a0}\N{U+13c5}\N{U+13f1}",
      "\N{U+13a7}\N{U+13ec}\N{U+13c2}",
      "\N{U+13a0}\N{U+13c2}\N{U+13cd}\N{U+13ac}\N{U+13d8}",
      "\N{U+13d5}\N{U+13ad}\N{U+13b7}\N{U+13f1}",
      "\N{U+13ab}\N{U+13f0}\N{U+13c9}\N{U+13c2}",
      "\N{U+13a6}\N{U+13b6}\N{U+13c2}",
      "\N{U+13da}\N{U+13b5}\N{U+13cd}\N{U+13d7}",
      "\N{U+13da}\N{U+13c2}\N{U+13c5}\N{U+13d7}",
      "\N{U+13c5}\N{U+13d3}\N{U+13d5}\N{U+13c6}",
      "\N{U+13a5}\N{U+13cd}\N{U+13a9}\N{U+13f1}"
    ],
    name => "Cherokee United States",
    native_language => "\N{U+13e3}\N{U+13b3}\N{U+13a9}",
    native_name => "\N{U+13e3}\N{U+13b3}\N{U+13a9} \N{U+13a0}\N{U+13b9}\N{U+13f0}\N{U+13df}",
    native_script => undef,
    native_territory => "\N{U+13a0}\N{U+13b9}\N{U+13f0}\N{U+13df}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "United States",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ckb ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "ckb",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Central Kurdish",
    month_format_abbreviated => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_stand_alone_abbreviated => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    name => "Central Kurdish",
    native_language => "\N{U+06a9}\N{U+0648}\N{U+0631}\N{U+062f}\N{U+06cc}\N{U+06cc} \N{U+0646}\N{U+0627}\N{U+0648}\N{U+06d5}\N{U+0646}\N{U+062f}\N{U+06cc}",
    native_name => "\N{U+06a9}\N{U+0648}\N{U+0631}\N{U+062f}\N{U+06cc}\N{U+06cc} \N{U+0646}\N{U+0627}\N{U+0648}\N{U+06d5}\N{U+0646}\N{U+062f}\N{U+06cc}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ckb-IQ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "ckb-IQ",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Central Kurdish",
    month_format_abbreviated => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_stand_alone_abbreviated => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    name => "Central Kurdish Iraq",
    native_language => "\N{U+06a9}\N{U+0648}\N{U+0631}\N{U+062f}\N{U+06cc}\N{U+06cc} \N{U+0646}\N{U+0627}\N{U+0648}\N{U+06d5}\N{U+0646}\N{U+062f}\N{U+06cc}",
    native_name => "\N{U+06a9}\N{U+0648}\N{U+0631}\N{U+062f}\N{U+06cc}\N{U+06cc} \N{U+0646}\N{U+0627}\N{U+0648}\N{U+06d5}\N{U+0646}\N{U+062f}\N{U+06cc} IQ",
    native_script => undef,
    native_territory => "IQ",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "Iraq",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ckb-IR ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "ckb-IR",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Central Kurdish",
    month_format_abbreviated => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_stand_alone_abbreviated => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    name => "Central Kurdish Iran",
    native_language => "\N{U+06a9}\N{U+0648}\N{U+0631}\N{U+062f}\N{U+06cc}\N{U+06cc} \N{U+0646}\N{U+0627}\N{U+0648}\N{U+06d5}\N{U+0646}\N{U+062f}\N{U+06cc}",
    native_name => "\N{U+06a9}\N{U+0648}\N{U+0631}\N{U+062f}\N{U+06cc}\N{U+06cc} \N{U+0646}\N{U+0627}\N{U+0648}\N{U+06d5}\N{U+0646}\N{U+062f}\N{U+06cc} IR",
    native_script => undef,
    native_territory => "IR",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "Iran",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ cs ]__
  {
    am_pm_abbreviated => [
      "dop.",
      "odp."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E H:mm",
      EHms => "E H:mm:ss",
      Ed => "E d.",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "LLLL y G",
      GyMMMEd => "E d. M. y G",
      GyMMMMEd => "E d. MMMM y G",
      GyMMMMd => "d. MMMM y G",
      GyMMMd => "d. M. y G",
      H => "H",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E d. M.",
      MMM => "LLL",
      MMMEd => "E d. M.",
      MMMMEd => "E d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. M.",
      Md => "d. M.",
      d => "d.",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d. M. y",
      yMMM => "LLLL y",
      yMMMEd => "E d. M. y",
      yMMMM => "LLLL y",
      yMMMMEd => "E d. MMMM y",
      yMMMMd => "d. MMMM y",
      yMMMd => "d. M. y",
      yMd => "d. M. y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "cs",
    date_format_full => "EEEE d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "d. M. y",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "po",
      "\N{U+00fa}t",
      "st",
      "\N{U+010d}t",
      "p\N{U+00e1}",
      "so",
      "ne"
    ],
    day_format_narrow => [
      "P",
      "\N{U+00da}",
      "S",
      "\N{U+010c}",
      "P",
      "S",
      "N"
    ],
    day_format_wide => [
      "pond\N{U+011b}l\N{U+00ed}",
      "\N{U+00fa}ter\N{U+00fd}",
      "st\N{U+0159}eda",
      "\N{U+010d}tvrtek",
      "p\N{U+00e1}tek",
      "sobota",
      "ned\N{U+011b}le"
    ],
    day_stand_alone_abbreviated => [
      "po",
      "\N{U+00fa}t",
      "st",
      "\N{U+010d}t",
      "p\N{U+00e1}",
      "so",
      "ne"
    ],
    day_stand_alone_narrow => [
      "P",
      "\N{U+00da}",
      "S",
      "\N{U+010c}",
      "P",
      "S",
      "N"
    ],
    day_stand_alone_wide => [
      "pond\N{U+011b}l\N{U+00ed}",
      "\N{U+00fa}ter\N{U+00fd}",
      "st\N{U+0159}eda",
      "\N{U+010d}tvrtek",
      "p\N{U+00e1}tek",
      "sobota",
      "ned\N{U+011b}le"
    ],
    era_abbreviated => [
      "p\N{U+0159}. n. l.",
      "n. l."
    ],
    era_narrow => [
      "p\N{U+0159}.n.l.",
      "n.l."
    ],
    era_wide => [
      "p\N{U+0159}. n. l.",
      "n. l."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Czech",
    month_format_abbreviated => [
      "led",
      "\N{U+00fa}no",
      "b\N{U+0159}e",
      "dub",
      "kv\N{U+011b}",
      "\N{U+010d}vn",
      "\N{U+010d}vc",
      "srp",
      "z\N{U+00e1}\N{U+0159}",
      "\N{U+0159}\N{U+00ed}j",
      "lis",
      "pro"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "ledna",
      "\N{U+00fa}nora",
      "b\N{U+0159}ezna",
      "dubna",
      "kv\N{U+011b}tna",
      "\N{U+010d}ervna",
      "\N{U+010d}ervence",
      "srpna",
      "z\N{U+00e1}\N{U+0159}\N{U+00ed}",
      "\N{U+0159}\N{U+00ed}jna",
      "listopadu",
      "prosince"
    ],
    month_stand_alone_abbreviated => [
      "led",
      "\N{U+00fa}no",
      "b\N{U+0159}e",
      "dub",
      "kv\N{U+011b}",
      "\N{U+010d}vn",
      "\N{U+010d}vc",
      "srp",
      "z\N{U+00e1}\N{U+0159}",
      "\N{U+0159}\N{U+00ed}j",
      "lis",
      "pro"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "leden",
      "\N{U+00fa}nor",
      "b\N{U+0159}ezen",
      "duben",
      "kv\N{U+011b}ten",
      "\N{U+010d}erven",
      "\N{U+010d}ervenec",
      "srpen",
      "z\N{U+00e1}\N{U+0159}\N{U+00ed}",
      "\N{U+0159}\N{U+00ed}jen",
      "listopad",
      "prosinec"
    ],
    name => "Czech",
    native_language => "\N{U+010d}e\N{U+0161}tina",
    native_name => "\N{U+010d}e\N{U+0161}tina",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. \N{U+010d}tvrtlet\N{U+00ed}",
      "2. \N{U+010d}tvrtlet\N{U+00ed}",
      "3. \N{U+010d}tvrtlet\N{U+00ed}",
      "4. \N{U+010d}tvrtlet\N{U+00ed}"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. \N{U+010d}tvrtlet\N{U+00ed}",
      "2. \N{U+010d}tvrtlet\N{U+00ed}",
      "3. \N{U+010d}tvrtlet\N{U+00ed}",
      "4. \N{U+010d}tvrtlet\N{U+00ed}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "H:mm:ss zzzz",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ cs-CZ ]__
  {
    am_pm_abbreviated => [
      "dop.",
      "odp."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E H:mm",
      EHms => "E H:mm:ss",
      Ed => "E d.",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "LLLL y G",
      GyMMMEd => "E d. M. y G",
      GyMMMMEd => "E d. MMMM y G",
      GyMMMMd => "d. MMMM y G",
      GyMMMd => "d. M. y G",
      H => "H",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E d. M.",
      MMM => "LLL",
      MMMEd => "E d. M.",
      MMMMEd => "E d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. M.",
      Md => "d. M.",
      d => "d.",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d. M. y",
      yMMM => "LLLL y",
      yMMMEd => "E d. M. y",
      yMMMM => "LLLL y",
      yMMMMEd => "E d. MMMM y",
      yMMMMd => "d. MMMM y",
      yMMMd => "d. M. y",
      yMd => "d. M. y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "cs-CZ",
    date_format_full => "EEEE d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "d. M. y",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "po",
      "\N{U+00fa}t",
      "st",
      "\N{U+010d}t",
      "p\N{U+00e1}",
      "so",
      "ne"
    ],
    day_format_narrow => [
      "P",
      "\N{U+00da}",
      "S",
      "\N{U+010c}",
      "P",
      "S",
      "N"
    ],
    day_format_wide => [
      "pond\N{U+011b}l\N{U+00ed}",
      "\N{U+00fa}ter\N{U+00fd}",
      "st\N{U+0159}eda",
      "\N{U+010d}tvrtek",
      "p\N{U+00e1}tek",
      "sobota",
      "ned\N{U+011b}le"
    ],
    day_stand_alone_abbreviated => [
      "po",
      "\N{U+00fa}t",
      "st",
      "\N{U+010d}t",
      "p\N{U+00e1}",
      "so",
      "ne"
    ],
    day_stand_alone_narrow => [
      "P",
      "\N{U+00da}",
      "S",
      "\N{U+010c}",
      "P",
      "S",
      "N"
    ],
    day_stand_alone_wide => [
      "pond\N{U+011b}l\N{U+00ed}",
      "\N{U+00fa}ter\N{U+00fd}",
      "st\N{U+0159}eda",
      "\N{U+010d}tvrtek",
      "p\N{U+00e1}tek",
      "sobota",
      "ned\N{U+011b}le"
    ],
    era_abbreviated => [
      "p\N{U+0159}. n. l.",
      "n. l."
    ],
    era_narrow => [
      "p\N{U+0159}.n.l.",
      "n.l."
    ],
    era_wide => [
      "p\N{U+0159}. n. l.",
      "n. l."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%-d.%-m.%Y",
    glibc_datetime_format => "%a\240%-d.\240%B\240%Y,\240%H:%M:%S\240%Z",
    glibc_time_12_format => "%I:%M:%S",
    glibc_time_format => "%H:%M:%S",
    language => "Czech",
    month_format_abbreviated => [
      "led",
      "\N{U+00fa}no",
      "b\N{U+0159}e",
      "dub",
      "kv\N{U+011b}",
      "\N{U+010d}vn",
      "\N{U+010d}vc",
      "srp",
      "z\N{U+00e1}\N{U+0159}",
      "\N{U+0159}\N{U+00ed}j",
      "lis",
      "pro"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "ledna",
      "\N{U+00fa}nora",
      "b\N{U+0159}ezna",
      "dubna",
      "kv\N{U+011b}tna",
      "\N{U+010d}ervna",
      "\N{U+010d}ervence",
      "srpna",
      "z\N{U+00e1}\N{U+0159}\N{U+00ed}",
      "\N{U+0159}\N{U+00ed}jna",
      "listopadu",
      "prosince"
    ],
    month_stand_alone_abbreviated => [
      "led",
      "\N{U+00fa}no",
      "b\N{U+0159}e",
      "dub",
      "kv\N{U+011b}",
      "\N{U+010d}vn",
      "\N{U+010d}vc",
      "srp",
      "z\N{U+00e1}\N{U+0159}",
      "\N{U+0159}\N{U+00ed}j",
      "lis",
      "pro"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "leden",
      "\N{U+00fa}nor",
      "b\N{U+0159}ezen",
      "duben",
      "kv\N{U+011b}ten",
      "\N{U+010d}erven",
      "\N{U+010d}ervenec",
      "srpen",
      "z\N{U+00e1}\N{U+0159}\N{U+00ed}",
      "\N{U+0159}\N{U+00ed}jen",
      "listopad",
      "prosinec"
    ],
    name => "Czech Czech Republic",
    native_language => "\N{U+010d}e\N{U+0161}tina",
    native_name => "\N{U+010d}e\N{U+0161}tina \N{U+010c}esk\N{U+00e1} republika",
    native_script => undef,
    native_territory => "\N{U+010c}esk\N{U+00e1} republika",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. \N{U+010d}tvrtlet\N{U+00ed}",
      "2. \N{U+010d}tvrtlet\N{U+00ed}",
      "3. \N{U+010d}tvrtlet\N{U+00ed}",
      "4. \N{U+010d}tvrtlet\N{U+00ed}"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. \N{U+010d}tvrtlet\N{U+00ed}",
      "2. \N{U+010d}tvrtlet\N{U+00ed}",
      "3. \N{U+010d}tvrtlet\N{U+00ed}",
      "4. \N{U+010d}tvrtlet\N{U+00ed}"
    ],
    script => undef,
    territory => "Czech Republic",
    time_format_full => "H:mm:ss zzzz",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ cu ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "cu",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Church Slavic",
    month_format_abbreviated => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_stand_alone_abbreviated => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    name => "Church Slavic",
    native_language => "cu",
    native_name => "cu",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ cu-RU ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "cu-RU",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Church Slavic",
    month_format_abbreviated => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_stand_alone_abbreviated => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    name => "Church Slavic Russia",
    native_language => "cu",
    native_name => "cu RU",
    native_script => undef,
    native_territory => "RU",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "Russia",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ cy ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQ => "Q y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "cy",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} 'am' {0}",
    datetime_format_long => "{1} 'am' {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Llun",
      "Maw",
      "Mer",
      "Iau",
      "Gwen",
      "Sad",
      "Sul"
    ],
    day_format_narrow => [
      "Ll",
      "M",
      "M",
      "I",
      "G",
      "S",
      "S"
    ],
    day_format_wide => [
      "Dydd Llun",
      "Dydd Mawrth",
      "Dydd Mercher",
      "Dydd Iau",
      "Dydd Gwener",
      "Dydd Sadwrn",
      "Dydd Sul"
    ],
    day_stand_alone_abbreviated => [
      "Llun",
      "Maw",
      "Mer",
      "Iau",
      "Gwe",
      "Sad",
      "Sul"
    ],
    day_stand_alone_narrow => [
      "Ll",
      "M",
      "M",
      "I",
      "G",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Dydd Llun",
      "Dydd Mawrth",
      "Dydd Mercher",
      "Dydd Iau",
      "Dydd Gwener",
      "Dydd Sadwrn",
      "Dydd Sul"
    ],
    era_abbreviated => [
      "CC",
      "OC"
    ],
    era_narrow => [
      "C",
      "O"
    ],
    era_wide => [
      "Cyn Crist",
      "Oed Crist"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Welsh",
    month_format_abbreviated => [
      "Ion",
      "Chwef",
      "Maw",
      "Ebrill",
      "Mai",
      "Meh",
      "Gorff",
      "Awst",
      "Medi",
      "Hyd",
      "Tach",
      "Rhag"
    ],
    month_format_narrow => [
      "I",
      "Ch",
      "M",
      "E",
      "M",
      "M",
      "G",
      "A",
      "M",
      "H",
      "T",
      "Rh"
    ],
    month_format_wide => [
      "Ionawr",
      "Chwefror",
      "Mawrth",
      "Ebrill",
      "Mai",
      "Mehefin",
      "Gorffennaf",
      "Awst",
      "Medi",
      "Hydref",
      "Tachwedd",
      "Rhagfyr"
    ],
    month_stand_alone_abbreviated => [
      "Ion",
      "Chw",
      "Maw",
      "Ebr",
      "Mai",
      "Meh",
      "Gor",
      "Awst",
      "Medi",
      "Hyd",
      "Tach",
      "Rhag"
    ],
    month_stand_alone_narrow => [
      "I",
      "Ch",
      "M",
      "E",
      "M",
      "M",
      "G",
      "A",
      "M",
      "H",
      "T",
      "Rh"
    ],
    month_stand_alone_wide => [
      "Ionawr",
      "Chwefror",
      "Mawrth",
      "Ebrill",
      "Mai",
      "Mehefin",
      "Gorffennaf",
      "Awst",
      "Medi",
      "Hydref",
      "Tachwedd",
      "Rhagfyr"
    ],
    name => "Welsh",
    native_language => "Cymraeg",
    native_name => "Cymraeg",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Ch1",
      "Ch2",
      "Ch3",
      "Ch4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "chwarter 1af",
      "2il chwarter",
      "3ydd chwarter",
      "4ydd chwarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Ch1",
      "Ch2",
      "Ch3",
      "Ch4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "chwarter 1af",
      "2il chwarter",
      "3ydd chwarter",
      "4ydd chwarter"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ cy-GB ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQ => "Q y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "cy-GB",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} 'am' {0}",
    datetime_format_long => "{1} 'am' {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Llun",
      "Maw",
      "Mer",
      "Iau",
      "Gwen",
      "Sad",
      "Sul"
    ],
    day_format_narrow => [
      "Ll",
      "M",
      "M",
      "I",
      "G",
      "S",
      "S"
    ],
    day_format_wide => [
      "Dydd Llun",
      "Dydd Mawrth",
      "Dydd Mercher",
      "Dydd Iau",
      "Dydd Gwener",
      "Dydd Sadwrn",
      "Dydd Sul"
    ],
    day_stand_alone_abbreviated => [
      "Llun",
      "Maw",
      "Mer",
      "Iau",
      "Gwe",
      "Sad",
      "Sul"
    ],
    day_stand_alone_narrow => [
      "Ll",
      "M",
      "M",
      "I",
      "G",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Dydd Llun",
      "Dydd Mawrth",
      "Dydd Mercher",
      "Dydd Iau",
      "Dydd Gwener",
      "Dydd Sadwrn",
      "Dydd Sul"
    ],
    era_abbreviated => [
      "CC",
      "OC"
    ],
    era_narrow => [
      "C",
      "O"
    ],
    era_wide => [
      "Cyn Crist",
      "Oed Crist"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %e %b %H:%M:%S %Z %Y",
    glibc_date_format => "%d.%m.%y",
    glibc_datetime_format => "Dydd %A %d <U006d>is %B %Y %T %Z",
    glibc_time_12_format => "%l:%M:%S %P %Z",
    glibc_time_format => "%T",
    language => "Welsh",
    month_format_abbreviated => [
      "Ion",
      "Chwef",
      "Maw",
      "Ebrill",
      "Mai",
      "Meh",
      "Gorff",
      "Awst",
      "Medi",
      "Hyd",
      "Tach",
      "Rhag"
    ],
    month_format_narrow => [
      "I",
      "Ch",
      "M",
      "E",
      "M",
      "M",
      "G",
      "A",
      "M",
      "H",
      "T",
      "Rh"
    ],
    month_format_wide => [
      "Ionawr",
      "Chwefror",
      "Mawrth",
      "Ebrill",
      "Mai",
      "Mehefin",
      "Gorffennaf",
      "Awst",
      "Medi",
      "Hydref",
      "Tachwedd",
      "Rhagfyr"
    ],
    month_stand_alone_abbreviated => [
      "Ion",
      "Chw",
      "Maw",
      "Ebr",
      "Mai",
      "Meh",
      "Gor",
      "Awst",
      "Medi",
      "Hyd",
      "Tach",
      "Rhag"
    ],
    month_stand_alone_narrow => [
      "I",
      "Ch",
      "M",
      "E",
      "M",
      "M",
      "G",
      "A",
      "M",
      "H",
      "T",
      "Rh"
    ],
    month_stand_alone_wide => [
      "Ionawr",
      "Chwefror",
      "Mawrth",
      "Ebrill",
      "Mai",
      "Mehefin",
      "Gorffennaf",
      "Awst",
      "Medi",
      "Hydref",
      "Tachwedd",
      "Rhagfyr"
    ],
    name => "Welsh United Kingdom",
    native_language => "Cymraeg",
    native_name => "Cymraeg Y Deyrnas Unedig",
    native_script => undef,
    native_territory => "Y Deyrnas Unedig",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Ch1",
      "Ch2",
      "Ch3",
      "Ch4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "chwarter 1af",
      "2il chwarter",
      "3ydd chwarter",
      "4ydd chwarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Ch1",
      "Ch2",
      "Ch3",
      "Ch4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "chwarter 1af",
      "2il chwarter",
      "3ydd chwarter",
      "4ydd chwarter"
    ],
    script => undef,
    territory => "United Kingdom",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ da ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH.mm",
      EHms => "E HH.mm.ss",
      Ed => "E 'den' d.",
      Ehm => "E h.mm a",
      Ehms => "E h.mm.ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d. MMM y G",
      GyMMMd => "d. MMM y G",
      H => "HH",
      Hm => "HH.mm",
      Hms => "HH.mm.ss",
      Hmsv => "HH.mm.ss v",
      Hmv => "HH.mm v",
      M => "M",
      MEd => "E d/M",
      MMM => "MMM",
      MMMEd => "E d. MMM",
      MMMMEd => "E d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d.",
      h => "h a",
      hm => "h.mm a",
      hms => "h.mm.ss a",
      hmsv => "h.mm.ss a v",
      hmv => "h.mm a v",
      ms => "mm.ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d. MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d. MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "da",
    date_format_full => "EEEE 'den' d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "d. MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'kl'. {0}",
    datetime_format_long => "{1} 'kl'. {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "man.",
      "tir.",
      "ons.",
      "tor.",
      "fre.",
      "l\N{U+00f8}r.",
      "s\N{U+00f8}n."
    ],
    day_format_narrow => [
      "M",
      "T",
      "O",
      "T",
      "F",
      "L",
      "S"
    ],
    day_format_wide => [
      "mandag",
      "tirsdag",
      "onsdag",
      "torsdag",
      "fredag",
      "l\N{U+00f8}rdag",
      "s\N{U+00f8}ndag"
    ],
    day_stand_alone_abbreviated => [
      "man",
      "tir",
      "ons",
      "tor",
      "fre",
      "l\N{U+00f8}r",
      "s\N{U+00f8}n"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "O",
      "T",
      "F",
      "L",
      "S"
    ],
    day_stand_alone_wide => [
      "mandag",
      "tirsdag",
      "onsdag",
      "torsdag",
      "fredag",
      "l\N{U+00f8}rdag",
      "s\N{U+00f8}ndag"
    ],
    era_abbreviated => [
      "f.Kr.",
      "e.Kr."
    ],
    era_narrow => [
      "fKr",
      "eKr"
    ],
    era_wide => [
      "f.Kr.",
      "e.Kr."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Danish",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "mar.",
      "apr.",
      "maj",
      "jun.",
      "jul.",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "januar",
      "februar",
      "marts",
      "april",
      "maj",
      "juni",
      "juli",
      "august",
      "september",
      "oktober",
      "november",
      "december"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "maj",
      "jun",
      "jul",
      "aug",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "januar",
      "februar",
      "marts",
      "april",
      "maj",
      "juni",
      "juli",
      "august",
      "september",
      "oktober",
      "november",
      "december"
    ],
    name => "Danish",
    native_language => "dansk",
    native_name => "dansk",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "1. kvt.",
      "2. kvt.",
      "3. kvt.",
      "4. kvt."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. kvartal",
      "2. kvartal",
      "3. kvartal",
      "4. kvartal"
    ],
    quarter_stand_alone_abbreviated => [
      "1. kvt.",
      "2. kvt.",
      "3. kvt.",
      "4. kvt."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. kvartal",
      "2. kvartal",
      "3. kvartal",
      "4. kvartal"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH.mm.ss zzzz",
    time_format_long => "HH.mm.ss z",
    time_format_medium => "HH.mm.ss",
    time_format_short => "HH.mm",
    variant => undef,
    version => 28
  }
  __[ da-DK ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH.mm",
      EHms => "E HH.mm.ss",
      Ed => "E 'den' d.",
      Ehm => "E h.mm a",
      Ehms => "E h.mm.ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d. MMM y G",
      GyMMMd => "d. MMM y G",
      H => "HH",
      Hm => "HH.mm",
      Hms => "HH.mm.ss",
      Hmsv => "HH.mm.ss v",
      Hmv => "HH.mm v",
      M => "M",
      MEd => "E d/M",
      MMM => "MMM",
      MMMEd => "E d. MMM",
      MMMMEd => "E d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d.",
      h => "h a",
      hm => "h.mm a",
      hms => "h.mm.ss a",
      hmsv => "h.mm.ss a v",
      hmv => "h.mm a v",
      ms => "mm.ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d. MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d. MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "da-DK",
    date_format_full => "EEEE 'den' d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "d. MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'kl'. {0}",
    datetime_format_long => "{1} 'kl'. {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "man.",
      "tir.",
      "ons.",
      "tor.",
      "fre.",
      "l\N{U+00f8}r.",
      "s\N{U+00f8}n."
    ],
    day_format_narrow => [
      "M",
      "T",
      "O",
      "T",
      "F",
      "L",
      "S"
    ],
    day_format_wide => [
      "mandag",
      "tirsdag",
      "onsdag",
      "torsdag",
      "fredag",
      "l\N{U+00f8}rdag",
      "s\N{U+00f8}ndag"
    ],
    day_stand_alone_abbreviated => [
      "man",
      "tir",
      "ons",
      "tor",
      "fre",
      "l\N{U+00f8}r",
      "s\N{U+00f8}n"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "O",
      "T",
      "F",
      "L",
      "S"
    ],
    day_stand_alone_wide => [
      "mandag",
      "tirsdag",
      "onsdag",
      "torsdag",
      "fredag",
      "l\N{U+00f8}rdag",
      "s\N{U+00f8}ndag"
    ],
    era_abbreviated => [
      "f.Kr.",
      "e.Kr."
    ],
    era_narrow => [
      "fKr",
      "eKr"
    ],
    era_wide => [
      "f.Kr.",
      "e.Kr."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d-%m-%Y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Danish",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "mar.",
      "apr.",
      "maj",
      "jun.",
      "jul.",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "januar",
      "februar",
      "marts",
      "april",
      "maj",
      "juni",
      "juli",
      "august",
      "september",
      "oktober",
      "november",
      "december"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "maj",
      "jun",
      "jul",
      "aug",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "januar",
      "februar",
      "marts",
      "april",
      "maj",
      "juni",
      "juli",
      "august",
      "september",
      "oktober",
      "november",
      "december"
    ],
    name => "Danish Denmark",
    native_language => "dansk",
    native_name => "dansk Danmark",
    native_script => undef,
    native_territory => "Danmark",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1. kvt.",
      "2. kvt.",
      "3. kvt.",
      "4. kvt."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. kvartal",
      "2. kvartal",
      "3. kvartal",
      "4. kvartal"
    ],
    quarter_stand_alone_abbreviated => [
      "1. kvt.",
      "2. kvt.",
      "3. kvt.",
      "4. kvt."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. kvartal",
      "2. kvartal",
      "3. kvartal",
      "4. kvartal"
    ],
    script => undef,
    territory => "Denmark",
    time_format_full => "HH.mm.ss zzzz",
    time_format_long => "HH.mm.ss z",
    time_format_medium => "HH.mm.ss",
    time_format_short => "HH.mm",
    variant => undef,
    version => 28
  }
  __[ da-GL ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH.mm",
      EHms => "E HH.mm.ss",
      Ed => "E 'den' d.",
      Ehm => "E h.mm a",
      Ehms => "E h.mm.ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d. MMM y G",
      GyMMMd => "d. MMM y G",
      H => "HH",
      Hm => "HH.mm",
      Hms => "HH.mm.ss",
      Hmsv => "HH.mm.ss v",
      Hmv => "HH.mm v",
      M => "M",
      MEd => "E d/M",
      MMM => "MMM",
      MMMEd => "E d. MMM",
      MMMMEd => "E d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d.",
      h => "h a",
      hm => "h.mm a",
      hms => "h.mm.ss a",
      hmsv => "h.mm.ss a v",
      hmv => "h.mm a v",
      ms => "mm.ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d. MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d. MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "da-GL",
    date_format_full => "EEEE 'den' d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "d. MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'kl'. {0}",
    datetime_format_long => "{1} 'kl'. {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "man.",
      "tir.",
      "ons.",
      "tor.",
      "fre.",
      "l\N{U+00f8}r.",
      "s\N{U+00f8}n."
    ],
    day_format_narrow => [
      "M",
      "T",
      "O",
      "T",
      "F",
      "L",
      "S"
    ],
    day_format_wide => [
      "mandag",
      "tirsdag",
      "onsdag",
      "torsdag",
      "fredag",
      "l\N{U+00f8}rdag",
      "s\N{U+00f8}ndag"
    ],
    day_stand_alone_abbreviated => [
      "man",
      "tir",
      "ons",
      "tor",
      "fre",
      "l\N{U+00f8}r",
      "s\N{U+00f8}n"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "O",
      "T",
      "F",
      "L",
      "S"
    ],
    day_stand_alone_wide => [
      "mandag",
      "tirsdag",
      "onsdag",
      "torsdag",
      "fredag",
      "l\N{U+00f8}rdag",
      "s\N{U+00f8}ndag"
    ],
    era_abbreviated => [
      "f.Kr.",
      "e.Kr."
    ],
    era_narrow => [
      "fKr",
      "eKr"
    ],
    era_wide => [
      "f.Kr.",
      "e.Kr."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Danish",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "mar.",
      "apr.",
      "maj",
      "jun.",
      "jul.",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "januar",
      "februar",
      "marts",
      "april",
      "maj",
      "juni",
      "juli",
      "august",
      "september",
      "oktober",
      "november",
      "december"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "maj",
      "jun",
      "jul",
      "aug",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "januar",
      "februar",
      "marts",
      "april",
      "maj",
      "juni",
      "juli",
      "august",
      "september",
      "oktober",
      "november",
      "december"
    ],
    name => "Danish Greenland",
    native_language => "dansk",
    native_name => "dansk Gr\N{U+00f8}nland",
    native_script => undef,
    native_territory => "Gr\N{U+00f8}nland",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1. kvt.",
      "2. kvt.",
      "3. kvt.",
      "4. kvt."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. kvartal",
      "2. kvartal",
      "3. kvartal",
      "4. kvartal"
    ],
    quarter_stand_alone_abbreviated => [
      "1. kvt.",
      "2. kvt.",
      "3. kvt.",
      "4. kvt."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. kvartal",
      "2. kvartal",
      "3. kvartal",
      "4. kvartal"
    ],
    script => undef,
    territory => "Greenland",
    time_format_full => "h.mm.ss a zzzz",
    time_format_long => "h.mm.ss a z",
    time_format_medium => "h.mm.ss a",
    time_format_short => "h.mm a",
    variant => undef,
    version => 28
  }
  __[ dav ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "dav",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Jim",
      "Kaw",
      "Kad",
      "Kan",
      "Kas",
      "Ngu",
      "Jum"
    ],
    day_format_narrow => [
      "J",
      "K",
      "K",
      "K",
      "K",
      "N",
      "J"
    ],
    day_format_wide => [
      "Kuramuka jimweri",
      "Kuramuka kawi",
      "Kuramuka kadadu",
      "Kuramuka kana",
      "Kuramuka kasanu",
      "Kifula nguwo",
      "Ituku ja jumwa"
    ],
    day_stand_alone_abbreviated => [
      "Jim",
      "Kaw",
      "Kad",
      "Kan",
      "Kas",
      "Ngu",
      "Jum"
    ],
    day_stand_alone_narrow => [
      "J",
      "K",
      "K",
      "K",
      "K",
      "N",
      "J"
    ],
    day_stand_alone_wide => [
      "Kuramuka jimweri",
      "Kuramuka kawi",
      "Kuramuka kadadu",
      "Kuramuka kana",
      "Kuramuka kasanu",
      "Kifula nguwo",
      "Ituku ja jumwa"
    ],
    era_abbreviated => [
      "KK",
      "BK"
    ],
    era_narrow => [
      "KK",
      "BK"
    ],
    era_wide => [
      "Kabla ya Kristo",
      "Baada ya Kristo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Taita",
    month_format_abbreviated => [
      "Imb",
      "Kaw",
      "Kad",
      "Kan",
      "Kas",
      "Kar",
      "Mfu",
      "Wun",
      "Ike",
      "Iku",
      "Imw",
      "Iwi"
    ],
    month_format_narrow => [
      "I",
      "K",
      "K",
      "K",
      "K",
      "K",
      "M",
      "W",
      "I",
      "I",
      "I",
      "I"
    ],
    month_format_wide => [
      "Mori ghwa imbiri",
      "Mori ghwa kawi",
      "Mori ghwa kadadu",
      "Mori ghwa kana",
      "Mori ghwa kasanu",
      "Mori ghwa karandadu",
      "Mori ghwa mfungade",
      "Mori ghwa wunyanya",
      "Mori ghwa ikenda",
      "Mori ghwa ikumi",
      "Mori ghwa ikumi na imweri",
      "Mori ghwa ikumi na iwi"
    ],
    month_stand_alone_abbreviated => [
      "Imb",
      "Kaw",
      "Kad",
      "Kan",
      "Kas",
      "Kar",
      "Mfu",
      "Wun",
      "Ike",
      "Iku",
      "Imw",
      "Iwi"
    ],
    month_stand_alone_narrow => [
      "I",
      "K",
      "K",
      "K",
      "K",
      "K",
      "M",
      "W",
      "I",
      "I",
      "I",
      "I"
    ],
    month_stand_alone_wide => [
      "Mori ghwa imbiri",
      "Mori ghwa kawi",
      "Mori ghwa kadadu",
      "Mori ghwa kana",
      "Mori ghwa kasanu",
      "Mori ghwa karandadu",
      "Mori ghwa mfungade",
      "Mori ghwa wunyanya",
      "Mori ghwa ikenda",
      "Mori ghwa ikumi",
      "Mori ghwa ikumi na imweri",
      "Mori ghwa ikumi na iwi"
    ],
    name => "Taita",
    native_language => "Kitaita",
    native_name => "Kitaita",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Kimu cha imbiri",
      "Kimu cha kawi",
      "Kimu cha kadadu",
      "Kimu cha kana"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Kimu cha imbiri",
      "Kimu cha kawi",
      "Kimu cha kadadu",
      "Kimu cha kana"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ dav-KE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "dav-KE",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Jim",
      "Kaw",
      "Kad",
      "Kan",
      "Kas",
      "Ngu",
      "Jum"
    ],
    day_format_narrow => [
      "J",
      "K",
      "K",
      "K",
      "K",
      "N",
      "J"
    ],
    day_format_wide => [
      "Kuramuka jimweri",
      "Kuramuka kawi",
      "Kuramuka kadadu",
      "Kuramuka kana",
      "Kuramuka kasanu",
      "Kifula nguwo",
      "Ituku ja jumwa"
    ],
    day_stand_alone_abbreviated => [
      "Jim",
      "Kaw",
      "Kad",
      "Kan",
      "Kas",
      "Ngu",
      "Jum"
    ],
    day_stand_alone_narrow => [
      "J",
      "K",
      "K",
      "K",
      "K",
      "N",
      "J"
    ],
    day_stand_alone_wide => [
      "Kuramuka jimweri",
      "Kuramuka kawi",
      "Kuramuka kadadu",
      "Kuramuka kana",
      "Kuramuka kasanu",
      "Kifula nguwo",
      "Ituku ja jumwa"
    ],
    era_abbreviated => [
      "KK",
      "BK"
    ],
    era_narrow => [
      "KK",
      "BK"
    ],
    era_wide => [
      "Kabla ya Kristo",
      "Baada ya Kristo"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Taita",
    month_format_abbreviated => [
      "Imb",
      "Kaw",
      "Kad",
      "Kan",
      "Kas",
      "Kar",
      "Mfu",
      "Wun",
      "Ike",
      "Iku",
      "Imw",
      "Iwi"
    ],
    month_format_narrow => [
      "I",
      "K",
      "K",
      "K",
      "K",
      "K",
      "M",
      "W",
      "I",
      "I",
      "I",
      "I"
    ],
    month_format_wide => [
      "Mori ghwa imbiri",
      "Mori ghwa kawi",
      "Mori ghwa kadadu",
      "Mori ghwa kana",
      "Mori ghwa kasanu",
      "Mori ghwa karandadu",
      "Mori ghwa mfungade",
      "Mori ghwa wunyanya",
      "Mori ghwa ikenda",
      "Mori ghwa ikumi",
      "Mori ghwa ikumi na imweri",
      "Mori ghwa ikumi na iwi"
    ],
    month_stand_alone_abbreviated => [
      "Imb",
      "Kaw",
      "Kad",
      "Kan",
      "Kas",
      "Kar",
      "Mfu",
      "Wun",
      "Ike",
      "Iku",
      "Imw",
      "Iwi"
    ],
    month_stand_alone_narrow => [
      "I",
      "K",
      "K",
      "K",
      "K",
      "K",
      "M",
      "W",
      "I",
      "I",
      "I",
      "I"
    ],
    month_stand_alone_wide => [
      "Mori ghwa imbiri",
      "Mori ghwa kawi",
      "Mori ghwa kadadu",
      "Mori ghwa kana",
      "Mori ghwa kasanu",
      "Mori ghwa karandadu",
      "Mori ghwa mfungade",
      "Mori ghwa wunyanya",
      "Mori ghwa ikenda",
      "Mori ghwa ikumi",
      "Mori ghwa ikumi na imweri",
      "Mori ghwa ikumi na iwi"
    ],
    name => "Taita Kenya",
    native_language => "Kitaita",
    native_name => "Kitaita Kenya",
    native_script => undef,
    native_territory => "Kenya",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Kimu cha imbiri",
      "Kimu cha kawi",
      "Kimu cha kadadu",
      "Kimu cha kana"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Kimu cha imbiri",
      "Kimu cha kawi",
      "Kimu cha kadadu",
      "Kimu cha kana"
    ],
    script => undef,
    territory => "Kenya",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ de ]__
  {
    am_pm_abbreviated => [
      "vorm.",
      "nachm."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d.",
      Ehm => "E h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d. MMM y G",
      GyMMMd => "d. MMM y G",
      H => "HH 'Uhr'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E, d. MMM",
      MMMMEd => "E, d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMd => "d.MM.",
      MMdd => "dd.MM.",
      Md => "d.M.",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M.y",
      yMEd => "E, d.M.y",
      yMM => "MM.y",
      yMMM => "MMM y",
      yMMMEd => "E, d. MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d. MMM y",
      yMMdd => "dd.MM.y",
      yMd => "d.M.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "de",
    date_format_full => "EEEE, d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "dd.MM.y",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} 'um' {0}",
    datetime_format_long => "{1} 'um' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mo.",
      "Di.",
      "Mi.",
      "Do.",
      "Fr.",
      "Sa.",
      "So."
    ],
    day_format_narrow => [
      "M",
      "D",
      "M",
      "D",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Montag",
      "Dienstag",
      "Mittwoch",
      "Donnerstag",
      "Freitag",
      "Samstag",
      "Sonntag"
    ],
    day_stand_alone_abbreviated => [
      "Mo",
      "Di",
      "Mi",
      "Do",
      "Fr",
      "Sa",
      "So"
    ],
    day_stand_alone_narrow => [
      "M",
      "D",
      "M",
      "D",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Montag",
      "Dienstag",
      "Mittwoch",
      "Donnerstag",
      "Freitag",
      "Samstag",
      "Sonntag"
    ],
    era_abbreviated => [
      "v. Chr.",
      "n. Chr."
    ],
    era_narrow => [
      "v. Chr.",
      "n. Chr."
    ],
    era_wide => [
      "v. Chr.",
      "n. Chr."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "German",
    month_format_abbreviated => [
      "Jan.",
      "Feb.",
      "M\N{U+00e4}rz",
      "Apr.",
      "Mai",
      "Juni",
      "Juli",
      "Aug.",
      "Sep.",
      "Okt.",
      "Nov.",
      "Dez."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januar",
      "Februar",
      "M\N{U+00e4}rz",
      "April",
      "Mai",
      "Juni",
      "Juli",
      "August",
      "September",
      "Oktober",
      "November",
      "Dezember"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "M\N{U+00e4}r",
      "Apr",
      "Mai",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Okt",
      "Nov",
      "Dez"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januar",
      "Februar",
      "M\N{U+00e4}rz",
      "April",
      "Mai",
      "Juni",
      "Juli",
      "August",
      "September",
      "Oktober",
      "November",
      "Dezember"
    ],
    name => "German",
    native_language => "Deutsch",
    native_name => "Deutsch",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. Quartal",
      "2. Quartal",
      "3. Quartal",
      "4. Quartal"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. Quartal",
      "2. Quartal",
      "3. Quartal",
      "4. Quartal"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ de-AT ]__
  {
    am_pm_abbreviated => [
      "vorm.",
      "nachm."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d.",
      Ehm => "E h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d. MMM y G",
      GyMMMd => "d. MMM y G",
      H => "HH 'Uhr'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E, d. MMM",
      MMMMEd => "E, d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMd => "d.MM.",
      MMdd => "dd.MM.",
      Md => "d.M.",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M.y",
      yMEd => "E, d.M.y",
      yMM => "MM.y",
      yMMM => "MMM y",
      yMMMEd => "E, d. MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d. MMM y",
      yMMdd => "dd.MM.y",
      yMd => "d.M.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "de-AT",
    date_format_full => "EEEE, d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "dd.MM.y",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} 'um' {0}",
    datetime_format_long => "{1} 'um' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mo.",
      "Di.",
      "Mi.",
      "Do.",
      "Fr.",
      "Sa.",
      "So."
    ],
    day_format_narrow => [
      "M",
      "D",
      "M",
      "D",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Montag",
      "Dienstag",
      "Mittwoch",
      "Donnerstag",
      "Freitag",
      "Samstag",
      "Sonntag"
    ],
    day_stand_alone_abbreviated => [
      "Mo",
      "Di",
      "Mi",
      "Do",
      "Fr",
      "Sa",
      "So"
    ],
    day_stand_alone_narrow => [
      "M",
      "D",
      "M",
      "D",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Montag",
      "Dienstag",
      "Mittwoch",
      "Donnerstag",
      "Freitag",
      "Samstag",
      "Sonntag"
    ],
    era_abbreviated => [
      "v. Chr.",
      "n. Chr."
    ],
    era_narrow => [
      "v. Chr.",
      "n. Chr."
    ],
    era_wide => [
      "v. Chr.",
      "n. Chr."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%Y-%m-%d",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "German",
    month_format_abbreviated => [
      "J\N{U+00e4}n.",
      "Feb.",
      "M\N{U+00e4}rz",
      "Apr.",
      "Mai",
      "Juni",
      "Juli",
      "Aug.",
      "Sep.",
      "Okt.",
      "Nov.",
      "Dez."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "J\N{U+00e4}nner",
      "Februar",
      "M\N{U+00e4}rz",
      "April",
      "Mai",
      "Juni",
      "Juli",
      "August",
      "September",
      "Oktober",
      "November",
      "Dezember"
    ],
    month_stand_alone_abbreviated => [
      "J\N{U+00e4}n",
      "Feb",
      "M\N{U+00e4}r",
      "Apr",
      "Mai",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Okt",
      "Nov",
      "Dez"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "J\N{U+00e4}nner",
      "Februar",
      "M\N{U+00e4}rz",
      "April",
      "Mai",
      "Juni",
      "Juli",
      "August",
      "September",
      "Oktober",
      "November",
      "Dezember"
    ],
    name => "German Austria",
    native_language => "Deutsch",
    native_name => "Deutsch \N{U+00d6}sterreich",
    native_script => undef,
    native_territory => "\N{U+00d6}sterreich",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. Quartal",
      "2. Quartal",
      "3. Quartal",
      "4. Quartal"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. Quartal",
      "2. Quartal",
      "3. Quartal",
      "4. Quartal"
    ],
    script => undef,
    territory => "Austria",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ de-BE ]__
  {
    am_pm_abbreviated => [
      "vorm.",
      "nachm."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d.",
      Ehm => "E h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d. MMM y G",
      GyMMMd => "d. MMM y G",
      H => "HH 'Uhr'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E, d. MMM",
      MMMMEd => "E, d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMd => "d.MM.",
      MMdd => "dd.MM.",
      Md => "d.M.",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M.y",
      yMEd => "E, d.M.y",
      yMM => "MM.y",
      yMMM => "MMM y",
      yMMMEd => "E, d. MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d. MMM y",
      yMMdd => "dd.MM.y",
      yMd => "d.M.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "de-BE",
    date_format_full => "EEEE, d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "dd.MM.y",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} 'um' {0}",
    datetime_format_long => "{1} 'um' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mo.",
      "Di.",
      "Mi.",
      "Do.",
      "Fr.",
      "Sa.",
      "So."
    ],
    day_format_narrow => [
      "M",
      "D",
      "M",
      "D",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Montag",
      "Dienstag",
      "Mittwoch",
      "Donnerstag",
      "Freitag",
      "Samstag",
      "Sonntag"
    ],
    day_stand_alone_abbreviated => [
      "Mo",
      "Di",
      "Mi",
      "Do",
      "Fr",
      "Sa",
      "So"
    ],
    day_stand_alone_narrow => [
      "M",
      "D",
      "M",
      "D",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Montag",
      "Dienstag",
      "Mittwoch",
      "Donnerstag",
      "Freitag",
      "Samstag",
      "Sonntag"
    ],
    era_abbreviated => [
      "v. Chr.",
      "n. Chr."
    ],
    era_narrow => [
      "v. Chr.",
      "n. Chr."
    ],
    era_wide => [
      "v. Chr.",
      "n. Chr."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%Y-%m-%d",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "German",
    month_format_abbreviated => [
      "Jan.",
      "Feb.",
      "M\N{U+00e4}rz",
      "Apr.",
      "Mai",
      "Juni",
      "Juli",
      "Aug.",
      "Sep.",
      "Okt.",
      "Nov.",
      "Dez."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januar",
      "Februar",
      "M\N{U+00e4}rz",
      "April",
      "Mai",
      "Juni",
      "Juli",
      "August",
      "September",
      "Oktober",
      "November",
      "Dezember"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "M\N{U+00e4}r",
      "Apr",
      "Mai",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Okt",
      "Nov",
      "Dez"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januar",
      "Februar",
      "M\N{U+00e4}rz",
      "April",
      "Mai",
      "Juni",
      "Juli",
      "August",
      "September",
      "Oktober",
      "November",
      "Dezember"
    ],
    name => "German Belgium",
    native_language => "Deutsch",
    native_name => "Deutsch Belgien",
    native_script => undef,
    native_territory => "Belgien",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. Quartal",
      "2. Quartal",
      "3. Quartal",
      "4. Quartal"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. Quartal",
      "2. Quartal",
      "3. Quartal",
      "4. Quartal"
    ],
    script => undef,
    territory => "Belgium",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ de-CH ]__
  {
    am_pm_abbreviated => [
      "vorm.",
      "nachm."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d.",
      Ehm => "E h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d. MMM y G",
      GyMMMd => "d. MMM y G",
      H => "HH 'Uhr'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E, d. MMM",
      MMMMEd => "E, d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMd => "d.MM.",
      MMdd => "dd.MM.",
      Md => "d.M.",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M.y",
      yMEd => "E, d.M.y",
      yMM => "MM.y",
      yMMM => "MMM y",
      yMMMEd => "E, d. MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d. MMM y",
      yMMdd => "dd.MM.y",
      yMd => "d.M.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "de-CH",
    date_format_full => "EEEE, d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "dd.MM.y",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} 'um' {0}",
    datetime_format_long => "{1} 'um' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mo.",
      "Di.",
      "Mi.",
      "Do.",
      "Fr.",
      "Sa.",
      "So."
    ],
    day_format_narrow => [
      "M",
      "D",
      "M",
      "D",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Montag",
      "Dienstag",
      "Mittwoch",
      "Donnerstag",
      "Freitag",
      "Samstag",
      "Sonntag"
    ],
    day_stand_alone_abbreviated => [
      "Mo",
      "Di",
      "Mi",
      "Do",
      "Fr",
      "Sa",
      "So"
    ],
    day_stand_alone_narrow => [
      "M",
      "D",
      "M",
      "D",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Montag",
      "Dienstag",
      "Mittwoch",
      "Donnerstag",
      "Freitag",
      "Samstag",
      "Sonntag"
    ],
    era_abbreviated => [
      "v. Chr.",
      "n. Chr."
    ],
    era_narrow => [
      "v. Chr.",
      "n. Chr."
    ],
    era_wide => [
      "v. Chr.",
      "n. Chr."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d.%m.%Y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "German",
    month_format_abbreviated => [
      "Jan.",
      "Feb.",
      "M\N{U+00e4}rz",
      "Apr.",
      "Mai",
      "Juni",
      "Juli",
      "Aug.",
      "Sep.",
      "Okt.",
      "Nov.",
      "Dez."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januar",
      "Februar",
      "M\N{U+00e4}rz",
      "April",
      "Mai",
      "Juni",
      "Juli",
      "August",
      "September",
      "Oktober",
      "November",
      "Dezember"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "M\N{U+00e4}r",
      "Apr",
      "Mai",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Okt",
      "Nov",
      "Dez"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januar",
      "Februar",
      "M\N{U+00e4}rz",
      "April",
      "Mai",
      "Juni",
      "Juli",
      "August",
      "September",
      "Oktober",
      "November",
      "Dezember"
    ],
    name => "German Switzerland",
    native_language => "Deutsch",
    native_name => "Deutsch Schweiz",
    native_script => undef,
    native_territory => "Schweiz",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. Quartal",
      "2. Quartal",
      "3. Quartal",
      "4. Quartal"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. Quartal",
      "2. Quartal",
      "3. Quartal",
      "4. Quartal"
    ],
    script => undef,
    territory => "Switzerland",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ de-DE ]__
  {
    am_pm_abbreviated => [
      "vorm.",
      "nachm."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d.",
      Ehm => "E h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d. MMM y G",
      GyMMMd => "d. MMM y G",
      H => "HH 'Uhr'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E, d. MMM",
      MMMMEd => "E, d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMd => "d.MM.",
      MMdd => "dd.MM.",
      Md => "d.M.",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M.y",
      yMEd => "E, d.M.y",
      yMM => "MM.y",
      yMMM => "MMM y",
      yMMMEd => "E, d. MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d. MMM y",
      yMMdd => "dd.MM.y",
      yMd => "d.M.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "de-DE",
    date_format_full => "EEEE, d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "dd.MM.y",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} 'um' {0}",
    datetime_format_long => "{1} 'um' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mo.",
      "Di.",
      "Mi.",
      "Do.",
      "Fr.",
      "Sa.",
      "So."
    ],
    day_format_narrow => [
      "M",
      "D",
      "M",
      "D",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Montag",
      "Dienstag",
      "Mittwoch",
      "Donnerstag",
      "Freitag",
      "Samstag",
      "Sonntag"
    ],
    day_stand_alone_abbreviated => [
      "Mo",
      "Di",
      "Mi",
      "Do",
      "Fr",
      "Sa",
      "So"
    ],
    day_stand_alone_narrow => [
      "M",
      "D",
      "M",
      "D",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Montag",
      "Dienstag",
      "Mittwoch",
      "Donnerstag",
      "Freitag",
      "Samstag",
      "Sonntag"
    ],
    era_abbreviated => [
      "v. Chr.",
      "n. Chr."
    ],
    era_narrow => [
      "v. Chr.",
      "n. Chr."
    ],
    era_wide => [
      "v. Chr.",
      "n. Chr."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %-d. %b %H:%M:%S %Z %Y",
    glibc_date_format => "%d.%m.%Y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "German",
    month_format_abbreviated => [
      "Jan.",
      "Feb.",
      "M\N{U+00e4}rz",
      "Apr.",
      "Mai",
      "Juni",
      "Juli",
      "Aug.",
      "Sep.",
      "Okt.",
      "Nov.",
      "Dez."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januar",
      "Februar",
      "M\N{U+00e4}rz",
      "April",
      "Mai",
      "Juni",
      "Juli",
      "August",
      "September",
      "Oktober",
      "November",
      "Dezember"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "M\N{U+00e4}r",
      "Apr",
      "Mai",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Okt",
      "Nov",
      "Dez"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januar",
      "Februar",
      "M\N{U+00e4}rz",
      "April",
      "Mai",
      "Juni",
      "Juli",
      "August",
      "September",
      "Oktober",
      "November",
      "Dezember"
    ],
    name => "German Germany",
    native_language => "Deutsch",
    native_name => "Deutsch Deutschland",
    native_script => undef,
    native_territory => "Deutschland",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. Quartal",
      "2. Quartal",
      "3. Quartal",
      "4. Quartal"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. Quartal",
      "2. Quartal",
      "3. Quartal",
      "4. Quartal"
    ],
    script => undef,
    territory => "Germany",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ de-LI ]__
  {
    am_pm_abbreviated => [
      "vorm.",
      "nachm."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d.",
      Ehm => "E h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d. MMM y G",
      GyMMMd => "d. MMM y G",
      H => "HH 'Uhr'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E, d. MMM",
      MMMMEd => "E, d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMd => "d.MM.",
      MMdd => "dd.MM.",
      Md => "d.M.",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M.y",
      yMEd => "E, d.M.y",
      yMM => "MM.y",
      yMMM => "MMM y",
      yMMMEd => "E, d. MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d. MMM y",
      yMMdd => "dd.MM.y",
      yMd => "d.M.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "de-LI",
    date_format_full => "EEEE, d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "dd.MM.y",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} 'um' {0}",
    datetime_format_long => "{1} 'um' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mo.",
      "Di.",
      "Mi.",
      "Do.",
      "Fr.",
      "Sa.",
      "So."
    ],
    day_format_narrow => [
      "M",
      "D",
      "M",
      "D",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Montag",
      "Dienstag",
      "Mittwoch",
      "Donnerstag",
      "Freitag",
      "Samstag",
      "Sonntag"
    ],
    day_stand_alone_abbreviated => [
      "Mo",
      "Di",
      "Mi",
      "Do",
      "Fr",
      "Sa",
      "So"
    ],
    day_stand_alone_narrow => [
      "M",
      "D",
      "M",
      "D",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Montag",
      "Dienstag",
      "Mittwoch",
      "Donnerstag",
      "Freitag",
      "Samstag",
      "Sonntag"
    ],
    era_abbreviated => [
      "v. Chr.",
      "n. Chr."
    ],
    era_narrow => [
      "v. Chr.",
      "n. Chr."
    ],
    era_wide => [
      "v. Chr.",
      "n. Chr."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "German",
    month_format_abbreviated => [
      "Jan.",
      "Feb.",
      "M\N{U+00e4}rz",
      "Apr.",
      "Mai",
      "Juni",
      "Juli",
      "Aug.",
      "Sep.",
      "Okt.",
      "Nov.",
      "Dez."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januar",
      "Februar",
      "M\N{U+00e4}rz",
      "April",
      "Mai",
      "Juni",
      "Juli",
      "August",
      "September",
      "Oktober",
      "November",
      "Dezember"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "M\N{U+00e4}r",
      "Apr",
      "Mai",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Okt",
      "Nov",
      "Dez"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januar",
      "Februar",
      "M\N{U+00e4}rz",
      "April",
      "Mai",
      "Juni",
      "Juli",
      "August",
      "September",
      "Oktober",
      "November",
      "Dezember"
    ],
    name => "German Liechtenstein",
    native_language => "Deutsch",
    native_name => "Deutsch Liechtenstein",
    native_script => undef,
    native_territory => "Liechtenstein",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. Quartal",
      "2. Quartal",
      "3. Quartal",
      "4. Quartal"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. Quartal",
      "2. Quartal",
      "3. Quartal",
      "4. Quartal"
    ],
    script => undef,
    territory => "Liechtenstein",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ de-LU ]__
  {
    am_pm_abbreviated => [
      "vorm.",
      "nachm."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d.",
      Ehm => "E h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d. MMM y G",
      GyMMMd => "d. MMM y G",
      H => "HH 'Uhr'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E, d. MMM",
      MMMMEd => "E, d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMd => "d.MM.",
      MMdd => "dd.MM.",
      Md => "d.M.",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M.y",
      yMEd => "E, d.M.y",
      yMM => "MM.y",
      yMMM => "MMM y",
      yMMMEd => "E, d. MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d. MMM y",
      yMMdd => "dd.MM.y",
      yMd => "d.M.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "de-LU",
    date_format_full => "EEEE, d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "dd.MM.y",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} 'um' {0}",
    datetime_format_long => "{1} 'um' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mo.",
      "Di.",
      "Mi.",
      "Do.",
      "Fr.",
      "Sa.",
      "So."
    ],
    day_format_narrow => [
      "M",
      "D",
      "M",
      "D",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Montag",
      "Dienstag",
      "Mittwoch",
      "Donnerstag",
      "Freitag",
      "Samstag",
      "Sonntag"
    ],
    day_stand_alone_abbreviated => [
      "Mo",
      "Di",
      "Mi",
      "Do",
      "Fr",
      "Sa",
      "So"
    ],
    day_stand_alone_narrow => [
      "M",
      "D",
      "M",
      "D",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Montag",
      "Dienstag",
      "Mittwoch",
      "Donnerstag",
      "Freitag",
      "Samstag",
      "Sonntag"
    ],
    era_abbreviated => [
      "v. Chr.",
      "n. Chr."
    ],
    era_narrow => [
      "v. Chr.",
      "n. Chr."
    ],
    era_wide => [
      "v. Chr.",
      "n. Chr."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%Y-%m-%d",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "German",
    month_format_abbreviated => [
      "Jan.",
      "Feb.",
      "M\N{U+00e4}rz",
      "Apr.",
      "Mai",
      "Juni",
      "Juli",
      "Aug.",
      "Sep.",
      "Okt.",
      "Nov.",
      "Dez."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januar",
      "Februar",
      "M\N{U+00e4}rz",
      "April",
      "Mai",
      "Juni",
      "Juli",
      "August",
      "September",
      "Oktober",
      "November",
      "Dezember"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "M\N{U+00e4}r",
      "Apr",
      "Mai",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Okt",
      "Nov",
      "Dez"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januar",
      "Februar",
      "M\N{U+00e4}rz",
      "April",
      "Mai",
      "Juni",
      "Juli",
      "August",
      "September",
      "Oktober",
      "November",
      "Dezember"
    ],
    name => "German Luxembourg",
    native_language => "Deutsch",
    native_name => "Deutsch Luxemburg",
    native_script => undef,
    native_territory => "Luxemburg",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. Quartal",
      "2. Quartal",
      "3. Quartal",
      "4. Quartal"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. Quartal",
      "2. Quartal",
      "3. Quartal",
      "4. Quartal"
    ],
    script => undef,
    territory => "Luxembourg",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ dje ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "dje",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Ati",
      "Ata",
      "Ala",
      "Alm",
      "Alz",
      "Asi",
      "Alh"
    ],
    day_format_narrow => [
      "T",
      "T",
      "L",
      "M",
      "Z",
      "S",
      "H"
    ],
    day_format_wide => [
      "Atinni",
      "Atalaata",
      "Alarba",
      "Alhamisi",
      "Alzuma",
      "Asibti",
      "Alhadi"
    ],
    day_stand_alone_abbreviated => [
      "Ati",
      "Ata",
      "Ala",
      "Alm",
      "Alz",
      "Asi",
      "Alh"
    ],
    day_stand_alone_narrow => [
      "T",
      "T",
      "L",
      "M",
      "Z",
      "S",
      "H"
    ],
    day_stand_alone_wide => [
      "Atinni",
      "Atalaata",
      "Alarba",
      "Alhamisi",
      "Alzuma",
      "Asibti",
      "Alhadi"
    ],
    era_abbreviated => [
      "IJ",
      "IZ"
    ],
    era_narrow => [
      "IJ",
      "IZ"
    ],
    era_wide => [
      "Isaa jine",
      "Isaa zamanoo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Zarma",
    month_format_abbreviated => [
      "\N{U+017d}an",
      "Fee",
      "Mar",
      "Awi",
      "Me",
      "\N{U+017d}uw",
      "\N{U+017d}uy",
      "Ut",
      "Sek",
      "Okt",
      "Noo",
      "Dee"
    ],
    month_format_narrow => [
      "\N{U+017d}",
      "F",
      "M",
      "A",
      "M",
      "\N{U+017d}",
      "\N{U+017d}",
      "U",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "\N{U+017d}anwiye",
      "Feewiriye",
      "Marsi",
      "Awiril",
      "Me",
      "\N{U+017d}uwe\N{U+014b}",
      "\N{U+017d}uyye",
      "Ut",
      "Sektanbur",
      "Oktoobur",
      "Noowanbur",
      "Deesanbur"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+017d}an",
      "Fee",
      "Mar",
      "Awi",
      "Me",
      "\N{U+017d}uw",
      "\N{U+017d}uy",
      "Ut",
      "Sek",
      "Okt",
      "Noo",
      "Dee"
    ],
    month_stand_alone_narrow => [
      "\N{U+017d}",
      "F",
      "M",
      "A",
      "M",
      "\N{U+017d}",
      "\N{U+017d}",
      "U",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "\N{U+017d}anwiye",
      "Feewiriye",
      "Marsi",
      "Awiril",
      "Me",
      "\N{U+017d}uwe\N{U+014b}",
      "\N{U+017d}uyye",
      "Ut",
      "Sektanbur",
      "Oktoobur",
      "Noowanbur",
      "Deesanbur"
    ],
    name => "Zarma",
    native_language => "Zarmaciine",
    native_name => "Zarmaciine",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "A1",
      "A2",
      "A3",
      "A4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Arrubu 1",
      "Arrubu 2",
      "Arrubu 3",
      "Arrubu 4"
    ],
    quarter_stand_alone_abbreviated => [
      "A1",
      "A2",
      "A3",
      "A4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Arrubu 1",
      "Arrubu 2",
      "Arrubu 3",
      "Arrubu 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ dje-NE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "dje-NE",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Ati",
      "Ata",
      "Ala",
      "Alm",
      "Alz",
      "Asi",
      "Alh"
    ],
    day_format_narrow => [
      "T",
      "T",
      "L",
      "M",
      "Z",
      "S",
      "H"
    ],
    day_format_wide => [
      "Atinni",
      "Atalaata",
      "Alarba",
      "Alhamisi",
      "Alzuma",
      "Asibti",
      "Alhadi"
    ],
    day_stand_alone_abbreviated => [
      "Ati",
      "Ata",
      "Ala",
      "Alm",
      "Alz",
      "Asi",
      "Alh"
    ],
    day_stand_alone_narrow => [
      "T",
      "T",
      "L",
      "M",
      "Z",
      "S",
      "H"
    ],
    day_stand_alone_wide => [
      "Atinni",
      "Atalaata",
      "Alarba",
      "Alhamisi",
      "Alzuma",
      "Asibti",
      "Alhadi"
    ],
    era_abbreviated => [
      "IJ",
      "IZ"
    ],
    era_narrow => [
      "IJ",
      "IZ"
    ],
    era_wide => [
      "Isaa jine",
      "Isaa zamanoo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Zarma",
    month_format_abbreviated => [
      "\N{U+017d}an",
      "Fee",
      "Mar",
      "Awi",
      "Me",
      "\N{U+017d}uw",
      "\N{U+017d}uy",
      "Ut",
      "Sek",
      "Okt",
      "Noo",
      "Dee"
    ],
    month_format_narrow => [
      "\N{U+017d}",
      "F",
      "M",
      "A",
      "M",
      "\N{U+017d}",
      "\N{U+017d}",
      "U",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "\N{U+017d}anwiye",
      "Feewiriye",
      "Marsi",
      "Awiril",
      "Me",
      "\N{U+017d}uwe\N{U+014b}",
      "\N{U+017d}uyye",
      "Ut",
      "Sektanbur",
      "Oktoobur",
      "Noowanbur",
      "Deesanbur"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+017d}an",
      "Fee",
      "Mar",
      "Awi",
      "Me",
      "\N{U+017d}uw",
      "\N{U+017d}uy",
      "Ut",
      "Sek",
      "Okt",
      "Noo",
      "Dee"
    ],
    month_stand_alone_narrow => [
      "\N{U+017d}",
      "F",
      "M",
      "A",
      "M",
      "\N{U+017d}",
      "\N{U+017d}",
      "U",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "\N{U+017d}anwiye",
      "Feewiriye",
      "Marsi",
      "Awiril",
      "Me",
      "\N{U+017d}uwe\N{U+014b}",
      "\N{U+017d}uyye",
      "Ut",
      "Sektanbur",
      "Oktoobur",
      "Noowanbur",
      "Deesanbur"
    ],
    name => "Zarma Niger",
    native_language => "Zarmaciine",
    native_name => "Zarmaciine Ni\N{U+017e}er",
    native_script => undef,
    native_territory => "Ni\N{U+017e}er",
    native_variant => undef,
    quarter_format_abbreviated => [
      "A1",
      "A2",
      "A3",
      "A4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Arrubu 1",
      "Arrubu 2",
      "Arrubu 3",
      "Arrubu 4"
    ],
    quarter_stand_alone_abbreviated => [
      "A1",
      "A2",
      "A3",
      "A4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Arrubu 1",
      "Arrubu 2",
      "Arrubu 3",
      "Arrubu 4"
    ],
    script => undef,
    territory => "Niger",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ dsb ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, 'zeg'. H:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d.",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d. MMM y G",
      GyMMMd => "d. MMM y G",
      H => "'zeg'. H",
      Hm => "'zeg'. H:mm",
      Hms => "H:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E, d. MMM",
      MMMMd => "MMMM d",
      MMMd => "d. MMM",
      Md => "d.M.",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M.y",
      yMEd => "E, d.M.y",
      yMMM => "MMM y",
      yMMMEd => "E, d. MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d. MMM y",
      yMd => "d.M.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "dsb",
    date_format_full => "EEEE, d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "d.M.y",
    date_format_short => "d.M.yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "p\N{U+00f3}n",
      "wa\N{U+0142}",
      "srj",
      "stw",
      "p\N{U+011b}t",
      "sob",
      "nje"
    ],
    day_format_narrow => [
      "p",
      "w",
      "s",
      "s",
      "p",
      "s",
      "n"
    ],
    day_format_wide => [
      "p\N{U+00f3}nje\N{U+017a}ele",
      "wa\N{U+0142}tora",
      "srjoda",
      "stw\N{U+00f3}rtk",
      "p\N{U+011b}tk",
      "sobota",
      "nje\N{U+017a}ela"
    ],
    day_stand_alone_abbreviated => [
      "p\N{U+00f3}n",
      "wa\N{U+0142}",
      "srj",
      "stw",
      "p\N{U+011b}t",
      "sob",
      "nje"
    ],
    day_stand_alone_narrow => [
      "p",
      "w",
      "s",
      "s",
      "p",
      "s",
      "n"
    ],
    day_stand_alone_wide => [
      "p\N{U+00f3}nje\N{U+017a}ele",
      "wa\N{U+0142}tora",
      "srjoda",
      "stw\N{U+00f3}rtk",
      "p\N{U+011b}tk",
      "sobota",
      "nje\N{U+017a}ela"
    ],
    era_abbreviated => [
      "p\N{U+015b}.Chr.n.",
      "p\N{U+00f3} Chr.n."
    ],
    era_narrow => [
      "p\N{U+015b}.Chr.n.",
      "p\N{U+00f3} Chr.n."
    ],
    era_wide => [
      "p\N{U+015b}ed Kristusowym naro\N{U+017a}enim",
      "p\N{U+00f3} Kristusowem naro\N{U+017a}enju"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Lower Sorbian",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "m\N{U+011b}r.",
      "apr.",
      "maj.",
      "jun.",
      "jul.",
      "awg.",
      "sep.",
      "okt.",
      "now.",
      "dec."
    ],
    month_format_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "januara",
      "februara",
      "m\N{U+011b}rca",
      "apryla",
      "maja",
      "junija",
      "julija",
      "awgusta",
      "septembra",
      "oktobra",
      "nowembra",
      "decembra"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "m\N{U+011b}r",
      "apr",
      "maj",
      "jun",
      "jul",
      "awg",
      "sep",
      "okt",
      "now",
      "dec"
    ],
    month_stand_alone_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_stand_alone_wide => [
      "januar",
      "februar",
      "m\N{U+011b}rc",
      "apryl",
      "maj",
      "junij",
      "julij",
      "awgust",
      "september",
      "oktober",
      "nowember",
      "december"
    ],
    name => "Lower Sorbian",
    native_language => "dolnoserb\N{U+0161}\N{U+0107}ina",
    native_name => "dolnoserb\N{U+0161}\N{U+0107}ina",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. kwartal",
      "2. kwartal",
      "3. kwartal",
      "4. kwartal"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. kwartal",
      "2. kwartal",
      "3. kwartal",
      "4. kwartal"
    ],
    script => undef,
    territory => undef,
    time_format_full => "H:mm:ss zzzz",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ dsb-DE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, 'zeg'. H:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d.",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d. MMM y G",
      GyMMMd => "d. MMM y G",
      H => "'zeg'. H",
      Hm => "'zeg'. H:mm",
      Hms => "H:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E, d. MMM",
      MMMMd => "MMMM d",
      MMMd => "d. MMM",
      Md => "d.M.",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M.y",
      yMEd => "E, d.M.y",
      yMMM => "MMM y",
      yMMMEd => "E, d. MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d. MMM y",
      yMd => "d.M.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "dsb-DE",
    date_format_full => "EEEE, d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "d.M.y",
    date_format_short => "d.M.yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "p\N{U+00f3}n",
      "wa\N{U+0142}",
      "srj",
      "stw",
      "p\N{U+011b}t",
      "sob",
      "nje"
    ],
    day_format_narrow => [
      "p",
      "w",
      "s",
      "s",
      "p",
      "s",
      "n"
    ],
    day_format_wide => [
      "p\N{U+00f3}nje\N{U+017a}ele",
      "wa\N{U+0142}tora",
      "srjoda",
      "stw\N{U+00f3}rtk",
      "p\N{U+011b}tk",
      "sobota",
      "nje\N{U+017a}ela"
    ],
    day_stand_alone_abbreviated => [
      "p\N{U+00f3}n",
      "wa\N{U+0142}",
      "srj",
      "stw",
      "p\N{U+011b}t",
      "sob",
      "nje"
    ],
    day_stand_alone_narrow => [
      "p",
      "w",
      "s",
      "s",
      "p",
      "s",
      "n"
    ],
    day_stand_alone_wide => [
      "p\N{U+00f3}nje\N{U+017a}ele",
      "wa\N{U+0142}tora",
      "srjoda",
      "stw\N{U+00f3}rtk",
      "p\N{U+011b}tk",
      "sobota",
      "nje\N{U+017a}ela"
    ],
    era_abbreviated => [
      "p\N{U+015b}.Chr.n.",
      "p\N{U+00f3} Chr.n."
    ],
    era_narrow => [
      "p\N{U+015b}.Chr.n.",
      "p\N{U+00f3} Chr.n."
    ],
    era_wide => [
      "p\N{U+015b}ed Kristusowym naro\N{U+017a}enim",
      "p\N{U+00f3} Kristusowem naro\N{U+017a}enju"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Lower Sorbian",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "m\N{U+011b}r.",
      "apr.",
      "maj.",
      "jun.",
      "jul.",
      "awg.",
      "sep.",
      "okt.",
      "now.",
      "dec."
    ],
    month_format_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "januara",
      "februara",
      "m\N{U+011b}rca",
      "apryla",
      "maja",
      "junija",
      "julija",
      "awgusta",
      "septembra",
      "oktobra",
      "nowembra",
      "decembra"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "m\N{U+011b}r",
      "apr",
      "maj",
      "jun",
      "jul",
      "awg",
      "sep",
      "okt",
      "now",
      "dec"
    ],
    month_stand_alone_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_stand_alone_wide => [
      "januar",
      "februar",
      "m\N{U+011b}rc",
      "apryl",
      "maj",
      "junij",
      "julij",
      "awgust",
      "september",
      "oktober",
      "nowember",
      "december"
    ],
    name => "Lower Sorbian Germany",
    native_language => "dolnoserb\N{U+0161}\N{U+0107}ina",
    native_name => "dolnoserb\N{U+0161}\N{U+0107}ina Nimska",
    native_script => undef,
    native_territory => "Nimska",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. kwartal",
      "2. kwartal",
      "3. kwartal",
      "4. kwartal"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. kwartal",
      "2. kwartal",
      "3. kwartal",
      "4. kwartal"
    ],
    script => undef,
    territory => "Germany",
    time_format_full => "H:mm:ss zzzz",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ dua ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "dua",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "m\N{U+0254}\N{U+0301}s",
      "kwa",
      "muk",
      "\N{U+014b}gi",
      "\N{U+0257}\N{U+00f3}n",
      "esa",
      "\N{U+00e9}t"
    ],
    day_format_narrow => [
      "m",
      "k",
      "m",
      "\N{U+014b}",
      "\N{U+0257}",
      "e",
      "e"
    ],
    day_format_wide => [
      "m\N{U+0254}\N{U+0301}s\N{U+00fa}",
      "kwas\N{U+00fa}",
      "muk\N{U+0254}\N{U+0301}s\N{U+00fa}",
      "\N{U+014b}gis\N{U+00fa}",
      "\N{U+0257}\N{U+00f3}n\N{U+025b}s\N{U+00fa}",
      "esa\N{U+0253}as\N{U+00fa}",
      "\N{U+00e9}ti"
    ],
    day_stand_alone_abbreviated => [
      "m\N{U+0254}\N{U+0301}s",
      "kwa",
      "muk",
      "\N{U+014b}gi",
      "\N{U+0257}\N{U+00f3}n",
      "esa",
      "\N{U+00e9}t"
    ],
    day_stand_alone_narrow => [
      "m",
      "k",
      "m",
      "\N{U+014b}",
      "\N{U+0257}",
      "e",
      "e"
    ],
    day_stand_alone_wide => [
      "m\N{U+0254}\N{U+0301}s\N{U+00fa}",
      "kwas\N{U+00fa}",
      "muk\N{U+0254}\N{U+0301}s\N{U+00fa}",
      "\N{U+014b}gis\N{U+00fa}",
      "\N{U+0257}\N{U+00f3}n\N{U+025b}s\N{U+00fa}",
      "esa\N{U+0253}as\N{U+00fa}",
      "\N{U+00e9}ti"
    ],
    era_abbreviated => [
      "\N{U+0253}.Ys",
      "mb.Ys"
    ],
    era_narrow => [
      "\N{U+0253}.Ys",
      "mb.Ys"
    ],
    era_wide => [
      "\N{U+0253}oso \N{U+0253}w\N{U+00e1} y\N{U+00e1}\N{U+0253}e l\N{U+00e1}",
      "mb\N{U+00fa}sa kw\N{U+00e9}di a Y\N{U+00e9}s"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Duala",
    month_format_abbreviated => [
      "di",
      "\N{U+014b}g\N{U+0254}n",
      "s\N{U+0254}\N{U+014b}",
      "di\N{U+0253}",
      "emi",
      "es\N{U+0254}",
      "mad",
      "di\N{U+014b}",
      "ny\N{U+025b}t",
      "may",
      "tin",
      "el\N{U+00e1}"
    ],
    month_format_narrow => [
      "d",
      "\N{U+014b}",
      "s",
      "d",
      "e",
      "e",
      "m",
      "d",
      "n",
      "m",
      "t",
      "e"
    ],
    month_format_wide => [
      "dim\N{U+0254}\N{U+0301}di",
      "\N{U+014b}g\N{U+0254}nd\N{U+025b}",
      "s\N{U+0254}\N{U+014b}\N{U+025b}",
      "di\N{U+0253}\N{U+00e1}\N{U+0253}\N{U+00e1}",
      "emiasele",
      "es\N{U+0254}p\N{U+025b}s\N{U+0254}p\N{U+025b}",
      "madi\N{U+0253}\N{U+025b}\N{U+0301}d\N{U+00ed}\N{U+0253}\N{U+025b}\N{U+0301}",
      "di\N{U+014b}gindi",
      "ny\N{U+025b}t\N{U+025b}ki",
      "may\N{U+00e9}s\N{U+025b}\N{U+0301}",
      "tin\N{U+00ed}n\N{U+00ed}",
      "el\N{U+00e1}\N{U+014b}g\N{U+025b}\N{U+0301}"
    ],
    month_stand_alone_abbreviated => [
      "di",
      "\N{U+014b}g\N{U+0254}n",
      "s\N{U+0254}\N{U+014b}",
      "di\N{U+0253}",
      "emi",
      "es\N{U+0254}",
      "mad",
      "di\N{U+014b}",
      "ny\N{U+025b}t",
      "may",
      "tin",
      "el\N{U+00e1}"
    ],
    month_stand_alone_narrow => [
      "d",
      "\N{U+014b}",
      "s",
      "d",
      "e",
      "e",
      "m",
      "d",
      "n",
      "m",
      "t",
      "e"
    ],
    month_stand_alone_wide => [
      "dim\N{U+0254}\N{U+0301}di",
      "\N{U+014b}g\N{U+0254}nd\N{U+025b}",
      "s\N{U+0254}\N{U+014b}\N{U+025b}",
      "di\N{U+0253}\N{U+00e1}\N{U+0253}\N{U+00e1}",
      "emiasele",
      "es\N{U+0254}p\N{U+025b}s\N{U+0254}p\N{U+025b}",
      "madi\N{U+0253}\N{U+025b}\N{U+0301}d\N{U+00ed}\N{U+0253}\N{U+025b}\N{U+0301}",
      "di\N{U+014b}gindi",
      "ny\N{U+025b}t\N{U+025b}ki",
      "may\N{U+00e9}s\N{U+025b}\N{U+0301}",
      "tin\N{U+00ed}n\N{U+00ed}",
      "el\N{U+00e1}\N{U+014b}g\N{U+025b}\N{U+0301}"
    ],
    name => "Duala",
    native_language => "du\N{U+00e1}l\N{U+00e1}",
    native_name => "du\N{U+00e1}l\N{U+00e1}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "ndu1",
      "ndu2",
      "ndu3",
      "ndu4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "nd\N{U+00fa}mb\N{U+016b} ny\N{U+00e1} \N{U+0253}os\N{U+00f3}",
      "nd\N{U+00fa}mb\N{U+016b} n\N{U+00ed} l\N{U+00f3}nd\N{U+025b}\N{U+0301} \N{U+00ed}\N{U+0253}a\N{U+00e1}",
      "nd\N{U+00fa}mb\N{U+016b} n\N{U+00ed} l\N{U+00f3}nd\N{U+025b}\N{U+0301} \N{U+00ed}l\N{U+00e1}lo",
      "nd\N{U+00fa}mb\N{U+016b} n\N{U+00ed} l\N{U+00f3}nd\N{U+025b}\N{U+0301} \N{U+00ed}n\N{U+025b}\N{U+0301}y"
    ],
    quarter_stand_alone_abbreviated => [
      "ndu1",
      "ndu2",
      "ndu3",
      "ndu4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "nd\N{U+00fa}mb\N{U+016b} ny\N{U+00e1} \N{U+0253}os\N{U+00f3}",
      "nd\N{U+00fa}mb\N{U+016b} n\N{U+00ed} l\N{U+00f3}nd\N{U+025b}\N{U+0301} \N{U+00ed}\N{U+0253}a\N{U+00e1}",
      "nd\N{U+00fa}mb\N{U+016b} n\N{U+00ed} l\N{U+00f3}nd\N{U+025b}\N{U+0301} \N{U+00ed}l\N{U+00e1}lo",
      "nd\N{U+00fa}mb\N{U+016b} n\N{U+00ed} l\N{U+00f3}nd\N{U+025b}\N{U+0301} \N{U+00ed}n\N{U+025b}\N{U+0301}y"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ dua-CM ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "dua-CM",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "m\N{U+0254}\N{U+0301}s",
      "kwa",
      "muk",
      "\N{U+014b}gi",
      "\N{U+0257}\N{U+00f3}n",
      "esa",
      "\N{U+00e9}t"
    ],
    day_format_narrow => [
      "m",
      "k",
      "m",
      "\N{U+014b}",
      "\N{U+0257}",
      "e",
      "e"
    ],
    day_format_wide => [
      "m\N{U+0254}\N{U+0301}s\N{U+00fa}",
      "kwas\N{U+00fa}",
      "muk\N{U+0254}\N{U+0301}s\N{U+00fa}",
      "\N{U+014b}gis\N{U+00fa}",
      "\N{U+0257}\N{U+00f3}n\N{U+025b}s\N{U+00fa}",
      "esa\N{U+0253}as\N{U+00fa}",
      "\N{U+00e9}ti"
    ],
    day_stand_alone_abbreviated => [
      "m\N{U+0254}\N{U+0301}s",
      "kwa",
      "muk",
      "\N{U+014b}gi",
      "\N{U+0257}\N{U+00f3}n",
      "esa",
      "\N{U+00e9}t"
    ],
    day_stand_alone_narrow => [
      "m",
      "k",
      "m",
      "\N{U+014b}",
      "\N{U+0257}",
      "e",
      "e"
    ],
    day_stand_alone_wide => [
      "m\N{U+0254}\N{U+0301}s\N{U+00fa}",
      "kwas\N{U+00fa}",
      "muk\N{U+0254}\N{U+0301}s\N{U+00fa}",
      "\N{U+014b}gis\N{U+00fa}",
      "\N{U+0257}\N{U+00f3}n\N{U+025b}s\N{U+00fa}",
      "esa\N{U+0253}as\N{U+00fa}",
      "\N{U+00e9}ti"
    ],
    era_abbreviated => [
      "\N{U+0253}.Ys",
      "mb.Ys"
    ],
    era_narrow => [
      "\N{U+0253}.Ys",
      "mb.Ys"
    ],
    era_wide => [
      "\N{U+0253}oso \N{U+0253}w\N{U+00e1} y\N{U+00e1}\N{U+0253}e l\N{U+00e1}",
      "mb\N{U+00fa}sa kw\N{U+00e9}di a Y\N{U+00e9}s"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Duala",
    month_format_abbreviated => [
      "di",
      "\N{U+014b}g\N{U+0254}n",
      "s\N{U+0254}\N{U+014b}",
      "di\N{U+0253}",
      "emi",
      "es\N{U+0254}",
      "mad",
      "di\N{U+014b}",
      "ny\N{U+025b}t",
      "may",
      "tin",
      "el\N{U+00e1}"
    ],
    month_format_narrow => [
      "d",
      "\N{U+014b}",
      "s",
      "d",
      "e",
      "e",
      "m",
      "d",
      "n",
      "m",
      "t",
      "e"
    ],
    month_format_wide => [
      "dim\N{U+0254}\N{U+0301}di",
      "\N{U+014b}g\N{U+0254}nd\N{U+025b}",
      "s\N{U+0254}\N{U+014b}\N{U+025b}",
      "di\N{U+0253}\N{U+00e1}\N{U+0253}\N{U+00e1}",
      "emiasele",
      "es\N{U+0254}p\N{U+025b}s\N{U+0254}p\N{U+025b}",
      "madi\N{U+0253}\N{U+025b}\N{U+0301}d\N{U+00ed}\N{U+0253}\N{U+025b}\N{U+0301}",
      "di\N{U+014b}gindi",
      "ny\N{U+025b}t\N{U+025b}ki",
      "may\N{U+00e9}s\N{U+025b}\N{U+0301}",
      "tin\N{U+00ed}n\N{U+00ed}",
      "el\N{U+00e1}\N{U+014b}g\N{U+025b}\N{U+0301}"
    ],
    month_stand_alone_abbreviated => [
      "di",
      "\N{U+014b}g\N{U+0254}n",
      "s\N{U+0254}\N{U+014b}",
      "di\N{U+0253}",
      "emi",
      "es\N{U+0254}",
      "mad",
      "di\N{U+014b}",
      "ny\N{U+025b}t",
      "may",
      "tin",
      "el\N{U+00e1}"
    ],
    month_stand_alone_narrow => [
      "d",
      "\N{U+014b}",
      "s",
      "d",
      "e",
      "e",
      "m",
      "d",
      "n",
      "m",
      "t",
      "e"
    ],
    month_stand_alone_wide => [
      "dim\N{U+0254}\N{U+0301}di",
      "\N{U+014b}g\N{U+0254}nd\N{U+025b}",
      "s\N{U+0254}\N{U+014b}\N{U+025b}",
      "di\N{U+0253}\N{U+00e1}\N{U+0253}\N{U+00e1}",
      "emiasele",
      "es\N{U+0254}p\N{U+025b}s\N{U+0254}p\N{U+025b}",
      "madi\N{U+0253}\N{U+025b}\N{U+0301}d\N{U+00ed}\N{U+0253}\N{U+025b}\N{U+0301}",
      "di\N{U+014b}gindi",
      "ny\N{U+025b}t\N{U+025b}ki",
      "may\N{U+00e9}s\N{U+025b}\N{U+0301}",
      "tin\N{U+00ed}n\N{U+00ed}",
      "el\N{U+00e1}\N{U+014b}g\N{U+025b}\N{U+0301}"
    ],
    name => "Duala Cameroon",
    native_language => "du\N{U+00e1}l\N{U+00e1}",
    native_name => "du\N{U+00e1}l\N{U+00e1} Cameroun",
    native_script => undef,
    native_territory => "Cameroun",
    native_variant => undef,
    quarter_format_abbreviated => [
      "ndu1",
      "ndu2",
      "ndu3",
      "ndu4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "nd\N{U+00fa}mb\N{U+016b} ny\N{U+00e1} \N{U+0253}os\N{U+00f3}",
      "nd\N{U+00fa}mb\N{U+016b} n\N{U+00ed} l\N{U+00f3}nd\N{U+025b}\N{U+0301} \N{U+00ed}\N{U+0253}a\N{U+00e1}",
      "nd\N{U+00fa}mb\N{U+016b} n\N{U+00ed} l\N{U+00f3}nd\N{U+025b}\N{U+0301} \N{U+00ed}l\N{U+00e1}lo",
      "nd\N{U+00fa}mb\N{U+016b} n\N{U+00ed} l\N{U+00f3}nd\N{U+025b}\N{U+0301} \N{U+00ed}n\N{U+025b}\N{U+0301}y"
    ],
    quarter_stand_alone_abbreviated => [
      "ndu1",
      "ndu2",
      "ndu3",
      "ndu4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "nd\N{U+00fa}mb\N{U+016b} ny\N{U+00e1} \N{U+0253}os\N{U+00f3}",
      "nd\N{U+00fa}mb\N{U+016b} n\N{U+00ed} l\N{U+00f3}nd\N{U+025b}\N{U+0301} \N{U+00ed}\N{U+0253}a\N{U+00e1}",
      "nd\N{U+00fa}mb\N{U+016b} n\N{U+00ed} l\N{U+00f3}nd\N{U+025b}\N{U+0301} \N{U+00ed}l\N{U+00e1}lo",
      "nd\N{U+00fa}mb\N{U+016b} n\N{U+00ed} l\N{U+00f3}nd\N{U+025b}\N{U+0301} \N{U+00ed}n\N{U+025b}\N{U+0301}y"
    ],
    script => undef,
    territory => "Cameroon",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ dyo ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "dyo",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Ten",
      "Tal",
      "Ala",
      "Ara",
      "Arj",
      "Sib",
      "Dim"
    ],
    day_format_narrow => [
      "T",
      "T",
      "A",
      "A",
      "A",
      "S",
      "D"
    ],
    day_format_wide => [
      "Tene\N{U+014b}",
      "Talata",
      "Alarbay",
      "Aramisay",
      "Arjuma",
      "Sibiti",
      "Dimas"
    ],
    day_stand_alone_abbreviated => [
      "Ten",
      "Tal",
      "Ala",
      "Ara",
      "Arj",
      "Sib",
      "Dim"
    ],
    day_stand_alone_narrow => [
      "T",
      "T",
      "A",
      "A",
      "A",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "Tene\N{U+014b}",
      "Talata",
      "Alarbay",
      "Aramisay",
      "Arjuma",
      "Sibiti",
      "Dimas"
    ],
    era_abbreviated => [
      "ArY",
      "AtY"
    ],
    era_narrow => [
      "ArY",
      "AtY"
    ],
    era_wide => [
      "Ari\N{U+014b}uu Yeesu",
      "Atoo\N{U+014b}e Yeesu"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Jola-Fonyi",
    month_format_abbreviated => [
      "Sa",
      "Fe",
      "Ma",
      "Ab",
      "Me",
      "Su",
      "S\N{U+00fa}",
      "Ut",
      "Se",
      "Ok",
      "No",
      "De"
    ],
    month_format_narrow => [
      "S",
      "F",
      "M",
      "A",
      "M",
      "S",
      "S",
      "U",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Sanvie",
      "F\N{U+00e9}birie",
      "Mars",
      "Aburil",
      "Mee",
      "Sue\N{U+014b}",
      "S\N{U+00fa}uyee",
      "Ut",
      "Settembar",
      "Oktobar",
      "Novembar",
      "Disambar"
    ],
    month_stand_alone_abbreviated => [
      "Sa",
      "Fe",
      "Ma",
      "Ab",
      "Me",
      "Su",
      "S\N{U+00fa}",
      "Ut",
      "Se",
      "Ok",
      "No",
      "De"
    ],
    month_stand_alone_narrow => [
      "S",
      "F",
      "M",
      "A",
      "M",
      "S",
      "S",
      "U",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Sanvie",
      "F\N{U+00e9}birie",
      "Mars",
      "Aburil",
      "Mee",
      "Sue\N{U+014b}",
      "S\N{U+00fa}uyee",
      "Ut",
      "Settembar",
      "Oktobar",
      "Novembar",
      "Disambar"
    ],
    name => "Jola-Fonyi",
    native_language => "joola",
    native_name => "joola",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ dyo-SN ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "dyo-SN",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Ten",
      "Tal",
      "Ala",
      "Ara",
      "Arj",
      "Sib",
      "Dim"
    ],
    day_format_narrow => [
      "T",
      "T",
      "A",
      "A",
      "A",
      "S",
      "D"
    ],
    day_format_wide => [
      "Tene\N{U+014b}",
      "Talata",
      "Alarbay",
      "Aramisay",
      "Arjuma",
      "Sibiti",
      "Dimas"
    ],
    day_stand_alone_abbreviated => [
      "Ten",
      "Tal",
      "Ala",
      "Ara",
      "Arj",
      "Sib",
      "Dim"
    ],
    day_stand_alone_narrow => [
      "T",
      "T",
      "A",
      "A",
      "A",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "Tene\N{U+014b}",
      "Talata",
      "Alarbay",
      "Aramisay",
      "Arjuma",
      "Sibiti",
      "Dimas"
    ],
    era_abbreviated => [
      "ArY",
      "AtY"
    ],
    era_narrow => [
      "ArY",
      "AtY"
    ],
    era_wide => [
      "Ari\N{U+014b}uu Yeesu",
      "Atoo\N{U+014b}e Yeesu"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Jola-Fonyi",
    month_format_abbreviated => [
      "Sa",
      "Fe",
      "Ma",
      "Ab",
      "Me",
      "Su",
      "S\N{U+00fa}",
      "Ut",
      "Se",
      "Ok",
      "No",
      "De"
    ],
    month_format_narrow => [
      "S",
      "F",
      "M",
      "A",
      "M",
      "S",
      "S",
      "U",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Sanvie",
      "F\N{U+00e9}birie",
      "Mars",
      "Aburil",
      "Mee",
      "Sue\N{U+014b}",
      "S\N{U+00fa}uyee",
      "Ut",
      "Settembar",
      "Oktobar",
      "Novembar",
      "Disambar"
    ],
    month_stand_alone_abbreviated => [
      "Sa",
      "Fe",
      "Ma",
      "Ab",
      "Me",
      "Su",
      "S\N{U+00fa}",
      "Ut",
      "Se",
      "Ok",
      "No",
      "De"
    ],
    month_stand_alone_narrow => [
      "S",
      "F",
      "M",
      "A",
      "M",
      "S",
      "S",
      "U",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Sanvie",
      "F\N{U+00e9}birie",
      "Mars",
      "Aburil",
      "Mee",
      "Sue\N{U+014b}",
      "S\N{U+00fa}uyee",
      "Ut",
      "Settembar",
      "Oktobar",
      "Novembar",
      "Disambar"
    ],
    name => "Jola-Fonyi Senegal",
    native_language => "joola",
    native_name => "joola Senegal",
    native_script => undef,
    native_territory => "Senegal",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "Senegal",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ dz ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y \N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}MMM",
      GyMMMEd => "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}E, G \N{U+0f63}\N{U+0f7c}y \N{U+0f5f}\N{U+0fb3}\N{U+0f0b}MMM \N{U+0f5a}\N{U+0f7a}\N{U+0f0b}d",
      GyMMMd => "G y MMM d",
      H => "\N{U+0f46}\N{U+0f74}\N{U+0f0b}\N{U+0f5a}\N{U+0f7c}\N{U+0f51}\N{U+0f0b}HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M-d",
      MMM => "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}LLL",
      MMMEd => "E, \N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}LLL \N{U+0f5a}\N{U+0f7a}\N{U+0f0b}d",
      MMMMd => "MMMM d",
      MMMd => "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}LLL \N{U+0f5a}\N{U+0f7a}\N{U+0f0b}d",
      Md => "M-d",
      d => "d",
      h => "\N{U+0f46}\N{U+0f74}\N{U+0f0b}\N{U+0f5a}\N{U+0f7c}\N{U+0f51}\N{U+0f0b}h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-M",
      yMEd => "E, y-M-d",
      yMMM => "y \N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}MMM",
      yMMMEd => "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}E, \N{U+0f63}\N{U+0f7c}y \N{U+0f5f}\N{U+0fb3}\N{U+0f0b}MMM \N{U+0f5a}\N{U+0f7a}\N{U+0f0b}d",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-M-d",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "dz",
    date_format_full => "EEEE, \N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}\N{U+0f0b}y MMMM \N{U+0f5a}\N{U+0f7a}\N{U+0f66}\N{U+0f0b}dd",
    date_format_long => "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}\N{U+0f0b}y MMMM \N{U+0f5a}\N{U+0f7a}\N{U+0f66}\N{U+0f0b} dd",
    date_format_medium => "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}\N{U+0f0b}y \N{U+0f5f}\N{U+0fb3}\N{U+0f0b}MMM \N{U+0f5a}\N{U+0f7a}\N{U+0f66}\N{U+0f0b}dd",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0f58}\N{U+0f72}\N{U+0f62}\N{U+0f0b}",
      "\N{U+0f63}\N{U+0fb7}\N{U+0f42}\N{U+0f0b}",
      "\N{U+0f55}\N{U+0f74}\N{U+0f62}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0f44}\N{U+0f66}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0f7a}\N{U+0f53}\N{U+0f0b}",
      "\N{U+0f49}\N{U+0f72}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}"
    ],
    day_format_narrow => [
      "\N{U+0f58}\N{U+0f72}\N{U+0f62}",
      "\N{U+0f63}\N{U+0fb7}\N{U+0f42}",
      "\N{U+0f55}\N{U+0f74}\N{U+0f62}",
      "\N{U+0f66}\N{U+0f44}\N{U+0fb6}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0f7a}\N{U+0f53}",
      "\N{U+0f49}\N{U+0f72}",
      "\N{U+0f5f}\N{U+0fb3}"
    ],
    day_format_wide => [
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f58}\N{U+0f72}\N{U+0f42}\N{U+0f0b}\N{U+0f51}\N{U+0f58}\N{U+0f62}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f63}\N{U+0fb7}\N{U+0f42}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f55}\N{U+0f74}\N{U+0f62}\N{U+0f0b}\N{U+0f56}\N{U+0f74}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}\N{U+0f66}\N{U+0f44}\N{U+0f66}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f66}\N{U+0fa4}\N{U+0f7a}\N{U+0f53}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f49}\N{U+0f72}\N{U+0f0b}\N{U+0f58}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0f58}\N{U+0f72}\N{U+0f62}\N{U+0f0b}",
      "\N{U+0f63}\N{U+0fb7}\N{U+0f42}\N{U+0f0b}",
      "\N{U+0f55}\N{U+0f74}\N{U+0f62}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0f44}\N{U+0f66}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0f7a}\N{U+0f53}\N{U+0f0b}",
      "\N{U+0f49}\N{U+0f72}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0f58}\N{U+0f72}\N{U+0f62}",
      "\N{U+0f63}\N{U+0fb7}\N{U+0f42}",
      "\N{U+0f55}\N{U+0f74}\N{U+0f62}",
      "\N{U+0f66}\N{U+0f44}\N{U+0fb6}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0f7a}\N{U+0f53}",
      "\N{U+0f49}\N{U+0f72}",
      "\N{U+0f5f}\N{U+0fb3}"
    ],
    day_stand_alone_wide => [
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f58}\N{U+0f72}\N{U+0f42}\N{U+0f0b}\N{U+0f51}\N{U+0f58}\N{U+0f62}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f63}\N{U+0fb7}\N{U+0f42}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f55}\N{U+0f74}\N{U+0f62}\N{U+0f0b}\N{U+0f56}\N{U+0f74}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}\N{U+0f66}\N{U+0f44}\N{U+0f66}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f66}\N{U+0fa4}\N{U+0f7a}\N{U+0f53}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f49}\N{U+0f72}\N{U+0f0b}\N{U+0f58}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Dzongkha",
    month_format_abbreviated => [
      "\N{U+0f21}",
      "\N{U+0f22}",
      "\N{U+0f23}",
      "\N{U+0f24}",
      "\N{U+0f25}",
      "\N{U+0f26}",
      "\N{U+0f27}",
      "\N{U+0f28}",
      "\N{U+0f29}",
      "\N{U+0f21}\N{U+0f20}",
      "\N{U+0f21}\N{U+0f21}",
      12
    ],
    month_format_narrow => [
      "\N{U+0f21}",
      "\N{U+0f22}",
      "\N{U+0f23}",
      4,
      "\N{U+0f25}",
      "\N{U+0f26}",
      "\N{U+0f27}",
      "\N{U+0f28}",
      9,
      "\N{U+0f21}\N{U+0f20}",
      "\N{U+0f21}\N{U+0f21}",
      "\N{U+0f21}\N{U+0f22}"
    ],
    month_format_wide => [
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f51}\N{U+0f44}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f42}\N{U+0f66}\N{U+0f74}\N{U+0f58}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f63}\N{U+0f94}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f51}\N{U+0fb2}\N{U+0f74}\N{U+0f42}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f51}\N{U+0f74}\N{U+0f53}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f62}\N{U+0f92}\N{U+0fb1}\N{U+0f51}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f51}\N{U+0f42}\N{U+0f74}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f45}\N{U+0f74}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f45}\N{U+0f74}\N{U+0f0b}\N{U+0f42}\N{U+0f45}\N{U+0f72}\N{U+0f42}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f45}\N{U+0f74}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f22}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f23}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f24}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f25}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f26}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f27}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f28}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f29}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}\N{U+0f20}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}\N{U+0f21}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}\N{U+0f22}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0f21}",
      "\N{U+0f22}",
      "\N{U+0f23}",
      "\N{U+0f24}",
      "\N{U+0f25}",
      "\N{U+0f26}",
      "\N{U+0f27}",
      "\N{U+0f28}",
      "\N{U+0f29}",
      "\N{U+0f21}\N{U+0f20}",
      "\N{U+0f21}\N{U+0f21}",
      "\N{U+0f21}\N{U+0f22}"
    ],
    month_stand_alone_wide => [
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f51}\N{U+0f44}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f42}\N{U+0f66}\N{U+0f74}\N{U+0f58}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f63}\N{U+0f94}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f51}\N{U+0fb2}\N{U+0f74}\N{U+0f42}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f51}\N{U+0f74}\N{U+0f53}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f62}\N{U+0f92}\N{U+0fb1}\N{U+0f51}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f51}\N{U+0f42}\N{U+0f74}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f45}\N{U+0f74}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f45}\N{U+0f74}\N{U+0f0b}\N{U+0f42}\N{U+0f45}\N{U+0f72}\N{U+0f42}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f45}\N{U+0f74}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}"
    ],
    name => "Dzongkha",
    native_language => "\N{U+0f62}\N{U+0fab}\N{U+0f7c}\N{U+0f44}\N{U+0f0b}\N{U+0f41}",
    native_name => "\N{U+0f62}\N{U+0fab}\N{U+0f7c}\N{U+0f44}\N{U+0f0b}\N{U+0f41}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f21}",
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f22}",
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f23}",
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f24}"
    ],
    quarter_format_narrow => [
      "\N{U+0f21}",
      "\N{U+0f22}",
      "\N{U+0f23}",
      "\N{U+0f24}"
    ],
    quarter_format_wide => [
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f51}\N{U+0f44}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f42}\N{U+0f66}\N{U+0f74}\N{U+0f58}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f21}",
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f22}",
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f23}",
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f24}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0f21}",
      "\N{U+0f22}",
      "\N{U+0f23}",
      "\N{U+0f24}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f51}\N{U+0f44}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f42}\N{U+0f66}\N{U+0f74}\N{U+0f58}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "\N{U+0f46}\N{U+0f74}\N{U+0f0b}\N{U+0f5a}\N{U+0f7c}\N{U+0f51}\N{U+0f0b} h \N{U+0f66}\N{U+0f90}\N{U+0f62}\N{U+0f0b}\N{U+0f58}\N{U+0f0b} mm:ss a zzzz",
    time_format_long => "\N{U+0f46}\N{U+0f74}\N{U+0f0b}\N{U+0f5a}\N{U+0f7c}\N{U+0f51}\N{U+0f0b} h \N{U+0f66}\N{U+0f90}\N{U+0f62}\N{U+0f0b}\N{U+0f58}\N{U+0f0b} mm:ss a z",
    time_format_medium => "\N{U+0f46}\N{U+0f74}\N{U+0f0b}\N{U+0f5a}\N{U+0f7c}\N{U+0f51}\N{U+0f0b}h:mm:ss a",
    time_format_short => "\N{U+0f46}\N{U+0f74}\N{U+0f0b}\N{U+0f5a}\N{U+0f7c}\N{U+0f51}\N{U+0f0b} h \N{U+0f66}\N{U+0f90}\N{U+0f62}\N{U+0f0b}\N{U+0f58}\N{U+0f0b} mm a",
    variant => undef,
    version => 28
  }
  __[ dz-BT ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y \N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}MMM",
      GyMMMEd => "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}E, G \N{U+0f63}\N{U+0f7c}y \N{U+0f5f}\N{U+0fb3}\N{U+0f0b}MMM \N{U+0f5a}\N{U+0f7a}\N{U+0f0b}d",
      GyMMMd => "G y MMM d",
      H => "\N{U+0f46}\N{U+0f74}\N{U+0f0b}\N{U+0f5a}\N{U+0f7c}\N{U+0f51}\N{U+0f0b}HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M-d",
      MMM => "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}LLL",
      MMMEd => "E, \N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}LLL \N{U+0f5a}\N{U+0f7a}\N{U+0f0b}d",
      MMMMd => "MMMM d",
      MMMd => "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}LLL \N{U+0f5a}\N{U+0f7a}\N{U+0f0b}d",
      Md => "M-d",
      d => "d",
      h => "\N{U+0f46}\N{U+0f74}\N{U+0f0b}\N{U+0f5a}\N{U+0f7c}\N{U+0f51}\N{U+0f0b}h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-M",
      yMEd => "E, y-M-d",
      yMMM => "y \N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}MMM",
      yMMMEd => "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}E, \N{U+0f63}\N{U+0f7c}y \N{U+0f5f}\N{U+0fb3}\N{U+0f0b}MMM \N{U+0f5a}\N{U+0f7a}\N{U+0f0b}d",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-M-d",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "dz-BT",
    date_format_full => "EEEE, \N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}\N{U+0f0b}y MMMM \N{U+0f5a}\N{U+0f7a}\N{U+0f66}\N{U+0f0b}dd",
    date_format_long => "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}\N{U+0f0b}y MMMM \N{U+0f5a}\N{U+0f7a}\N{U+0f66}\N{U+0f0b} dd",
    date_format_medium => "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}\N{U+0f0b}y \N{U+0f5f}\N{U+0fb3}\N{U+0f0b}MMM \N{U+0f5a}\N{U+0f7a}\N{U+0f66}\N{U+0f0b}dd",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0f58}\N{U+0f72}\N{U+0f62}\N{U+0f0b}",
      "\N{U+0f63}\N{U+0fb7}\N{U+0f42}\N{U+0f0b}",
      "\N{U+0f55}\N{U+0f74}\N{U+0f62}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0f44}\N{U+0f66}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0f7a}\N{U+0f53}\N{U+0f0b}",
      "\N{U+0f49}\N{U+0f72}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}"
    ],
    day_format_narrow => [
      "\N{U+0f58}\N{U+0f72}\N{U+0f62}",
      "\N{U+0f63}\N{U+0fb7}\N{U+0f42}",
      "\N{U+0f55}\N{U+0f74}\N{U+0f62}",
      "\N{U+0f66}\N{U+0f44}\N{U+0fb6}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0f7a}\N{U+0f53}",
      "\N{U+0f49}\N{U+0f72}",
      "\N{U+0f5f}\N{U+0fb3}"
    ],
    day_format_wide => [
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f58}\N{U+0f72}\N{U+0f42}\N{U+0f0b}\N{U+0f51}\N{U+0f58}\N{U+0f62}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f63}\N{U+0fb7}\N{U+0f42}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f55}\N{U+0f74}\N{U+0f62}\N{U+0f0b}\N{U+0f56}\N{U+0f74}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}\N{U+0f66}\N{U+0f44}\N{U+0f66}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f66}\N{U+0fa4}\N{U+0f7a}\N{U+0f53}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f49}\N{U+0f72}\N{U+0f0b}\N{U+0f58}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0f58}\N{U+0f72}\N{U+0f62}\N{U+0f0b}",
      "\N{U+0f63}\N{U+0fb7}\N{U+0f42}\N{U+0f0b}",
      "\N{U+0f55}\N{U+0f74}\N{U+0f62}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0f44}\N{U+0f66}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0f7a}\N{U+0f53}\N{U+0f0b}",
      "\N{U+0f49}\N{U+0f72}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0f58}\N{U+0f72}\N{U+0f62}",
      "\N{U+0f63}\N{U+0fb7}\N{U+0f42}",
      "\N{U+0f55}\N{U+0f74}\N{U+0f62}",
      "\N{U+0f66}\N{U+0f44}\N{U+0fb6}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0f7a}\N{U+0f53}",
      "\N{U+0f49}\N{U+0f72}",
      "\N{U+0f5f}\N{U+0fb3}"
    ],
    day_stand_alone_wide => [
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f58}\N{U+0f72}\N{U+0f42}\N{U+0f0b}\N{U+0f51}\N{U+0f58}\N{U+0f62}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f63}\N{U+0fb7}\N{U+0f42}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f55}\N{U+0f74}\N{U+0f62}\N{U+0f0b}\N{U+0f56}\N{U+0f74}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}\N{U+0f66}\N{U+0f44}\N{U+0f66}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f66}\N{U+0fa4}\N{U+0f7a}\N{U+0f53}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f49}\N{U+0f72}\N{U+0f0b}\N{U+0f58}\N{U+0f0b}",
      "\N{U+0f42}\N{U+0f5f}\N{U+0f60}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f0b}"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "\N{U+0f54}\N{U+0f66}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}%y\N{U+0f5f}\N{U+0f63}%m\N{U+0f5a}\N{U+0f7a}\N{U+0f66}%d",
    glibc_datetime_format => "\N{U+0f54}\N{U+0f66}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f63}\N{U+0f7c}%y\N{U+0f5f}\N{U+0f63}%m\N{U+0f5a}\N{U+0f7a}\N{U+0f66}%d\N{U+0f46}\N{U+0f74}\N{U+0f0b}\N{U+0f5a}\N{U+0f7c}\N{U+0f51}%H\N{U+0f40}\N{U+0f66}\N{U+0f62}\N{U+0f0b}\N{U+0f58}%M\N{U+0f40}\N{U+0f66}\N{U+0f62}\N{U+0f0b}\N{U+0f46}%S",
    glibc_time_12_format => "\N{U+0f46}\N{U+0f74}\N{U+0f0b}\N{U+0f5a}\N{U+0f7c}\N{U+0f51}%I\N{U+0f40}\N{U+0f66}\N{U+0f62}\N{U+0f0b}\N{U+0f58}%M\N{U+0f40}\N{U+0f66}\N{U+0f62}\N{U+0f0b}\N{U+0f46}%S %p",
    glibc_time_format => "\N{U+0f46}\N{U+0f74}\N{U+0f0b}\N{U+0f5a}\N{U+0f7c}\N{U+0f51}%H\N{U+0f40}\N{U+0f66}\N{U+0f62}\N{U+0f0b}\N{U+0f58}%M\N{U+0f40}\N{U+0f66}\N{U+0f62}\N{U+0f0b}\N{U+0f46}%S",
    language => "Dzongkha",
    month_format_abbreviated => [
      "\N{U+0f21}",
      "\N{U+0f22}",
      "\N{U+0f23}",
      "\N{U+0f24}",
      "\N{U+0f25}",
      "\N{U+0f26}",
      "\N{U+0f27}",
      "\N{U+0f28}",
      "\N{U+0f29}",
      "\N{U+0f21}\N{U+0f20}",
      "\N{U+0f21}\N{U+0f21}",
      12
    ],
    month_format_narrow => [
      "\N{U+0f21}",
      "\N{U+0f22}",
      "\N{U+0f23}",
      4,
      "\N{U+0f25}",
      "\N{U+0f26}",
      "\N{U+0f27}",
      "\N{U+0f28}",
      9,
      "\N{U+0f21}\N{U+0f20}",
      "\N{U+0f21}\N{U+0f21}",
      "\N{U+0f21}\N{U+0f22}"
    ],
    month_format_wide => [
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f51}\N{U+0f44}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f42}\N{U+0f66}\N{U+0f74}\N{U+0f58}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f63}\N{U+0f94}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f51}\N{U+0fb2}\N{U+0f74}\N{U+0f42}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f51}\N{U+0f74}\N{U+0f53}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f62}\N{U+0f92}\N{U+0fb1}\N{U+0f51}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f51}\N{U+0f42}\N{U+0f74}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f45}\N{U+0f74}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f45}\N{U+0f74}\N{U+0f0b}\N{U+0f42}\N{U+0f45}\N{U+0f72}\N{U+0f42}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f45}\N{U+0f74}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f22}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f23}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f24}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f25}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f26}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f27}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f28}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f29}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}\N{U+0f20}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}\N{U+0f21}",
      "\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f21}\N{U+0f22}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0f21}",
      "\N{U+0f22}",
      "\N{U+0f23}",
      "\N{U+0f24}",
      "\N{U+0f25}",
      "\N{U+0f26}",
      "\N{U+0f27}",
      "\N{U+0f28}",
      "\N{U+0f29}",
      "\N{U+0f21}\N{U+0f20}",
      "\N{U+0f21}\N{U+0f21}",
      "\N{U+0f21}\N{U+0f22}"
    ],
    month_stand_alone_wide => [
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f51}\N{U+0f44}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f42}\N{U+0f66}\N{U+0f74}\N{U+0f58}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f63}\N{U+0f94}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f51}\N{U+0fb2}\N{U+0f74}\N{U+0f42}\N{U+0f0b}\N{U+0f54}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f51}\N{U+0f74}\N{U+0f53}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f62}\N{U+0f92}\N{U+0fb1}\N{U+0f51}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f51}\N{U+0f42}\N{U+0f74}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f45}\N{U+0f74}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f45}\N{U+0f74}\N{U+0f0b}\N{U+0f42}\N{U+0f45}\N{U+0f72}\N{U+0f42}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f66}\N{U+0fa4}\N{U+0fb1}\N{U+0f72}\N{U+0f0b}\N{U+0f5f}\N{U+0fb3}\N{U+0f0b}\N{U+0f56}\N{U+0f45}\N{U+0f74}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}"
    ],
    name => "Dzongkha Bhutan",
    native_language => "\N{U+0f62}\N{U+0fab}\N{U+0f7c}\N{U+0f44}\N{U+0f0b}\N{U+0f41}",
    native_name => "\N{U+0f62}\N{U+0fab}\N{U+0f7c}\N{U+0f44}\N{U+0f0b}\N{U+0f41} \N{U+0f60}\N{U+0f56}\N{U+0fb2}\N{U+0f74}\N{U+0f42}",
    native_script => undef,
    native_territory => "\N{U+0f60}\N{U+0f56}\N{U+0fb2}\N{U+0f74}\N{U+0f42}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f21}",
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f22}",
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f23}",
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f24}"
    ],
    quarter_format_narrow => [
      "\N{U+0f21}",
      "\N{U+0f22}",
      "\N{U+0f23}",
      "\N{U+0f24}"
    ],
    quarter_format_wide => [
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f51}\N{U+0f44}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f42}\N{U+0f66}\N{U+0f74}\N{U+0f58}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f21}",
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f22}",
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f23}",
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f24}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0f21}",
      "\N{U+0f22}",
      "\N{U+0f23}",
      "\N{U+0f24}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f51}\N{U+0f44}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f42}\N{U+0f49}\N{U+0f72}\N{U+0f66}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f42}\N{U+0f66}\N{U+0f74}\N{U+0f58}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}",
      "\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f51}\N{U+0f54}\N{U+0fb1}\N{U+0f0b}\N{U+0f56}\N{U+0f5e}\N{U+0f72}\N{U+0f0b}\N{U+0f54}\N{U+0f0b}"
    ],
    script => undef,
    territory => "Bhutan",
    time_format_full => "\N{U+0f46}\N{U+0f74}\N{U+0f0b}\N{U+0f5a}\N{U+0f7c}\N{U+0f51}\N{U+0f0b} h \N{U+0f66}\N{U+0f90}\N{U+0f62}\N{U+0f0b}\N{U+0f58}\N{U+0f0b} mm:ss a zzzz",
    time_format_long => "\N{U+0f46}\N{U+0f74}\N{U+0f0b}\N{U+0f5a}\N{U+0f7c}\N{U+0f51}\N{U+0f0b} h \N{U+0f66}\N{U+0f90}\N{U+0f62}\N{U+0f0b}\N{U+0f58}\N{U+0f0b} mm:ss a z",
    time_format_medium => "\N{U+0f46}\N{U+0f74}\N{U+0f0b}\N{U+0f5a}\N{U+0f7c}\N{U+0f51}\N{U+0f0b}h:mm:ss a",
    time_format_short => "\N{U+0f46}\N{U+0f74}\N{U+0f0b}\N{U+0f5a}\N{U+0f7c}\N{U+0f51}\N{U+0f0b} h \N{U+0f66}\N{U+0f90}\N{U+0f62}\N{U+0f0b}\N{U+0f58}\N{U+0f0b} mm a",
    variant => undef,
    version => 28
  }
  __[ ebu ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ebu",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Tat",
      "Ine",
      "Tan",
      "Arm",
      "Maa",
      "NMM",
      "Kma"
    ],
    day_format_narrow => [
      "N",
      "N",
      "N",
      "A",
      "M",
      "N",
      "K"
    ],
    day_format_wide => [
      "Njumatatu",
      "Njumaine",
      "Njumatano",
      "Aramithi",
      "Njumaa",
      "NJumamothii",
      "Kiumia"
    ],
    day_stand_alone_abbreviated => [
      "Tat",
      "Ine",
      "Tan",
      "Arm",
      "Maa",
      "NMM",
      "Kma"
    ],
    day_stand_alone_narrow => [
      "N",
      "N",
      "N",
      "A",
      "M",
      "N",
      "K"
    ],
    day_stand_alone_wide => [
      "Njumatatu",
      "Njumaine",
      "Njumatano",
      "Aramithi",
      "Njumaa",
      "NJumamothii",
      "Kiumia"
    ],
    era_abbreviated => [
      "MK",
      "TK"
    ],
    era_narrow => [
      "MK",
      "TK"
    ],
    era_wide => [
      "Mbere ya Kristo",
      "Thutha wa Kristo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Embu",
    month_format_abbreviated => [
      "Mbe",
      "Kai",
      "Kat",
      "Kan",
      "Gat",
      "Gan",
      "Mug",
      "Knn",
      "Ken",
      "Iku",
      "Imw",
      "Igi"
    ],
    month_format_narrow => [
      "M",
      "K",
      "K",
      "K",
      "G",
      "G",
      "M",
      "K",
      "K",
      "I",
      "I",
      "I"
    ],
    month_format_wide => [
      "Mweri wa mbere",
      "Mweri wa ka\N{U+0129}ri",
      "Mweri wa kathat\N{U+0169}",
      "Mweri wa kana",
      "Mweri wa gatano",
      "Mweri wa gatantat\N{U+0169}",
      "Mweri wa m\N{U+0169}gwanja",
      "Mweri wa kanana",
      "Mweri wa kenda",
      "Mweri wa ik\N{U+0169}mi",
      "Mweri wa ik\N{U+0169}mi na \N{U+0169}mwe",
      "Mweri wa ik\N{U+0169}mi na Ka\N{U+0129}r\N{U+0129}"
    ],
    month_stand_alone_abbreviated => [
      "Mbe",
      "Kai",
      "Kat",
      "Kan",
      "Gat",
      "Gan",
      "Mug",
      "Knn",
      "Ken",
      "Iku",
      "Imw",
      "Igi"
    ],
    month_stand_alone_narrow => [
      "M",
      "K",
      "K",
      "K",
      "G",
      "G",
      "M",
      "K",
      "K",
      "I",
      "I",
      "I"
    ],
    month_stand_alone_wide => [
      "Mweri wa mbere",
      "Mweri wa ka\N{U+0129}ri",
      "Mweri wa kathat\N{U+0169}",
      "Mweri wa kana",
      "Mweri wa gatano",
      "Mweri wa gatantat\N{U+0169}",
      "Mweri wa m\N{U+0169}gwanja",
      "Mweri wa kanana",
      "Mweri wa kenda",
      "Mweri wa ik\N{U+0169}mi",
      "Mweri wa ik\N{U+0169}mi na \N{U+0169}mwe",
      "Mweri wa ik\N{U+0169}mi na Ka\N{U+0129}r\N{U+0129}"
    ],
    name => "Embu",
    native_language => "K\N{U+0129}embu",
    native_name => "K\N{U+0129}embu",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Kuota ya mbere",
      "Kuota ya Ka\N{U+0129}r\N{U+0129}",
      "Kuota ya kathatu",
      "Kuota ya kana"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Kuota ya mbere",
      "Kuota ya Ka\N{U+0129}r\N{U+0129}",
      "Kuota ya kathatu",
      "Kuota ya kana"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ebu-KE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ebu-KE",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Tat",
      "Ine",
      "Tan",
      "Arm",
      "Maa",
      "NMM",
      "Kma"
    ],
    day_format_narrow => [
      "N",
      "N",
      "N",
      "A",
      "M",
      "N",
      "K"
    ],
    day_format_wide => [
      "Njumatatu",
      "Njumaine",
      "Njumatano",
      "Aramithi",
      "Njumaa",
      "NJumamothii",
      "Kiumia"
    ],
    day_stand_alone_abbreviated => [
      "Tat",
      "Ine",
      "Tan",
      "Arm",
      "Maa",
      "NMM",
      "Kma"
    ],
    day_stand_alone_narrow => [
      "N",
      "N",
      "N",
      "A",
      "M",
      "N",
      "K"
    ],
    day_stand_alone_wide => [
      "Njumatatu",
      "Njumaine",
      "Njumatano",
      "Aramithi",
      "Njumaa",
      "NJumamothii",
      "Kiumia"
    ],
    era_abbreviated => [
      "MK",
      "TK"
    ],
    era_narrow => [
      "MK",
      "TK"
    ],
    era_wide => [
      "Mbere ya Kristo",
      "Thutha wa Kristo"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Embu",
    month_format_abbreviated => [
      "Mbe",
      "Kai",
      "Kat",
      "Kan",
      "Gat",
      "Gan",
      "Mug",
      "Knn",
      "Ken",
      "Iku",
      "Imw",
      "Igi"
    ],
    month_format_narrow => [
      "M",
      "K",
      "K",
      "K",
      "G",
      "G",
      "M",
      "K",
      "K",
      "I",
      "I",
      "I"
    ],
    month_format_wide => [
      "Mweri wa mbere",
      "Mweri wa ka\N{U+0129}ri",
      "Mweri wa kathat\N{U+0169}",
      "Mweri wa kana",
      "Mweri wa gatano",
      "Mweri wa gatantat\N{U+0169}",
      "Mweri wa m\N{U+0169}gwanja",
      "Mweri wa kanana",
      "Mweri wa kenda",
      "Mweri wa ik\N{U+0169}mi",
      "Mweri wa ik\N{U+0169}mi na \N{U+0169}mwe",
      "Mweri wa ik\N{U+0169}mi na Ka\N{U+0129}r\N{U+0129}"
    ],
    month_stand_alone_abbreviated => [
      "Mbe",
      "Kai",
      "Kat",
      "Kan",
      "Gat",
      "Gan",
      "Mug",
      "Knn",
      "Ken",
      "Iku",
      "Imw",
      "Igi"
    ],
    month_stand_alone_narrow => [
      "M",
      "K",
      "K",
      "K",
      "G",
      "G",
      "M",
      "K",
      "K",
      "I",
      "I",
      "I"
    ],
    month_stand_alone_wide => [
      "Mweri wa mbere",
      "Mweri wa ka\N{U+0129}ri",
      "Mweri wa kathat\N{U+0169}",
      "Mweri wa kana",
      "Mweri wa gatano",
      "Mweri wa gatantat\N{U+0169}",
      "Mweri wa m\N{U+0169}gwanja",
      "Mweri wa kanana",
      "Mweri wa kenda",
      "Mweri wa ik\N{U+0169}mi",
      "Mweri wa ik\N{U+0169}mi na \N{U+0169}mwe",
      "Mweri wa ik\N{U+0169}mi na Ka\N{U+0129}r\N{U+0129}"
    ],
    name => "Embu Kenya",
    native_language => "K\N{U+0129}embu",
    native_name => "K\N{U+0129}embu Kenya",
    native_script => undef,
    native_territory => "Kenya",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Kuota ya mbere",
      "Kuota ya Ka\N{U+0129}r\N{U+0129}",
      "Kuota ya kathatu",
      "Kuota ya kana"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Kuota ya mbere",
      "Kuota ya Ka\N{U+0129}r\N{U+0129}",
      "Kuota ya kathatu",
      "Kuota ya kana"
    ],
    script => undef,
    territory => "Kenya",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ee ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E a 'ga' h:mm",
      Ehms => "E a 'ga' h:mm:ss",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, MMM d 'lia' y G",
      GyMMMd => "MMM d 'lia', y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d 'lia'",
      MMMMEd => "E, MMMM d 'lia'",
      MMMMd => "MMMM d 'lia'",
      MMMd => "MMM d 'lia'",
      Md => "M/d",
      d => "d",
      h => "a 'ga' h",
      hm => "a 'ga' h:mm",
      hms => "a 'ga' h:mm:ss",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "'a\N{U+0256}aba\N{U+0192}o\N{U+0192}o' mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "MMM d 'lia', y",
      yMd => "M/d/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ee",
    date_format_full => "EEEE, MMMM d 'lia' y",
    date_format_long => "MMMM d 'lia' y",
    date_format_medium => "MMM d 'lia', y",
    date_format_short => "M/d/yy",
    datetime_format_full => "{0} {1}",
    datetime_format_long => "{0} {1}",
    datetime_format_medium => "{0} {1}",
    datetime_format_short => "{0} {1}",
    day_format_abbreviated => [
      "dzo",
      "bla",
      "ku\N{U+0256}",
      "yaw",
      "fi\N{U+0256}",
      "mem",
      "k\N{U+0254}s"
    ],
    day_format_narrow => [
      "d",
      "b",
      "k",
      "y",
      "f",
      "m",
      "k"
    ],
    day_format_wide => [
      "dzo\N{U+0256}a",
      "bla\N{U+0256}a",
      "ku\N{U+0256}a",
      "yawo\N{U+0256}a",
      "fi\N{U+0256}a",
      "memle\N{U+0256}a",
      "k\N{U+0254}si\N{U+0256}a"
    ],
    day_stand_alone_abbreviated => [
      "dzo",
      "bla",
      "ku\N{U+0256}",
      "yaw",
      "fi\N{U+0256}",
      "mem",
      "k\N{U+0254}s"
    ],
    day_stand_alone_narrow => [
      "d",
      "b",
      "k",
      "y",
      "f",
      "m",
      "k"
    ],
    day_stand_alone_wide => [
      "dzo\N{U+0256}a",
      "bla\N{U+0256}a",
      "ku\N{U+0256}a",
      "yawo\N{U+0256}a",
      "fi\N{U+0256}a",
      "memle\N{U+0256}a",
      "k\N{U+0254}si\N{U+0256}a"
    ],
    era_abbreviated => [
      "hY",
      "Y\N{U+014b}"
    ],
    era_narrow => [
      "hY",
      "Y\N{U+014b}"
    ],
    era_wide => [
      "Hafi Yesu Va Do \N{U+014b}g\N{U+0254}",
      "Yesu \N{U+014a}\N{U+0254}li"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Ewe",
    month_format_abbreviated => [
      "dzv",
      "dzd",
      "ted",
      "af\N{U+0254}",
      "dam",
      "mas",
      "sia",
      "dea",
      "any",
      "kel",
      "ade",
      "dzm"
    ],
    month_format_narrow => [
      "d",
      "d",
      "t",
      "a",
      "d",
      "m",
      "s",
      "d",
      "a",
      "k",
      "a",
      "d"
    ],
    month_format_wide => [
      "dzove",
      "dzodze",
      "tedoxe",
      "af\N{U+0254}f\N{U+0129}e",
      "dama",
      "masa",
      "siaml\N{U+0254}m",
      "deasiamime",
      "any\N{U+0254}ny\N{U+0254}",
      "kele",
      "ade\N{U+025b}mekp\N{U+0254}xe",
      "dzome"
    ],
    month_stand_alone_abbreviated => [
      "dzv",
      "dzd",
      "ted",
      "af\N{U+0254}",
      "dam",
      "mas",
      "sia",
      "dea",
      "any",
      "kel",
      "ade",
      "dzm"
    ],
    month_stand_alone_narrow => [
      "d",
      "d",
      "t",
      "a",
      "d",
      "m",
      "s",
      "d",
      "a",
      "k",
      "a",
      "d"
    ],
    month_stand_alone_wide => [
      "dzove",
      "dzodze",
      "tedoxe",
      "af\N{U+0254}f\N{U+0129}e",
      "dama",
      "masa",
      "siaml\N{U+0254}m",
      "deasiamime",
      "any\N{U+0254}ny\N{U+0254}",
      "kele",
      "ade\N{U+025b}mekp\N{U+0254}xe",
      "dzome"
    ],
    name => "Ewe",
    native_language => "E\N{U+028b}egbe",
    native_name => "E\N{U+028b}egbe",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "k1",
      "k2",
      "k3",
      "k4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "k\N{U+0254}ta gb\N{U+00e3}t\N{U+0254}",
      "k\N{U+0254}ta evelia",
      "k\N{U+0254}ta et\N{U+0254}\N{U+0303}lia",
      "k\N{U+0254}ta enelia"
    ],
    quarter_stand_alone_abbreviated => [
      "k1",
      "k2",
      "k3",
      "k4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "k\N{U+0254}ta gb\N{U+00e3}t\N{U+0254}",
      "k\N{U+0254}ta evelia",
      "k\N{U+0254}ta et\N{U+0254}\N{U+0303}lia",
      "k\N{U+0254}ta enelia"
    ],
    script => undef,
    territory => undef,
    time_format_full => "a 'ga' h:mm:ss zzzz",
    time_format_long => "a 'ga' h:mm:ss z",
    time_format_medium => "a 'ga' h:mm:ss",
    time_format_short => "a 'ga' h:mm",
    variant => undef,
    version => 28
  }
  __[ ee-GH ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E a 'ga' h:mm",
      Ehms => "E a 'ga' h:mm:ss",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, MMM d 'lia' y G",
      GyMMMd => "MMM d 'lia', y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d 'lia'",
      MMMMEd => "E, MMMM d 'lia'",
      MMMMd => "MMMM d 'lia'",
      MMMd => "MMM d 'lia'",
      Md => "M/d",
      d => "d",
      h => "a 'ga' h",
      hm => "a 'ga' h:mm",
      hms => "a 'ga' h:mm:ss",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "'a\N{U+0256}aba\N{U+0192}o\N{U+0192}o' mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "MMM d 'lia', y",
      yMd => "M/d/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ee-GH",
    date_format_full => "EEEE, MMMM d 'lia' y",
    date_format_long => "MMMM d 'lia' y",
    date_format_medium => "MMM d 'lia', y",
    date_format_short => "M/d/yy",
    datetime_format_full => "{0} {1}",
    datetime_format_long => "{0} {1}",
    datetime_format_medium => "{0} {1}",
    datetime_format_short => "{0} {1}",
    day_format_abbreviated => [
      "dzo",
      "bla",
      "ku\N{U+0256}",
      "yaw",
      "fi\N{U+0256}",
      "mem",
      "k\N{U+0254}s"
    ],
    day_format_narrow => [
      "d",
      "b",
      "k",
      "y",
      "f",
      "m",
      "k"
    ],
    day_format_wide => [
      "dzo\N{U+0256}a",
      "bla\N{U+0256}a",
      "ku\N{U+0256}a",
      "yawo\N{U+0256}a",
      "fi\N{U+0256}a",
      "memle\N{U+0256}a",
      "k\N{U+0254}si\N{U+0256}a"
    ],
    day_stand_alone_abbreviated => [
      "dzo",
      "bla",
      "ku\N{U+0256}",
      "yaw",
      "fi\N{U+0256}",
      "mem",
      "k\N{U+0254}s"
    ],
    day_stand_alone_narrow => [
      "d",
      "b",
      "k",
      "y",
      "f",
      "m",
      "k"
    ],
    day_stand_alone_wide => [
      "dzo\N{U+0256}a",
      "bla\N{U+0256}a",
      "ku\N{U+0256}a",
      "yawo\N{U+0256}a",
      "fi\N{U+0256}a",
      "memle\N{U+0256}a",
      "k\N{U+0254}si\N{U+0256}a"
    ],
    era_abbreviated => [
      "hY",
      "Y\N{U+014b}"
    ],
    era_narrow => [
      "hY",
      "Y\N{U+014b}"
    ],
    era_wide => [
      "Hafi Yesu Va Do \N{U+014b}g\N{U+0254}",
      "Yesu \N{U+014a}\N{U+0254}li"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Ewe",
    month_format_abbreviated => [
      "dzv",
      "dzd",
      "ted",
      "af\N{U+0254}",
      "dam",
      "mas",
      "sia",
      "dea",
      "any",
      "kel",
      "ade",
      "dzm"
    ],
    month_format_narrow => [
      "d",
      "d",
      "t",
      "a",
      "d",
      "m",
      "s",
      "d",
      "a",
      "k",
      "a",
      "d"
    ],
    month_format_wide => [
      "dzove",
      "dzodze",
      "tedoxe",
      "af\N{U+0254}f\N{U+0129}e",
      "dama",
      "masa",
      "siaml\N{U+0254}m",
      "deasiamime",
      "any\N{U+0254}ny\N{U+0254}",
      "kele",
      "ade\N{U+025b}mekp\N{U+0254}xe",
      "dzome"
    ],
    month_stand_alone_abbreviated => [
      "dzv",
      "dzd",
      "ted",
      "af\N{U+0254}",
      "dam",
      "mas",
      "sia",
      "dea",
      "any",
      "kel",
      "ade",
      "dzm"
    ],
    month_stand_alone_narrow => [
      "d",
      "d",
      "t",
      "a",
      "d",
      "m",
      "s",
      "d",
      "a",
      "k",
      "a",
      "d"
    ],
    month_stand_alone_wide => [
      "dzove",
      "dzodze",
      "tedoxe",
      "af\N{U+0254}f\N{U+0129}e",
      "dama",
      "masa",
      "siaml\N{U+0254}m",
      "deasiamime",
      "any\N{U+0254}ny\N{U+0254}",
      "kele",
      "ade\N{U+025b}mekp\N{U+0254}xe",
      "dzome"
    ],
    name => "Ewe Ghana",
    native_language => "E\N{U+028b}egbe",
    native_name => "E\N{U+028b}egbe Ghana nutome",
    native_script => undef,
    native_territory => "Ghana nutome",
    native_variant => undef,
    quarter_format_abbreviated => [
      "k1",
      "k2",
      "k3",
      "k4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "k\N{U+0254}ta gb\N{U+00e3}t\N{U+0254}",
      "k\N{U+0254}ta evelia",
      "k\N{U+0254}ta et\N{U+0254}\N{U+0303}lia",
      "k\N{U+0254}ta enelia"
    ],
    quarter_stand_alone_abbreviated => [
      "k1",
      "k2",
      "k3",
      "k4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "k\N{U+0254}ta gb\N{U+00e3}t\N{U+0254}",
      "k\N{U+0254}ta evelia",
      "k\N{U+0254}ta et\N{U+0254}\N{U+0303}lia",
      "k\N{U+0254}ta enelia"
    ],
    script => undef,
    territory => "Ghana",
    time_format_full => "a 'ga' h:mm:ss zzzz",
    time_format_long => "a 'ga' h:mm:ss z",
    time_format_medium => "a 'ga' h:mm:ss",
    time_format_short => "a 'ga' h:mm",
    variant => undef,
    version => 28
  }
  __[ ee-TG ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E a 'ga' h:mm",
      Ehms => "E a 'ga' h:mm:ss",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, MMM d 'lia' y G",
      GyMMMd => "MMM d 'lia', y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d 'lia'",
      MMMMEd => "E, MMMM d 'lia'",
      MMMMd => "MMMM d 'lia'",
      MMMd => "MMM d 'lia'",
      Md => "M/d",
      d => "d",
      h => "a 'ga' h",
      hm => "a 'ga' h:mm",
      hms => "a 'ga' h:mm:ss",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "'a\N{U+0256}aba\N{U+0192}o\N{U+0192}o' mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "MMM d 'lia', y",
      yMd => "M/d/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ee-TG",
    date_format_full => "EEEE, MMMM d 'lia' y",
    date_format_long => "MMMM d 'lia' y",
    date_format_medium => "MMM d 'lia', y",
    date_format_short => "M/d/yy",
    datetime_format_full => "{0} {1}",
    datetime_format_long => "{0} {1}",
    datetime_format_medium => "{0} {1}",
    datetime_format_short => "{0} {1}",
    day_format_abbreviated => [
      "dzo",
      "bla",
      "ku\N{U+0256}",
      "yaw",
      "fi\N{U+0256}",
      "mem",
      "k\N{U+0254}s"
    ],
    day_format_narrow => [
      "d",
      "b",
      "k",
      "y",
      "f",
      "m",
      "k"
    ],
    day_format_wide => [
      "dzo\N{U+0256}a",
      "bla\N{U+0256}a",
      "ku\N{U+0256}a",
      "yawo\N{U+0256}a",
      "fi\N{U+0256}a",
      "memle\N{U+0256}a",
      "k\N{U+0254}si\N{U+0256}a"
    ],
    day_stand_alone_abbreviated => [
      "dzo",
      "bla",
      "ku\N{U+0256}",
      "yaw",
      "fi\N{U+0256}",
      "mem",
      "k\N{U+0254}s"
    ],
    day_stand_alone_narrow => [
      "d",
      "b",
      "k",
      "y",
      "f",
      "m",
      "k"
    ],
    day_stand_alone_wide => [
      "dzo\N{U+0256}a",
      "bla\N{U+0256}a",
      "ku\N{U+0256}a",
      "yawo\N{U+0256}a",
      "fi\N{U+0256}a",
      "memle\N{U+0256}a",
      "k\N{U+0254}si\N{U+0256}a"
    ],
    era_abbreviated => [
      "hY",
      "Y\N{U+014b}"
    ],
    era_narrow => [
      "hY",
      "Y\N{U+014b}"
    ],
    era_wide => [
      "Hafi Yesu Va Do \N{U+014b}g\N{U+0254}",
      "Yesu \N{U+014a}\N{U+0254}li"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Ewe",
    month_format_abbreviated => [
      "dzv",
      "dzd",
      "ted",
      "af\N{U+0254}",
      "dam",
      "mas",
      "sia",
      "dea",
      "any",
      "kel",
      "ade",
      "dzm"
    ],
    month_format_narrow => [
      "d",
      "d",
      "t",
      "a",
      "d",
      "m",
      "s",
      "d",
      "a",
      "k",
      "a",
      "d"
    ],
    month_format_wide => [
      "dzove",
      "dzodze",
      "tedoxe",
      "af\N{U+0254}f\N{U+0129}e",
      "dama",
      "masa",
      "siaml\N{U+0254}m",
      "deasiamime",
      "any\N{U+0254}ny\N{U+0254}",
      "kele",
      "ade\N{U+025b}mekp\N{U+0254}xe",
      "dzome"
    ],
    month_stand_alone_abbreviated => [
      "dzv",
      "dzd",
      "ted",
      "af\N{U+0254}",
      "dam",
      "mas",
      "sia",
      "dea",
      "any",
      "kel",
      "ade",
      "dzm"
    ],
    month_stand_alone_narrow => [
      "d",
      "d",
      "t",
      "a",
      "d",
      "m",
      "s",
      "d",
      "a",
      "k",
      "a",
      "d"
    ],
    month_stand_alone_wide => [
      "dzove",
      "dzodze",
      "tedoxe",
      "af\N{U+0254}f\N{U+0129}e",
      "dama",
      "masa",
      "siaml\N{U+0254}m",
      "deasiamime",
      "any\N{U+0254}ny\N{U+0254}",
      "kele",
      "ade\N{U+025b}mekp\N{U+0254}xe",
      "dzome"
    ],
    name => "Ewe Togo",
    native_language => "E\N{U+028b}egbe",
    native_name => "E\N{U+028b}egbe Togo nutome",
    native_script => undef,
    native_territory => "Togo nutome",
    native_variant => undef,
    quarter_format_abbreviated => [
      "k1",
      "k2",
      "k3",
      "k4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "k\N{U+0254}ta gb\N{U+00e3}t\N{U+0254}",
      "k\N{U+0254}ta evelia",
      "k\N{U+0254}ta et\N{U+0254}\N{U+0303}lia",
      "k\N{U+0254}ta enelia"
    ],
    quarter_stand_alone_abbreviated => [
      "k1",
      "k2",
      "k3",
      "k4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "k\N{U+0254}ta gb\N{U+00e3}t\N{U+0254}",
      "k\N{U+0254}ta evelia",
      "k\N{U+0254}ta et\N{U+0254}\N{U+0303}lia",
      "k\N{U+0254}ta enelia"
    ],
    script => undef,
    territory => "Togo",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ el ]__
  {
    am_pm_abbreviated => [
      "\N{U+03c0}.\N{U+03bc}.",
      "\N{U+03bc}.\N{U+03bc}."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "LLL y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "el",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} - {0}",
    datetime_format_long => "{1} - {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+0394}\N{U+03b5}\N{U+03c5}",
      "\N{U+03a4}\N{U+03c1}\N{U+03af}",
      "\N{U+03a4}\N{U+03b5}\N{U+03c4}",
      "\N{U+03a0}\N{U+03ad}\N{U+03bc}",
      "\N{U+03a0}\N{U+03b1}\N{U+03c1}",
      "\N{U+03a3}\N{U+03ac}\N{U+03b2}",
      "\N{U+039a}\N{U+03c5}\N{U+03c1}"
    ],
    day_format_narrow => [
      "\N{U+0394}",
      "\N{U+03a4}",
      "\N{U+03a4}",
      "\N{U+03a0}",
      "\N{U+03a0}",
      "\N{U+03a3}",
      "\N{U+039a}"
    ],
    day_format_wide => [
      "\N{U+0394}\N{U+03b5}\N{U+03c5}\N{U+03c4}\N{U+03ad}\N{U+03c1}\N{U+03b1}",
      "\N{U+03a4}\N{U+03c1}\N{U+03af}\N{U+03c4}\N{U+03b7}",
      "\N{U+03a4}\N{U+03b5}\N{U+03c4}\N{U+03ac}\N{U+03c1}\N{U+03c4}\N{U+03b7}",
      "\N{U+03a0}\N{U+03ad}\N{U+03bc}\N{U+03c0}\N{U+03c4}\N{U+03b7}",
      "\N{U+03a0}\N{U+03b1}\N{U+03c1}\N{U+03b1}\N{U+03c3}\N{U+03ba}\N{U+03b5}\N{U+03c5}\N{U+03ae}",
      "\N{U+03a3}\N{U+03ac}\N{U+03b2}\N{U+03b2}\N{U+03b1}\N{U+03c4}\N{U+03bf}",
      "\N{U+039a}\N{U+03c5}\N{U+03c1}\N{U+03b9}\N{U+03b1}\N{U+03ba}\N{U+03ae}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0394}\N{U+03b5}\N{U+03c5}",
      "\N{U+03a4}\N{U+03c1}\N{U+03af}",
      "\N{U+03a4}\N{U+03b5}\N{U+03c4}",
      "\N{U+03a0}\N{U+03ad}\N{U+03bc}",
      "\N{U+03a0}\N{U+03b1}\N{U+03c1}",
      "\N{U+03a3}\N{U+03ac}\N{U+03b2}",
      "\N{U+039a}\N{U+03c5}\N{U+03c1}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0394}",
      "\N{U+03a4}",
      "\N{U+03a4}",
      "\N{U+03a0}",
      "\N{U+03a0}",
      "\N{U+03a3}",
      "\N{U+039a}"
    ],
    day_stand_alone_wide => [
      "\N{U+0394}\N{U+03b5}\N{U+03c5}\N{U+03c4}\N{U+03ad}\N{U+03c1}\N{U+03b1}",
      "\N{U+03a4}\N{U+03c1}\N{U+03af}\N{U+03c4}\N{U+03b7}",
      "\N{U+03a4}\N{U+03b5}\N{U+03c4}\N{U+03ac}\N{U+03c1}\N{U+03c4}\N{U+03b7}",
      "\N{U+03a0}\N{U+03ad}\N{U+03bc}\N{U+03c0}\N{U+03c4}\N{U+03b7}",
      "\N{U+03a0}\N{U+03b1}\N{U+03c1}\N{U+03b1}\N{U+03c3}\N{U+03ba}\N{U+03b5}\N{U+03c5}\N{U+03ae}",
      "\N{U+03a3}\N{U+03ac}\N{U+03b2}\N{U+03b2}\N{U+03b1}\N{U+03c4}\N{U+03bf}",
      "\N{U+039a}\N{U+03c5}\N{U+03c1}\N{U+03b9}\N{U+03b1}\N{U+03ba}\N{U+03ae}"
    ],
    era_abbreviated => [
      "\N{U+03c0}.\N{U+03a7}.",
      "\N{U+03bc}.\N{U+03a7}."
    ],
    era_narrow => [
      "\N{U+03c0}.\N{U+03a7}.",
      "\N{U+03bc}.\N{U+03a7}."
    ],
    era_wide => [
      "\N{U+03c0}\N{U+03c1}\N{U+03bf} \N{U+03a7}\N{U+03c1}\N{U+03b9}\N{U+03c3}\N{U+03c4}\N{U+03bf}\N{U+03cd}",
      "\N{U+03bc}\N{U+03b5}\N{U+03c4}\N{U+03ac} \N{U+03a7}\N{U+03c1}\N{U+03b9}\N{U+03c3}\N{U+03c4}\N{U+03cc}\N{U+03bd}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Greek",
    month_format_abbreviated => [
      "\N{U+0399}\N{U+03b1}\N{U+03bd}",
      "\N{U+03a6}\N{U+03b5}\N{U+03b2}",
      "\N{U+039c}\N{U+03b1}\N{U+03c1}",
      "\N{U+0391}\N{U+03c0}\N{U+03c1}",
      "\N{U+039c}\N{U+03b1}\N{U+0390}",
      "\N{U+0399}\N{U+03bf}\N{U+03c5}\N{U+03bd}",
      "\N{U+0399}\N{U+03bf}\N{U+03c5}\N{U+03bb}",
      "\N{U+0391}\N{U+03c5}\N{U+03b3}",
      "\N{U+03a3}\N{U+03b5}\N{U+03c0}",
      "\N{U+039f}\N{U+03ba}\N{U+03c4}",
      "\N{U+039d}\N{U+03bf}\N{U+03b5}",
      "\N{U+0394}\N{U+03b5}\N{U+03ba}"
    ],
    month_format_narrow => [
      "\N{U+0399}",
      "\N{U+03a6}",
      "\N{U+039c}",
      "\N{U+0391}",
      "\N{U+039c}",
      "\N{U+0399}",
      "\N{U+0399}",
      "\N{U+0391}",
      "\N{U+03a3}",
      "\N{U+039f}",
      "\N{U+039d}",
      "\N{U+0394}"
    ],
    month_format_wide => [
      "\N{U+0399}\N{U+03b1}\N{U+03bd}\N{U+03bf}\N{U+03c5}\N{U+03b1}\N{U+03c1}\N{U+03af}\N{U+03bf}\N{U+03c5}",
      "\N{U+03a6}\N{U+03b5}\N{U+03b2}\N{U+03c1}\N{U+03bf}\N{U+03c5}\N{U+03b1}\N{U+03c1}\N{U+03af}\N{U+03bf}\N{U+03c5}",
      "\N{U+039c}\N{U+03b1}\N{U+03c1}\N{U+03c4}\N{U+03af}\N{U+03bf}\N{U+03c5}",
      "\N{U+0391}\N{U+03c0}\N{U+03c1}\N{U+03b9}\N{U+03bb}\N{U+03af}\N{U+03bf}\N{U+03c5}",
      "\N{U+039c}\N{U+03b1}\N{U+0390}\N{U+03bf}\N{U+03c5}",
      "\N{U+0399}\N{U+03bf}\N{U+03c5}\N{U+03bd}\N{U+03af}\N{U+03bf}\N{U+03c5}",
      "\N{U+0399}\N{U+03bf}\N{U+03c5}\N{U+03bb}\N{U+03af}\N{U+03bf}\N{U+03c5}",
      "\N{U+0391}\N{U+03c5}\N{U+03b3}\N{U+03bf}\N{U+03cd}\N{U+03c3}\N{U+03c4}\N{U+03bf}\N{U+03c5}",
      "\N{U+03a3}\N{U+03b5}\N{U+03c0}\N{U+03c4}\N{U+03b5}\N{U+03bc}\N{U+03b2}\N{U+03c1}\N{U+03af}\N{U+03bf}\N{U+03c5}",
      "\N{U+039f}\N{U+03ba}\N{U+03c4}\N{U+03c9}\N{U+03b2}\N{U+03c1}\N{U+03af}\N{U+03bf}\N{U+03c5}",
      "\N{U+039d}\N{U+03bf}\N{U+03b5}\N{U+03bc}\N{U+03b2}\N{U+03c1}\N{U+03af}\N{U+03bf}\N{U+03c5}",
      "\N{U+0394}\N{U+03b5}\N{U+03ba}\N{U+03b5}\N{U+03bc}\N{U+03b2}\N{U+03c1}\N{U+03af}\N{U+03bf}\N{U+03c5}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0399}\N{U+03b1}\N{U+03bd}",
      "\N{U+03a6}\N{U+03b5}\N{U+03b2}",
      "\N{U+039c}\N{U+03ac}\N{U+03c1}",
      "\N{U+0391}\N{U+03c0}\N{U+03c1}",
      "\N{U+039c}\N{U+03ac}\N{U+03b9}",
      "\N{U+0399}\N{U+03bf}\N{U+03cd}\N{U+03bd}",
      "\N{U+0399}\N{U+03bf}\N{U+03cd}\N{U+03bb}",
      "\N{U+0391}\N{U+03cd}\N{U+03b3}",
      "\N{U+03a3}\N{U+03b5}\N{U+03c0}",
      "\N{U+039f}\N{U+03ba}\N{U+03c4}",
      "\N{U+039d}\N{U+03bf}\N{U+03ad}",
      "\N{U+0394}\N{U+03b5}\N{U+03ba}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0399}",
      "\N{U+03a6}",
      "\N{U+039c}",
      "\N{U+0391}",
      "\N{U+039c}",
      "\N{U+0399}",
      "\N{U+0399}",
      "\N{U+0391}",
      "\N{U+03a3}",
      "\N{U+039f}",
      "\N{U+039d}",
      "\N{U+0394}"
    ],
    month_stand_alone_wide => [
      "\N{U+0399}\N{U+03b1}\N{U+03bd}\N{U+03bf}\N{U+03c5}\N{U+03ac}\N{U+03c1}\N{U+03b9}\N{U+03bf}\N{U+03c2}",
      "\N{U+03a6}\N{U+03b5}\N{U+03b2}\N{U+03c1}\N{U+03bf}\N{U+03c5}\N{U+03ac}\N{U+03c1}\N{U+03b9}\N{U+03bf}\N{U+03c2}",
      "\N{U+039c}\N{U+03ac}\N{U+03c1}\N{U+03c4}\N{U+03b9}\N{U+03bf}\N{U+03c2}",
      "\N{U+0391}\N{U+03c0}\N{U+03c1}\N{U+03af}\N{U+03bb}\N{U+03b9}\N{U+03bf}\N{U+03c2}",
      "\N{U+039c}\N{U+03ac}\N{U+03b9}\N{U+03bf}\N{U+03c2}",
      "\N{U+0399}\N{U+03bf}\N{U+03cd}\N{U+03bd}\N{U+03b9}\N{U+03bf}\N{U+03c2}",
      "\N{U+0399}\N{U+03bf}\N{U+03cd}\N{U+03bb}\N{U+03b9}\N{U+03bf}\N{U+03c2}",
      "\N{U+0391}\N{U+03cd}\N{U+03b3}\N{U+03bf}\N{U+03c5}\N{U+03c3}\N{U+03c4}\N{U+03bf}\N{U+03c2}",
      "\N{U+03a3}\N{U+03b5}\N{U+03c0}\N{U+03c4}\N{U+03ad}\N{U+03bc}\N{U+03b2}\N{U+03c1}\N{U+03b9}\N{U+03bf}\N{U+03c2}",
      "\N{U+039f}\N{U+03ba}\N{U+03c4}\N{U+03ce}\N{U+03b2}\N{U+03c1}\N{U+03b9}\N{U+03bf}\N{U+03c2}",
      "\N{U+039d}\N{U+03bf}\N{U+03ad}\N{U+03bc}\N{U+03b2}\N{U+03c1}\N{U+03b9}\N{U+03bf}\N{U+03c2}",
      "\N{U+0394}\N{U+03b5}\N{U+03ba}\N{U+03ad}\N{U+03bc}\N{U+03b2}\N{U+03c1}\N{U+03b9}\N{U+03bf}\N{U+03c2}"
    ],
    name => "Greek",
    native_language => "\N{U+0395}\N{U+03bb}\N{U+03bb}\N{U+03b7}\N{U+03bd}\N{U+03b9}\N{U+03ba}\N{U+03ac}",
    native_name => "\N{U+0395}\N{U+03bb}\N{U+03bb}\N{U+03b7}\N{U+03bd}\N{U+03b9}\N{U+03ba}\N{U+03ac}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+03a4}1",
      "\N{U+03a4}2",
      "\N{U+03a4}3",
      "\N{U+03a4}4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1\N{U+03bf} \N{U+03c4}\N{U+03c1}\N{U+03af}\N{U+03bc}\N{U+03b7}\N{U+03bd}\N{U+03bf}",
      "2\N{U+03bf} \N{U+03c4}\N{U+03c1}\N{U+03af}\N{U+03bc}\N{U+03b7}\N{U+03bd}\N{U+03bf}",
      "3\N{U+03bf} \N{U+03c4}\N{U+03c1}\N{U+03af}\N{U+03bc}\N{U+03b7}\N{U+03bd}\N{U+03bf}",
      "4\N{U+03bf} \N{U+03c4}\N{U+03c1}\N{U+03af}\N{U+03bc}\N{U+03b7}\N{U+03bd}\N{U+03bf}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+03a4}1",
      "\N{U+03a4}2",
      "\N{U+03a4}3",
      "\N{U+03a4}4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1\N{U+03bf} \N{U+03c4}\N{U+03c1}\N{U+03af}\N{U+03bc}\N{U+03b7}\N{U+03bd}\N{U+03bf}",
      "2\N{U+03bf} \N{U+03c4}\N{U+03c1}\N{U+03af}\N{U+03bc}\N{U+03b7}\N{U+03bd}\N{U+03bf}",
      "3\N{U+03bf} \N{U+03c4}\N{U+03c1}\N{U+03af}\N{U+03bc}\N{U+03b7}\N{U+03bd}\N{U+03bf}",
      "4\N{U+03bf} \N{U+03c4}\N{U+03c1}\N{U+03af}\N{U+03bc}\N{U+03b7}\N{U+03bd}\N{U+03bf}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ el-CY ]__
  {
    am_pm_abbreviated => [
      "\N{U+03c0}.\N{U+03bc}.",
      "\N{U+03bc}.\N{U+03bc}."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "LLL y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "el-CY",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} - {0}",
    datetime_format_long => "{1} - {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+0394}\N{U+03b5}\N{U+03c5}",
      "\N{U+03a4}\N{U+03c1}\N{U+03af}",
      "\N{U+03a4}\N{U+03b5}\N{U+03c4}",
      "\N{U+03a0}\N{U+03ad}\N{U+03bc}",
      "\N{U+03a0}\N{U+03b1}\N{U+03c1}",
      "\N{U+03a3}\N{U+03ac}\N{U+03b2}",
      "\N{U+039a}\N{U+03c5}\N{U+03c1}"
    ],
    day_format_narrow => [
      "\N{U+0394}",
      "\N{U+03a4}",
      "\N{U+03a4}",
      "\N{U+03a0}",
      "\N{U+03a0}",
      "\N{U+03a3}",
      "\N{U+039a}"
    ],
    day_format_wide => [
      "\N{U+0394}\N{U+03b5}\N{U+03c5}\N{U+03c4}\N{U+03ad}\N{U+03c1}\N{U+03b1}",
      "\N{U+03a4}\N{U+03c1}\N{U+03af}\N{U+03c4}\N{U+03b7}",
      "\N{U+03a4}\N{U+03b5}\N{U+03c4}\N{U+03ac}\N{U+03c1}\N{U+03c4}\N{U+03b7}",
      "\N{U+03a0}\N{U+03ad}\N{U+03bc}\N{U+03c0}\N{U+03c4}\N{U+03b7}",
      "\N{U+03a0}\N{U+03b1}\N{U+03c1}\N{U+03b1}\N{U+03c3}\N{U+03ba}\N{U+03b5}\N{U+03c5}\N{U+03ae}",
      "\N{U+03a3}\N{U+03ac}\N{U+03b2}\N{U+03b2}\N{U+03b1}\N{U+03c4}\N{U+03bf}",
      "\N{U+039a}\N{U+03c5}\N{U+03c1}\N{U+03b9}\N{U+03b1}\N{U+03ba}\N{U+03ae}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0394}\N{U+03b5}\N{U+03c5}",
      "\N{U+03a4}\N{U+03c1}\N{U+03af}",
      "\N{U+03a4}\N{U+03b5}\N{U+03c4}",
      "\N{U+03a0}\N{U+03ad}\N{U+03bc}",
      "\N{U+03a0}\N{U+03b1}\N{U+03c1}",
      "\N{U+03a3}\N{U+03ac}\N{U+03b2}",
      "\N{U+039a}\N{U+03c5}\N{U+03c1}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0394}",
      "\N{U+03a4}",
      "\N{U+03a4}",
      "\N{U+03a0}",
      "\N{U+03a0}",
      "\N{U+03a3}",
      "\N{U+039a}"
    ],
    day_stand_alone_wide => [
      "\N{U+0394}\N{U+03b5}\N{U+03c5}\N{U+03c4}\N{U+03ad}\N{U+03c1}\N{U+03b1}",
      "\N{U+03a4}\N{U+03c1}\N{U+03af}\N{U+03c4}\N{U+03b7}",
      "\N{U+03a4}\N{U+03b5}\N{U+03c4}\N{U+03ac}\N{U+03c1}\N{U+03c4}\N{U+03b7}",
      "\N{U+03a0}\N{U+03ad}\N{U+03bc}\N{U+03c0}\N{U+03c4}\N{U+03b7}",
      "\N{U+03a0}\N{U+03b1}\N{U+03c1}\N{U+03b1}\N{U+03c3}\N{U+03ba}\N{U+03b5}\N{U+03c5}\N{U+03ae}",
      "\N{U+03a3}\N{U+03ac}\N{U+03b2}\N{U+03b2}\N{U+03b1}\N{U+03c4}\N{U+03bf}",
      "\N{U+039a}\N{U+03c5}\N{U+03c1}\N{U+03b9}\N{U+03b1}\N{U+03ba}\N{U+03ae}"
    ],
    era_abbreviated => [
      "\N{U+03c0}.\N{U+03a7}.",
      "\N{U+03bc}.\N{U+03a7}."
    ],
    era_narrow => [
      "\N{U+03c0}.\N{U+03a7}.",
      "\N{U+03bc}.\N{U+03a7}."
    ],
    era_wide => [
      "\N{U+03c0}\N{U+03c1}\N{U+03bf} \N{U+03a7}\N{U+03c1}\N{U+03b9}\N{U+03c3}\N{U+03c4}\N{U+03bf}\N{U+03cd}",
      "\N{U+03bc}\N{U+03b5}\N{U+03c4}\N{U+03ac} \N{U+03a7}\N{U+03c1}\N{U+03b9}\N{U+03c3}\N{U+03c4}\N{U+03cc}\N{U+03bd}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Greek",
    month_format_abbreviated => [
      "\N{U+0399}\N{U+03b1}\N{U+03bd}",
      "\N{U+03a6}\N{U+03b5}\N{U+03b2}",
      "\N{U+039c}\N{U+03b1}\N{U+03c1}",
      "\N{U+0391}\N{U+03c0}\N{U+03c1}",
      "\N{U+039c}\N{U+03b1}\N{U+0390}",
      "\N{U+0399}\N{U+03bf}\N{U+03c5}\N{U+03bd}",
      "\N{U+0399}\N{U+03bf}\N{U+03c5}\N{U+03bb}",
      "\N{U+0391}\N{U+03c5}\N{U+03b3}",
      "\N{U+03a3}\N{U+03b5}\N{U+03c0}",
      "\N{U+039f}\N{U+03ba}\N{U+03c4}",
      "\N{U+039d}\N{U+03bf}\N{U+03b5}",
      "\N{U+0394}\N{U+03b5}\N{U+03ba}"
    ],
    month_format_narrow => [
      "\N{U+0399}",
      "\N{U+03a6}",
      "\N{U+039c}",
      "\N{U+0391}",
      "\N{U+039c}",
      "\N{U+0399}",
      "\N{U+0399}",
      "\N{U+0391}",
      "\N{U+03a3}",
      "\N{U+039f}",
      "\N{U+039d}",
      "\N{U+0394}"
    ],
    month_format_wide => [
      "\N{U+0399}\N{U+03b1}\N{U+03bd}\N{U+03bf}\N{U+03c5}\N{U+03b1}\N{U+03c1}\N{U+03af}\N{U+03bf}\N{U+03c5}",
      "\N{U+03a6}\N{U+03b5}\N{U+03b2}\N{U+03c1}\N{U+03bf}\N{U+03c5}\N{U+03b1}\N{U+03c1}\N{U+03af}\N{U+03bf}\N{U+03c5}",
      "\N{U+039c}\N{U+03b1}\N{U+03c1}\N{U+03c4}\N{U+03af}\N{U+03bf}\N{U+03c5}",
      "\N{U+0391}\N{U+03c0}\N{U+03c1}\N{U+03b9}\N{U+03bb}\N{U+03af}\N{U+03bf}\N{U+03c5}",
      "\N{U+039c}\N{U+03b1}\N{U+0390}\N{U+03bf}\N{U+03c5}",
      "\N{U+0399}\N{U+03bf}\N{U+03c5}\N{U+03bd}\N{U+03af}\N{U+03bf}\N{U+03c5}",
      "\N{U+0399}\N{U+03bf}\N{U+03c5}\N{U+03bb}\N{U+03af}\N{U+03bf}\N{U+03c5}",
      "\N{U+0391}\N{U+03c5}\N{U+03b3}\N{U+03bf}\N{U+03cd}\N{U+03c3}\N{U+03c4}\N{U+03bf}\N{U+03c5}",
      "\N{U+03a3}\N{U+03b5}\N{U+03c0}\N{U+03c4}\N{U+03b5}\N{U+03bc}\N{U+03b2}\N{U+03c1}\N{U+03af}\N{U+03bf}\N{U+03c5}",
      "\N{U+039f}\N{U+03ba}\N{U+03c4}\N{U+03c9}\N{U+03b2}\N{U+03c1}\N{U+03af}\N{U+03bf}\N{U+03c5}",
      "\N{U+039d}\N{U+03bf}\N{U+03b5}\N{U+03bc}\N{U+03b2}\N{U+03c1}\N{U+03af}\N{U+03bf}\N{U+03c5}",
      "\N{U+0394}\N{U+03b5}\N{U+03ba}\N{U+03b5}\N{U+03bc}\N{U+03b2}\N{U+03c1}\N{U+03af}\N{U+03bf}\N{U+03c5}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0399}\N{U+03b1}\N{U+03bd}",
      "\N{U+03a6}\N{U+03b5}\N{U+03b2}",
      "\N{U+039c}\N{U+03ac}\N{U+03c1}",
      "\N{U+0391}\N{U+03c0}\N{U+03c1}",
      "\N{U+039c}\N{U+03ac}\N{U+03b9}",
      "\N{U+0399}\N{U+03bf}\N{U+03cd}\N{U+03bd}",
      "\N{U+0399}\N{U+03bf}\N{U+03cd}\N{U+03bb}",
      "\N{U+0391}\N{U+03cd}\N{U+03b3}",
      "\N{U+03a3}\N{U+03b5}\N{U+03c0}",
      "\N{U+039f}\N{U+03ba}\N{U+03c4}",
      "\N{U+039d}\N{U+03bf}\N{U+03ad}",
      "\N{U+0394}\N{U+03b5}\N{U+03ba}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0399}",
      "\N{U+03a6}",
      "\N{U+039c}",
      "\N{U+0391}",
      "\N{U+039c}",
      "\N{U+0399}",
      "\N{U+0399}",
      "\N{U+0391}",
      "\N{U+03a3}",
      "\N{U+039f}",
      "\N{U+039d}",
      "\N{U+0394}"
    ],
    month_stand_alone_wide => [
      "\N{U+0399}\N{U+03b1}\N{U+03bd}\N{U+03bf}\N{U+03c5}\N{U+03ac}\N{U+03c1}\N{U+03b9}\N{U+03bf}\N{U+03c2}",
      "\N{U+03a6}\N{U+03b5}\N{U+03b2}\N{U+03c1}\N{U+03bf}\N{U+03c5}\N{U+03ac}\N{U+03c1}\N{U+03b9}\N{U+03bf}\N{U+03c2}",
      "\N{U+039c}\N{U+03ac}\N{U+03c1}\N{U+03c4}\N{U+03b9}\N{U+03bf}\N{U+03c2}",
      "\N{U+0391}\N{U+03c0}\N{U+03c1}\N{U+03af}\N{U+03bb}\N{U+03b9}\N{U+03bf}\N{U+03c2}",
      "\N{U+039c}\N{U+03ac}\N{U+03b9}\N{U+03bf}\N{U+03c2}",
      "\N{U+0399}\N{U+03bf}\N{U+03cd}\N{U+03bd}\N{U+03b9}\N{U+03bf}\N{U+03c2}",
      "\N{U+0399}\N{U+03bf}\N{U+03cd}\N{U+03bb}\N{U+03b9}\N{U+03bf}\N{U+03c2}",
      "\N{U+0391}\N{U+03cd}\N{U+03b3}\N{U+03bf}\N{U+03c5}\N{U+03c3}\N{U+03c4}\N{U+03bf}\N{U+03c2}",
      "\N{U+03a3}\N{U+03b5}\N{U+03c0}\N{U+03c4}\N{U+03ad}\N{U+03bc}\N{U+03b2}\N{U+03c1}\N{U+03b9}\N{U+03bf}\N{U+03c2}",
      "\N{U+039f}\N{U+03ba}\N{U+03c4}\N{U+03ce}\N{U+03b2}\N{U+03c1}\N{U+03b9}\N{U+03bf}\N{U+03c2}",
      "\N{U+039d}\N{U+03bf}\N{U+03ad}\N{U+03bc}\N{U+03b2}\N{U+03c1}\N{U+03b9}\N{U+03bf}\N{U+03c2}",
      "\N{U+0394}\N{U+03b5}\N{U+03ba}\N{U+03ad}\N{U+03bc}\N{U+03b2}\N{U+03c1}\N{U+03b9}\N{U+03bf}\N{U+03c2}"
    ],
    name => "Greek Cyprus",
    native_language => "\N{U+0395}\N{U+03bb}\N{U+03bb}\N{U+03b7}\N{U+03bd}\N{U+03b9}\N{U+03ba}\N{U+03ac}",
    native_name => "\N{U+0395}\N{U+03bb}\N{U+03bb}\N{U+03b7}\N{U+03bd}\N{U+03b9}\N{U+03ba}\N{U+03ac} \N{U+039a}\N{U+03cd}\N{U+03c0}\N{U+03c1}\N{U+03bf}\N{U+03c2}",
    native_script => undef,
    native_territory => "\N{U+039a}\N{U+03cd}\N{U+03c0}\N{U+03c1}\N{U+03bf}\N{U+03c2}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+03a4}1",
      "\N{U+03a4}2",
      "\N{U+03a4}3",
      "\N{U+03a4}4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1\N{U+03bf} \N{U+03c4}\N{U+03c1}\N{U+03af}\N{U+03bc}\N{U+03b7}\N{U+03bd}\N{U+03bf}",
      "2\N{U+03bf} \N{U+03c4}\N{U+03c1}\N{U+03af}\N{U+03bc}\N{U+03b7}\N{U+03bd}\N{U+03bf}",
      "3\N{U+03bf} \N{U+03c4}\N{U+03c1}\N{U+03af}\N{U+03bc}\N{U+03b7}\N{U+03bd}\N{U+03bf}",
      "4\N{U+03bf} \N{U+03c4}\N{U+03c1}\N{U+03af}\N{U+03bc}\N{U+03b7}\N{U+03bd}\N{U+03bf}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+03a4}1",
      "\N{U+03a4}2",
      "\N{U+03a4}3",
      "\N{U+03a4}4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1\N{U+03bf} \N{U+03c4}\N{U+03c1}\N{U+03af}\N{U+03bc}\N{U+03b7}\N{U+03bd}\N{U+03bf}",
      "2\N{U+03bf} \N{U+03c4}\N{U+03c1}\N{U+03af}\N{U+03bc}\N{U+03b7}\N{U+03bd}\N{U+03bf}",
      "3\N{U+03bf} \N{U+03c4}\N{U+03c1}\N{U+03af}\N{U+03bc}\N{U+03b7}\N{U+03bd}\N{U+03bf}",
      "4\N{U+03bf} \N{U+03c4}\N{U+03c1}\N{U+03af}\N{U+03bc}\N{U+03b7}\N{U+03bd}\N{U+03bf}"
    ],
    script => undef,
    territory => "Cyprus",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ el-GR ]__
  {
    am_pm_abbreviated => [
      "\N{U+03c0}.\N{U+03bc}.",
      "\N{U+03bc}.\N{U+03bc}."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "LLL y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "el-GR",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} - {0}",
    datetime_format_long => "{1} - {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+0394}\N{U+03b5}\N{U+03c5}",
      "\N{U+03a4}\N{U+03c1}\N{U+03af}",
      "\N{U+03a4}\N{U+03b5}\N{U+03c4}",
      "\N{U+03a0}\N{U+03ad}\N{U+03bc}",
      "\N{U+03a0}\N{U+03b1}\N{U+03c1}",
      "\N{U+03a3}\N{U+03ac}\N{U+03b2}",
      "\N{U+039a}\N{U+03c5}\N{U+03c1}"
    ],
    day_format_narrow => [
      "\N{U+0394}",
      "\N{U+03a4}",
      "\N{U+03a4}",
      "\N{U+03a0}",
      "\N{U+03a0}",
      "\N{U+03a3}",
      "\N{U+039a}"
    ],
    day_format_wide => [
      "\N{U+0394}\N{U+03b5}\N{U+03c5}\N{U+03c4}\N{U+03ad}\N{U+03c1}\N{U+03b1}",
      "\N{U+03a4}\N{U+03c1}\N{U+03af}\N{U+03c4}\N{U+03b7}",
      "\N{U+03a4}\N{U+03b5}\N{U+03c4}\N{U+03ac}\N{U+03c1}\N{U+03c4}\N{U+03b7}",
      "\N{U+03a0}\N{U+03ad}\N{U+03bc}\N{U+03c0}\N{U+03c4}\N{U+03b7}",
      "\N{U+03a0}\N{U+03b1}\N{U+03c1}\N{U+03b1}\N{U+03c3}\N{U+03ba}\N{U+03b5}\N{U+03c5}\N{U+03ae}",
      "\N{U+03a3}\N{U+03ac}\N{U+03b2}\N{U+03b2}\N{U+03b1}\N{U+03c4}\N{U+03bf}",
      "\N{U+039a}\N{U+03c5}\N{U+03c1}\N{U+03b9}\N{U+03b1}\N{U+03ba}\N{U+03ae}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0394}\N{U+03b5}\N{U+03c5}",
      "\N{U+03a4}\N{U+03c1}\N{U+03af}",
      "\N{U+03a4}\N{U+03b5}\N{U+03c4}",
      "\N{U+03a0}\N{U+03ad}\N{U+03bc}",
      "\N{U+03a0}\N{U+03b1}\N{U+03c1}",
      "\N{U+03a3}\N{U+03ac}\N{U+03b2}",
      "\N{U+039a}\N{U+03c5}\N{U+03c1}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0394}",
      "\N{U+03a4}",
      "\N{U+03a4}",
      "\N{U+03a0}",
      "\N{U+03a0}",
      "\N{U+03a3}",
      "\N{U+039a}"
    ],
    day_stand_alone_wide => [
      "\N{U+0394}\N{U+03b5}\N{U+03c5}\N{U+03c4}\N{U+03ad}\N{U+03c1}\N{U+03b1}",
      "\N{U+03a4}\N{U+03c1}\N{U+03af}\N{U+03c4}\N{U+03b7}",
      "\N{U+03a4}\N{U+03b5}\N{U+03c4}\N{U+03ac}\N{U+03c1}\N{U+03c4}\N{U+03b7}",
      "\N{U+03a0}\N{U+03ad}\N{U+03bc}\N{U+03c0}\N{U+03c4}\N{U+03b7}",
      "\N{U+03a0}\N{U+03b1}\N{U+03c1}\N{U+03b1}\N{U+03c3}\N{U+03ba}\N{U+03b5}\N{U+03c5}\N{U+03ae}",
      "\N{U+03a3}\N{U+03ac}\N{U+03b2}\N{U+03b2}\N{U+03b1}\N{U+03c4}\N{U+03bf}",
      "\N{U+039a}\N{U+03c5}\N{U+03c1}\N{U+03b9}\N{U+03b1}\N{U+03ba}\N{U+03ae}"
    ],
    era_abbreviated => [
      "\N{U+03c0}.\N{U+03a7}.",
      "\N{U+03bc}.\N{U+03a7}."
    ],
    era_narrow => [
      "\N{U+03c0}.\N{U+03a7}.",
      "\N{U+03bc}.\N{U+03a7}."
    ],
    era_wide => [
      "\N{U+03c0}\N{U+03c1}\N{U+03bf} \N{U+03a7}\N{U+03c1}\N{U+03b9}\N{U+03c3}\N{U+03c4}\N{U+03bf}\N{U+03cd}",
      "\N{U+03bc}\N{U+03b5}\N{U+03c4}\N{U+03ac} \N{U+03a7}\N{U+03c1}\N{U+03b9}\N{U+03c3}\N{U+03c4}\N{U+03cc}\N{U+03bd}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %d %b %Y %r %Z",
    glibc_date_format => "%d/%m/%Y",
    glibc_datetime_format => "%a %d %b %Y %r %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%r",
    language => "Greek",
    month_format_abbreviated => [
      "\N{U+0399}\N{U+03b1}\N{U+03bd}",
      "\N{U+03a6}\N{U+03b5}\N{U+03b2}",
      "\N{U+039c}\N{U+03b1}\N{U+03c1}",
      "\N{U+0391}\N{U+03c0}\N{U+03c1}",
      "\N{U+039c}\N{U+03b1}\N{U+0390}",
      "\N{U+0399}\N{U+03bf}\N{U+03c5}\N{U+03bd}",
      "\N{U+0399}\N{U+03bf}\N{U+03c5}\N{U+03bb}",
      "\N{U+0391}\N{U+03c5}\N{U+03b3}",
      "\N{U+03a3}\N{U+03b5}\N{U+03c0}",
      "\N{U+039f}\N{U+03ba}\N{U+03c4}",
      "\N{U+039d}\N{U+03bf}\N{U+03b5}",
      "\N{U+0394}\N{U+03b5}\N{U+03ba}"
    ],
    month_format_narrow => [
      "\N{U+0399}",
      "\N{U+03a6}",
      "\N{U+039c}",
      "\N{U+0391}",
      "\N{U+039c}",
      "\N{U+0399}",
      "\N{U+0399}",
      "\N{U+0391}",
      "\N{U+03a3}",
      "\N{U+039f}",
      "\N{U+039d}",
      "\N{U+0394}"
    ],
    month_format_wide => [
      "\N{U+0399}\N{U+03b1}\N{U+03bd}\N{U+03bf}\N{U+03c5}\N{U+03b1}\N{U+03c1}\N{U+03af}\N{U+03bf}\N{U+03c5}",
      "\N{U+03a6}\N{U+03b5}\N{U+03b2}\N{U+03c1}\N{U+03bf}\N{U+03c5}\N{U+03b1}\N{U+03c1}\N{U+03af}\N{U+03bf}\N{U+03c5}",
      "\N{U+039c}\N{U+03b1}\N{U+03c1}\N{U+03c4}\N{U+03af}\N{U+03bf}\N{U+03c5}",
      "\N{U+0391}\N{U+03c0}\N{U+03c1}\N{U+03b9}\N{U+03bb}\N{U+03af}\N{U+03bf}\N{U+03c5}",
      "\N{U+039c}\N{U+03b1}\N{U+0390}\N{U+03bf}\N{U+03c5}",
      "\N{U+0399}\N{U+03bf}\N{U+03c5}\N{U+03bd}\N{U+03af}\N{U+03bf}\N{U+03c5}",
      "\N{U+0399}\N{U+03bf}\N{U+03c5}\N{U+03bb}\N{U+03af}\N{U+03bf}\N{U+03c5}",
      "\N{U+0391}\N{U+03c5}\N{U+03b3}\N{U+03bf}\N{U+03cd}\N{U+03c3}\N{U+03c4}\N{U+03bf}\N{U+03c5}",
      "\N{U+03a3}\N{U+03b5}\N{U+03c0}\N{U+03c4}\N{U+03b5}\N{U+03bc}\N{U+03b2}\N{U+03c1}\N{U+03af}\N{U+03bf}\N{U+03c5}",
      "\N{U+039f}\N{U+03ba}\N{U+03c4}\N{U+03c9}\N{U+03b2}\N{U+03c1}\N{U+03af}\N{U+03bf}\N{U+03c5}",
      "\N{U+039d}\N{U+03bf}\N{U+03b5}\N{U+03bc}\N{U+03b2}\N{U+03c1}\N{U+03af}\N{U+03bf}\N{U+03c5}",
      "\N{U+0394}\N{U+03b5}\N{U+03ba}\N{U+03b5}\N{U+03bc}\N{U+03b2}\N{U+03c1}\N{U+03af}\N{U+03bf}\N{U+03c5}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0399}\N{U+03b1}\N{U+03bd}",
      "\N{U+03a6}\N{U+03b5}\N{U+03b2}",
      "\N{U+039c}\N{U+03ac}\N{U+03c1}",
      "\N{U+0391}\N{U+03c0}\N{U+03c1}",
      "\N{U+039c}\N{U+03ac}\N{U+03b9}",
      "\N{U+0399}\N{U+03bf}\N{U+03cd}\N{U+03bd}",
      "\N{U+0399}\N{U+03bf}\N{U+03cd}\N{U+03bb}",
      "\N{U+0391}\N{U+03cd}\N{U+03b3}",
      "\N{U+03a3}\N{U+03b5}\N{U+03c0}",
      "\N{U+039f}\N{U+03ba}\N{U+03c4}",
      "\N{U+039d}\N{U+03bf}\N{U+03ad}",
      "\N{U+0394}\N{U+03b5}\N{U+03ba}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0399}",
      "\N{U+03a6}",
      "\N{U+039c}",
      "\N{U+0391}",
      "\N{U+039c}",
      "\N{U+0399}",
      "\N{U+0399}",
      "\N{U+0391}",
      "\N{U+03a3}",
      "\N{U+039f}",
      "\N{U+039d}",
      "\N{U+0394}"
    ],
    month_stand_alone_wide => [
      "\N{U+0399}\N{U+03b1}\N{U+03bd}\N{U+03bf}\N{U+03c5}\N{U+03ac}\N{U+03c1}\N{U+03b9}\N{U+03bf}\N{U+03c2}",
      "\N{U+03a6}\N{U+03b5}\N{U+03b2}\N{U+03c1}\N{U+03bf}\N{U+03c5}\N{U+03ac}\N{U+03c1}\N{U+03b9}\N{U+03bf}\N{U+03c2}",
      "\N{U+039c}\N{U+03ac}\N{U+03c1}\N{U+03c4}\N{U+03b9}\N{U+03bf}\N{U+03c2}",
      "\N{U+0391}\N{U+03c0}\N{U+03c1}\N{U+03af}\N{U+03bb}\N{U+03b9}\N{U+03bf}\N{U+03c2}",
      "\N{U+039c}\N{U+03ac}\N{U+03b9}\N{U+03bf}\N{U+03c2}",
      "\N{U+0399}\N{U+03bf}\N{U+03cd}\N{U+03bd}\N{U+03b9}\N{U+03bf}\N{U+03c2}",
      "\N{U+0399}\N{U+03bf}\N{U+03cd}\N{U+03bb}\N{U+03b9}\N{U+03bf}\N{U+03c2}",
      "\N{U+0391}\N{U+03cd}\N{U+03b3}\N{U+03bf}\N{U+03c5}\N{U+03c3}\N{U+03c4}\N{U+03bf}\N{U+03c2}",
      "\N{U+03a3}\N{U+03b5}\N{U+03c0}\N{U+03c4}\N{U+03ad}\N{U+03bc}\N{U+03b2}\N{U+03c1}\N{U+03b9}\N{U+03bf}\N{U+03c2}",
      "\N{U+039f}\N{U+03ba}\N{U+03c4}\N{U+03ce}\N{U+03b2}\N{U+03c1}\N{U+03b9}\N{U+03bf}\N{U+03c2}",
      "\N{U+039d}\N{U+03bf}\N{U+03ad}\N{U+03bc}\N{U+03b2}\N{U+03c1}\N{U+03b9}\N{U+03bf}\N{U+03c2}",
      "\N{U+0394}\N{U+03b5}\N{U+03ba}\N{U+03ad}\N{U+03bc}\N{U+03b2}\N{U+03c1}\N{U+03b9}\N{U+03bf}\N{U+03c2}"
    ],
    name => "Greek Greece",
    native_language => "\N{U+0395}\N{U+03bb}\N{U+03bb}\N{U+03b7}\N{U+03bd}\N{U+03b9}\N{U+03ba}\N{U+03ac}",
    native_name => "\N{U+0395}\N{U+03bb}\N{U+03bb}\N{U+03b7}\N{U+03bd}\N{U+03b9}\N{U+03ba}\N{U+03ac} \N{U+0395}\N{U+03bb}\N{U+03bb}\N{U+03ac}\N{U+03b4}\N{U+03b1}",
    native_script => undef,
    native_territory => "\N{U+0395}\N{U+03bb}\N{U+03bb}\N{U+03ac}\N{U+03b4}\N{U+03b1}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+03a4}1",
      "\N{U+03a4}2",
      "\N{U+03a4}3",
      "\N{U+03a4}4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1\N{U+03bf} \N{U+03c4}\N{U+03c1}\N{U+03af}\N{U+03bc}\N{U+03b7}\N{U+03bd}\N{U+03bf}",
      "2\N{U+03bf} \N{U+03c4}\N{U+03c1}\N{U+03af}\N{U+03bc}\N{U+03b7}\N{U+03bd}\N{U+03bf}",
      "3\N{U+03bf} \N{U+03c4}\N{U+03c1}\N{U+03af}\N{U+03bc}\N{U+03b7}\N{U+03bd}\N{U+03bf}",
      "4\N{U+03bf} \N{U+03c4}\N{U+03c1}\N{U+03af}\N{U+03bc}\N{U+03b7}\N{U+03bd}\N{U+03bf}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+03a4}1",
      "\N{U+03a4}2",
      "\N{U+03a4}3",
      "\N{U+03a4}4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1\N{U+03bf} \N{U+03c4}\N{U+03c1}\N{U+03af}\N{U+03bc}\N{U+03b7}\N{U+03bd}\N{U+03bf}",
      "2\N{U+03bf} \N{U+03c4}\N{U+03c1}\N{U+03af}\N{U+03bc}\N{U+03b7}\N{U+03bd}\N{U+03bf}",
      "3\N{U+03bf} \N{U+03c4}\N{U+03c1}\N{U+03af}\N{U+03bc}\N{U+03b7}\N{U+03bd}\N{U+03bf}",
      "4\N{U+03bf} \N{U+03c4}\N{U+03c1}\N{U+03af}\N{U+03bc}\N{U+03b7}\N{U+03bd}\N{U+03bf}"
    ],
    script => undef,
    territory => "Greece",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-001 ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-001",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English World",
    native_language => "English",
    native_name => "English World",
    native_script => undef,
    native_territory => "World",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "World",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-150 ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-150",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Europe",
    native_language => "English",
    native_name => "English Europe",
    native_script => undef,
    native_territory => "Europe",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Europe",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-AG ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-AG",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Antigua & Barbuda",
    native_language => "English",
    native_name => "English Antigua & Barbuda",
    native_script => undef,
    native_territory => "Antigua & Barbuda",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Antigua & Barbuda",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-AI ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-AI",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Anguilla",
    native_language => "English",
    native_name => "English Anguilla",
    native_script => undef,
    native_territory => "Anguilla",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Anguilla",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-AS ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, MMM d, y G",
      GyMMMd => "MMM d, y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "MMM d, y",
      yMd => "M/d/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-AS",
    date_format_full => "EEEE, MMMM d, y",
    date_format_long => "MMMM d, y",
    date_format_medium => "MMM d, y",
    date_format_short => "M/d/yy",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English American Samoa",
    native_language => "English",
    native_name => "English American Samoa",
    native_script => undef,
    native_territory => "American Samoa",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "American Samoa",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-AT ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-AT",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Austria",
    native_language => "English",
    native_name => "English Austria",
    native_script => undef,
    native_territory => "Austria",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Austria",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-AU ]__
  {
    am_pm_abbreviated => [
      "am",
      "pm"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "LL",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM,y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-AU",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "dMMMM,y",
    date_format_medium => "dMMM,y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon.",
      "Tue.",
      "Wed.",
      "Thu.",
      "Fri.",
      "Sat.",
      "Sun."
    ],
    day_format_narrow => [
      "M.",
      "Tu.",
      "W.",
      "Th.",
      "F.",
      "Sa.",
      "Su."
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon.",
      "Tue.",
      "Wed.",
      "Thu.",
      "Fri.",
      "Sat.",
      "Sun."
    ],
    day_stand_alone_narrow => [
      "M.",
      "Tu.",
      "W.",
      "Th.",
      "F.",
      "Sa.",
      "Su."
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "English",
    month_format_abbreviated => [
      "Jan.",
      "Feb.",
      "Mar.",
      "Apr.",
      "May",
      "Jun.",
      "Jul.",
      "Aug.",
      "Sep.",
      "Oct.",
      "Nov.",
      "Dec."
    ],
    month_format_narrow => [
      "Jan.",
      "Feb.",
      "Mar.",
      "Apr.",
      "May",
      "Jun.",
      "Jul.",
      "Aug.",
      "Sep.",
      "Oct.",
      "Nov.",
      "Dec."
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan.",
      "Feb.",
      "Mar.",
      "Apr.",
      "May",
      "Jun.",
      "Jul.",
      "Aug.",
      "Sep.",
      "Oct.",
      "Nov.",
      "Dec."
    ],
    month_stand_alone_narrow => [
      "Jan.",
      "Feb.",
      "Mar.",
      "Apr.",
      "May",
      "Jun.",
      "Jul.",
      "Aug.",
      "Sep.",
      "Oct.",
      "Nov.",
      "Dec."
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Australia",
    native_language => "English",
    native_name => "English Australia",
    native_script => undef,
    native_territory => "Australia",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Australia",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-BB ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-BB",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Barbados",
    native_language => "English",
    native_name => "English Barbados",
    native_script => undef,
    native_territory => "Barbados",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Barbados",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-BE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-BE",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "dd MMM y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Belgium",
    native_language => "English",
    native_name => "English Belgium",
    native_script => undef,
    native_territory => "Belgium",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Belgium",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-BI ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, MMM d, y G",
      GyMMMd => "MMM d, y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "MMM d, y",
      yMd => "M/d/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-BI",
    date_format_full => "EEEE, MMMM d, y",
    date_format_long => "MMMM d, y",
    date_format_medium => "MMM d, y",
    date_format_short => "M/d/yy",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Burundi",
    native_language => "English",
    native_name => "English Burundi",
    native_script => undef,
    native_territory => "Burundi",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Burundi",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-BM ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-BM",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Bermuda",
    native_language => "English",
    native_name => "English Bermuda",
    native_script => undef,
    native_territory => "Bermuda",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Bermuda",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-BS ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-BS",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Bahamas",
    native_language => "English",
    native_name => "English Bahamas",
    native_script => undef,
    native_territory => "Bahamas",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Bahamas",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-BW ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, dd MMM y G",
      GyMMMd => "dd MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, dd MMM",
      MMMMd => "d MMMM",
      MMMd => "dd MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, dd MMM y",
      yMMMM => "MMMM y",
      yMMMd => "dd MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-BW",
    date_format_full => "EEEE, dd MMMM y",
    date_format_long => "dd MMMM y",
    date_format_medium => "dd MMM y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Botswana",
    native_language => "English",
    native_name => "English Botswana",
    native_script => undef,
    native_territory => "Botswana",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Botswana",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-BZ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, dd MMM",
      MMMMd => "d MMMM",
      MMMd => "dd MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, dd MMM y",
      yMMMM => "MMMM y",
      yMMMd => "dd MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-BZ",
    date_format_full => "EEEE, dd MMMM y",
    date_format_long => "dd MMMM y",
    date_format_medium => "dd-MMM-y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Belize",
    native_language => "English",
    native_name => "English Belize",
    native_script => undef,
    native_territory => "Belize",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Belize",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-CC ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-CC",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Cocos (Keeling) Islands",
    native_language => "English",
    native_name => "English Cocos (Keeling) Islands",
    native_script => undef,
    native_territory => "Cocos (Keeling) Islands",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Cocos (Keeling) Islands",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-CH ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-CH",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Switzerland",
    native_language => "English",
    native_name => "English Switzerland",
    native_script => undef,
    native_territory => "Switzerland",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Switzerland",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-CK ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-CK",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Cook Islands",
    native_language => "English",
    native_name => "English Cook Islands",
    native_script => undef,
    native_territory => "Cook Islands",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Cook Islands",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-CM ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-CM",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Cameroon",
    native_language => "English",
    native_name => "English Cameroon",
    native_script => undef,
    native_territory => "Cameroon",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Cameroon",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-CX ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-CX",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Christmas Island",
    native_language => "English",
    native_name => "English Christmas Island",
    native_script => undef,
    native_territory => "Christmas Island",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Christmas Island",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-CY ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-CY",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Cyprus",
    native_language => "English",
    native_name => "English Cyprus",
    native_script => undef,
    native_territory => "Cyprus",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Cyprus",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-DE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-DE",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Germany",
    native_language => "English",
    native_name => "English Germany",
    native_script => undef,
    native_territory => "Germany",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Germany",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-DG ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-DG",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Diego Garcia",
    native_language => "English",
    native_name => "English Diego Garcia",
    native_script => undef,
    native_territory => "Diego Garcia",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Diego Garcia",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-DK ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH.mm",
      EHms => "E HH.mm.ss",
      Ed => "E d",
      Ehm => "E h.mm a",
      Ehms => "E h.mm.ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH.mm",
      Hms => "HH.mm.ss",
      Hmsv => "HH.mm.ss v",
      Hmv => "HH.mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h.mm a",
      hms => "h.mm.ss a",
      hmsv => "h.mm.ss a v",
      hmv => "h.mm a v",
      ms => "mm.ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-DK",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%Y-%m-%d",
    glibc_datetime_format => "%Y-%m-%dT%T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Denmark",
    native_language => "English",
    native_name => "English Denmark",
    native_script => undef,
    native_territory => "Denmark",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Denmark",
    time_format_full => "HH.mm.ss zzzz",
    time_format_long => "HH.mm.ss z",
    time_format_medium => "HH.mm.ss",
    time_format_short => "HH.mm",
    variant => undef,
    version => 28
  }
  __[ en-DM ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-DM",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Dominica",
    native_language => "English",
    native_name => "English Dominica",
    native_script => undef,
    native_territory => "Dominica",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Dominica",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-ER ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-ER",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Eritrea",
    native_language => "English",
    native_name => "English Eritrea",
    native_script => undef,
    native_territory => "Eritrea",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Eritrea",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-FI ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E H.mm",
      EHms => "E H.mm.ss",
      Ed => "E d",
      Ehm => "E h.mm a",
      Ehms => "E h.mm.ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "H.mm",
      Hms => "H.mm.ss",
      Hmsv => "H.mm.ss v",
      Hmv => "H.mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h.mm a",
      hms => "h.mm.ss a",
      hmsv => "h.mm.ss a v",
      hmv => "h.mm a v",
      ms => "mm.ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-FI",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Finland",
    native_language => "English",
    native_name => "English Finland",
    native_script => undef,
    native_territory => "Finland",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Finland",
    time_format_full => "H.mm.ss zzzz",
    time_format_long => "H.mm.ss z",
    time_format_medium => "H.mm.ss",
    time_format_short => "H.mm",
    variant => undef,
    version => 28
  }
  __[ en-FJ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-FJ",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Fiji",
    native_language => "English",
    native_name => "English Fiji",
    native_script => undef,
    native_territory => "Fiji",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Fiji",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-FK ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-FK",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Falkland Islands",
    native_language => "English",
    native_name => "English Falkland Islands",
    native_script => undef,
    native_territory => "Falkland Islands",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Falkland Islands",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-FM ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-FM",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Micronesia",
    native_language => "English",
    native_name => "English Micronesia",
    native_script => undef,
    native_territory => "Micronesia",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Micronesia",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-GB ]__
  {
    am_pm_abbreviated => [
      "am",
      "pm"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-GB",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %e %b %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%l:%M:%S %P %Z",
    glibc_time_format => "%T",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English United Kingdom",
    native_language => "English",
    native_name => "English United Kingdom",
    native_script => undef,
    native_territory => "United Kingdom",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "United Kingdom",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-GD ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-GD",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Grenada",
    native_language => "English",
    native_name => "English Grenada",
    native_script => undef,
    native_territory => "Grenada",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Grenada",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-GG ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-GG",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Guernsey",
    native_language => "English",
    native_name => "English Guernsey",
    native_script => undef,
    native_territory => "Guernsey",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Guernsey",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-GH ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-GH",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Ghana",
    native_language => "English",
    native_name => "English Ghana",
    native_script => undef,
    native_territory => "Ghana",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Ghana",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-GI ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-GI",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Gibraltar",
    native_language => "English",
    native_name => "English Gibraltar",
    native_script => undef,
    native_territory => "Gibraltar",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Gibraltar",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-GM ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-GM",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Gambia",
    native_language => "English",
    native_name => "English Gambia",
    native_script => undef,
    native_territory => "Gambia",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Gambia",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-GU ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, MMM d, y G",
      GyMMMd => "MMM d, y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "MMM d, y",
      yMd => "M/d/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-GU",
    date_format_full => "EEEE, MMMM d, y",
    date_format_long => "MMMM d, y",
    date_format_medium => "MMM d, y",
    date_format_short => "M/d/yy",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Guam",
    native_language => "English",
    native_name => "English Guam",
    native_script => undef,
    native_territory => "Guam",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Guam",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-GY ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-GY",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Guyana",
    native_language => "English",
    native_name => "English Guyana",
    native_script => undef,
    native_territory => "Guyana",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Guyana",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-HK ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-HK",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%A, %B %d, %Y",
    glibc_datetime_format => "%A, %B %d, %Y %p%I:%M:%S %Z",
    glibc_time_12_format => "%p%I:%M:%S %Z",
    glibc_time_format => "%I:%M:%S %Z",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Hong Kong SAR China",
    native_language => "English",
    native_name => "English Hong Kong SAR China",
    native_script => undef,
    native_territory => "Hong Kong SAR China",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Hong Kong SAR China",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-IE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-IE",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Ireland",
    native_language => "English",
    native_name => "English Ireland",
    native_script => undef,
    native_territory => "Ireland",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Ireland",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-IL ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E H:mm",
      EHms => "E H:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "H",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-IL",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Israel",
    native_language => "English",
    native_name => "English Israel",
    native_script => undef,
    native_territory => "Israel",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Israel",
    time_format_full => "H:mm:ss zzzz",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ en-IM ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-IM",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Isle of Man",
    native_language => "English",
    native_name => "English Isle of Man",
    native_script => undef,
    native_territory => "Isle of Man",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Isle of Man",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-IN ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM, y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-IN",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "dd-MMM-y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%A %d %B %Y",
    glibc_datetime_format => "%A %d %B %Y %I:%M:%S %p %Z",
    glibc_time_12_format => "%I:%M:%S %p %Z",
    glibc_time_format => "%I:%M:%S  %Z",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English India",
    native_language => "English",
    native_name => "English India",
    native_script => undef,
    native_territory => "India",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "India",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-IO ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-IO",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English British Indian Ocean Territory",
    native_language => "English",
    native_name => "English British Indian Ocean Territory",
    native_script => undef,
    native_territory => "British Indian Ocean Territory",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "British Indian Ocean Territory",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-JE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-JE",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Jersey",
    native_language => "English",
    native_name => "English Jersey",
    native_script => undef,
    native_territory => "Jersey",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Jersey",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-JM ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-JM",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Jamaica",
    native_language => "English",
    native_name => "English Jamaica",
    native_script => undef,
    native_territory => "Jamaica",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Jamaica",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-KE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-KE",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Kenya",
    native_language => "English",
    native_name => "English Kenya",
    native_script => undef,
    native_territory => "Kenya",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Kenya",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-KI ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-KI",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Kiribati",
    native_language => "English",
    native_name => "English Kiribati",
    native_script => undef,
    native_territory => "Kiribati",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Kiribati",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-KN ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-KN",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English St. Kitts & Nevis",
    native_language => "English",
    native_name => "English St. Kitts & Nevis",
    native_script => undef,
    native_territory => "St. Kitts & Nevis",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "St. Kitts & Nevis",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-KY ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-KY",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Cayman Islands",
    native_language => "English",
    native_name => "English Cayman Islands",
    native_script => undef,
    native_territory => "Cayman Islands",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Cayman Islands",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-LC ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-LC",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English St. Lucia",
    native_language => "English",
    native_name => "English St. Lucia",
    native_script => undef,
    native_territory => "St. Lucia",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "St. Lucia",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-LR ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-LR",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Liberia",
    native_language => "English",
    native_name => "English Liberia",
    native_script => undef,
    native_territory => "Liberia",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Liberia",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-LS ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-LS",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Lesotho",
    native_language => "English",
    native_name => "English Lesotho",
    native_script => undef,
    native_territory => "Lesotho",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Lesotho",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-MG ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-MG",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Madagascar",
    native_language => "English",
    native_name => "English Madagascar",
    native_script => undef,
    native_territory => "Madagascar",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Madagascar",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-MH ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, MMM d, y G",
      GyMMMd => "MMM d, y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "MMM d, y",
      yMd => "M/d/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-MH",
    date_format_full => "EEEE, MMMM d, y",
    date_format_long => "MMMM d, y",
    date_format_medium => "MMM d, y",
    date_format_short => "M/d/yy",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Marshall Islands",
    native_language => "English",
    native_name => "English Marshall Islands",
    native_script => undef,
    native_territory => "Marshall Islands",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Marshall Islands",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-MO ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-MO",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Macau SAR China",
    native_language => "English",
    native_name => "English Macau SAR China",
    native_script => undef,
    native_territory => "Macau SAR China",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Macau SAR China",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-MP ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, MMM d, y G",
      GyMMMd => "MMM d, y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "MMM d, y",
      yMd => "M/d/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-MP",
    date_format_full => "EEEE, MMMM d, y",
    date_format_long => "MMMM d, y",
    date_format_medium => "MMM d, y",
    date_format_short => "M/d/yy",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Northern Mariana Islands",
    native_language => "English",
    native_name => "English Northern Mariana Islands",
    native_script => undef,
    native_territory => "Northern Mariana Islands",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Northern Mariana Islands",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-MS ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-MS",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Montserrat",
    native_language => "English",
    native_name => "English Montserrat",
    native_script => undef,
    native_territory => "Montserrat",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Montserrat",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-MT ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "dd MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, dd MMM y",
      yMMMM => "MMMM y",
      yMMMd => "dd MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-MT",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "dd MMMM y",
    date_format_medium => "dd MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Malta",
    native_language => "English",
    native_name => "English Malta",
    native_script => undef,
    native_territory => "Malta",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Malta",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-MU ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-MU",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Mauritius",
    native_language => "English",
    native_name => "English Mauritius",
    native_script => undef,
    native_territory => "Mauritius",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Mauritius",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-MW ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-MW",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Malawi",
    native_language => "English",
    native_name => "English Malawi",
    native_script => undef,
    native_territory => "Malawi",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Malawi",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-MY ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-MY",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Malaysia",
    native_language => "English",
    native_name => "English Malaysia",
    native_script => undef,
    native_territory => "Malaysia",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Malaysia",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-NA ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-NA",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Namibia",
    native_language => "English",
    native_name => "English Namibia",
    native_script => undef,
    native_territory => "Namibia",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Namibia",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-NF ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-NF",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Norfolk Island",
    native_language => "English",
    native_name => "English Norfolk Island",
    native_script => undef,
    native_territory => "Norfolk Island",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Norfolk Island",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-NG ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-NG",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%Y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Nigeria",
    native_language => "English",
    native_name => "English Nigeria",
    native_script => undef,
    native_territory => "Nigeria",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Nigeria",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-NL ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-NL",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Netherlands",
    native_language => "English",
    native_name => "English Netherlands",
    native_script => undef,
    native_territory => "Netherlands",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Netherlands",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-NR ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-NR",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Nauru",
    native_language => "English",
    native_name => "English Nauru",
    native_script => undef,
    native_territory => "Nauru",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Nauru",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-NU ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-NU",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Niue",
    native_language => "English",
    native_name => "English Niue",
    native_script => undef,
    native_territory => "Niue",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Niue",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-NZ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-NZ",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d/MM/y",
    date_format_short => "d/MM/yy",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English New Zealand",
    native_language => "English",
    native_name => "English New Zealand",
    native_script => undef,
    native_territory => "New Zealand",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "New Zealand",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-PG ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-PG",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Papua New Guinea",
    native_language => "English",
    native_name => "English Papua New Guinea",
    native_script => undef,
    native_territory => "Papua New Guinea",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Papua New Guinea",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-PH ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-PH",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%A, %d %B, %Y",
    glibc_datetime_format => "%A, %d %B, %Y %I:%M:%S %p %Z",
    glibc_time_12_format => "%I:%M:%S %p %Z",
    glibc_time_format => "%I:%M:%S  %Z",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Philippines",
    native_language => "English",
    native_name => "English Philippines",
    native_script => undef,
    native_territory => "Philippines",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Philippines",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-PK ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-PK",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "dd-MMM-y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Pakistan",
    native_language => "English",
    native_name => "English Pakistan",
    native_script => undef,
    native_territory => "Pakistan",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Pakistan",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-PN ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-PN",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Pitcairn Islands",
    native_language => "English",
    native_name => "English Pitcairn Islands",
    native_script => undef,
    native_territory => "Pitcairn Islands",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Pitcairn Islands",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-PR ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, MMM d, y G",
      GyMMMd => "MMM d, y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "MMM d, y",
      yMd => "M/d/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-PR",
    date_format_full => "EEEE, MMMM d, y",
    date_format_long => "MMMM d, y",
    date_format_medium => "MMM d, y",
    date_format_short => "M/d/yy",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Puerto Rico",
    native_language => "English",
    native_name => "English Puerto Rico",
    native_script => undef,
    native_territory => "Puerto Rico",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Puerto Rico",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-PW ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-PW",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Palau",
    native_language => "English",
    native_name => "English Palau",
    native_script => undef,
    native_territory => "Palau",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Palau",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-RW ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-RW",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Rwanda",
    native_language => "English",
    native_name => "English Rwanda",
    native_script => undef,
    native_territory => "Rwanda",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Rwanda",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-SB ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-SB",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Solomon Islands",
    native_language => "English",
    native_name => "English Solomon Islands",
    native_script => undef,
    native_territory => "Solomon Islands",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Solomon Islands",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-SC ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-SC",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Seychelles",
    native_language => "English",
    native_name => "English Seychelles",
    native_script => undef,
    native_territory => "Seychelles",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Seychelles",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-SD ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-SD",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Sudan",
    native_language => "English",
    native_name => "English Sudan",
    native_script => undef,
    native_territory => "Sudan",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Sudan",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-SE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "E, y-MM-dd",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-SE",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Sweden",
    native_language => "English",
    native_name => "English Sweden",
    native_script => undef,
    native_territory => "Sweden",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Sweden",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-SG ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-SG",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%Y",
    glibc_datetime_format => "%a %d %b %Y %r",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Singapore",
    native_language => "English",
    native_name => "English Singapore",
    native_script => undef,
    native_territory => "Singapore",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Singapore",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-SH ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-SH",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English St. Helena",
    native_language => "English",
    native_name => "English St. Helena",
    native_script => undef,
    native_territory => "St. Helena",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "St. Helena",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-SI ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-SI",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Slovenia",
    native_language => "English",
    native_name => "English Slovenia",
    native_script => undef,
    native_territory => "Slovenia",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Slovenia",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-SL ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-SL",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Sierra Leone",
    native_language => "English",
    native_name => "English Sierra Leone",
    native_script => undef,
    native_territory => "Sierra Leone",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Sierra Leone",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-SS ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-SS",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English South Sudan",
    native_language => "English",
    native_name => "English South Sudan",
    native_script => undef,
    native_territory => "South Sudan",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "South Sudan",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-SX ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-SX",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Sint Maarten",
    native_language => "English",
    native_name => "English Sint Maarten",
    native_script => undef,
    native_territory => "Sint Maarten",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Sint Maarten",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-SZ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-SZ",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Swaziland",
    native_language => "English",
    native_name => "English Swaziland",
    native_script => undef,
    native_territory => "Swaziland",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Swaziland",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-TC ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-TC",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Turks & Caicos Islands",
    native_language => "English",
    native_name => "English Turks & Caicos Islands",
    native_script => undef,
    native_territory => "Turks & Caicos Islands",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Turks & Caicos Islands",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-TK ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-TK",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Tokelau",
    native_language => "English",
    native_name => "English Tokelau",
    native_script => undef,
    native_territory => "Tokelau",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Tokelau",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-TO ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-TO",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Tonga",
    native_language => "English",
    native_name => "English Tonga",
    native_script => undef,
    native_territory => "Tonga",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Tonga",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-TT ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-TT",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Trinidad & Tobago",
    native_language => "English",
    native_name => "English Trinidad & Tobago",
    native_script => undef,
    native_territory => "Trinidad & Tobago",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Trinidad & Tobago",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-TV ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-TV",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Tuvalu",
    native_language => "English",
    native_name => "English Tuvalu",
    native_script => undef,
    native_territory => "Tuvalu",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Tuvalu",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-TZ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-TZ",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Tanzania",
    native_language => "English",
    native_name => "English Tanzania",
    native_script => undef,
    native_territory => "Tanzania",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Tanzania",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-UG ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-UG",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Uganda",
    native_language => "English",
    native_name => "English Uganda",
    native_script => undef,
    native_territory => "Uganda",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Uganda",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ en-UM ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, MMM d, y G",
      GyMMMd => "MMM d, y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "MMM d, y",
      yMd => "M/d/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-UM",
    date_format_full => "EEEE, MMMM d, y",
    date_format_long => "MMMM d, y",
    date_format_medium => "MMM d, y",
    date_format_short => "M/d/yy",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English U.S. Outlying Islands",
    native_language => "English",
    native_name => "English U.S. Outlying Islands",
    native_script => undef,
    native_territory => "U.S. Outlying Islands",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "U.S. Outlying Islands",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-US-POSIX ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, MMM d, y G",
      GyMMMd => "MMM d, y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "MMM d, y",
      yMd => "M/d/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-US-POSIX",
    date_format_full => "EEEE, MMMM d, y",
    date_format_long => "MMMM d, y",
    date_format_medium => "MMM d, y",
    date_format_short => "M/d/yy",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%Y",
    glibc_datetime_format => "%a %d %b %Y %r %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%r",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English United States Computer",
    native_language => "English",
    native_name => "English United States Computer",
    native_script => undef,
    native_territory => "United States",
    native_variant => "Computer",
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "United States",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => "Computer",
    version => 28
  }
  __[ en-VC ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-VC",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English St. Vincent & Grenadines",
    native_language => "English",
    native_name => "English St. Vincent & Grenadines",
    native_script => undef,
    native_territory => "St. Vincent & Grenadines",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "St. Vincent & Grenadines",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-VG ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-VG",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English British Virgin Islands",
    native_language => "English",
    native_name => "English British Virgin Islands",
    native_script => undef,
    native_territory => "British Virgin Islands",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "British Virgin Islands",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-VI ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, MMM d, y G",
      GyMMMd => "MMM d, y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "MMM d, y",
      yMd => "M/d/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-VI",
    date_format_full => "EEEE, MMMM d, y",
    date_format_long => "MMMM d, y",
    date_format_medium => "MMM d, y",
    date_format_short => "M/d/yy",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English U.S. Virgin Islands",
    native_language => "English",
    native_name => "English U.S. Virgin Islands",
    native_script => undef,
    native_territory => "U.S. Virgin Islands",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "U.S. Virgin Islands",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-VU ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-VU",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Vanuatu",
    native_language => "English",
    native_name => "English Vanuatu",
    native_script => undef,
    native_territory => "Vanuatu",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Vanuatu",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-WS ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-WS",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Samoa",
    native_language => "English",
    native_name => "English Samoa",
    native_script => undef,
    native_territory => "Samoa",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Samoa",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-ZA ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, MM/dd",
      MMM => "LLL",
      MMMEd => "E, dd MMM",
      MMMMd => "d MMMM",
      MMMd => "dd MMM",
      MMdd => "dd/MM",
      Md => "MM/dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, y/MM/dd",
      yMMM => "MMM y",
      yMMMEd => "E, dd MMM y",
      yMMMM => "MMMM y",
      yMMMd => "dd MMM y",
      yMd => "y/MM/dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-ZA",
    date_format_full => "EEEE, dd MMMM y",
    date_format_long => "dd MMMM y",
    date_format_medium => "dd MMM y",
    date_format_short => "y/MM/dd",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%Y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English South Africa",
    native_language => "English",
    native_name => "English South Africa",
    native_script => undef,
    native_territory => "South Africa",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "South Africa",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-ZM ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-ZM",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Zambia",
    native_language => "English",
    native_name => "English Zambia",
    native_script => undef,
    native_territory => "Zambia",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Zambia",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ en-ZW ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, dd MMM",
      MMMMd => "d MMMM",
      MMMd => "dd MMM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E, dd MMM, y",
      yMMMM => "MMMM y",
      yMMMd => "dd MMM, y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "en-ZW",
    date_format_full => "EEEE, dd MMMM y",
    date_format_long => "dd MMMM y",
    date_format_medium => "dd MMM,y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} 'at' {0}",
    datetime_format_long => "{1} 'at' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "B",
      "A"
    ],
    era_wide => [
      "Before Christ",
      "Anno Domini"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "English",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December"
    ],
    name => "English Zimbabwe",
    native_language => "English",
    native_name => "English Zimbabwe",
    native_script => undef,
    native_territory => "Zimbabwe",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1st quarter",
      "2nd quarter",
      "3rd quarter",
      "4th quarter"
    ],
    script => undef,
    territory => "Zimbabwe",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ eo ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "eo",
    date_format_full => "EEEE, d-'a' 'de' MMMM y",
    date_format_long => "y-MMMM-dd",
    date_format_medium => "y-MMM-dd",
    date_format_short => "yy-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lu",
      "ma",
      "me",
      "\N{U+0135}a",
      "ve",
      "sa",
      "di"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "lundo",
      "mardo",
      "merkredo",
      "\N{U+0135}a\N{U+016d}do",
      "vendredo",
      "sabato",
      "diman\N{U+0109}o"
    ],
    day_stand_alone_abbreviated => [
      "lu",
      "ma",
      "me",
      "\N{U+0135}a",
      "ve",
      "sa",
      "di"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "lundo",
      "mardo",
      "merkredo",
      "\N{U+0135}a\N{U+016d}do",
      "vendredo",
      "sabato",
      "diman\N{U+0109}o"
    ],
    era_abbreviated => [
      "aK",
      "pK"
    ],
    era_narrow => [
      "aK",
      "pK"
    ],
    era_wide => [
      "aK",
      "pK"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Esperanto",
    month_format_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "maj",
      "jun",
      "jul",
      "a\N{U+016d}g",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "januaro",
      "februaro",
      "marto",
      "aprilo",
      "majo",
      "junio",
      "julio",
      "a\N{U+016d}gusto",
      "septembro",
      "oktobro",
      "novembro",
      "decembro"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "maj",
      "jun",
      "jul",
      "a\N{U+016d}g",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "januaro",
      "februaro",
      "marto",
      "aprilo",
      "majo",
      "junio",
      "julio",
      "a\N{U+016d}gusto",
      "septembro",
      "oktobro",
      "novembro",
      "decembro"
    ],
    name => "Esperanto",
    native_language => "esperanto",
    native_name => "esperanto",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "H-'a' 'horo' 'kaj' m:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ eo-001 ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "eo-001",
    date_format_full => "EEEE, d-'a' 'de' MMMM y",
    date_format_long => "y-MMMM-dd",
    date_format_medium => "y-MMM-dd",
    date_format_short => "yy-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lu",
      "ma",
      "me",
      "\N{U+0135}a",
      "ve",
      "sa",
      "di"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "lundo",
      "mardo",
      "merkredo",
      "\N{U+0135}a\N{U+016d}do",
      "vendredo",
      "sabato",
      "diman\N{U+0109}o"
    ],
    day_stand_alone_abbreviated => [
      "lu",
      "ma",
      "me",
      "\N{U+0135}a",
      "ve",
      "sa",
      "di"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "lundo",
      "mardo",
      "merkredo",
      "\N{U+0135}a\N{U+016d}do",
      "vendredo",
      "sabato",
      "diman\N{U+0109}o"
    ],
    era_abbreviated => [
      "aK",
      "pK"
    ],
    era_narrow => [
      "aK",
      "pK"
    ],
    era_wide => [
      "aK",
      "pK"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Esperanto",
    month_format_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "maj",
      "jun",
      "jul",
      "a\N{U+016d}g",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "januaro",
      "februaro",
      "marto",
      "aprilo",
      "majo",
      "junio",
      "julio",
      "a\N{U+016d}gusto",
      "septembro",
      "oktobro",
      "novembro",
      "decembro"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "maj",
      "jun",
      "jul",
      "a\N{U+016d}g",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "januaro",
      "februaro",
      "marto",
      "aprilo",
      "majo",
      "junio",
      "julio",
      "a\N{U+016d}gusto",
      "septembro",
      "oktobro",
      "novembro",
      "decembro"
    ],
    name => "Esperanto World",
    native_language => "esperanto",
    native_name => "esperanto 001",
    native_script => undef,
    native_territory => "001",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "World",
    time_format_full => "H-'a' 'horo' 'kaj' m:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ es-419 ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "MMMM 'de' y G",
      GyMMMMEd => "E, d 'de' MMMM 'de' y G",
      GyMMMMd => "d 'de' MMMM 'de' y G",
      GyMMMd => "d 'de' MMM 'de' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmsvvvv => "H:mm:ss (vvvv)",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d MMM",
      MMMdd => "dd-MMM",
      MMd => "d/M",
      MMdd => "d/M",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmsvvvv => "h:mm:ss a (vvvv)",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "M/y",
      yMMM => "MMMM 'de' y",
      yMMMEd => "E, d 'de' MMM 'de' y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "EEE, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d 'de' MMMM 'de' y",
      yMd => "d/M/y",
      yQQQ => "QQQ 'de' y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "es-419",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_format_narrow => [
      "l",
      "m",
      "m",
      "j",
      "v",
      "s",
      "d"
    ],
    day_format_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a. C.",
      "d. C."
    ],
    era_narrow => [
      "a. C.",
      "d. C."
    ],
    era_wide => [
      "antes de Cristo",
      "despu\N{U+00e9}s de Cristo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Spanish",
    month_format_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_format_narrow => [
      "e",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    month_stand_alone_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_stand_alone_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    name => "Spanish Latin America",
    native_language => "espa\N{U+00f1}ol",
    native_name => "espa\N{U+00f1}ol Latinoam\N{U+00e9}rica",
    native_script => undef,
    native_territory => "Latinoam\N{U+00e9}rica",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Latin America",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ es-AR ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d 'de' MMM 'de' y G",
      GyMMMM => "MMMM 'de' y G",
      GyMMMMEd => "E, d 'de' MMMM 'de' y G",
      GyMMMMd => "d 'de' MMMM 'de' y G",
      GyMMMd => "d 'de' MMM 'de' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmsvvvv => "H:mm:ss (vvvv)",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d-M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d MMM",
      MMMdd => "dd-MMM",
      MMd => "d/M",
      MMdd => "d/M",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "hh:mm:ss",
      hmsv => "h:mm:ss a v",
      hmsvvvv => "h:mm:ss a (vvvv)",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M-y",
      yMEd => "E, d/M/y",
      yMM => "M/y",
      yMMM => "MMMM 'de' y",
      yMMMEd => "E, d 'de' MMM 'de' y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "EEE, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d 'de' MMM 'de' y",
      yMd => "d/M/y",
      yQQQ => "QQQ 'de' y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "es-AR",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_format_narrow => [
      "l",
      "m",
      "m",
      "j",
      "v",
      "s",
      "d"
    ],
    day_format_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a. C.",
      "d. C."
    ],
    era_narrow => [
      "a. C.",
      "d. C."
    ],
    era_wide => [
      "antes de Cristo",
      "despu\N{U+00e9}s de Cristo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Spanish",
    month_format_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_format_narrow => [
      "e",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    month_stand_alone_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_stand_alone_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    name => "Spanish Argentina",
    native_language => "espa\N{U+00f1}ol",
    native_name => "espa\N{U+00f1}ol Argentina",
    native_script => undef,
    native_territory => "Argentina",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Argentina",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ es-BO ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "MMMM 'de' y G",
      GyMMMMEd => "E, d 'de' MMMM 'de' y G",
      GyMMMMd => "d 'de' MMMM 'de' y G",
      GyMMMd => "d 'de' MMM 'de' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmsvvvv => "H:mm:ss (vvvv)",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d MMM",
      MMMdd => "dd-MMM",
      MMd => "d/M",
      MMdd => "d/M",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmsvvvv => "h:mm:ss a (vvvv)",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "M/y",
      yMMM => "MMMM 'de' y",
      yMMMEd => "E, d 'de' MMM 'de' y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "EEE, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d 'de' MMMM 'de' y",
      yMd => "d/M/y",
      yQQQ => "QQQ 'de' y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "es-BO",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_format_narrow => [
      "l",
      "m",
      "m",
      "j",
      "v",
      "s",
      "d"
    ],
    day_format_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a. C.",
      "d. C."
    ],
    era_narrow => [
      "a. C.",
      "d. C."
    ],
    era_wide => [
      "antes de Cristo",
      "despu\N{U+00e9}s de Cristo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Spanish",
    month_format_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_format_narrow => [
      "e",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    month_stand_alone_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_stand_alone_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    name => "Spanish Bolivia",
    native_language => "espa\N{U+00f1}ol",
    native_name => "espa\N{U+00f1}ol Bolivia",
    native_script => undef,
    native_territory => "Bolivia",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Bolivia",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ es-CL ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "MMMM 'de' y G",
      GyMMMMEd => "E, d 'de' MMMM 'de' y G",
      GyMMMMd => "d 'de' MMMM 'de' y G",
      GyMMMd => "d 'de' MMM 'de' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmsvvvv => "H:mm:ss (vvvv)",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, dd-MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d MMM",
      MMMdd => "dd-MMM",
      MMd => "d/M",
      MMdd => "d/M",
      Md => "dd-MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmsvvvv => "h:mm:ss a (vvvv)",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM-y",
      yMEd => "E dd-MM-y",
      yMM => "M/y",
      yMMM => "MMMM 'de' y",
      yMMMEd => "E, d 'de' MMM 'de' y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "EEE, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d 'de' MMMM 'de' y",
      yMd => "dd-MM-y",
      yQQQ => "QQQ 'de' y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "es-CL",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "dd-MM-y",
    date_format_short => "dd-MM-yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_format_narrow => [
      "l",
      "m",
      "m",
      "j",
      "v",
      "s",
      "d"
    ],
    day_format_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a. C.",
      "d. C."
    ],
    era_narrow => [
      "a. C.",
      "d. C."
    ],
    era_wide => [
      "antes de Cristo",
      "despu\N{U+00e9}s de Cristo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Spanish",
    month_format_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_format_narrow => [
      "e",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    month_stand_alone_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sept.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_stand_alone_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    name => "Spanish Chile",
    native_language => "espa\N{U+00f1}ol",
    native_name => "espa\N{U+00f1}ol Chile",
    native_script => undef,
    native_territory => "Chile",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.\N{U+00b0} trimestre",
      "2.\N{U+00b0} trimestre",
      "3.\N{U+00b0} trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Chile",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ es-CO ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM 'de' y G",
      GyMMMEd => "E, d MMM 'de' y G",
      GyMMMM => "MMMM 'de' y G",
      GyMMMMEd => "E, d 'de' MMMM 'de' y G",
      GyMMMMd => "d 'de' MMMM 'de' y G",
      GyMMMd => "d 'de' MMM 'de' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmsvvvv => "H:mm:ss (vvvv)",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d 'de' MMM",
      MMMMEd => "E, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d 'de' MMM",
      MMMdd => "d 'de' MMM",
      MMd => "d/M",
      MMdd => "d/M",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmsvvvv => "h:mm:ss a (vvvv)",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "M/y",
      yMMM => "MMM 'de' y",
      yMMMEd => "E, d 'de' MMM 'de' y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "EEE, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d 'de' MMM 'de' y",
      yMd => "d/M/y",
      yQQQ => "QQQ 'de' y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "es-CO",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "d/MM/y",
    date_format_short => "d/MM/yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_format_narrow => [
      "l",
      "m",
      "m",
      "j",
      "v",
      "s",
      "d"
    ],
    day_format_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_stand_alone_narrow => [
      "l",
      "m",
      "m",
      "j",
      "v",
      "s",
      "d"
    ],
    day_stand_alone_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a. C.",
      "d. C."
    ],
    era_narrow => [
      "a. C.",
      "d. C."
    ],
    era_wide => [
      "antes de Cristo",
      "despu\N{U+00e9}s de Cristo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Spanish",
    month_format_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_format_narrow => [
      "e",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    month_stand_alone_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sept.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_stand_alone_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    name => "Spanish Colombia",
    native_language => "espa\N{U+00f1}ol",
    native_name => "espa\N{U+00f1}ol Colombia",
    native_script => undef,
    native_territory => "Colombia",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Colombia",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ es-CR ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "MMMM 'de' y G",
      GyMMMMEd => "E, d 'de' MMMM 'de' y G",
      GyMMMMd => "d 'de' MMMM 'de' y G",
      GyMMMd => "d 'de' MMM 'de' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmsvvvv => "H:mm:ss (vvvv)",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d MMM",
      MMMdd => "dd-MMM",
      MMd => "d/M",
      MMdd => "d/M",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmsvvvv => "h:mm:ss a (vvvv)",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "M/y",
      yMMM => "MMMM 'de' y",
      yMMMEd => "E, d 'de' MMM 'de' y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "EEE, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d 'de' MMMM 'de' y",
      yMd => "d/M/y",
      yQQQ => "QQQ 'de' y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "es-CR",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_format_narrow => [
      "l",
      "m",
      "m",
      "j",
      "v",
      "s",
      "d"
    ],
    day_format_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a. C.",
      "d. C."
    ],
    era_narrow => [
      "a. C.",
      "d. C."
    ],
    era_wide => [
      "antes de Cristo",
      "despu\N{U+00e9}s de Cristo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %e %b %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%Y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Spanish",
    month_format_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_format_narrow => [
      "e",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    month_stand_alone_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_stand_alone_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    name => "Spanish Costa Rica",
    native_language => "espa\N{U+00f1}ol",
    native_name => "espa\N{U+00f1}ol Costa Rica",
    native_script => undef,
    native_territory => "Costa Rica",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Costa Rica",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ es-CU ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "MMMM 'de' y G",
      GyMMMMEd => "E, d 'de' MMMM 'de' y G",
      GyMMMMd => "d 'de' MMMM 'de' y G",
      GyMMMd => "d 'de' MMM 'de' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmsvvvv => "H:mm:ss (vvvv)",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d MMM",
      MMMdd => "dd-MMM",
      MMd => "d/M",
      MMdd => "d/M",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmsvvvv => "h:mm:ss a (vvvv)",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "M/y",
      yMMM => "MMMM 'de' y",
      yMMMEd => "E, d 'de' MMM 'de' y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "EEE, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d 'de' MMMM 'de' y",
      yMd => "d/M/y",
      yQQQ => "QQQ 'de' y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "es-CU",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_format_narrow => [
      "l",
      "m",
      "m",
      "j",
      "v",
      "s",
      "d"
    ],
    day_format_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a. C.",
      "d. C."
    ],
    era_narrow => [
      "a. C.",
      "d. C."
    ],
    era_wide => [
      "antes de Cristo",
      "despu\N{U+00e9}s de Cristo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Spanish",
    month_format_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_format_narrow => [
      "e",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    month_stand_alone_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_stand_alone_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    name => "Spanish Cuba",
    native_language => "espa\N{U+00f1}ol",
    native_name => "espa\N{U+00f1}ol Cuba",
    native_script => undef,
    native_territory => "Cuba",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Cuba",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ es-DO ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "MMMM 'de' y G",
      GyMMMMEd => "E, d 'de' MMMM 'de' y G",
      GyMMMMd => "d 'de' MMMM 'de' y G",
      GyMMMd => "d 'de' MMM 'de' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmsvvvv => "H:mm:ss (vvvv)",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d MMM",
      MMMdd => "dd-MMM",
      MMd => "d/M",
      MMdd => "d/M",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmsvvvv => "h:mm:ss a (vvvv)",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "M/y",
      yMMM => "MMMM 'de' y",
      yMMMEd => "E, d 'de' MMM 'de' y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "EEE, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d MMM 'de' y",
      yMd => "d/M/y",
      yQQQ => "QQQ 'de' y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "es-DO",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_format_narrow => [
      "l",
      "m",
      "m",
      "j",
      "v",
      "s",
      "d"
    ],
    day_format_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a. C.",
      "d. C."
    ],
    era_narrow => [
      "a. C.",
      "d. C."
    ],
    era_wide => [
      "antes de Cristo",
      "despu\N{U+00e9}s de Cristo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Spanish",
    month_format_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_format_narrow => [
      "e",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    month_stand_alone_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_stand_alone_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    name => "Spanish Dominican Republic",
    native_language => "espa\N{U+00f1}ol",
    native_name => "espa\N{U+00f1}ol Rep\N{U+00fa}blica Dominicana",
    native_script => undef,
    native_territory => "Rep\N{U+00fa}blica Dominicana",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Dominican Republic",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ es-EA ]__
  {
    am_pm_abbreviated => [
      "a. m.",
      "p. m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, H:mm",
      EHms => "E, H:mm:ss",
      Ed => "E d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "MMMM 'de' y G",
      GyMMMMEd => "E, d 'de' MMMM 'de' y G",
      GyMMMMd => "d 'de' MMMM 'de' y G",
      GyMMMd => "d MMM y G",
      H => "H",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmsvvvv => "H:mm:ss (vvvv)",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d MMM",
      MMd => "d/M",
      MMdd => "d/M",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmsvvvv => "h:mm:ss a (vvvv)",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "EEE, d/M/y",
      yMM => "M/y",
      yMMM => "MMM y",
      yMMMEd => "EEE, d MMM y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "EEE, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "es-EA",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_format_narrow => [
      "L",
      "M",
      "X",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "X",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a. C.",
      "d. C."
    ],
    era_narrow => [
      "a. C.",
      "d. C."
    ],
    era_wide => [
      "antes de Cristo",
      "despu\N{U+00e9}s de Cristo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Spanish",
    month_format_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sept.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_format_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    month_stand_alone_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sept.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_stand_alone_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    name => "Spanish Ceuta & Melilla",
    native_language => "espa\N{U+00f1}ol",
    native_name => "espa\N{U+00f1}ol Ceuta y Melilla",
    native_script => undef,
    native_territory => "Ceuta y Melilla",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Ceuta & Melilla",
    time_format_full => "H:mm:ss (zzzz)",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ es-EC ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "MMMM 'de' y G",
      GyMMMMEd => "E, d 'de' MMMM 'de' y G",
      GyMMMMd => "d 'de' MMMM 'de' y G",
      GyMMMd => "d 'de' MMM 'de' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmsvvvv => "H:mm:ss (vvvv)",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d MMM",
      MMMdd => "dd-MMM",
      MMd => "d/M",
      MMdd => "d/M",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmsvvvv => "h:mm:ss a (vvvv)",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "M/y",
      yMMM => "MMMM 'de' y",
      yMMMEd => "E, d 'de' MMM 'de' y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "EEE, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d 'de' MMMM 'de' y",
      yMd => "d/M/y",
      yQQQ => "QQQ 'de' y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "es-EC",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_format_narrow => [
      "l",
      "m",
      "m",
      "j",
      "v",
      "s",
      "d"
    ],
    day_format_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a. C.",
      "d. C."
    ],
    era_narrow => [
      "a. C.",
      "d. C."
    ],
    era_wide => [
      "antes de Cristo",
      "despu\N{U+00e9}s de Cristo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Spanish",
    month_format_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_format_narrow => [
      "e",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    month_stand_alone_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_stand_alone_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    name => "Spanish Ecuador",
    native_language => "espa\N{U+00f1}ol",
    native_name => "espa\N{U+00f1}ol Ecuador",
    native_script => undef,
    native_territory => "Ecuador",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Ecuador",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ es-ES ]__
  {
    am_pm_abbreviated => [
      "a. m.",
      "p. m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, H:mm",
      EHms => "E, H:mm:ss",
      Ed => "E d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "MMMM 'de' y G",
      GyMMMMEd => "E, d 'de' MMMM 'de' y G",
      GyMMMMd => "d 'de' MMMM 'de' y G",
      GyMMMd => "d MMM y G",
      H => "H",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmsvvvv => "H:mm:ss (vvvv)",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d MMM",
      MMd => "d/M",
      MMdd => "d/M",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmsvvvv => "h:mm:ss a (vvvv)",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "EEE, d/M/y",
      yMM => "M/y",
      yMMM => "MMM y",
      yMMMEd => "EEE, d MMM y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "EEE, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "es-ES",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_format_narrow => [
      "L",
      "M",
      "X",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "X",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a. C.",
      "d. C."
    ],
    era_narrow => [
      "a. C.",
      "d. C."
    ],
    era_wide => [
      "antes de Cristo",
      "despu\N{U+00e9}s de Cristo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Spanish",
    month_format_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sept.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_format_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    month_stand_alone_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sept.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_stand_alone_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    name => "Spanish Spain",
    native_language => "espa\N{U+00f1}ol",
    native_name => "espa\N{U+00f1}ol Espa\N{U+00f1}a",
    native_script => undef,
    native_territory => "Espa\N{U+00f1}a",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Spain",
    time_format_full => "H:mm:ss (zzzz)",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ es-GQ ]__
  {
    am_pm_abbreviated => [
      "a. m.",
      "p. m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, H:mm",
      EHms => "E, H:mm:ss",
      Ed => "E d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "MMMM 'de' y G",
      GyMMMMEd => "E, d 'de' MMMM 'de' y G",
      GyMMMMd => "d 'de' MMMM 'de' y G",
      GyMMMd => "d MMM y G",
      H => "H",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmsvvvv => "H:mm:ss (vvvv)",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d MMM",
      MMd => "d/M",
      MMdd => "d/M",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmsvvvv => "h:mm:ss a (vvvv)",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "EEE, d/M/y",
      yMM => "M/y",
      yMMM => "MMM y",
      yMMMEd => "EEE, d MMM y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "EEE, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "es-GQ",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_format_narrow => [
      "L",
      "M",
      "X",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "X",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a. C.",
      "d. C."
    ],
    era_narrow => [
      "a. C.",
      "d. C."
    ],
    era_wide => [
      "antes de Cristo",
      "despu\N{U+00e9}s de Cristo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Spanish",
    month_format_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sept.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_format_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    month_stand_alone_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sept.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_stand_alone_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    name => "Spanish Equatorial Guinea",
    native_language => "espa\N{U+00f1}ol",
    native_name => "espa\N{U+00f1}ol Guinea Ecuatorial",
    native_script => undef,
    native_territory => "Guinea Ecuatorial",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Equatorial Guinea",
    time_format_full => "H:mm:ss (zzzz)",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ es-GT ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "MMMM 'de' y G",
      GyMMMMEd => "E, d 'de' MMMM 'de' y G",
      GyMMMMd => "d 'de' MMMM 'de' y G",
      GyMMMd => "d 'de' MMM 'de' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmsvvvv => "H:mm:ss (vvvv)",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d MMM",
      MMMdd => "dd-MMM",
      MMd => "d/M",
      MMdd => "d/M",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmsvvvv => "h:mm:ss a (vvvv)",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "M/y",
      yMMM => "MMMM 'de' y",
      yMMMEd => "E, d 'de' MMM 'de' y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "EEE, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d 'de' MMMM 'de' y",
      yMd => "d/M/y",
      yQQQ => "QQQ 'de' y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "es-GT",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "d/MM/y",
    date_format_short => "d/MM/yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_format_narrow => [
      "l",
      "m",
      "m",
      "j",
      "v",
      "s",
      "d"
    ],
    day_format_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a. C.",
      "d. C."
    ],
    era_narrow => [
      "a. C.",
      "d. C."
    ],
    era_wide => [
      "antes de Cristo",
      "despu\N{U+00e9}s de Cristo"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Spanish",
    month_format_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_format_narrow => [
      "e",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    month_stand_alone_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_stand_alone_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    name => "Spanish Guatemala",
    native_language => "espa\N{U+00f1}ol",
    native_name => "espa\N{U+00f1}ol Guatemala",
    native_script => undef,
    native_territory => "Guatemala",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Guatemala",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ es-HN ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "MMMM 'de' y G",
      GyMMMMEd => "E, d 'de' MMMM 'de' y G",
      GyMMMMd => "d 'de' MMMM 'de' y G",
      GyMMMd => "d 'de' MMM 'de' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmsvvvv => "H:mm:ss (vvvv)",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d MMM",
      MMMdd => "dd-MMM",
      MMd => "d/M",
      MMdd => "d/M",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmsvvvv => "h:mm:ss a (vvvv)",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "M/y",
      yMMM => "MMMM 'de' y",
      yMMMEd => "E, d 'de' MMM 'de' y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "EEE, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d 'de' MMMM 'de' y",
      yMd => "d/M/y",
      yQQQ => "QQQ 'de' y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "es-HN",
    date_format_full => "EEEE dd 'de' MMMM 'de' y",
    date_format_long => "dd 'de' MMMM 'de' y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_format_narrow => [
      "l",
      "m",
      "m",
      "j",
      "v",
      "s",
      "d"
    ],
    day_format_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a. C.",
      "d. C."
    ],
    era_narrow => [
      "a. C.",
      "d. C."
    ],
    era_wide => [
      "antes de Cristo",
      "despu\N{U+00e9}s de Cristo"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Spanish",
    month_format_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_format_narrow => [
      "e",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    month_stand_alone_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_stand_alone_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    name => "Spanish Honduras",
    native_language => "espa\N{U+00f1}ol",
    native_name => "espa\N{U+00f1}ol Honduras",
    native_script => undef,
    native_territory => "Honduras",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Honduras",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ es-IC ]__
  {
    am_pm_abbreviated => [
      "a. m.",
      "p. m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, H:mm",
      EHms => "E, H:mm:ss",
      Ed => "E d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "MMMM 'de' y G",
      GyMMMMEd => "E, d 'de' MMMM 'de' y G",
      GyMMMMd => "d 'de' MMMM 'de' y G",
      GyMMMd => "d MMM y G",
      H => "H",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmsvvvv => "H:mm:ss (vvvv)",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d MMM",
      MMd => "d/M",
      MMdd => "d/M",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmsvvvv => "h:mm:ss a (vvvv)",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "EEE, d/M/y",
      yMM => "M/y",
      yMMM => "MMM y",
      yMMMEd => "EEE, d MMM y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "EEE, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "es-IC",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_format_narrow => [
      "L",
      "M",
      "X",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "X",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a. C.",
      "d. C."
    ],
    era_narrow => [
      "a. C.",
      "d. C."
    ],
    era_wide => [
      "antes de Cristo",
      "despu\N{U+00e9}s de Cristo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Spanish",
    month_format_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sept.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_format_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    month_stand_alone_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sept.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_stand_alone_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    name => "Spanish Canary Islands",
    native_language => "espa\N{U+00f1}ol",
    native_name => "espa\N{U+00f1}ol Canarias",
    native_script => undef,
    native_territory => "Canarias",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Canary Islands",
    time_format_full => "H:mm:ss (zzzz)",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ es-MX ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E H:mm",
      EHms => "E H:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "MMMM 'de' y G",
      GyMMMMEd => "E, d 'de' MMMM 'de' y G",
      GyMMMMd => "d 'de' MMMM 'de' y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmsvvvv => "H:mm:ss (vvvv)",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E d 'de' MMM",
      MMMMEd => "E, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d MMM",
      MMMdd => "dd-MMM",
      MMd => "d/MM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmsvvvv => "h:mm:ss a (vvvv)",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "MM/y",
      yMMM => "MMMM 'de' y",
      yMMMEd => "EEE, d 'de' MMMM 'de' y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "EEE, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d 'de' MMMM 'de' y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "es-MX",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "dd/MM/y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a. C.",
      "d. C."
    ],
    era_narrow => [
      "a. C.",
      "d. C."
    ],
    era_wide => [
      "antes de Cristo",
      "despu\N{U+00e9}s de Cristo"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Spanish",
    month_format_abbreviated => [
      "ene",
      "feb",
      "mar",
      "abr",
      "may",
      "jun",
      "jul",
      "ago",
      "sep",
      "oct",
      "nov",
      "dic"
    ],
    month_format_narrow => [
      "e",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    month_stand_alone_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_stand_alone_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    name => "Spanish Mexico",
    native_language => "espa\N{U+00f1}ol",
    native_name => "espa\N{U+00f1}ol M\N{U+00e9}xico",
    native_script => undef,
    native_territory => "M\N{U+00e9}xico",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1er. trim.",
      "2\N{U+00ba}. trim.",
      "3er. trim.",
      "4\N{U+00ba} trim."
    ],
    quarter_format_narrow => [
      "1T",
      "2T",
      "3T",
      "4T"
    ],
    quarter_format_wide => [
      "1er. trimestre",
      "2\N{U+00ba}. trimestre",
      "3er. trimestre",
      "4\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "1er. trim.",
      "2\N{U+00ba}. trim.",
      "3er. trim.",
      "4\N{U+00ba} trim."
    ],
    quarter_stand_alone_narrow => [
      "1T",
      "2T",
      "3T",
      "4T"
    ],
    quarter_stand_alone_wide => [
      "1er. trimestre",
      "2\N{U+00ba}. trimestre",
      "3er. trimestre",
      "4\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Mexico",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ es-NI ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "MMMM 'de' y G",
      GyMMMMEd => "E, d 'de' MMMM 'de' y G",
      GyMMMMd => "d 'de' MMMM 'de' y G",
      GyMMMd => "d 'de' MMM 'de' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmsvvvv => "H:mm:ss (vvvv)",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d MMM",
      MMMdd => "dd-MMM",
      MMd => "d/M",
      MMdd => "d/M",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmsvvvv => "h:mm:ss a (vvvv)",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "M/y",
      yMMM => "MMMM 'de' y",
      yMMMEd => "E, d 'de' MMM 'de' y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "EEE, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d 'de' MMMM 'de' y",
      yMd => "d/M/y",
      yQQQ => "QQQ 'de' y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "es-NI",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_format_narrow => [
      "l",
      "m",
      "m",
      "j",
      "v",
      "s",
      "d"
    ],
    day_format_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a. C.",
      "d. C."
    ],
    era_narrow => [
      "a. C.",
      "d. C."
    ],
    era_wide => [
      "antes de Cristo",
      "despu\N{U+00e9}s de Cristo"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Spanish",
    month_format_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_format_narrow => [
      "e",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    month_stand_alone_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_stand_alone_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    name => "Spanish Nicaragua",
    native_language => "espa\N{U+00f1}ol",
    native_name => "espa\N{U+00f1}ol Nicaragua",
    native_script => undef,
    native_territory => "Nicaragua",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Nicaragua",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ es-PA ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "MMMM 'de' y G",
      GyMMMMEd => "E, d 'de' MMMM 'de' y G",
      GyMMMMd => "d 'de' MMMM 'de' y G",
      GyMMMd => "d 'de' MMM 'de' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmsvvvv => "H:mm:ss (vvvv)",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, MM/dd",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d MMM",
      MMMdd => "dd-MMM",
      MMd => "d/M",
      MMdd => "d/M",
      Md => "MM/dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmsvvvv => "h:mm:ss a (vvvv)",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E MM/dd/y",
      yMM => "M/y",
      yMMM => "MMM y",
      yMMMEd => "E, d 'de' MMM 'de' y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "EEE, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d MMM y",
      yMd => "MM/dd/y",
      yQQQ => "QQQ 'de' y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "es-PA",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "MM/dd/y",
    date_format_short => "MM/dd/yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_format_narrow => [
      "l",
      "m",
      "m",
      "j",
      "v",
      "s",
      "d"
    ],
    day_format_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a. C.",
      "d. C."
    ],
    era_narrow => [
      "a. C.",
      "d. C."
    ],
    era_wide => [
      "antes de Cristo",
      "despu\N{U+00e9}s de Cristo"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Spanish",
    month_format_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_format_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    month_stand_alone_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_stand_alone_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    name => "Spanish Panama",
    native_language => "espa\N{U+00f1}ol",
    native_name => "espa\N{U+00f1}ol Panam\N{U+00e1}",
    native_script => undef,
    native_territory => "Panam\N{U+00e1}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er. trimestre",
      "2do. trimestre",
      "3er. trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er. trimestre",
      "2do. trimestre",
      "3er. trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Panama",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ es-PE ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "MMMM 'de' y G",
      GyMMMMEd => "E, d 'de' MMMM 'de' y G",
      GyMMMMd => "d 'de' MMMM 'de' y G",
      GyMMMd => "d 'de' MMM 'de' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmsvvvv => "H:mm:ss (vvvv)",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d MMM",
      MMMdd => "dd-MMM",
      MMd => "d/M",
      MMdd => "d/M",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmsvvvv => "h:mm:ss a (vvvv)",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "M/y",
      yMMM => "MMMM 'de' y",
      yMMMEd => "E, d 'de' MMM 'de' y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "EEE, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d 'de' MMMM 'de' y",
      yMd => "d/M/y",
      yQQQ => "QQQ 'de' y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "es-PE",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "d MMM y",
    date_format_short => "d/MM/yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_format_narrow => [
      "l",
      "m",
      "m",
      "j",
      "v",
      "s",
      "d"
    ],
    day_format_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a. C.",
      "d. C."
    ],
    era_narrow => [
      "a. C.",
      "d. C."
    ],
    era_wide => [
      "antes de Cristo",
      "despu\N{U+00e9}s de Cristo"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Spanish",
    month_format_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "set.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_format_narrow => [
      "e",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "setiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    month_stand_alone_abbreviated => [
      "Ene.",
      "Feb.",
      "Mar.",
      "Abr.",
      "May.",
      "Jun.",
      "Jul.",
      "Ago.",
      "Set.",
      "Oct.",
      "Nov.",
      "Dic."
    ],
    month_stand_alone_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Enero",
      "Febrero",
      "Marzo",
      "Abril",
      "Mayo",
      "Junio",
      "Julio",
      "Agosto",
      "Setiembre",
      "Octubre",
      "Noviembre",
      "Diciembre"
    ],
    name => "Spanish Peru",
    native_language => "espa\N{U+00f1}ol",
    native_name => "espa\N{U+00f1}ol Per\N{U+00fa}",
    native_script => undef,
    native_territory => "Per\N{U+00fa}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Peru",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ es-PH ]__
  {
    am_pm_abbreviated => [
      "a. m.",
      "p. m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, H:mm",
      EHms => "E, H:mm:ss",
      Ed => "E d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "MMMM 'de' y G",
      GyMMMMEd => "E, d 'de' MMMM 'de' y G",
      GyMMMMd => "d 'de' MMMM 'de' y G",
      GyMMMd => "d MMM y G",
      H => "H",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmsvvvv => "H:mm:ss (vvvv)",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d MMM",
      MMd => "d/M",
      MMdd => "d/M",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmsvvvv => "h:mm:ss a (vvvv)",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "EEE, d/M/y",
      yMM => "M/y",
      yMMM => "MMM y",
      yMMMEd => "EEE, d MMM y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "EEE, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "es-PH",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_format_narrow => [
      "L",
      "M",
      "X",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "X",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a. C.",
      "d. C."
    ],
    era_narrow => [
      "a. C.",
      "d. C."
    ],
    era_wide => [
      "antes de Cristo",
      "despu\N{U+00e9}s de Cristo"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Spanish",
    month_format_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sept.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_format_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    month_stand_alone_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sept.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_stand_alone_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    name => "Spanish Philippines",
    native_language => "espa\N{U+00f1}ol",
    native_name => "espa\N{U+00f1}ol Filipinas",
    native_script => undef,
    native_territory => "Filipinas",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Philippines",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ es-PR ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "MMMM 'de' y G",
      GyMMMMEd => "E, d 'de' MMMM 'de' y G",
      GyMMMMd => "d 'de' MMMM 'de' y G",
      GyMMMd => "d 'de' MMM 'de' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmsvvvv => "H:mm:ss (vvvv)",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, MM/dd",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d MMM",
      MMMdd => "dd-MMM",
      MMd => "d/M",
      MMdd => "d/M",
      Md => "MM/dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmsvvvv => "h:mm:ss a (vvvv)",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E MM/dd/y",
      yMM => "M/y",
      yMMM => "MMMM 'de' y",
      yMMMEd => "E, d 'de' MMM 'de' y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "EEE, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d 'de' MMMM 'de' y",
      yMd => "MM/dd/y",
      yQQQ => "QQQ 'de' y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "es-PR",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "MM/dd/y",
    date_format_short => "MM/dd/yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_format_narrow => [
      "l",
      "m",
      "m",
      "j",
      "v",
      "s",
      "d"
    ],
    day_format_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a. C.",
      "d. C."
    ],
    era_narrow => [
      "a. C.",
      "d. C."
    ],
    era_wide => [
      "antes de Cristo",
      "despu\N{U+00e9}s de Cristo"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Spanish",
    month_format_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_format_narrow => [
      "e",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    month_stand_alone_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_stand_alone_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    name => "Spanish Puerto Rico",
    native_language => "espa\N{U+00f1}ol",
    native_name => "espa\N{U+00f1}ol Puerto Rico",
    native_script => undef,
    native_territory => "Puerto Rico",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Puerto Rico",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ es-PY ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "MMMM 'de' y G",
      GyMMMMEd => "E, d 'de' MMMM 'de' y G",
      GyMMMMd => "d 'de' MMMM 'de' y G",
      GyMMMd => "d 'de' MMM 'de' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmsvvvv => "H:mm:ss (vvvv)",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d MMM",
      MMMdd => "dd-MMM",
      MMd => "d/M",
      MMdd => "d/M",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmsvvvv => "h:mm:ss a (vvvv)",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "M/y",
      yMMM => "MMMM 'de' y",
      yMMMEd => "E, d 'de' MMM 'de' y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "EEE, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d 'de' MMMM 'de' y",
      yMd => "d/M/y",
      yQQQ => "QQQ 'de' y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "es-PY",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_format_narrow => [
      "l",
      "m",
      "m",
      "j",
      "v",
      "s",
      "d"
    ],
    day_format_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a. C.",
      "d. C."
    ],
    era_narrow => [
      "a. C.",
      "d. C."
    ],
    era_wide => [
      "antes de Cristo",
      "despu\N{U+00e9}s de Cristo"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Spanish",
    month_format_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sept.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_format_narrow => [
      "e",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    month_stand_alone_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sept.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_stand_alone_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    name => "Spanish Paraguay",
    native_language => "espa\N{U+00f1}ol",
    native_name => "espa\N{U+00f1}ol Paraguay",
    native_script => undef,
    native_territory => "Paraguay",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Paraguay",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ es-SV ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "MMMM 'de' y G",
      GyMMMMEd => "E, d 'de' MMMM 'de' y G",
      GyMMMMd => "d 'de' MMMM 'de' y G",
      GyMMMd => "d 'de' MMM 'de' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmsvvvv => "H:mm:ss (vvvv)",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d MMM",
      MMMdd => "dd-MMM",
      MMd => "d/M",
      MMdd => "d/M",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmsvvvv => "h:mm:ss a (vvvv)",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "M/y",
      yMMM => "MMMM 'de' y",
      yMMMEd => "E, d 'de' MMM 'de' y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "EEE, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d 'de' MMMM 'de' y",
      yMd => "d/M/y",
      yQQQ => "QQQ 'de' y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "es-SV",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_format_narrow => [
      "l",
      "m",
      "m",
      "j",
      "v",
      "s",
      "d"
    ],
    day_format_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a. C.",
      "d. C."
    ],
    era_narrow => [
      "a. C.",
      "d. C."
    ],
    era_wide => [
      "antes de Cristo",
      "despu\N{U+00e9}s de Cristo"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Spanish",
    month_format_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_format_narrow => [
      "e",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    month_stand_alone_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_stand_alone_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    name => "Spanish El Salvador",
    native_language => "espa\N{U+00f1}ol",
    native_name => "espa\N{U+00f1}ol El Salvador",
    native_script => undef,
    native_territory => "El Salvador",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "El Salvador",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ es-US ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "MMMM 'de' y G",
      GyMMMMEd => "E, d 'de' MMMM 'de' y G",
      GyMMMMd => "d 'de' MMMM 'de' y G",
      GyMMMd => "d 'de' MMM 'de' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmsvvvv => "H:mm:ss (vvvv)",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d MMM",
      MMMdd => "dd-MMM",
      MMd => "d/M",
      MMdd => "d/M",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmsvvvv => "h:mm:ss a (vvvv)",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "M/y",
      yMMM => "MMMM 'de' y",
      yMMMEd => "E, d 'de' MMM 'de' y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "EEE, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d 'de' MMMM 'de' y",
      yMd => "d/M/y",
      yQQQ => "QQQ 'de' y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "es-US",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_format_narrow => [
      "l",
      "m",
      "m",
      "j",
      "v",
      "s",
      "d"
    ],
    day_format_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a. C.",
      "d. C."
    ],
    era_narrow => [
      "a. C.",
      "d. C."
    ],
    era_wide => [
      "antes de Cristo",
      "despu\N{U+00e9}s de Cristo"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Spanish",
    month_format_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_format_narrow => [
      "e",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    month_stand_alone_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sep.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_stand_alone_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    name => "Spanish United States",
    native_language => "espa\N{U+00f1}ol",
    native_name => "espa\N{U+00f1}ol Estados Unidos",
    native_script => undef,
    native_territory => "Estados Unidos",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "United States",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ es-UY ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "MMMM 'de' y G",
      GyMMMMEd => "E, d 'de' MMMM 'de' y G",
      GyMMMMd => "d 'de' MMMM 'de' y G",
      GyMMMd => "d 'de' MMM 'de' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmsvvvv => "H:mm:ss (vvvv)",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d MMM",
      MMMdd => "dd-MMM",
      MMd => "d/M",
      MMdd => "d/M",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmsvvvv => "h:mm:ss a (vvvv)",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "M/y",
      yMMM => "MMMM 'de' y",
      yMMMEd => "E, d 'de' MMM 'de' y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "EEE, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d 'de' MMMM 'de' y",
      yMd => "d/M/y",
      yQQQ => "QQQ 'de' y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "es-UY",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_format_narrow => [
      "l",
      "m",
      "m",
      "j",
      "v",
      "s",
      "d"
    ],
    day_format_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a. C.",
      "d. C."
    ],
    era_narrow => [
      "a. C.",
      "d. C."
    ],
    era_wide => [
      "antes de Cristo",
      "despu\N{U+00e9}s de Cristo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Spanish",
    month_format_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "set.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_format_narrow => [
      "e",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "setiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    month_stand_alone_abbreviated => [
      "Ene.",
      "Feb.",
      "Mar.",
      "Abr.",
      "May.",
      "Jun.",
      "Jul.",
      "Ago.",
      "Set.",
      "Oct.",
      "Nov.",
      "Dic."
    ],
    month_stand_alone_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Enero",
      "Febrero",
      "Marzo",
      "Abril",
      "Mayo",
      "Junio",
      "Julio",
      "Agosto",
      "Setiembre",
      "Octubre",
      "Noviembre",
      "Diciembre"
    ],
    name => "Spanish Uruguay",
    native_language => "espa\N{U+00f1}ol",
    native_name => "espa\N{U+00f1}ol Uruguay",
    native_script => undef,
    native_territory => "Uruguay",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.er trimestre",
      "2.\N{U+00ba} trimestre",
      "3.er trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Uruguay",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ es-VE ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "MMMM 'de' y G",
      GyMMMMEd => "E, d 'de' MMMM 'de' y G",
      GyMMMMd => "d 'de' MMMM 'de' y G",
      GyMMMd => "d 'de' MMM 'de' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmsvvvv => "H:mm:ss (vvvv)",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d MMM",
      MMMdd => "dd-MMM",
      MMd => "d/M",
      MMdd => "d/M",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmsvvvv => "h:mm:ss a (vvvv)",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "M/y",
      yMMM => "MMMM 'de' y",
      yMMMEd => "E, d 'de' MMM 'de' y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "EEE, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ 'de' y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "es-VE",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_format_narrow => [
      "l",
      "m",
      "m",
      "j",
      "v",
      "s",
      "d"
    ],
    day_format_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mi\N{U+00e9}.",
      "jue.",
      "vie.",
      "s\N{U+00e1}b.",
      "dom."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lunes",
      "martes",
      "mi\N{U+00e9}rcoles",
      "jueves",
      "viernes",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a. C.",
      "d. C."
    ],
    era_narrow => [
      "a. C.",
      "d. C."
    ],
    era_wide => [
      "antes de Cristo",
      "despu\N{U+00e9}s de Cristo"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Spanish",
    month_format_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sept.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_format_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    month_stand_alone_abbreviated => [
      "ene.",
      "feb.",
      "mar.",
      "abr.",
      "may.",
      "jun.",
      "jul.",
      "ago.",
      "sept.",
      "oct.",
      "nov.",
      "dic."
    ],
    month_stand_alone_narrow => [
      "E",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "enero",
      "febrero",
      "marzo",
      "abril",
      "mayo",
      "junio",
      "julio",
      "agosto",
      "septiembre",
      "octubre",
      "noviembre",
      "diciembre"
    ],
    name => "Spanish Venezuela",
    native_language => "espa\N{U+00f1}ol",
    native_name => "espa\N{U+00f1}ol Venezuela",
    native_script => undef,
    native_territory => "Venezuela",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2do trimestre",
      "3er trimestre",
      "4to trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2do trimestre",
      "3er trimestre",
      "4to trimestre"
    ],
    script => undef,
    territory => "Venezuela",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ et ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm.ss",
      Ed => "E, d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm.ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d. MMMM y G",
      GyMMMd => "d. MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "H:mm.ss",
      Hmsv => "HH:mm.ss v",
      Hmv => "HH:mm v",
      M => "M",
      MEd => "E, d.M",
      MMM => "MMMM",
      MMMEd => "E, d. MMM",
      MMMMEd => "E, d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      Md => "d.M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm.ss a",
      hmsv => "h:mm.ss a v",
      hmv => "h:mm a v",
      mmss => "mm.ss",
      ms => "mm.ss",
      y => "y",
      yM => "M.y",
      yMEd => "E, d.M.y",
      yMMM => "MMM y",
      yMMMEd => "E, d. MMMM y",
      yMMMM => "MMMM y",
      yMMMd => "d. MMM y",
      yMd => "d.M.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "et",
    date_format_full => "EEEE, d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "d. MMM y",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "E",
      "T",
      "K",
      "N",
      "R",
      "L",
      "P"
    ],
    day_format_narrow => [
      "E",
      "T",
      "K",
      "N",
      "R",
      "L",
      "P"
    ],
    day_format_wide => [
      "esmasp\N{U+00e4}ev",
      "teisip\N{U+00e4}ev",
      "kolmap\N{U+00e4}ev",
      "neljap\N{U+00e4}ev",
      "reede",
      "laup\N{U+00e4}ev",
      "p\N{U+00fc}hap\N{U+00e4}ev"
    ],
    day_stand_alone_abbreviated => [
      "E",
      "T",
      "K",
      "N",
      "R",
      "L",
      "P"
    ],
    day_stand_alone_narrow => [
      "E",
      "T",
      "K",
      "N",
      "R",
      "L",
      "P"
    ],
    day_stand_alone_wide => [
      "esmasp\N{U+00e4}ev",
      "teisip\N{U+00e4}ev",
      "kolmap\N{U+00e4}ev",
      "neljap\N{U+00e4}ev",
      "reede",
      "laup\N{U+00e4}ev",
      "p\N{U+00fc}hap\N{U+00e4}ev"
    ],
    era_abbreviated => [
      "eKr",
      "pKr"
    ],
    era_narrow => [
      "eKr",
      "pKr"
    ],
    era_wide => [
      "enne Kristust",
      "p\N{U+00e4}rast Kristust"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Estonian",
    month_format_abbreviated => [
      "jaan",
      "veebr",
      "m\N{U+00e4}rts",
      "apr",
      "mai",
      "juuni",
      "juuli",
      "aug",
      "sept",
      "okt",
      "nov",
      "dets"
    ],
    month_format_narrow => [
      "J",
      "V",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "jaanuar",
      "veebruar",
      "m\N{U+00e4}rts",
      "aprill",
      "mai",
      "juuni",
      "juuli",
      "august",
      "september",
      "oktoober",
      "november",
      "detsember"
    ],
    month_stand_alone_abbreviated => [
      "jaan",
      "veebr",
      "m\N{U+00e4}rts",
      "apr",
      "mai",
      "juuni",
      "juuli",
      "aug",
      "sept",
      "okt",
      "nov",
      "dets"
    ],
    month_stand_alone_narrow => [
      "J",
      "V",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "jaanuar",
      "veebruar",
      "m\N{U+00e4}rts",
      "aprill",
      "mai",
      "juuni",
      "juuli",
      "august",
      "september",
      "oktoober",
      "november",
      "detsember"
    ],
    name => "Estonian",
    native_language => "eesti",
    native_name => "eesti",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. kvartal",
      "2. kvartal",
      "3. kvartal",
      "4. kvartal"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "1. kvartal",
      "2. kvartal",
      "3. kvartal",
      "4. kvartal"
    ],
    script => undef,
    territory => undef,
    time_format_full => "H:mm.ss zzzz",
    time_format_long => "H:mm.ss z",
    time_format_medium => "H:mm.ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ et-EE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm.ss",
      Ed => "E, d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm.ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d. MMMM y G",
      GyMMMd => "d. MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "H:mm.ss",
      Hmsv => "HH:mm.ss v",
      Hmv => "HH:mm v",
      M => "M",
      MEd => "E, d.M",
      MMM => "MMMM",
      MMMEd => "E, d. MMM",
      MMMMEd => "E, d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      Md => "d.M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm.ss a",
      hmsv => "h:mm.ss a v",
      hmv => "h:mm a v",
      mmss => "mm.ss",
      ms => "mm.ss",
      y => "y",
      yM => "M.y",
      yMEd => "E, d.M.y",
      yMMM => "MMM y",
      yMMMEd => "E, d. MMMM y",
      yMMMM => "MMMM y",
      yMMMd => "d. MMM y",
      yMd => "d.M.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "et-EE",
    date_format_full => "EEEE, d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "d. MMM y",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "E",
      "T",
      "K",
      "N",
      "R",
      "L",
      "P"
    ],
    day_format_narrow => [
      "E",
      "T",
      "K",
      "N",
      "R",
      "L",
      "P"
    ],
    day_format_wide => [
      "esmasp\N{U+00e4}ev",
      "teisip\N{U+00e4}ev",
      "kolmap\N{U+00e4}ev",
      "neljap\N{U+00e4}ev",
      "reede",
      "laup\N{U+00e4}ev",
      "p\N{U+00fc}hap\N{U+00e4}ev"
    ],
    day_stand_alone_abbreviated => [
      "E",
      "T",
      "K",
      "N",
      "R",
      "L",
      "P"
    ],
    day_stand_alone_narrow => [
      "E",
      "T",
      "K",
      "N",
      "R",
      "L",
      "P"
    ],
    day_stand_alone_wide => [
      "esmasp\N{U+00e4}ev",
      "teisip\N{U+00e4}ev",
      "kolmap\N{U+00e4}ev",
      "neljap\N{U+00e4}ev",
      "reede",
      "laup\N{U+00e4}ev",
      "p\N{U+00fc}hap\N{U+00e4}ev"
    ],
    era_abbreviated => [
      "eKr",
      "pKr"
    ],
    era_narrow => [
      "eKr",
      "pKr"
    ],
    era_wide => [
      "enne Kristust",
      "p\N{U+00e4}rast Kristust"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d.%m.%Y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Estonian",
    month_format_abbreviated => [
      "jaan",
      "veebr",
      "m\N{U+00e4}rts",
      "apr",
      "mai",
      "juuni",
      "juuli",
      "aug",
      "sept",
      "okt",
      "nov",
      "dets"
    ],
    month_format_narrow => [
      "J",
      "V",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "jaanuar",
      "veebruar",
      "m\N{U+00e4}rts",
      "aprill",
      "mai",
      "juuni",
      "juuli",
      "august",
      "september",
      "oktoober",
      "november",
      "detsember"
    ],
    month_stand_alone_abbreviated => [
      "jaan",
      "veebr",
      "m\N{U+00e4}rts",
      "apr",
      "mai",
      "juuni",
      "juuli",
      "aug",
      "sept",
      "okt",
      "nov",
      "dets"
    ],
    month_stand_alone_narrow => [
      "J",
      "V",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "jaanuar",
      "veebruar",
      "m\N{U+00e4}rts",
      "aprill",
      "mai",
      "juuni",
      "juuli",
      "august",
      "september",
      "oktoober",
      "november",
      "detsember"
    ],
    name => "Estonian Estonia",
    native_language => "eesti",
    native_name => "eesti Eesti",
    native_script => undef,
    native_territory => "Eesti",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. kvartal",
      "2. kvartal",
      "3. kvartal",
      "4. kvartal"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "1. kvartal",
      "2. kvartal",
      "3. kvartal",
      "4. kvartal"
    ],
    script => undef,
    territory => "Estonia",
    time_format_full => "H:mm.ss zzzz",
    time_format_long => "H:mm.ss z",
    time_format_medium => "H:mm.ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ eu ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y. 'urteko' MMM",
      GyMMMEd => "G y. 'urteko' MMM d, E",
      GyMMMd => "G y. 'urteko' MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "M/d, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y/M",
      yMEd => "y/M/d, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y('e')'ko' MMMM",
      yMMMMEd => "y('e')'ko' MMMM d, E",
      yMMMMd => "y('e')'ko' MMMM d",
      yMMMd => "y MMM d",
      yMd => "y/M/d",
      yQQQ => "y('e')'ko' QQQ",
      yQQQQ => "y('e')'ko' QQQQ"
    },
    code => "eu",
    date_format_full => "y('e')'ko' MMMM d, EEEE",
    date_format_long => "y('e')'ko' MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y/MM/dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "al.",
      "ar.",
      "az.",
      "og.",
      "or.",
      "lr.",
      "ig."
    ],
    day_format_narrow => [
      "A",
      "A",
      "A",
      "O",
      "O",
      "L",
      "I"
    ],
    day_format_wide => [
      "astelehena",
      "asteartea",
      "asteazkena",
      "osteguna",
      "ostirala",
      "larunbata",
      "igandea"
    ],
    day_stand_alone_abbreviated => [
      "Al.",
      "Ar.",
      "Az.",
      "Og.",
      "Or.",
      "Lr.",
      "Ig."
    ],
    day_stand_alone_narrow => [
      "A",
      "A",
      "A",
      "O",
      "O",
      "L",
      "I"
    ],
    day_stand_alone_wide => [
      "Astelehena",
      "Asteartea",
      "Asteazkena",
      "Osteguna",
      "Ostirala",
      "Larunbata",
      "Igandea"
    ],
    era_abbreviated => [
      "K.a.",
      "K.o."
    ],
    era_narrow => [
      "K.a.",
      "K.o."
    ],
    era_wide => [
      "K.a.",
      "K.o."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Basque",
    month_format_abbreviated => [
      "urt.",
      "ots.",
      "mar.",
      "api.",
      "mai.",
      "eka.",
      "uzt.",
      "abu.",
      "ira.",
      "urr.",
      "aza.",
      "abe."
    ],
    month_format_narrow => [
      "U",
      "O",
      "M",
      "A",
      "M",
      "E",
      "U",
      "A",
      "I",
      "U",
      "A",
      "A"
    ],
    month_format_wide => [
      "urtarrilak",
      "otsailak",
      "martxoak",
      "apirilak",
      "maiatzak",
      "ekainak",
      "uztailak",
      "abuztuak",
      "irailak",
      "urriak",
      "azaroak",
      "abenduak"
    ],
    month_stand_alone_abbreviated => [
      "Urt.",
      "Ots.",
      "Mar.",
      "Api.",
      "Mai.",
      "Eka.",
      "Uzt.",
      "Abu.",
      "Ira.",
      "Urr.",
      "Aza.",
      "Abe."
    ],
    month_stand_alone_narrow => [
      "U",
      "O",
      "M",
      "A",
      "M",
      "E",
      "U",
      "A",
      "I",
      "U",
      "A",
      "A"
    ],
    month_stand_alone_wide => [
      "Urtarrila",
      "Otsaila",
      "Martxoa",
      "Apirila",
      "Maiatza",
      "Ekaina",
      "Uztaila",
      "Abuztua",
      "Iraila",
      "Urria",
      "Azaroa",
      "Abendua"
    ],
    name => "Basque",
    native_language => "euskara",
    native_name => "euskara",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "1Hh",
      "2Hh",
      "3Hh",
      "4Hh"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. hiruhilekoa",
      "2. hiruhilekoa",
      "3. hiruhilekoa",
      "4. hiruhilekoa"
    ],
    quarter_stand_alone_abbreviated => [
      "1Hh",
      "2Hh",
      "3Hh",
      "4Hh"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. hiruhilekoa",
      "2. hiruhilekoa",
      "3. hiruhilekoa",
      "4. hiruhilekoa"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss (zzzz)",
    time_format_long => "HH:mm:ss (z)",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ eu-ES ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y. 'urteko' MMM",
      GyMMMEd => "G y. 'urteko' MMM d, E",
      GyMMMd => "G y. 'urteko' MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "M/d, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y/M",
      yMEd => "y/M/d, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y('e')'ko' MMMM",
      yMMMMEd => "y('e')'ko' MMMM d, E",
      yMMMMd => "y('e')'ko' MMMM d",
      yMMMd => "y MMM d",
      yMd => "y/M/d",
      yQQQ => "y('e')'ko' QQQ",
      yQQQQ => "y('e')'ko' QQQQ"
    },
    code => "eu-ES",
    date_format_full => "y('e')'ko' MMMM d, EEEE",
    date_format_long => "y('e')'ko' MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y/MM/dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "al.",
      "ar.",
      "az.",
      "og.",
      "or.",
      "lr.",
      "ig."
    ],
    day_format_narrow => [
      "A",
      "A",
      "A",
      "O",
      "O",
      "L",
      "I"
    ],
    day_format_wide => [
      "astelehena",
      "asteartea",
      "asteazkena",
      "osteguna",
      "ostirala",
      "larunbata",
      "igandea"
    ],
    day_stand_alone_abbreviated => [
      "Al.",
      "Ar.",
      "Az.",
      "Og.",
      "Or.",
      "Lr.",
      "Ig."
    ],
    day_stand_alone_narrow => [
      "A",
      "A",
      "A",
      "O",
      "O",
      "L",
      "I"
    ],
    day_stand_alone_wide => [
      "Astelehena",
      "Asteartea",
      "Asteazkena",
      "Osteguna",
      "Ostirala",
      "Larunbata",
      "Igandea"
    ],
    era_abbreviated => [
      "K.a.",
      "K.o."
    ],
    era_narrow => [
      "K.a.",
      "K.o."
    ],
    era_wide => [
      "K.a.",
      "K.o."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%a, %Y.eko %bren %da",
    glibc_datetime_format => "%y-%m-%d %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Basque",
    month_format_abbreviated => [
      "urt.",
      "ots.",
      "mar.",
      "api.",
      "mai.",
      "eka.",
      "uzt.",
      "abu.",
      "ira.",
      "urr.",
      "aza.",
      "abe."
    ],
    month_format_narrow => [
      "U",
      "O",
      "M",
      "A",
      "M",
      "E",
      "U",
      "A",
      "I",
      "U",
      "A",
      "A"
    ],
    month_format_wide => [
      "urtarrilak",
      "otsailak",
      "martxoak",
      "apirilak",
      "maiatzak",
      "ekainak",
      "uztailak",
      "abuztuak",
      "irailak",
      "urriak",
      "azaroak",
      "abenduak"
    ],
    month_stand_alone_abbreviated => [
      "Urt.",
      "Ots.",
      "Mar.",
      "Api.",
      "Mai.",
      "Eka.",
      "Uzt.",
      "Abu.",
      "Ira.",
      "Urr.",
      "Aza.",
      "Abe."
    ],
    month_stand_alone_narrow => [
      "U",
      "O",
      "M",
      "A",
      "M",
      "E",
      "U",
      "A",
      "I",
      "U",
      "A",
      "A"
    ],
    month_stand_alone_wide => [
      "Urtarrila",
      "Otsaila",
      "Martxoa",
      "Apirila",
      "Maiatza",
      "Ekaina",
      "Uztaila",
      "Abuztua",
      "Iraila",
      "Urria",
      "Azaroa",
      "Abendua"
    ],
    name => "Basque Spain",
    native_language => "euskara",
    native_name => "euskara Espainia",
    native_script => undef,
    native_territory => "Espainia",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1Hh",
      "2Hh",
      "3Hh",
      "4Hh"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. hiruhilekoa",
      "2. hiruhilekoa",
      "3. hiruhilekoa",
      "4. hiruhilekoa"
    ],
    quarter_stand_alone_abbreviated => [
      "1Hh",
      "2Hh",
      "3Hh",
      "4Hh"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. hiruhilekoa",
      "2. hiruhilekoa",
      "3. hiruhilekoa",
      "4. hiruhilekoa"
    ],
    script => undef,
    territory => "Spain",
    time_format_full => "HH:mm:ss (zzzz)",
    time_format_long => "HH:mm:ss (z)",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ewo ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ewo",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "m\N{U+0254}\N{U+0301}n",
      "smb",
      "sml",
      "smn",
      "f\N{U+00fa}l",
      "s\N{U+00e9}r",
      "s\N{U+0254}\N{U+0301}n"
    ],
    day_format_narrow => [
      "m",
      "s",
      "s",
      "s",
      "f",
      "s",
      "s"
    ],
    day_format_wide => [
      "m\N{U+0254}\N{U+0301}ndi",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254} m\N{U+0259}l\N{U+00fa} m\N{U+0259}\N{U+0301}b\N{U+025b}\N{U+030c}",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254} m\N{U+0259}l\N{U+00fa} m\N{U+0259}\N{U+0301}l\N{U+025b}\N{U+0301}",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254} m\N{U+0259}l\N{U+00fa} m\N{U+0259}\N{U+0301}nyi",
      "f\N{U+00fa}lad\N{U+00e9}",
      "s\N{U+00e9}rad\N{U+00e9}",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254}"
    ],
    day_stand_alone_abbreviated => [
      "m\N{U+0254}\N{U+0301}n",
      "smb",
      "sml",
      "smn",
      "f\N{U+00fa}l",
      "s\N{U+00e9}r",
      "s\N{U+0254}\N{U+0301}n"
    ],
    day_stand_alone_narrow => [
      "m",
      "s",
      "s",
      "s",
      "f",
      "s",
      "s"
    ],
    day_stand_alone_wide => [
      "m\N{U+0254}\N{U+0301}ndi",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254} m\N{U+0259}l\N{U+00fa} m\N{U+0259}\N{U+0301}b\N{U+025b}\N{U+030c}",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254} m\N{U+0259}l\N{U+00fa} m\N{U+0259}\N{U+0301}l\N{U+025b}\N{U+0301}",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254} m\N{U+0259}l\N{U+00fa} m\N{U+0259}\N{U+0301}nyi",
      "f\N{U+00fa}lad\N{U+00e9}",
      "s\N{U+00e9}rad\N{U+00e9}",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254}"
    ],
    era_abbreviated => [
      "oyk",
      "ayk"
    ],
    era_narrow => [
      "oyk",
      "ayk"
    ],
    era_wide => [
      "os\N{U+00fa}s\N{U+00fa}a Y\N{U+00e9}sus kiri",
      "\N{U+00e1}mvus Y\N{U+00e9}sus Kir\N{U+00ed}s"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Ewondo",
    month_format_abbreviated => [
      "ngo",
      "ngb",
      "ngl",
      "ngn",
      "ngt",
      "ngs",
      "ngz",
      "ngm",
      "nge",
      "nga",
      "ngad",
      "ngab"
    ],
    month_format_narrow => [
      "o",
      "b",
      "l",
      "n",
      "t",
      "s",
      "z",
      "m",
      "e",
      "a",
      "d",
      "b"
    ],
    month_format_wide => [
      "ng\N{U+0254}n os\N{U+00fa}",
      "ng\N{U+0254}n b\N{U+025b}\N{U+030c}",
      "ng\N{U+0254}n l\N{U+00e1}la",
      "ng\N{U+0254}n nyina",
      "ng\N{U+0254}n t\N{U+00e1}na",
      "ng\N{U+0254}n sam\N{U+0259}na",
      "ng\N{U+0254}n zamgb\N{U+00e1}la",
      "ng\N{U+0254}n mwom",
      "ng\N{U+0254}n ebul\N{U+00fa}",
      "ng\N{U+0254}n aw\N{U+00f3}m",
      "ng\N{U+0254}n aw\N{U+00f3}m ai dzi\N{U+00e1}",
      "ng\N{U+0254}n aw\N{U+00f3}m ai b\N{U+025b}\N{U+030c}"
    ],
    month_stand_alone_abbreviated => [
      "ngo",
      "ngb",
      "ngl",
      "ngn",
      "ngt",
      "ngs",
      "ngz",
      "ngm",
      "nge",
      "nga",
      "ngad",
      "ngab"
    ],
    month_stand_alone_narrow => [
      "o",
      "b",
      "l",
      "n",
      "t",
      "s",
      "z",
      "m",
      "e",
      "a",
      "d",
      "b"
    ],
    month_stand_alone_wide => [
      "ng\N{U+0254}n os\N{U+00fa}",
      "ng\N{U+0254}n b\N{U+025b}\N{U+030c}",
      "ng\N{U+0254}n l\N{U+00e1}la",
      "ng\N{U+0254}n nyina",
      "ng\N{U+0254}n t\N{U+00e1}na",
      "ng\N{U+0254}n sam\N{U+0259}na",
      "ng\N{U+0254}n zamgb\N{U+00e1}la",
      "ng\N{U+0254}n mwom",
      "ng\N{U+0254}n ebul\N{U+00fa}",
      "ng\N{U+0254}n aw\N{U+00f3}m",
      "ng\N{U+0254}n aw\N{U+00f3}m ai dzi\N{U+00e1}",
      "ng\N{U+0254}n aw\N{U+00f3}m ai b\N{U+025b}\N{U+030c}"
    ],
    name => "Ewondo",
    native_language => "ewondo",
    native_name => "ewondo",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "nno",
      "nnb",
      "nnl",
      "nnny"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "ns\N{U+00e1}mb\N{U+00e1} ng\N{U+0254}n as\N{U+00fa}",
      "ns\N{U+00e1}mb\N{U+00e1} ng\N{U+0254}n b\N{U+025b}\N{U+030c}",
      "ns\N{U+00e1}mb\N{U+00e1} ng\N{U+0254}n l\N{U+00e1}la",
      "ns\N{U+00e1}mb\N{U+00e1} ng\N{U+0254}n nyina"
    ],
    quarter_stand_alone_abbreviated => [
      "nno",
      "nnb",
      "nnl",
      "nnny"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "ns\N{U+00e1}mb\N{U+00e1} ng\N{U+0254}n as\N{U+00fa}",
      "ns\N{U+00e1}mb\N{U+00e1} ng\N{U+0254}n b\N{U+025b}\N{U+030c}",
      "ns\N{U+00e1}mb\N{U+00e1} ng\N{U+0254}n l\N{U+00e1}la",
      "ns\N{U+00e1}mb\N{U+00e1} ng\N{U+0254}n nyina"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ewo-CM ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ewo-CM",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "m\N{U+0254}\N{U+0301}n",
      "smb",
      "sml",
      "smn",
      "f\N{U+00fa}l",
      "s\N{U+00e9}r",
      "s\N{U+0254}\N{U+0301}n"
    ],
    day_format_narrow => [
      "m",
      "s",
      "s",
      "s",
      "f",
      "s",
      "s"
    ],
    day_format_wide => [
      "m\N{U+0254}\N{U+0301}ndi",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254} m\N{U+0259}l\N{U+00fa} m\N{U+0259}\N{U+0301}b\N{U+025b}\N{U+030c}",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254} m\N{U+0259}l\N{U+00fa} m\N{U+0259}\N{U+0301}l\N{U+025b}\N{U+0301}",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254} m\N{U+0259}l\N{U+00fa} m\N{U+0259}\N{U+0301}nyi",
      "f\N{U+00fa}lad\N{U+00e9}",
      "s\N{U+00e9}rad\N{U+00e9}",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254}"
    ],
    day_stand_alone_abbreviated => [
      "m\N{U+0254}\N{U+0301}n",
      "smb",
      "sml",
      "smn",
      "f\N{U+00fa}l",
      "s\N{U+00e9}r",
      "s\N{U+0254}\N{U+0301}n"
    ],
    day_stand_alone_narrow => [
      "m",
      "s",
      "s",
      "s",
      "f",
      "s",
      "s"
    ],
    day_stand_alone_wide => [
      "m\N{U+0254}\N{U+0301}ndi",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254} m\N{U+0259}l\N{U+00fa} m\N{U+0259}\N{U+0301}b\N{U+025b}\N{U+030c}",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254} m\N{U+0259}l\N{U+00fa} m\N{U+0259}\N{U+0301}l\N{U+025b}\N{U+0301}",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254} m\N{U+0259}l\N{U+00fa} m\N{U+0259}\N{U+0301}nyi",
      "f\N{U+00fa}lad\N{U+00e9}",
      "s\N{U+00e9}rad\N{U+00e9}",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254}"
    ],
    era_abbreviated => [
      "oyk",
      "ayk"
    ],
    era_narrow => [
      "oyk",
      "ayk"
    ],
    era_wide => [
      "os\N{U+00fa}s\N{U+00fa}a Y\N{U+00e9}sus kiri",
      "\N{U+00e1}mvus Y\N{U+00e9}sus Kir\N{U+00ed}s"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Ewondo",
    month_format_abbreviated => [
      "ngo",
      "ngb",
      "ngl",
      "ngn",
      "ngt",
      "ngs",
      "ngz",
      "ngm",
      "nge",
      "nga",
      "ngad",
      "ngab"
    ],
    month_format_narrow => [
      "o",
      "b",
      "l",
      "n",
      "t",
      "s",
      "z",
      "m",
      "e",
      "a",
      "d",
      "b"
    ],
    month_format_wide => [
      "ng\N{U+0254}n os\N{U+00fa}",
      "ng\N{U+0254}n b\N{U+025b}\N{U+030c}",
      "ng\N{U+0254}n l\N{U+00e1}la",
      "ng\N{U+0254}n nyina",
      "ng\N{U+0254}n t\N{U+00e1}na",
      "ng\N{U+0254}n sam\N{U+0259}na",
      "ng\N{U+0254}n zamgb\N{U+00e1}la",
      "ng\N{U+0254}n mwom",
      "ng\N{U+0254}n ebul\N{U+00fa}",
      "ng\N{U+0254}n aw\N{U+00f3}m",
      "ng\N{U+0254}n aw\N{U+00f3}m ai dzi\N{U+00e1}",
      "ng\N{U+0254}n aw\N{U+00f3}m ai b\N{U+025b}\N{U+030c}"
    ],
    month_stand_alone_abbreviated => [
      "ngo",
      "ngb",
      "ngl",
      "ngn",
      "ngt",
      "ngs",
      "ngz",
      "ngm",
      "nge",
      "nga",
      "ngad",
      "ngab"
    ],
    month_stand_alone_narrow => [
      "o",
      "b",
      "l",
      "n",
      "t",
      "s",
      "z",
      "m",
      "e",
      "a",
      "d",
      "b"
    ],
    month_stand_alone_wide => [
      "ng\N{U+0254}n os\N{U+00fa}",
      "ng\N{U+0254}n b\N{U+025b}\N{U+030c}",
      "ng\N{U+0254}n l\N{U+00e1}la",
      "ng\N{U+0254}n nyina",
      "ng\N{U+0254}n t\N{U+00e1}na",
      "ng\N{U+0254}n sam\N{U+0259}na",
      "ng\N{U+0254}n zamgb\N{U+00e1}la",
      "ng\N{U+0254}n mwom",
      "ng\N{U+0254}n ebul\N{U+00fa}",
      "ng\N{U+0254}n aw\N{U+00f3}m",
      "ng\N{U+0254}n aw\N{U+00f3}m ai dzi\N{U+00e1}",
      "ng\N{U+0254}n aw\N{U+00f3}m ai b\N{U+025b}\N{U+030c}"
    ],
    name => "Ewondo Cameroon",
    native_language => "ewondo",
    native_name => "ewondo Kam\N{U+0259}r\N{U+00fa}n",
    native_script => undef,
    native_territory => "Kam\N{U+0259}r\N{U+00fa}n",
    native_variant => undef,
    quarter_format_abbreviated => [
      "nno",
      "nnb",
      "nnl",
      "nnny"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "ns\N{U+00e1}mb\N{U+00e1} ng\N{U+0254}n as\N{U+00fa}",
      "ns\N{U+00e1}mb\N{U+00e1} ng\N{U+0254}n b\N{U+025b}\N{U+030c}",
      "ns\N{U+00e1}mb\N{U+00e1} ng\N{U+0254}n l\N{U+00e1}la",
      "ns\N{U+00e1}mb\N{U+00e1} ng\N{U+0254}n nyina"
    ],
    quarter_stand_alone_abbreviated => [
      "nno",
      "nnb",
      "nnl",
      "nnny"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "ns\N{U+00e1}mb\N{U+00e1} ng\N{U+0254}n as\N{U+00fa}",
      "ns\N{U+00e1}mb\N{U+00e1} ng\N{U+0254}n b\N{U+025b}\N{U+030c}",
      "ns\N{U+00e1}mb\N{U+00e1} ng\N{U+0254}n l\N{U+00e1}la",
      "ns\N{U+00e1}mb\N{U+00e1} ng\N{U+0254}n nyina"
    ],
    script => undef,
    territory => "Cameroon",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fa ]__
  {
    am_pm_abbreviated => [
      "\N{U+0642}.\N{U+0638}.",
      "\N{U+0628}.\N{U+0638}."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E H:mm",
      EHms => "E H:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "H",
      HHmmZ => "HH:mm (Z)",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E M/d",
      MMM => "LLL",
      MMMEd => "E d LLL",
      MMMMEd => "E d LLLL",
      MMMMd => "d LLLL",
      MMMd => "d LLL",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y",
      yM => "y/M",
      yMEd => "E y/M/d",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMMEEEEd => "EEEE d MMMM y",
      yMMMd => "d MMM y",
      yMd => "y/M/d",
      yQQQ => "QQQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fa",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "y/M/d",
    datetime_format_full => "{1}\N{U+060c} \N{U+0633}\N{U+0627}\N{U+0639}\N{U+062a} {0}",
    datetime_format_long => "{1}\N{U+060c} \N{U+0633}\N{U+0627}\N{U+0639}\N{U+062a} {0}",
    datetime_format_medium => "{1}\N{U+060c}\N{U+200f} {0}",
    datetime_format_short => "{1}\N{U+060c}\N{U+200f} {0}",
    day_format_abbreviated => [
      "\N{U+062f}\N{U+0648}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0686}\N{U+0647}\N{U+0627}\N{U+0631}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+067e}\N{U+0646}\N{U+062c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0647}",
      "\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+06cc}\N{U+06a9}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}"
    ],
    day_format_narrow => [
      "\N{U+062f}",
      "\N{U+0633}",
      "\N{U+0686}",
      "\N{U+067e}",
      "\N{U+062c}",
      "\N{U+0634}",
      "\N{U+06cc}"
    ],
    day_format_wide => [
      "\N{U+062f}\N{U+0648}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0686}\N{U+0647}\N{U+0627}\N{U+0631}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+067e}\N{U+0646}\N{U+062c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0647}",
      "\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+06cc}\N{U+06a9}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+062f}\N{U+0648}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0686}\N{U+0647}\N{U+0627}\N{U+0631}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+067e}\N{U+0646}\N{U+062c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0647}",
      "\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+06cc}\N{U+06a9}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}"
    ],
    day_stand_alone_narrow => [
      "\N{U+062f}",
      "\N{U+0633}",
      "\N{U+0686}",
      "\N{U+067e}",
      "\N{U+062c}",
      "\N{U+0634}",
      "\N{U+06cc}"
    ],
    day_stand_alone_wide => [
      "\N{U+062f}\N{U+0648}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0686}\N{U+0647}\N{U+0627}\N{U+0631}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+067e}\N{U+0646}\N{U+062c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0647}",
      "\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+06cc}\N{U+06a9}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}.",
      "\N{U+0645}."
    ],
    era_narrow => [
      "\N{U+0642}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0632} \N{U+0645}\N{U+06cc}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+06cc}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+06cc}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Persian",
    month_format_abbreviated => [
      "\N{U+0698}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+06cc}\N{U+0647}\N{U+0654}",
      "\N{U+0641}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0647}\N{U+0654}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0647}\N{U+0654}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+0646}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+06cc}\N{U+0647}\N{U+0654}",
      "\N{U+0627}\N{U+0648}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      "\N{U+0698}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0622}",
      "\N{U+0645}",
      "\N{U+0698}",
      "\N{U+0698}",
      "\N{U+0627}",
      "\N{U+0633}",
      "\N{U+0627}",
      "\N{U+0646}",
      "\N{U+062f}"
    ],
    month_format_wide => [
      "\N{U+0698}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+06cc}\N{U+0647}\N{U+0654}",
      "\N{U+0641}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0647}\N{U+0654}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0647}\N{U+0654}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+0646}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+06cc}\N{U+0647}\N{U+0654}",
      "\N{U+0627}\N{U+0648}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0698}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+06cc}\N{U+0647}",
      "\N{U+0641}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0647}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0647}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+0646}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+06cc}\N{U+0647}",
      "\N{U+0627}\N{U+0648}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0698}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0622}",
      "\N{U+0645}",
      "\N{U+0698}",
      "\N{U+0698}",
      "\N{U+0627}",
      "\N{U+0633}",
      "\N{U+0627}",
      "\N{U+0646}",
      "\N{U+062f}"
    ],
    month_stand_alone_wide => [
      "\N{U+0698}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+06cc}\N{U+0647}",
      "\N{U+0641}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0647}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0647}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+0646}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+06cc}\N{U+0647}",
      "\N{U+0627}\N{U+0648}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Persian",
    native_language => "\N{U+0641}\N{U+0627}\N{U+0631}\N{U+0633}\N{U+06cc}",
    native_name => "\N{U+0641}\N{U+0627}\N{U+0631}\N{U+0633}\N{U+06cc}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0633}\N{U+200c}\N{U+0645}\N{U+06f1}",
      "\N{U+0633}\N{U+200c}\N{U+0645}\N{U+06f2}",
      "\N{U+0633}\N{U+200c}\N{U+0645}\N{U+06f3}",
      "\N{U+0633}\N{U+200c}\N{U+0645}\N{U+06f4}"
    ],
    quarter_format_narrow => [
      "\N{U+06f1}",
      "\N{U+06f2}",
      "\N{U+06f3}",
      "\N{U+06f4}"
    ],
    quarter_format_wide => [
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0645}\N{U+0627}\N{U+0647}\N{U+0647}\N{U+0654} \N{U+0627}\N{U+0648}\N{U+0644}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0645}\N{U+0627}\N{U+0647}\N{U+0647}\N{U+0654} \N{U+062f}\N{U+0648}\N{U+0645}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0645}\N{U+0627}\N{U+0647}\N{U+0647}\N{U+0654} \N{U+0633}\N{U+0648}\N{U+0645}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0645}\N{U+0627}\N{U+0647}\N{U+0647}\N{U+0654} \N{U+0686}\N{U+0647}\N{U+0627}\N{U+0631}\N{U+0645}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0633}\N{U+200c}\N{U+0645}\N{U+06f1}",
      "\N{U+0633}\N{U+200c}\N{U+0645}\N{U+06f2}",
      "\N{U+0633}\N{U+200c}\N{U+0645}\N{U+06f3}",
      "\N{U+0633}\N{U+200c}\N{U+0645}\N{U+06f4}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+06f1}",
      "\N{U+06f2}",
      "\N{U+06f3}",
      "\N{U+06f4}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0645}\N{U+0627}\N{U+0647}\N{U+0647}\N{U+0654} \N{U+0627}\N{U+0648}\N{U+0644}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0645}\N{U+0627}\N{U+0647}\N{U+0647}\N{U+0654} \N{U+062f}\N{U+0648}\N{U+0645}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0645}\N{U+0627}\N{U+0647}\N{U+0647}\N{U+0654} \N{U+0633}\N{U+0648}\N{U+0645}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0645}\N{U+0627}\N{U+0647}\N{U+0647}\N{U+0654} \N{U+0686}\N{U+0647}\N{U+0627}\N{U+0631}\N{U+0645}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "H:mm:ss (zzzz)",
    time_format_long => "H:mm:ss (z)",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ fa-AF ]__
  {
    am_pm_abbreviated => [
      "\N{U+0642}.\N{U+0638}.",
      "\N{U+0628}.\N{U+0638}."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E H:mm",
      EHms => "E H:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "H",
      HHmmZ => "HH:mm (Z)",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E M/d",
      MMM => "LLL",
      MMMEd => "E d LLL",
      MMMMEd => "E d LLLL",
      MMMMd => "d LLLL",
      MMMd => "d LLL",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y",
      yM => "y/M",
      yMEd => "E y/M/d",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMMEEEEd => "EEEE d MMMM y",
      yMMMd => "d MMM y",
      yMd => "y/M/d",
      yQQQ => "QQQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fa-AF",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "y/M/d",
    datetime_format_full => "{1}\N{U+060c} \N{U+0633}\N{U+0627}\N{U+0639}\N{U+062a} {0}",
    datetime_format_long => "{1}\N{U+060c} \N{U+0633}\N{U+0627}\N{U+0639}\N{U+062a} {0}",
    datetime_format_medium => "{1}\N{U+060c}\N{U+200f} {0}",
    datetime_format_short => "{1}\N{U+060c}\N{U+200f} {0}",
    day_format_abbreviated => [
      "\N{U+062f}\N{U+0648}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0686}\N{U+0647}\N{U+0627}\N{U+0631}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+067e}\N{U+0646}\N{U+062c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0647}",
      "\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+06cc}\N{U+06a9}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}"
    ],
    day_format_narrow => [
      "\N{U+062f}",
      "\N{U+0633}",
      "\N{U+0686}",
      "\N{U+067e}",
      "\N{U+062c}",
      "\N{U+0634}",
      "\N{U+06cc}"
    ],
    day_format_wide => [
      "\N{U+062f}\N{U+0648}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0686}\N{U+0647}\N{U+0627}\N{U+0631}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+067e}\N{U+0646}\N{U+062c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0647}",
      "\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+06cc}\N{U+06a9}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+062f}\N{U+0648}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0686}\N{U+0647}\N{U+0627}\N{U+0631}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+067e}\N{U+0646}\N{U+062c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0647}",
      "\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+06cc}\N{U+06a9}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}"
    ],
    day_stand_alone_narrow => [
      "\N{U+062f}",
      "\N{U+0633}",
      "\N{U+0686}",
      "\N{U+067e}",
      "\N{U+062c}",
      "\N{U+0634}",
      "\N{U+06cc}"
    ],
    day_stand_alone_wide => [
      "\N{U+062f}\N{U+0648}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0686}\N{U+0647}\N{U+0627}\N{U+0631}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+067e}\N{U+0646}\N{U+062c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0647}",
      "\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+06cc}\N{U+06a9}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}.",
      "\N{U+0645}."
    ],
    era_narrow => [
      "\N{U+0642}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0632} \N{U+0645}\N{U+06cc}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+06cc}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+06cc}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Persian",
    month_format_abbreviated => [
      "\N{U+062c}\N{U+0646}\N{U+0648}",
      "\N{U+0641}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0647}\N{U+0654}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+06cc}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+0648}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}"
    ],
    month_format_narrow => [
      "\N{U+0698}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0622}",
      "\N{U+0645}",
      "\N{U+0698}",
      "\N{U+0698}",
      "\N{U+0627}",
      "\N{U+0633}",
      "\N{U+0627}",
      "\N{U+0646}",
      "\N{U+062f}"
    ],
    month_format_wide => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0698}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+06cc}\N{U+0647}",
      "\N{U+0641}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0647}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0647}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+0646}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+06cc}\N{U+0647}",
      "\N{U+0627}\N{U+0648}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "\N{U+062c}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0627}",
      "\N{U+0645}",
      "\N{U+062c}",
      "\N{U+062c}",
      "\N{U+0627}",
      "\N{U+0633}",
      "\N{U+0627}",
      "\N{U+0646}",
      "\N{U+062f}"
    ],
    month_stand_alone_wide => [
      "\N{U+0698}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+06cc}\N{U+0647}",
      "\N{U+0641}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0647}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0647}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+0646}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+06cc}\N{U+0647}",
      "\N{U+0627}\N{U+0648}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Persian Afghanistan",
    native_language => "\N{U+0641}\N{U+0627}\N{U+0631}\N{U+0633}\N{U+06cc}",
    native_name => "\N{U+0641}\N{U+0627}\N{U+0631}\N{U+0633}\N{U+06cc} \N{U+0627}\N{U+0641}\N{U+063a}\N{U+0627}\N{U+0646}\N{U+0633}\N{U+062a}\N{U+0627}\N{U+0646}",
    native_script => undef,
    native_territory => "\N{U+0627}\N{U+0641}\N{U+063a}\N{U+0627}\N{U+0646}\N{U+0633}\N{U+062a}\N{U+0627}\N{U+0646}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0633}\N{U+200c}\N{U+0645}\N{U+06f1}",
      "\N{U+0633}\N{U+200c}\N{U+0645}\N{U+06f2}",
      "\N{U+0633}\N{U+200c}\N{U+0645}\N{U+06f3}",
      "\N{U+0633}\N{U+200c}\N{U+0645}\N{U+06f4}"
    ],
    quarter_format_narrow => [
      "\N{U+06f1}",
      "\N{U+06f2}",
      "\N{U+06f3}",
      "\N{U+06f4}"
    ],
    quarter_format_wide => [
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0645}\N{U+0627}\N{U+0647}\N{U+0647}\N{U+0654} \N{U+0627}\N{U+0648}\N{U+0644}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0645}\N{U+0627}\N{U+0647}\N{U+0647}\N{U+0654} \N{U+062f}\N{U+0648}\N{U+0645}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0645}\N{U+0627}\N{U+0647}\N{U+0647}\N{U+0654} \N{U+0633}\N{U+0648}\N{U+0645}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0645}\N{U+0627}\N{U+0647}\N{U+0647}\N{U+0654} \N{U+0686}\N{U+0647}\N{U+0627}\N{U+0631}\N{U+0645}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0633}\N{U+200c}\N{U+0645}\N{U+06f1}",
      "\N{U+0633}\N{U+200c}\N{U+0645}\N{U+06f2}",
      "\N{U+0633}\N{U+200c}\N{U+0645}\N{U+06f3}",
      "\N{U+0633}\N{U+200c}\N{U+0645}\N{U+06f4}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+06f1}",
      "\N{U+06f2}",
      "\N{U+06f3}",
      "\N{U+06f4}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0645}\N{U+0627}\N{U+0647}\N{U+0647}\N{U+0654} \N{U+0627}\N{U+0648}\N{U+0644}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0645}\N{U+0627}\N{U+0647}\N{U+0647}\N{U+0654} \N{U+062f}\N{U+0648}\N{U+0645}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0645}\N{U+0627}\N{U+0647}\N{U+0647}\N{U+0654} \N{U+0633}\N{U+0648}\N{U+0645}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0645}\N{U+0627}\N{U+0647}\N{U+0647}\N{U+0654} \N{U+0686}\N{U+0647}\N{U+0627}\N{U+0631}\N{U+0645}"
    ],
    script => undef,
    territory => "Afghanistan",
    time_format_full => "H:mm:ss (zzzz)",
    time_format_long => "H:mm:ss (z)",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ fa-IR ]__
  {
    am_pm_abbreviated => [
      "\N{U+0642}.\N{U+0638}.",
      "\N{U+0628}.\N{U+0638}."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E H:mm",
      EHms => "E H:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "H",
      HHmmZ => "HH:mm (Z)",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E M/d",
      MMM => "LLL",
      MMMEd => "E d LLL",
      MMMMEd => "E d LLLL",
      MMMMd => "d LLLL",
      MMMd => "d LLL",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y",
      yM => "y/M",
      yMEd => "E y/M/d",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMMEEEEd => "EEEE d MMMM y",
      yMMMd => "d MMM y",
      yMd => "y/M/d",
      yQQQ => "QQQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fa-IR",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "y/M/d",
    datetime_format_full => "{1}\N{U+060c} \N{U+0633}\N{U+0627}\N{U+0639}\N{U+062a} {0}",
    datetime_format_long => "{1}\N{U+060c} \N{U+0633}\N{U+0627}\N{U+0639}\N{U+062a} {0}",
    datetime_format_medium => "{1}\N{U+060c}\N{U+200f} {0}",
    datetime_format_short => "{1}\N{U+060c}\N{U+200f} {0}",
    day_format_abbreviated => [
      "\N{U+062f}\N{U+0648}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0686}\N{U+0647}\N{U+0627}\N{U+0631}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+067e}\N{U+0646}\N{U+062c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0647}",
      "\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+06cc}\N{U+06a9}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}"
    ],
    day_format_narrow => [
      "\N{U+062f}",
      "\N{U+0633}",
      "\N{U+0686}",
      "\N{U+067e}",
      "\N{U+062c}",
      "\N{U+0634}",
      "\N{U+06cc}"
    ],
    day_format_wide => [
      "\N{U+062f}\N{U+0648}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0686}\N{U+0647}\N{U+0627}\N{U+0631}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+067e}\N{U+0646}\N{U+062c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0647}",
      "\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+06cc}\N{U+06a9}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+062f}\N{U+0648}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0686}\N{U+0647}\N{U+0627}\N{U+0631}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+067e}\N{U+0646}\N{U+062c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0647}",
      "\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+06cc}\N{U+06a9}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}"
    ],
    day_stand_alone_narrow => [
      "\N{U+062f}",
      "\N{U+0633}",
      "\N{U+0686}",
      "\N{U+067e}",
      "\N{U+062c}",
      "\N{U+0634}",
      "\N{U+06cc}"
    ],
    day_stand_alone_wide => [
      "\N{U+062f}\N{U+0648}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0686}\N{U+0647}\N{U+0627}\N{U+0631}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+067e}\N{U+0646}\N{U+062c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0647}",
      "\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+06cc}\N{U+06a9}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}.",
      "\N{U+0645}."
    ],
    era_narrow => [
      "\N{U+0642}",
      "\N{U+0645}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0627}\N{U+0632} \N{U+0645}\N{U+06cc}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0645}\N{U+06cc}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+06cc}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "\N{U+202b}%A %Oe %B %Oy\N{U+060c} \N{U+0633}\N{U+0627}\N{U+0639}\N{U+062a} %OH:%OM:%OS (%Z)\N{U+202c}",
    glibc_date_format => "%Oy/%Om/%Od",
    glibc_datetime_format => "\N{U+202b}%A %Oe %B %Oy\N{U+060c} %OH:%OM:%OS\N{U+202c}",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%OH:%OM:%OS",
    language => "Persian",
    month_format_abbreviated => [
      "\N{U+0698}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+06cc}\N{U+0647}\N{U+0654}",
      "\N{U+0641}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0647}\N{U+0654}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0647}\N{U+0654}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+0646}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+06cc}\N{U+0647}\N{U+0654}",
      "\N{U+0627}\N{U+0648}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      "\N{U+0698}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0622}",
      "\N{U+0645}",
      "\N{U+0698}",
      "\N{U+0698}",
      "\N{U+0627}",
      "\N{U+0633}",
      "\N{U+0627}",
      "\N{U+0646}",
      "\N{U+062f}"
    ],
    month_format_wide => [
      "\N{U+0698}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+06cc}\N{U+0647}\N{U+0654}",
      "\N{U+0641}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0647}\N{U+0654}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0647}\N{U+0654}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+0646}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+06cc}\N{U+0647}\N{U+0654}",
      "\N{U+0627}\N{U+0648}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0698}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+06cc}\N{U+0647}",
      "\N{U+0641}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0647}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0647}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+0646}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+06cc}\N{U+0647}",
      "\N{U+0627}\N{U+0648}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0698}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0622}",
      "\N{U+0645}",
      "\N{U+0698}",
      "\N{U+0698}",
      "\N{U+0627}",
      "\N{U+0633}",
      "\N{U+0627}",
      "\N{U+0646}",
      "\N{U+062f}"
    ],
    month_stand_alone_wide => [
      "\N{U+0698}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+06cc}\N{U+0647}",
      "\N{U+0641}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0647}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0647}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+0646}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+06cc}\N{U+0647}",
      "\N{U+0627}\N{U+0648}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Persian Iran",
    native_language => "\N{U+0641}\N{U+0627}\N{U+0631}\N{U+0633}\N{U+06cc}",
    native_name => "\N{U+0641}\N{U+0627}\N{U+0631}\N{U+0633}\N{U+06cc} \N{U+0627}\N{U+06cc}\N{U+0631}\N{U+0627}\N{U+0646}",
    native_script => undef,
    native_territory => "\N{U+0627}\N{U+06cc}\N{U+0631}\N{U+0627}\N{U+0646}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0633}\N{U+200c}\N{U+0645}\N{U+06f1}",
      "\N{U+0633}\N{U+200c}\N{U+0645}\N{U+06f2}",
      "\N{U+0633}\N{U+200c}\N{U+0645}\N{U+06f3}",
      "\N{U+0633}\N{U+200c}\N{U+0645}\N{U+06f4}"
    ],
    quarter_format_narrow => [
      "\N{U+06f1}",
      "\N{U+06f2}",
      "\N{U+06f3}",
      "\N{U+06f4}"
    ],
    quarter_format_wide => [
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0645}\N{U+0627}\N{U+0647}\N{U+0647}\N{U+0654} \N{U+0627}\N{U+0648}\N{U+0644}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0645}\N{U+0627}\N{U+0647}\N{U+0647}\N{U+0654} \N{U+062f}\N{U+0648}\N{U+0645}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0645}\N{U+0627}\N{U+0647}\N{U+0647}\N{U+0654} \N{U+0633}\N{U+0648}\N{U+0645}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0645}\N{U+0627}\N{U+0647}\N{U+0647}\N{U+0654} \N{U+0686}\N{U+0647}\N{U+0627}\N{U+0631}\N{U+0645}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0633}\N{U+200c}\N{U+0645}\N{U+06f1}",
      "\N{U+0633}\N{U+200c}\N{U+0645}\N{U+06f2}",
      "\N{U+0633}\N{U+200c}\N{U+0645}\N{U+06f3}",
      "\N{U+0633}\N{U+200c}\N{U+0645}\N{U+06f4}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+06f1}",
      "\N{U+06f2}",
      "\N{U+06f3}",
      "\N{U+06f4}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0645}\N{U+0627}\N{U+0647}\N{U+0647}\N{U+0654} \N{U+0627}\N{U+0648}\N{U+0644}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0645}\N{U+0627}\N{U+0647}\N{U+0647}\N{U+0654} \N{U+062f}\N{U+0648}\N{U+0645}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0645}\N{U+0627}\N{U+0647}\N{U+0647}\N{U+0654} \N{U+0633}\N{U+0648}\N{U+0645}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0645}\N{U+0627}\N{U+0647}\N{U+0647}\N{U+0654} \N{U+0686}\N{U+0647}\N{U+0627}\N{U+0631}\N{U+0645}"
    ],
    script => undef,
    territory => "Iran",
    time_format_full => "H:mm:ss (zzzz)",
    time_format_long => "H:mm:ss (z)",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ ff ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "M",
      MEd => "MM-dd, E",
      MMM => "MMM",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMd => "d/MM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ff",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "aa\N{U+0253}",
      "maw",
      "nje",
      "naa",
      "mwd",
      "hbi",
      "dew"
    ],
    day_format_narrow => [
      "a",
      "m",
      "n",
      "n",
      "m",
      "h",
      "d"
    ],
    day_format_wide => [
      "aa\N{U+0253}nde",
      "mawbaare",
      "njeslaare",
      "naasaande",
      "mawnde",
      "hoore-biir",
      "dewo"
    ],
    day_stand_alone_abbreviated => [
      "aa\N{U+0253}",
      "maw",
      "nje",
      "naa",
      "mwd",
      "hbi",
      "dew"
    ],
    day_stand_alone_narrow => [
      "a",
      "m",
      "n",
      "n",
      "m",
      "h",
      "d"
    ],
    day_stand_alone_wide => [
      "aa\N{U+0253}nde",
      "mawbaare",
      "njeslaare",
      "naasaande",
      "mawnde",
      "hoore-biir",
      "dewo"
    ],
    era_abbreviated => [
      "H-I",
      "C-I"
    ],
    era_narrow => [
      "H-I",
      "C-I"
    ],
    era_wide => [
      "Hade Iisa",
      "Caggal Iisa"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Fulah",
    month_format_abbreviated => [
      "sii",
      "col",
      "mbo",
      "see",
      "duu",
      "kor",
      "mor",
      "juk",
      "slt",
      "yar",
      "jol",
      "bow"
    ],
    month_format_narrow => [
      "s",
      "c",
      "m",
      "s",
      "d",
      "k",
      "m",
      "j",
      "s",
      "y",
      "j",
      "b"
    ],
    month_format_wide => [
      "siilo",
      "colte",
      "mbooy",
      "see\N{U+0257}to",
      "duujal",
      "korse",
      "morso",
      "juko",
      "siilto",
      "yarkomaa",
      "jolal",
      "bowte"
    ],
    month_stand_alone_abbreviated => [
      "sii",
      "col",
      "mbo",
      "see",
      "duu",
      "kor",
      "mor",
      "juk",
      "slt",
      "yar",
      "jol",
      "bow"
    ],
    month_stand_alone_narrow => [
      "s",
      "c",
      "m",
      "s",
      "d",
      "k",
      "m",
      "j",
      "s",
      "y",
      "j",
      "b"
    ],
    month_stand_alone_wide => [
      "siilo",
      "colte",
      "mbooy",
      "see\N{U+0257}to",
      "duujal",
      "korse",
      "morso",
      "juko",
      "siilto",
      "yarkomaa",
      "jolal",
      "bowte"
    ],
    name => "Fulah",
    native_language => "Pulaar",
    native_name => "Pulaar",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Termes 1",
      "Termes 2",
      "Termes 3",
      "Termes 4"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Termes 1",
      "Termes 2",
      "Termes 3",
      "Termes 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ff-CM ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "M",
      MEd => "MM-dd, E",
      MMM => "MMM",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMd => "d/MM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ff-CM",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "aa\N{U+0253}",
      "maw",
      "nje",
      "naa",
      "mwd",
      "hbi",
      "dew"
    ],
    day_format_narrow => [
      "a",
      "m",
      "n",
      "n",
      "m",
      "h",
      "d"
    ],
    day_format_wide => [
      "aa\N{U+0253}nde",
      "mawbaare",
      "njeslaare",
      "naasaande",
      "mawnde",
      "hoore-biir",
      "dewo"
    ],
    day_stand_alone_abbreviated => [
      "aa\N{U+0253}",
      "maw",
      "nje",
      "naa",
      "mwd",
      "hbi",
      "dew"
    ],
    day_stand_alone_narrow => [
      "a",
      "m",
      "n",
      "n",
      "m",
      "h",
      "d"
    ],
    day_stand_alone_wide => [
      "aa\N{U+0253}nde",
      "mawbaare",
      "njeslaare",
      "naasaande",
      "mawnde",
      "hoore-biir",
      "dewo"
    ],
    era_abbreviated => [
      "H-I",
      "C-I"
    ],
    era_narrow => [
      "H-I",
      "C-I"
    ],
    era_wide => [
      "Hade Iisa",
      "Caggal Iisa"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Fulah",
    month_format_abbreviated => [
      "sii",
      "col",
      "mbo",
      "see",
      "duu",
      "kor",
      "mor",
      "juk",
      "slt",
      "yar",
      "jol",
      "bow"
    ],
    month_format_narrow => [
      "s",
      "c",
      "m",
      "s",
      "d",
      "k",
      "m",
      "j",
      "s",
      "y",
      "j",
      "b"
    ],
    month_format_wide => [
      "siilo",
      "colte",
      "mbooy",
      "see\N{U+0257}to",
      "duujal",
      "korse",
      "morso",
      "juko",
      "siilto",
      "yarkomaa",
      "jolal",
      "bowte"
    ],
    month_stand_alone_abbreviated => [
      "sii",
      "col",
      "mbo",
      "see",
      "duu",
      "kor",
      "mor",
      "juk",
      "slt",
      "yar",
      "jol",
      "bow"
    ],
    month_stand_alone_narrow => [
      "s",
      "c",
      "m",
      "s",
      "d",
      "k",
      "m",
      "j",
      "s",
      "y",
      "j",
      "b"
    ],
    month_stand_alone_wide => [
      "siilo",
      "colte",
      "mbooy",
      "see\N{U+0257}to",
      "duujal",
      "korse",
      "morso",
      "juko",
      "siilto",
      "yarkomaa",
      "jolal",
      "bowte"
    ],
    name => "Fulah Cameroon",
    native_language => "Pulaar",
    native_name => "Pulaar Kameruun",
    native_script => undef,
    native_territory => "Kameruun",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Termes 1",
      "Termes 2",
      "Termes 3",
      "Termes 4"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Termes 1",
      "Termes 2",
      "Termes 3",
      "Termes 4"
    ],
    script => undef,
    territory => "Cameroon",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ff-GN ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "M",
      MEd => "MM-dd, E",
      MMM => "MMM",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMd => "d/MM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ff-GN",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "aa\N{U+0253}",
      "maw",
      "nje",
      "naa",
      "mwd",
      "hbi",
      "dew"
    ],
    day_format_narrow => [
      "a",
      "m",
      "n",
      "n",
      "m",
      "h",
      "d"
    ],
    day_format_wide => [
      "aa\N{U+0253}nde",
      "mawbaare",
      "njeslaare",
      "naasaande",
      "mawnde",
      "hoore-biir",
      "dewo"
    ],
    day_stand_alone_abbreviated => [
      "aa\N{U+0253}",
      "maw",
      "nje",
      "naa",
      "mwd",
      "hbi",
      "dew"
    ],
    day_stand_alone_narrow => [
      "a",
      "m",
      "n",
      "n",
      "m",
      "h",
      "d"
    ],
    day_stand_alone_wide => [
      "aa\N{U+0253}nde",
      "mawbaare",
      "njeslaare",
      "naasaande",
      "mawnde",
      "hoore-biir",
      "dewo"
    ],
    era_abbreviated => [
      "H-I",
      "C-I"
    ],
    era_narrow => [
      "H-I",
      "C-I"
    ],
    era_wide => [
      "Hade Iisa",
      "Caggal Iisa"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Fulah",
    month_format_abbreviated => [
      "sii",
      "col",
      "mbo",
      "see",
      "duu",
      "kor",
      "mor",
      "juk",
      "slt",
      "yar",
      "jol",
      "bow"
    ],
    month_format_narrow => [
      "s",
      "c",
      "m",
      "s",
      "d",
      "k",
      "m",
      "j",
      "s",
      "y",
      "j",
      "b"
    ],
    month_format_wide => [
      "siilo",
      "colte",
      "mbooy",
      "see\N{U+0257}to",
      "duujal",
      "korse",
      "morso",
      "juko",
      "siilto",
      "yarkomaa",
      "jolal",
      "bowte"
    ],
    month_stand_alone_abbreviated => [
      "sii",
      "col",
      "mbo",
      "see",
      "duu",
      "kor",
      "mor",
      "juk",
      "slt",
      "yar",
      "jol",
      "bow"
    ],
    month_stand_alone_narrow => [
      "s",
      "c",
      "m",
      "s",
      "d",
      "k",
      "m",
      "j",
      "s",
      "y",
      "j",
      "b"
    ],
    month_stand_alone_wide => [
      "siilo",
      "colte",
      "mbooy",
      "see\N{U+0257}to",
      "duujal",
      "korse",
      "morso",
      "juko",
      "siilto",
      "yarkomaa",
      "jolal",
      "bowte"
    ],
    name => "Fulah Guinea",
    native_language => "Pulaar",
    native_name => "Pulaar Gine",
    native_script => undef,
    native_territory => "Gine",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Termes 1",
      "Termes 2",
      "Termes 3",
      "Termes 4"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Termes 1",
      "Termes 2",
      "Termes 3",
      "Termes 4"
    ],
    script => undef,
    territory => "Guinea",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ff-MR ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "M",
      MEd => "MM-dd, E",
      MMM => "MMM",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMd => "d/MM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ff-MR",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "aa\N{U+0253}",
      "maw",
      "nje",
      "naa",
      "mwd",
      "hbi",
      "dew"
    ],
    day_format_narrow => [
      "a",
      "m",
      "n",
      "n",
      "m",
      "h",
      "d"
    ],
    day_format_wide => [
      "aa\N{U+0253}nde",
      "mawbaare",
      "njeslaare",
      "naasaande",
      "mawnde",
      "hoore-biir",
      "dewo"
    ],
    day_stand_alone_abbreviated => [
      "aa\N{U+0253}",
      "maw",
      "nje",
      "naa",
      "mwd",
      "hbi",
      "dew"
    ],
    day_stand_alone_narrow => [
      "a",
      "m",
      "n",
      "n",
      "m",
      "h",
      "d"
    ],
    day_stand_alone_wide => [
      "aa\N{U+0253}nde",
      "mawbaare",
      "njeslaare",
      "naasaande",
      "mawnde",
      "hoore-biir",
      "dewo"
    ],
    era_abbreviated => [
      "H-I",
      "C-I"
    ],
    era_narrow => [
      "H-I",
      "C-I"
    ],
    era_wide => [
      "Hade Iisa",
      "Caggal Iisa"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Fulah",
    month_format_abbreviated => [
      "sii",
      "col",
      "mbo",
      "see",
      "duu",
      "kor",
      "mor",
      "juk",
      "slt",
      "yar",
      "jol",
      "bow"
    ],
    month_format_narrow => [
      "s",
      "c",
      "m",
      "s",
      "d",
      "k",
      "m",
      "j",
      "s",
      "y",
      "j",
      "b"
    ],
    month_format_wide => [
      "siilo",
      "colte",
      "mbooy",
      "see\N{U+0257}to",
      "duujal",
      "korse",
      "morso",
      "juko",
      "siilto",
      "yarkomaa",
      "jolal",
      "bowte"
    ],
    month_stand_alone_abbreviated => [
      "sii",
      "col",
      "mbo",
      "see",
      "duu",
      "kor",
      "mor",
      "juk",
      "slt",
      "yar",
      "jol",
      "bow"
    ],
    month_stand_alone_narrow => [
      "s",
      "c",
      "m",
      "s",
      "d",
      "k",
      "m",
      "j",
      "s",
      "y",
      "j",
      "b"
    ],
    month_stand_alone_wide => [
      "siilo",
      "colte",
      "mbooy",
      "see\N{U+0257}to",
      "duujal",
      "korse",
      "morso",
      "juko",
      "siilto",
      "yarkomaa",
      "jolal",
      "bowte"
    ],
    name => "Fulah Mauritania",
    native_language => "Pulaar",
    native_name => "Pulaar Muritani",
    native_script => undef,
    native_territory => "Muritani",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Termes 1",
      "Termes 2",
      "Termes 3",
      "Termes 4"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Termes 1",
      "Termes 2",
      "Termes 3",
      "Termes 4"
    ],
    script => undef,
    territory => "Mauritania",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ff-SN ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "M",
      MEd => "MM-dd, E",
      MMM => "MMM",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMd => "d/MM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ff-SN",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "aa\N{U+0253}",
      "maw",
      "nje",
      "naa",
      "mwd",
      "hbi",
      "dew"
    ],
    day_format_narrow => [
      "a",
      "m",
      "n",
      "n",
      "m",
      "h",
      "d"
    ],
    day_format_wide => [
      "aa\N{U+0253}nde",
      "mawbaare",
      "njeslaare",
      "naasaande",
      "mawnde",
      "hoore-biir",
      "dewo"
    ],
    day_stand_alone_abbreviated => [
      "aa\N{U+0253}",
      "maw",
      "nje",
      "naa",
      "mwd",
      "hbi",
      "dew"
    ],
    day_stand_alone_narrow => [
      "a",
      "m",
      "n",
      "n",
      "m",
      "h",
      "d"
    ],
    day_stand_alone_wide => [
      "aa\N{U+0253}nde",
      "mawbaare",
      "njeslaare",
      "naasaande",
      "mawnde",
      "hoore-biir",
      "dewo"
    ],
    era_abbreviated => [
      "H-I",
      "C-I"
    ],
    era_narrow => [
      "H-I",
      "C-I"
    ],
    era_wide => [
      "Hade Iisa",
      "Caggal Iisa"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%Y",
    glibc_datetime_format => "%a %d %b %Y %R %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%R",
    language => "Fulah",
    month_format_abbreviated => [
      "sii",
      "col",
      "mbo",
      "see",
      "duu",
      "kor",
      "mor",
      "juk",
      "slt",
      "yar",
      "jol",
      "bow"
    ],
    month_format_narrow => [
      "s",
      "c",
      "m",
      "s",
      "d",
      "k",
      "m",
      "j",
      "s",
      "y",
      "j",
      "b"
    ],
    month_format_wide => [
      "siilo",
      "colte",
      "mbooy",
      "see\N{U+0257}to",
      "duujal",
      "korse",
      "morso",
      "juko",
      "siilto",
      "yarkomaa",
      "jolal",
      "bowte"
    ],
    month_stand_alone_abbreviated => [
      "sii",
      "col",
      "mbo",
      "see",
      "duu",
      "kor",
      "mor",
      "juk",
      "slt",
      "yar",
      "jol",
      "bow"
    ],
    month_stand_alone_narrow => [
      "s",
      "c",
      "m",
      "s",
      "d",
      "k",
      "m",
      "j",
      "s",
      "y",
      "j",
      "b"
    ],
    month_stand_alone_wide => [
      "siilo",
      "colte",
      "mbooy",
      "see\N{U+0257}to",
      "duujal",
      "korse",
      "morso",
      "juko",
      "siilto",
      "yarkomaa",
      "jolal",
      "bowte"
    ],
    name => "Fulah Senegal",
    native_language => "Pulaar",
    native_name => "Pulaar Senegaal",
    native_script => undef,
    native_territory => "Senegaal",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Termes 1",
      "Termes 2",
      "Termes 3",
      "Termes 4"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Termes 1",
      "Termes 2",
      "Termes 3",
      "Termes 4"
    ],
    script => undef,
    territory => "Senegal",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fi ]__
  {
    am_pm_abbreviated => [
      "ap.",
      "ip."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E H.mm",
      EHms => "E H.mm.ss",
      Ed => "E d.",
      Ehm => "E h.mm a",
      Ehms => "E h.mm.ss a",
      Gy => "y G",
      GyMMM => "LLL y G",
      GyMMMEd => "E d. MMM y G",
      GyMMMd => "d. MMM y G",
      H => "H",
      Hm => "H.mm",
      Hms => "H.mm.ss",
      Hmsv => "H.mm.ss v",
      Hmv => "H.mm v",
      M => "L",
      MEd => "E d.M.",
      MMM => "LLL",
      MMMEd => "ccc d. MMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      Md => "d.M.",
      d => "d",
      h => "h a",
      hm => "h.mm a",
      hms => "h.mm.ss a",
      hmsv => "h.mm.ss a v",
      hmv => "h.mm a v",
      ms => "m.ss",
      y => "y",
      yM => "L.y",
      yMEd => "E d.M.y",
      yMM => "M.y",
      yMMM => "LLL y",
      yMMMEd => "E d. MMM y",
      yMMMM => "LLLL y",
      yMMMMccccd => "cccc d. MMMM y",
      yMMMd => "d. MMM y",
      yMd => "d.M.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fi",
    date_format_full => "cccc d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "d.M.y",
    date_format_short => "d.M.y",
    datetime_format_full => "{1} 'klo' {0}",
    datetime_format_long => "{1} 'klo' {0}",
    datetime_format_medium => "{1} 'klo' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "ma",
      "ti",
      "ke",
      "to",
      "pe",
      "la",
      "su"
    ],
    day_format_narrow => [
      "M",
      "T",
      "K",
      "T",
      "P",
      "L",
      "S"
    ],
    day_format_wide => [
      "maanantaina",
      "tiistaina",
      "keskiviikkona",
      "torstaina",
      "perjantaina",
      "lauantaina",
      "sunnuntaina"
    ],
    day_stand_alone_abbreviated => [
      "ma",
      "ti",
      "ke",
      "to",
      "pe",
      "la",
      "su"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "K",
      "T",
      "P",
      "L",
      "S"
    ],
    day_stand_alone_wide => [
      "maanantai",
      "tiistai",
      "keskiviikko",
      "torstai",
      "perjantai",
      "lauantai",
      "sunnuntai"
    ],
    era_abbreviated => [
      "eKr.",
      "jKr."
    ],
    era_narrow => [
      "eK",
      "jK"
    ],
    era_wide => [
      "ennen Kristuksen syntym\N{U+00e4}\N{U+00e4}",
      "j\N{U+00e4}lkeen Kristuksen syntym\N{U+00e4}n"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Finnish",
    month_format_abbreviated => [
      "tammikuuta",
      "helmikuuta",
      "maaliskuuta",
      "huhtikuuta",
      "toukokuuta",
      "kes\N{U+00e4}kuuta",
      "hein\N{U+00e4}kuuta",
      "elokuuta",
      "syyskuuta",
      "lokakuuta",
      "marraskuuta",
      "joulukuuta"
    ],
    month_format_narrow => [
      "T",
      "H",
      "M",
      "H",
      "T",
      "K",
      "H",
      "E",
      "S",
      "L",
      "M",
      "J"
    ],
    month_format_wide => [
      "tammikuuta",
      "helmikuuta",
      "maaliskuuta",
      "huhtikuuta",
      "toukokuuta",
      "kes\N{U+00e4}kuuta",
      "hein\N{U+00e4}kuuta",
      "elokuuta",
      "syyskuuta",
      "lokakuuta",
      "marraskuuta",
      "joulukuuta"
    ],
    month_stand_alone_abbreviated => [
      "tammi",
      "helmi",
      "maalis",
      "huhti",
      "touko",
      "kes\N{U+00e4}",
      "hein\N{U+00e4}",
      "elo",
      "syys",
      "loka",
      "marras",
      "joulu"
    ],
    month_stand_alone_narrow => [
      "T",
      "H",
      "M",
      "H",
      "T",
      "K",
      "H",
      "E",
      "S",
      "L",
      "M",
      "J"
    ],
    month_stand_alone_wide => [
      "tammikuu",
      "helmikuu",
      "maaliskuu",
      "huhtikuu",
      "toukokuu",
      "kes\N{U+00e4}kuu",
      "hein\N{U+00e4}kuu",
      "elokuu",
      "syyskuu",
      "lokakuu",
      "marraskuu",
      "joulukuu"
    ],
    name => "Finnish",
    native_language => "suomi",
    native_name => "suomi",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "1. nelj.",
      "2. nelj.",
      "3. nelj.",
      "4. nelj."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. nelj\N{U+00e4}nnes",
      "2. nelj\N{U+00e4}nnes",
      "3. nelj\N{U+00e4}nnes",
      "4. nelj\N{U+00e4}nnes"
    ],
    quarter_stand_alone_abbreviated => [
      "1. nelj.",
      "2. nelj.",
      "3. nelj.",
      "4. nelj."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. nelj\N{U+00e4}nnes",
      "2. nelj\N{U+00e4}nnes",
      "3. nelj\N{U+00e4}nnes",
      "4. nelj\N{U+00e4}nnes"
    ],
    script => undef,
    territory => undef,
    time_format_full => "H.mm.ss zzzz",
    time_format_long => "H.mm.ss z",
    time_format_medium => "H.mm.ss",
    time_format_short => "H.mm",
    variant => undef,
    version => 28
  }
  __[ fi-FI ]__
  {
    am_pm_abbreviated => [
      "ap.",
      "ip."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E H.mm",
      EHms => "E H.mm.ss",
      Ed => "E d.",
      Ehm => "E h.mm a",
      Ehms => "E h.mm.ss a",
      Gy => "y G",
      GyMMM => "LLL y G",
      GyMMMEd => "E d. MMM y G",
      GyMMMd => "d. MMM y G",
      H => "H",
      Hm => "H.mm",
      Hms => "H.mm.ss",
      Hmsv => "H.mm.ss v",
      Hmv => "H.mm v",
      M => "L",
      MEd => "E d.M.",
      MMM => "LLL",
      MMMEd => "ccc d. MMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      Md => "d.M.",
      d => "d",
      h => "h a",
      hm => "h.mm a",
      hms => "h.mm.ss a",
      hmsv => "h.mm.ss a v",
      hmv => "h.mm a v",
      ms => "m.ss",
      y => "y",
      yM => "L.y",
      yMEd => "E d.M.y",
      yMM => "M.y",
      yMMM => "LLL y",
      yMMMEd => "E d. MMM y",
      yMMMM => "LLLL y",
      yMMMMccccd => "cccc d. MMMM y",
      yMMMd => "d. MMM y",
      yMd => "d.M.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fi-FI",
    date_format_full => "cccc d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "d.M.y",
    date_format_short => "d.M.y",
    datetime_format_full => "{1} 'klo' {0}",
    datetime_format_long => "{1} 'klo' {0}",
    datetime_format_medium => "{1} 'klo' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "ma",
      "ti",
      "ke",
      "to",
      "pe",
      "la",
      "su"
    ],
    day_format_narrow => [
      "M",
      "T",
      "K",
      "T",
      "P",
      "L",
      "S"
    ],
    day_format_wide => [
      "maanantaina",
      "tiistaina",
      "keskiviikkona",
      "torstaina",
      "perjantaina",
      "lauantaina",
      "sunnuntaina"
    ],
    day_stand_alone_abbreviated => [
      "ma",
      "ti",
      "ke",
      "to",
      "pe",
      "la",
      "su"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "K",
      "T",
      "P",
      "L",
      "S"
    ],
    day_stand_alone_wide => [
      "maanantai",
      "tiistai",
      "keskiviikko",
      "torstai",
      "perjantai",
      "lauantai",
      "sunnuntai"
    ],
    era_abbreviated => [
      "eKr.",
      "jKr."
    ],
    era_narrow => [
      "eK",
      "jK"
    ],
    era_wide => [
      "ennen Kristuksen syntym\N{U+00e4}\N{U+00e4}",
      "j\N{U+00e4}lkeen Kristuksen syntym\N{U+00e4}n"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %-d.%-m.%Y %H.%M.%S %z",
    glibc_date_format => "%d.%m.%Y",
    glibc_datetime_format => "%a %e. %Bta %Y %H.%M.%S",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H.%M.%S",
    language => "Finnish",
    month_format_abbreviated => [
      "tammikuuta",
      "helmikuuta",
      "maaliskuuta",
      "huhtikuuta",
      "toukokuuta",
      "kes\N{U+00e4}kuuta",
      "hein\N{U+00e4}kuuta",
      "elokuuta",
      "syyskuuta",
      "lokakuuta",
      "marraskuuta",
      "joulukuuta"
    ],
    month_format_narrow => [
      "T",
      "H",
      "M",
      "H",
      "T",
      "K",
      "H",
      "E",
      "S",
      "L",
      "M",
      "J"
    ],
    month_format_wide => [
      "tammikuuta",
      "helmikuuta",
      "maaliskuuta",
      "huhtikuuta",
      "toukokuuta",
      "kes\N{U+00e4}kuuta",
      "hein\N{U+00e4}kuuta",
      "elokuuta",
      "syyskuuta",
      "lokakuuta",
      "marraskuuta",
      "joulukuuta"
    ],
    month_stand_alone_abbreviated => [
      "tammi",
      "helmi",
      "maalis",
      "huhti",
      "touko",
      "kes\N{U+00e4}",
      "hein\N{U+00e4}",
      "elo",
      "syys",
      "loka",
      "marras",
      "joulu"
    ],
    month_stand_alone_narrow => [
      "T",
      "H",
      "M",
      "H",
      "T",
      "K",
      "H",
      "E",
      "S",
      "L",
      "M",
      "J"
    ],
    month_stand_alone_wide => [
      "tammikuu",
      "helmikuu",
      "maaliskuu",
      "huhtikuu",
      "toukokuu",
      "kes\N{U+00e4}kuu",
      "hein\N{U+00e4}kuu",
      "elokuu",
      "syyskuu",
      "lokakuu",
      "marraskuu",
      "joulukuu"
    ],
    name => "Finnish Finland",
    native_language => "suomi",
    native_name => "suomi Suomi",
    native_script => undef,
    native_territory => "Suomi",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1. nelj.",
      "2. nelj.",
      "3. nelj.",
      "4. nelj."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. nelj\N{U+00e4}nnes",
      "2. nelj\N{U+00e4}nnes",
      "3. nelj\N{U+00e4}nnes",
      "4. nelj\N{U+00e4}nnes"
    ],
    quarter_stand_alone_abbreviated => [
      "1. nelj.",
      "2. nelj.",
      "3. nelj.",
      "4. nelj."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. nelj\N{U+00e4}nnes",
      "2. nelj\N{U+00e4}nnes",
      "3. nelj\N{U+00e4}nnes",
      "4. nelj\N{U+00e4}nnes"
    ],
    script => undef,
    territory => "Finland",
    time_format_full => "H.mm.ss zzzz",
    time_format_long => "H.mm.ss z",
    time_format_medium => "H.mm.ss",
    time_format_short => "H.mm",
    variant => undef,
    version => 28
  }
  __[ fil ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "MMM y G",
      GyMMMEd => "E, MMM d, y G",
      GyMMMd => "MMM d, y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMM => "MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "MMM d, y",
      yMd => "M/d/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fil",
    date_format_full => "EEEE, MMMM d, y",
    date_format_long => "MMMM d, y",
    date_format_medium => "MMM d, y",
    date_format_short => "M/d/yy",
    datetime_format_full => "{1} 'nang' {0}",
    datetime_format_long => "{1} 'nang' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Lun",
      "Mar",
      "Miy",
      "Huw",
      "Biy",
      "Sab",
      "Lin"
    ],
    day_format_narrow => [
      "Lun",
      "Mar",
      "Miy",
      "Huw",
      "Biy",
      "Sab",
      "Lin"
    ],
    day_format_wide => [
      "Lunes",
      "Martes",
      "Miyerkules",
      "Huwebes",
      "Biyernes",
      "Sabado",
      "Linggo"
    ],
    day_stand_alone_abbreviated => [
      "Lun",
      "Mar",
      "Miy",
      "Huw",
      "Biy",
      "Sab",
      "Lin"
    ],
    day_stand_alone_narrow => [
      "Lun",
      "Mar",
      "Miy",
      "Huw",
      "Biy",
      "Sab",
      "Lin"
    ],
    day_stand_alone_wide => [
      "Lunes",
      "Martes",
      "Miyerkules",
      "Huwebes",
      "Biyernes",
      "Sabado",
      "Linggo"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "BC",
      "AD"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Filipino",
    month_format_abbreviated => [
      "Ene",
      "Peb",
      "Mar",
      "Abr",
      "May",
      "Hun",
      "Hul",
      "Ago",
      "Set",
      "Okt",
      "Nob",
      "Dis"
    ],
    month_format_narrow => [
      "Ene",
      "Peb",
      "Mar",
      "Abr",
      "May",
      "Hun",
      "Hul",
      "Ago",
      "Set",
      "Okt",
      "Nob",
      "Dis"
    ],
    month_format_wide => [
      "Enero",
      "Pebrero",
      "Marso",
      "Abril",
      "Mayo",
      "Hunyo",
      "Hulyo",
      "Agosto",
      "Setyembre",
      "Oktubre",
      "Nobyembre",
      "Disyembre"
    ],
    month_stand_alone_abbreviated => [
      "Ene",
      "Peb",
      "Mar",
      "Abr",
      "May",
      "Hun",
      "Hul",
      "Ago",
      "Set",
      "Okt",
      "Nob",
      "Dis"
    ],
    month_stand_alone_narrow => [
      "E",
      "P",
      "M",
      "A",
      "M",
      "Hun",
      "Hul",
      "Ago",
      "Set",
      "Okt",
      "Nob",
      "Dis"
    ],
    month_stand_alone_wide => [
      "Enero",
      "Pebrero",
      "Marso",
      "Abril",
      "Mayo",
      "Hunyo",
      "Hulyo",
      "Agosto",
      "Setyembre",
      "Oktubre",
      "Nobyembre",
      "Disyembre"
    ],
    name => "Filipino",
    native_language => "Filipino",
    native_name => "Filipino",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "ika-1 quarter",
      "ika-2 quarter",
      "ika-3 quarter",
      "ika-4 na quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "ika-1 quarter",
      "ika-2 quarter",
      "ika-3 quarter",
      "ika-4 na quarter"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ fil-PH ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "MMM y G",
      GyMMMEd => "E, MMM d, y G",
      GyMMMd => "MMM d, y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMM => "MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "MMM d, y",
      yMd => "M/d/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fil-PH",
    date_format_full => "EEEE, MMMM d, y",
    date_format_long => "MMMM d, y",
    date_format_medium => "MMM d, y",
    date_format_short => "M/d/yy",
    datetime_format_full => "{1} 'nang' {0}",
    datetime_format_long => "{1} 'nang' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Lun",
      "Mar",
      "Miy",
      "Huw",
      "Biy",
      "Sab",
      "Lin"
    ],
    day_format_narrow => [
      "Lun",
      "Mar",
      "Miy",
      "Huw",
      "Biy",
      "Sab",
      "Lin"
    ],
    day_format_wide => [
      "Lunes",
      "Martes",
      "Miyerkules",
      "Huwebes",
      "Biyernes",
      "Sabado",
      "Linggo"
    ],
    day_stand_alone_abbreviated => [
      "Lun",
      "Mar",
      "Miy",
      "Huw",
      "Biy",
      "Sab",
      "Lin"
    ],
    day_stand_alone_narrow => [
      "Lun",
      "Mar",
      "Miy",
      "Huw",
      "Biy",
      "Sab",
      "Lin"
    ],
    day_stand_alone_wide => [
      "Lunes",
      "Martes",
      "Miyerkules",
      "Huwebes",
      "Biyernes",
      "Sabado",
      "Linggo"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "BC",
      "AD"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %d %b %Y %r %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%r",
    language => "Filipino",
    month_format_abbreviated => [
      "Ene",
      "Peb",
      "Mar",
      "Abr",
      "May",
      "Hun",
      "Hul",
      "Ago",
      "Set",
      "Okt",
      "Nob",
      "Dis"
    ],
    month_format_narrow => [
      "Ene",
      "Peb",
      "Mar",
      "Abr",
      "May",
      "Hun",
      "Hul",
      "Ago",
      "Set",
      "Okt",
      "Nob",
      "Dis"
    ],
    month_format_wide => [
      "Enero",
      "Pebrero",
      "Marso",
      "Abril",
      "Mayo",
      "Hunyo",
      "Hulyo",
      "Agosto",
      "Setyembre",
      "Oktubre",
      "Nobyembre",
      "Disyembre"
    ],
    month_stand_alone_abbreviated => [
      "Ene",
      "Peb",
      "Mar",
      "Abr",
      "May",
      "Hun",
      "Hul",
      "Ago",
      "Set",
      "Okt",
      "Nob",
      "Dis"
    ],
    month_stand_alone_narrow => [
      "E",
      "P",
      "M",
      "A",
      "M",
      "Hun",
      "Hul",
      "Ago",
      "Set",
      "Okt",
      "Nob",
      "Dis"
    ],
    month_stand_alone_wide => [
      "Enero",
      "Pebrero",
      "Marso",
      "Abril",
      "Mayo",
      "Hunyo",
      "Hulyo",
      "Agosto",
      "Setyembre",
      "Oktubre",
      "Nobyembre",
      "Disyembre"
    ],
    name => "Filipino Philippines",
    native_language => "Filipino",
    native_name => "Filipino Pilipinas",
    native_script => undef,
    native_territory => "Pilipinas",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "ika-1 quarter",
      "ika-2 quarter",
      "ika-3 quarter",
      "ika-4 na quarter"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "ika-1 quarter",
      "ika-2 quarter",
      "ika-3 quarter",
      "ika-4 na quarter"
    ],
    script => undef,
    territory => "Philippines",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ fo ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d.",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d. MMM y G",
      GyMMMd => "d. MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "LL",
      MEd => "E dd.MM",
      MMM => "LLL",
      MMMEd => "E d. MMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      Md => "dd.MM",
      d => "d.",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM.y",
      yMEd => "E dd.MM.y",
      yMMM => "MMM y",
      yMMMEd => "E d. MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d. MMM y",
      yMd => "dd.MM.y",
      yQQQ => "QQQ '\N{U+00ed}' y",
      yQQQQ => "QQQQ '\N{U+00ed}' y"
    },
    code => "fo",
    date_format_full => "EEEE, d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "dd.MM.y",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} 'kl'. {0}",
    datetime_format_long => "{1} 'kl'. {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "m\N{U+00e1}n.",
      "t\N{U+00fd}s.",
      "mik.",
      "h\N{U+00f3}s.",
      "fr\N{U+00ed}.",
      "ley.",
      "sun."
    ],
    day_format_narrow => [
      "M",
      "T",
      "M",
      "H",
      "F",
      "L",
      "S"
    ],
    day_format_wide => [
      "m\N{U+00e1}nadagur",
      "t\N{U+00fd}sdagur",
      "mikudagur",
      "h\N{U+00f3}sdagur",
      "fr\N{U+00ed}ggjadagur",
      "leygardagur",
      "sunnudagur"
    ],
    day_stand_alone_abbreviated => [
      "m\N{U+00e1}n",
      "t\N{U+00fd}s",
      "mik",
      "h\N{U+00f3}s",
      "fr\N{U+00ed}",
      "ley",
      "sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "M",
      "H",
      "F",
      "L",
      "S"
    ],
    day_stand_alone_wide => [
      "m\N{U+00e1}nadagur",
      "t\N{U+00fd}sdagur",
      "mikudagur",
      "h\N{U+00f3}sdagur",
      "fr\N{U+00ed}ggjadagur",
      "leygardagur",
      "sunnudagur"
    ],
    era_abbreviated => [
      "f.Kr.",
      "e.Kr."
    ],
    era_narrow => [
      "fKr",
      "eKr"
    ],
    era_wide => [
      "fyri Krist",
      "eftir Krist"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Faroese",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "mar.",
      "apr.",
      "mai",
      "jun.",
      "jul.",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "des."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "januar",
      "februar",
      "mars",
      "apr\N{U+00ed}l",
      "mai",
      "juni",
      "juli",
      "august",
      "september",
      "oktober",
      "november",
      "desember"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "mai",
      "jun",
      "jul",
      "aug",
      "sep",
      "okt",
      "nov",
      "des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "januar",
      "februar",
      "mars",
      "apr\N{U+00ed}l",
      "mai",
      "juni",
      "juli",
      "august",
      "september",
      "oktober",
      "november",
      "desember"
    ],
    name => "Faroese",
    native_language => "f\N{U+00f8}royskt",
    native_name => "f\N{U+00f8}royskt",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "1. \N{U+00e1}rsfj.",
      "2. \N{U+00e1}rsfj.",
      "3. \N{U+00e1}rsfj.",
      "4. \N{U+00e1}rsfj."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. \N{U+00e1}rsfj\N{U+00f3}r\N{U+00f0}ingur",
      "2. \N{U+00e1}rsfj\N{U+00f3}r\N{U+00f0}ingur",
      "3. \N{U+00e1}rsfj\N{U+00f3}r\N{U+00f0}ingur",
      "4. \N{U+00e1}rsfj\N{U+00f3}r\N{U+00f0}ingur"
    ],
    quarter_stand_alone_abbreviated => [
      "1. \N{U+00e1}rsfj.",
      "2. \N{U+00e1}rsfj.",
      "3. \N{U+00e1}rsfj.",
      "4. \N{U+00e1}rsfj."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. \N{U+00e1}rsfj\N{U+00f3}r\N{U+00f0}ingur",
      "2. \N{U+00e1}rsfj\N{U+00f3}r\N{U+00f0}ingur",
      "3. \N{U+00e1}rsfj\N{U+00f3}r\N{U+00f0}ingur",
      "4. \N{U+00e1}rsfj\N{U+00f3}r\N{U+00f0}ingur"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fo-DK ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d.",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d. MMM y G",
      GyMMMd => "d. MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "LL",
      MEd => "E dd.MM",
      MMM => "LLL",
      MMMEd => "E d. MMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      Md => "dd.MM",
      d => "d.",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM.y",
      yMEd => "E dd.MM.y",
      yMMM => "MMM y",
      yMMMEd => "E d. MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d. MMM y",
      yMd => "dd.MM.y",
      yQQQ => "QQQ '\N{U+00ed}' y",
      yQQQQ => "QQQQ '\N{U+00ed}' y"
    },
    code => "fo-DK",
    date_format_full => "EEEE, d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "dd.MM.y",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} 'kl'. {0}",
    datetime_format_long => "{1} 'kl'. {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "m\N{U+00e1}n.",
      "t\N{U+00fd}s.",
      "mik.",
      "h\N{U+00f3}s.",
      "fr\N{U+00ed}.",
      "ley.",
      "sun."
    ],
    day_format_narrow => [
      "M",
      "T",
      "M",
      "H",
      "F",
      "L",
      "S"
    ],
    day_format_wide => [
      "m\N{U+00e1}nadagur",
      "t\N{U+00fd}sdagur",
      "mikudagur",
      "h\N{U+00f3}sdagur",
      "fr\N{U+00ed}ggjadagur",
      "leygardagur",
      "sunnudagur"
    ],
    day_stand_alone_abbreviated => [
      "m\N{U+00e1}n",
      "t\N{U+00fd}s",
      "mik",
      "h\N{U+00f3}s",
      "fr\N{U+00ed}",
      "ley",
      "sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "M",
      "H",
      "F",
      "L",
      "S"
    ],
    day_stand_alone_wide => [
      "m\N{U+00e1}nadagur",
      "t\N{U+00fd}sdagur",
      "mikudagur",
      "h\N{U+00f3}sdagur",
      "fr\N{U+00ed}ggjadagur",
      "leygardagur",
      "sunnudagur"
    ],
    era_abbreviated => [
      "f.Kr.",
      "e.Kr."
    ],
    era_narrow => [
      "fKr",
      "eKr"
    ],
    era_wide => [
      "fyri Krist",
      "eftir Krist"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Faroese",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "mar.",
      "apr.",
      "mai",
      "jun.",
      "jul.",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "des."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "januar",
      "februar",
      "mars",
      "apr\N{U+00ed}l",
      "mai",
      "juni",
      "juli",
      "august",
      "september",
      "oktober",
      "november",
      "desember"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "mai",
      "jun",
      "jul",
      "aug",
      "sep",
      "okt",
      "nov",
      "des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "januar",
      "februar",
      "mars",
      "apr\N{U+00ed}l",
      "mai",
      "juni",
      "juli",
      "august",
      "september",
      "oktober",
      "november",
      "desember"
    ],
    name => "Faroese Denmark",
    native_language => "f\N{U+00f8}royskt",
    native_name => "f\N{U+00f8}royskt Danmark",
    native_script => undef,
    native_territory => "Danmark",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1. \N{U+00e1}rsfj.",
      "2. \N{U+00e1}rsfj.",
      "3. \N{U+00e1}rsfj.",
      "4. \N{U+00e1}rsfj."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. \N{U+00e1}rsfj\N{U+00f3}r\N{U+00f0}ingur",
      "2. \N{U+00e1}rsfj\N{U+00f3}r\N{U+00f0}ingur",
      "3. \N{U+00e1}rsfj\N{U+00f3}r\N{U+00f0}ingur",
      "4. \N{U+00e1}rsfj\N{U+00f3}r\N{U+00f0}ingur"
    ],
    quarter_stand_alone_abbreviated => [
      "1. \N{U+00e1}rsfj.",
      "2. \N{U+00e1}rsfj.",
      "3. \N{U+00e1}rsfj.",
      "4. \N{U+00e1}rsfj."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. \N{U+00e1}rsfj\N{U+00f3}r\N{U+00f0}ingur",
      "2. \N{U+00e1}rsfj\N{U+00f3}r\N{U+00f0}ingur",
      "3. \N{U+00e1}rsfj\N{U+00f3}r\N{U+00f0}ingur",
      "4. \N{U+00e1}rsfj\N{U+00f3}r\N{U+00f0}ingur"
    ],
    script => undef,
    territory => "Denmark",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fo-FO ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d.",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d. MMM y G",
      GyMMMd => "d. MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "LL",
      MEd => "E dd.MM",
      MMM => "LLL",
      MMMEd => "E d. MMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      Md => "dd.MM",
      d => "d.",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM.y",
      yMEd => "E dd.MM.y",
      yMMM => "MMM y",
      yMMMEd => "E d. MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d. MMM y",
      yMd => "dd.MM.y",
      yQQQ => "QQQ '\N{U+00ed}' y",
      yQQQQ => "QQQQ '\N{U+00ed}' y"
    },
    code => "fo-FO",
    date_format_full => "EEEE, d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "dd.MM.y",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} 'kl'. {0}",
    datetime_format_long => "{1} 'kl'. {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "m\N{U+00e1}n.",
      "t\N{U+00fd}s.",
      "mik.",
      "h\N{U+00f3}s.",
      "fr\N{U+00ed}.",
      "ley.",
      "sun."
    ],
    day_format_narrow => [
      "M",
      "T",
      "M",
      "H",
      "F",
      "L",
      "S"
    ],
    day_format_wide => [
      "m\N{U+00e1}nadagur",
      "t\N{U+00fd}sdagur",
      "mikudagur",
      "h\N{U+00f3}sdagur",
      "fr\N{U+00ed}ggjadagur",
      "leygardagur",
      "sunnudagur"
    ],
    day_stand_alone_abbreviated => [
      "m\N{U+00e1}n",
      "t\N{U+00fd}s",
      "mik",
      "h\N{U+00f3}s",
      "fr\N{U+00ed}",
      "ley",
      "sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "M",
      "H",
      "F",
      "L",
      "S"
    ],
    day_stand_alone_wide => [
      "m\N{U+00e1}nadagur",
      "t\N{U+00fd}sdagur",
      "mikudagur",
      "h\N{U+00f3}sdagur",
      "fr\N{U+00ed}ggjadagur",
      "leygardagur",
      "sunnudagur"
    ],
    era_abbreviated => [
      "f.Kr.",
      "e.Kr."
    ],
    era_narrow => [
      "fKr",
      "eKr"
    ],
    era_wide => [
      "fyri Krist",
      "eftir Krist"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m-%Y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Faroese",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "mar.",
      "apr.",
      "mai",
      "jun.",
      "jul.",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "des."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "januar",
      "februar",
      "mars",
      "apr\N{U+00ed}l",
      "mai",
      "juni",
      "juli",
      "august",
      "september",
      "oktober",
      "november",
      "desember"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "mai",
      "jun",
      "jul",
      "aug",
      "sep",
      "okt",
      "nov",
      "des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "januar",
      "februar",
      "mars",
      "apr\N{U+00ed}l",
      "mai",
      "juni",
      "juli",
      "august",
      "september",
      "oktober",
      "november",
      "desember"
    ],
    name => "Faroese Faroe Islands",
    native_language => "f\N{U+00f8}royskt",
    native_name => "f\N{U+00f8}royskt F\N{U+00f8}royar",
    native_script => undef,
    native_territory => "F\N{U+00f8}royar",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1. \N{U+00e1}rsfj.",
      "2. \N{U+00e1}rsfj.",
      "3. \N{U+00e1}rsfj.",
      "4. \N{U+00e1}rsfj."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. \N{U+00e1}rsfj\N{U+00f3}r\N{U+00f0}ingur",
      "2. \N{U+00e1}rsfj\N{U+00f3}r\N{U+00f0}ingur",
      "3. \N{U+00e1}rsfj\N{U+00f3}r\N{U+00f0}ingur",
      "4. \N{U+00e1}rsfj\N{U+00f3}r\N{U+00f0}ingur"
    ],
    quarter_stand_alone_abbreviated => [
      "1. \N{U+00e1}rsfj.",
      "2. \N{U+00e1}rsfj.",
      "3. \N{U+00e1}rsfj.",
      "4. \N{U+00e1}rsfj."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. \N{U+00e1}rsfj\N{U+00f3}r\N{U+00f0}ingur",
      "2. \N{U+00e1}rsfj\N{U+00f3}r\N{U+00f0}ingur",
      "3. \N{U+00e1}rsfj\N{U+00f3}r\N{U+00f0}ingur",
      "4. \N{U+00e1}rsfj\N{U+00f3}r\N{U+00f0}ingur"
    ],
    script => undef,
    territory => "Faroe Islands",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-BE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-BE",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/MM/yy",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Belgium",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Belgique",
    native_script => undef,
    native_territory => "Belgique",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Belgium",
    time_format_full => "H 'h' mm 'min' ss 's' zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-BF ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-BF",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Burkina Faso",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Burkina Faso",
    native_script => undef,
    native_territory => "Burkina Faso",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Burkina Faso",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-BI ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-BI",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Burundi",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Burundi",
    native_script => undef,
    native_territory => "Burundi",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Burundi",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-BJ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-BJ",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Benin",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais B\N{U+00e9}nin",
    native_script => undef,
    native_territory => "B\N{U+00e9}nin",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Benin",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-BL ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-BL",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French St. Barth\N{U+00e9}lemy",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Saint-Barth\N{U+00e9}lemy",
    native_script => undef,
    native_territory => "Saint-Barth\N{U+00e9}lemy",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "St. Barth\N{U+00e9}lemy",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-CA ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E M-d",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMd => "MM-d",
      MMdd => "MM-dd",
      Md => "M-d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "E y-MM-dd",
      yMM => "y-MM",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-CA",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "yy-MM-dd",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%Y-%m-%d",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Canada",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Canada",
    native_script => undef,
    native_territory => "Canada",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Canada",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-CD ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-CD",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Congo - Kinshasa",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Congo-Kinshasa",
    native_script => undef,
    native_territory => "Congo-Kinshasa",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Congo - Kinshasa",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-CF ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-CF",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Central African Republic",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais R\N{U+00e9}publique centrafricaine",
    native_script => undef,
    native_territory => "R\N{U+00e9}publique centrafricaine",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Central African Republic",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-CG ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-CG",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Congo - Brazzaville",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Congo-Brazzaville",
    native_script => undef,
    native_territory => "Congo-Brazzaville",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Congo - Brazzaville",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-CH ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-CH",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d. %m. %y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Switzerland",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Suisse",
    native_script => undef,
    native_territory => "Suisse",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Switzerland",
    time_format_full => "HH.mm:ss 'h' zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-CI ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-CI",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French C\N{U+00f4}te d\N{U+2019}Ivoire",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais C\N{U+00f4}te d\N{U+2019}Ivoire",
    native_script => undef,
    native_territory => "C\N{U+00f4}te d\N{U+2019}Ivoire",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "C\N{U+00f4}te d\N{U+2019}Ivoire",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-CM ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-CM",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Cameroon",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Cameroun",
    native_script => undef,
    native_territory => "Cameroun",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Cameroon",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-DJ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-DJ",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Djibouti",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Djibouti",
    native_script => undef,
    native_territory => "Djibouti",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Djibouti",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ fr-DZ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-DZ",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Algeria",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Alg\N{U+00e9}rie",
    native_script => undef,
    native_territory => "Alg\N{U+00e9}rie",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Algeria",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ fr-GA ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-GA",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Gabon",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Gabon",
    native_script => undef,
    native_territory => "Gabon",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Gabon",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-GF ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-GF",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French French Guiana",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Guyane fran\N{U+00e7}aise",
    native_script => undef,
    native_territory => "Guyane fran\N{U+00e7}aise",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "French Guiana",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-GN ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-GN",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Guinea",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Guin\N{U+00e9}e",
    native_script => undef,
    native_territory => "Guin\N{U+00e9}e",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Guinea",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-GP ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-GP",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Guadeloupe",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Guadeloupe",
    native_script => undef,
    native_territory => "Guadeloupe",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Guadeloupe",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-GQ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-GQ",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Equatorial Guinea",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Guin\N{U+00e9}e \N{U+00e9}quatoriale",
    native_script => undef,
    native_territory => "Guin\N{U+00e9}e \N{U+00e9}quatoriale",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Equatorial Guinea",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-HT ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-HT",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Haiti",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Ha\N{U+00ef}ti",
    native_script => undef,
    native_territory => "Ha\N{U+00ef}ti",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Haiti",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-KM ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-KM",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Comoros",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Comores",
    native_script => undef,
    native_territory => "Comores",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Comoros",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-LU ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-LU",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d.%m.%Y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Luxembourg",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Luxembourg",
    native_script => undef,
    native_territory => "Luxembourg",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Luxembourg",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-MA ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-MA",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "jan.",
      "f\N{U+00e9}v.",
      "mar.",
      "avr.",
      "mai",
      "jui.",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "jan.",
      "f\N{U+00e9}v.",
      "mar.",
      "avr.",
      "mai",
      "jui.",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Morocco",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Maroc",
    native_script => undef,
    native_territory => "Maroc",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Morocco",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-MC ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-MC",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Monaco",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Monaco",
    native_script => undef,
    native_territory => "Monaco",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Monaco",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-MF ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-MF",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French St. Martin",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Saint-Martin",
    native_script => undef,
    native_territory => "Saint-Martin",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "St. Martin",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-MG ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-MG",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Madagascar",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Madagascar",
    native_script => undef,
    native_territory => "Madagascar",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Madagascar",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-ML ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-ML",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Mali",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Mali",
    native_script => undef,
    native_territory => "Mali",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Mali",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-MQ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-MQ",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Martinique",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Martinique",
    native_script => undef,
    native_territory => "Martinique",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Martinique",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-MR ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-MR",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Mauritania",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Mauritanie",
    native_script => undef,
    native_territory => "Mauritanie",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Mauritania",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ fr-MU ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-MU",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Mauritius",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Maurice",
    native_script => undef,
    native_territory => "Maurice",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Mauritius",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-NC ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-NC",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French New Caledonia",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Nouvelle-Cal\N{U+00e9}donie",
    native_script => undef,
    native_territory => "Nouvelle-Cal\N{U+00e9}donie",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "New Caledonia",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-NE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-NE",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Niger",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Niger",
    native_script => undef,
    native_territory => "Niger",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Niger",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-PF ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-PF",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French French Polynesia",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Polyn\N{U+00e9}sie fran\N{U+00e7}aise",
    native_script => undef,
    native_territory => "Polyn\N{U+00e9}sie fran\N{U+00e7}aise",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "French Polynesia",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-PM ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-PM",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French St. Pierre & Miquelon",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Saint-Pierre-et-Miquelon",
    native_script => undef,
    native_territory => "Saint-Pierre-et-Miquelon",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "St. Pierre & Miquelon",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-RE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-RE",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French R\N{U+00e9}union",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais La R\N{U+00e9}union",
    native_script => undef,
    native_territory => "La R\N{U+00e9}union",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "R\N{U+00e9}union",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-RW ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-RW",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Rwanda",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Rwanda",
    native_script => undef,
    native_territory => "Rwanda",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Rwanda",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-SC ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-SC",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Seychelles",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Seychelles",
    native_script => undef,
    native_territory => "Seychelles",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Seychelles",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-SN ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-SN",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Senegal",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais S\N{U+00e9}n\N{U+00e9}gal",
    native_script => undef,
    native_territory => "S\N{U+00e9}n\N{U+00e9}gal",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Senegal",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-SY ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-SY",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Syria",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Syrie",
    native_script => undef,
    native_territory => "Syrie",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Syria",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ fr-TD ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-TD",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Chad",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Tchad",
    native_script => undef,
    native_territory => "Tchad",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Chad",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ fr-TG ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-TG",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Togo",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Togo",
    native_script => undef,
    native_territory => "Togo",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Togo",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-TN ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-TN",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Tunisia",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Tunisie",
    native_script => undef,
    native_territory => "Tunisie",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Tunisia",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ fr-VU ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-VU",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Vanuatu",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Vanuatu",
    native_script => undef,
    native_territory => "Vanuatu",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Vanuatu",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ fr-WF ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-WF",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Wallis & Futuna",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Wallis-et-Futuna",
    native_script => undef,
    native_territory => "Wallis-et-Futuna",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Wallis & Futuna",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fr-YT ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "E",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH 'h'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fr-YT",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} '\N{U+00e0}' {0}",
    datetime_format_long => "{1} '\N{U+00e0}' {0}",
    datetime_format_medium => "{1} '\N{U+00e0}' {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mer.",
      "jeu.",
      "ven.",
      "sam.",
      "dim."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "mercredi",
      "jeudi",
      "vendredi",
      "samedi",
      "dimanche"
    ],
    era_abbreviated => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_narrow => [
      "av. J.-C.",
      "ap. J.-C."
    ],
    era_wide => [
      "avant J\N{U+00e9}sus-Christ",
      "apr\N{U+00e8}s J\N{U+00e9}sus-Christ"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "French",
    month_format_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    month_stand_alone_abbreviated => [
      "janv.",
      "f\N{U+00e9}vr.",
      "mars",
      "avr.",
      "mai",
      "juin",
      "juil.",
      "ao\N{U+00fb}t",
      "sept.",
      "oct.",
      "nov.",
      "d\N{U+00e9}c."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janvier",
      "f\N{U+00e9}vrier",
      "mars",
      "avril",
      "mai",
      "juin",
      "juillet",
      "ao\N{U+00fb}t",
      "septembre",
      "octobre",
      "novembre",
      "d\N{U+00e9}cembre"
    ],
    name => "French Mayotte",
    native_language => "fran\N{U+00e7}ais",
    native_name => "fran\N{U+00e7}ais Mayotte",
    native_script => undef,
    native_territory => "Mayotte",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1er trimestre",
      "2e trimestre",
      "3e trimestre",
      "4e trimestre"
    ],
    script => undef,
    territory => "Mayotte",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fur ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "H:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d 'di' MMMM",
      MMMd => "d MMM",
      MMd => "d/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "LLLL 'dal' y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fur",
    date_format_full => "EEEE d 'di' MMMM 'dal' y",
    date_format_long => "d 'di' MMMM 'dal' y",
    date_format_medium => "dd/MM/y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun",
      "mar",
      "mie",
      "joi",
      "vin",
      "sab",
      "dom"
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lunis",
      "martars",
      "miercus",
      "joibe",
      "vinars",
      "sabide",
      "domenie"
    ],
    day_stand_alone_abbreviated => [
      "lun",
      "mar",
      "mie",
      "joi",
      "vin",
      "sab",
      "dom"
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lunis",
      "martars",
      "miercus",
      "joibe",
      "vinars",
      "sabide",
      "domenie"
    ],
    era_abbreviated => [
      "pdC",
      "ddC"
    ],
    era_narrow => [
      "pdC",
      "ddC"
    ],
    era_wide => [
      "pdC",
      "ddC"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Friulian",
    month_format_abbreviated => [
      "Zen",
      "Fev",
      "Mar",
      "Avr",
      "Mai",
      "Jug",
      "Lui",
      "Avo",
      "Set",
      "Otu",
      "Nov",
      "Dic"
    ],
    month_format_narrow => [
      "Z",
      "F",
      "M",
      "A",
      "M",
      "J",
      "L",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Zen\N{U+00e2}r",
      "Fevr\N{U+00e2}r",
      "Mar\N{U+00e7}",
      "Avr\N{U+00ee}l",
      "Mai",
      "Jugn",
      "Lui",
      "Avost",
      "Setembar",
      "Otubar",
      "Novembar",
      "Dicembar"
    ],
    month_stand_alone_abbreviated => [
      "Zen",
      "Fev",
      "Mar",
      "Avr",
      "Mai",
      "Jug",
      "Lui",
      "Avo",
      "Set",
      "Otu",
      "Nov",
      "Dic"
    ],
    month_stand_alone_narrow => [
      "Z",
      "F",
      "M",
      "A",
      "M",
      "J",
      "L",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Zen\N{U+00e2}r",
      "Fevr\N{U+00e2}r",
      "Mar\N{U+00e7}",
      "Avr\N{U+00ee}l",
      "Mai",
      "Jugn",
      "Lui",
      "Avost",
      "Setembar",
      "Otubar",
      "Novembar",
      "Dicembar"
    ],
    name => "Friulian",
    native_language => "furlan",
    native_name => "furlan",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Prin trimestri",
      "Secont trimestri",
      "Tier\N{U+00e7} trimestri",
      "Cuart trimestri"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Prin trimestri",
      "Secont trimestri",
      "Tier\N{U+00e7} trimestri",
      "Cuart trimestri"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fur-IT ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "H:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d 'di' MMMM",
      MMMd => "d MMM",
      MMd => "d/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "LLLL 'dal' y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fur-IT",
    date_format_full => "EEEE d 'di' MMMM 'dal' y",
    date_format_long => "d 'di' MMMM 'dal' y",
    date_format_medium => "dd/MM/y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lun",
      "mar",
      "mie",
      "joi",
      "vin",
      "sab",
      "dom"
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "lunis",
      "martars",
      "miercus",
      "joibe",
      "vinars",
      "sabide",
      "domenie"
    ],
    day_stand_alone_abbreviated => [
      "lun",
      "mar",
      "mie",
      "joi",
      "vin",
      "sab",
      "dom"
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "lunis",
      "martars",
      "miercus",
      "joibe",
      "vinars",
      "sabide",
      "domenie"
    ],
    era_abbreviated => [
      "pdC",
      "ddC"
    ],
    era_narrow => [
      "pdC",
      "ddC"
    ],
    era_wide => [
      "pdC",
      "ddC"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d. %m. %y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Friulian",
    month_format_abbreviated => [
      "Zen",
      "Fev",
      "Mar",
      "Avr",
      "Mai",
      "Jug",
      "Lui",
      "Avo",
      "Set",
      "Otu",
      "Nov",
      "Dic"
    ],
    month_format_narrow => [
      "Z",
      "F",
      "M",
      "A",
      "M",
      "J",
      "L",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Zen\N{U+00e2}r",
      "Fevr\N{U+00e2}r",
      "Mar\N{U+00e7}",
      "Avr\N{U+00ee}l",
      "Mai",
      "Jugn",
      "Lui",
      "Avost",
      "Setembar",
      "Otubar",
      "Novembar",
      "Dicembar"
    ],
    month_stand_alone_abbreviated => [
      "Zen",
      "Fev",
      "Mar",
      "Avr",
      "Mai",
      "Jug",
      "Lui",
      "Avo",
      "Set",
      "Otu",
      "Nov",
      "Dic"
    ],
    month_stand_alone_narrow => [
      "Z",
      "F",
      "M",
      "A",
      "M",
      "J",
      "L",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Zen\N{U+00e2}r",
      "Fevr\N{U+00e2}r",
      "Mar\N{U+00e7}",
      "Avr\N{U+00ee}l",
      "Mai",
      "Jugn",
      "Lui",
      "Avost",
      "Setembar",
      "Otubar",
      "Novembar",
      "Dicembar"
    ],
    name => "Friulian Italy",
    native_language => "furlan",
    native_name => "furlan Italie",
    native_script => undef,
    native_territory => "Italie",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Prin trimestri",
      "Secont trimestri",
      "Tier\N{U+00e7} trimestri",
      "Cuart trimestri"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Prin trimestri",
      "Secont trimestri",
      "Tier\N{U+00e7} trimestri",
      "Cuart trimestri"
    ],
    script => undef,
    territory => "Italy",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fy ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d-M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d-M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M-y",
      yMEd => "E d-M-y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d-M-y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fy",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd-MM-yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "mo",
      "ti",
      "wo",
      "to",
      "fr",
      "so",
      "si"
    ],
    day_format_narrow => [
      "M",
      "D",
      "W",
      "D",
      "V",
      "Z",
      "Z"
    ],
    day_format_wide => [
      "moandei",
      "tiisdei",
      "woansdei",
      "tongersdei",
      "freed",
      "sneon",
      "snein"
    ],
    day_stand_alone_abbreviated => [
      "mo",
      "ti",
      "wo",
      "to",
      "fr",
      "so",
      "si"
    ],
    day_stand_alone_narrow => [
      "M",
      "D",
      "W",
      "D",
      "V",
      "Z",
      "Z"
    ],
    day_stand_alone_wide => [
      "moandei",
      "tiisdei",
      "woansdei",
      "tongersdei",
      "freed",
      "sneon",
      "snein"
    ],
    era_abbreviated => [
      "f.Kr.",
      "n.Kr."
    ],
    era_narrow => [
      "f.K.",
      "n.K."
    ],
    era_wide => [
      "Foar Kristus",
      "nei Kristus"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Western Frisian",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "mrt.",
      "apr.",
      "mai.",
      "jun.",
      "jul.",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "des."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "jannewaris",
      "febrewaris",
      "maart",
      "april",
      "maaie",
      "juny",
      "july",
      "augustus",
      "septimber",
      "oktober",
      "novimber",
      "desimber"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "mrt",
      "apr",
      "mai",
      "jun",
      "jul",
      "aug",
      "sep",
      "okt",
      "nov",
      "des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "jannewaris",
      "febrewaris",
      "maart",
      "april",
      "maaie",
      "juny",
      "july",
      "augustus",
      "septimber",
      "oktober",
      "novimber",
      "desimber"
    ],
    name => "Western Frisian",
    native_language => "West-Frysk",
    native_name => "West-Frysk",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1e kwartaal",
      "2e kwartaal",
      "3e kwartaal",
      "4e kwartaal"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1e kwartaal",
      "2e kwartaal",
      "3e kwartaal",
      "4e kwartaal"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ fy-NL ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d-M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d-M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M-y",
      yMEd => "E d-M-y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d-M-y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "fy-NL",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd-MM-yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "mo",
      "ti",
      "wo",
      "to",
      "fr",
      "so",
      "si"
    ],
    day_format_narrow => [
      "M",
      "D",
      "W",
      "D",
      "V",
      "Z",
      "Z"
    ],
    day_format_wide => [
      "moandei",
      "tiisdei",
      "woansdei",
      "tongersdei",
      "freed",
      "sneon",
      "snein"
    ],
    day_stand_alone_abbreviated => [
      "mo",
      "ti",
      "wo",
      "to",
      "fr",
      "so",
      "si"
    ],
    day_stand_alone_narrow => [
      "M",
      "D",
      "W",
      "D",
      "V",
      "Z",
      "Z"
    ],
    day_stand_alone_wide => [
      "moandei",
      "tiisdei",
      "woansdei",
      "tongersdei",
      "freed",
      "sneon",
      "snein"
    ],
    era_abbreviated => [
      "f.Kr.",
      "n.Kr."
    ],
    era_narrow => [
      "f.K.",
      "n.K."
    ],
    era_wide => [
      "Foar Kristus",
      "nei Kristus"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d-%m-%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Western Frisian",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "mrt.",
      "apr.",
      "mai.",
      "jun.",
      "jul.",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "des."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "jannewaris",
      "febrewaris",
      "maart",
      "april",
      "maaie",
      "juny",
      "july",
      "augustus",
      "septimber",
      "oktober",
      "novimber",
      "desimber"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "mrt",
      "apr",
      "mai",
      "jun",
      "jul",
      "aug",
      "sep",
      "okt",
      "nov",
      "des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "jannewaris",
      "febrewaris",
      "maart",
      "april",
      "maaie",
      "juny",
      "july",
      "augustus",
      "septimber",
      "oktober",
      "novimber",
      "desimber"
    ],
    name => "Western Frisian Netherlands",
    native_language => "West-Frysk",
    native_name => "West-Frysk Nederl\N{U+00e2}n",
    native_script => undef,
    native_territory => "Nederl\N{U+00e2}n",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1e kwartaal",
      "2e kwartaal",
      "3e kwartaal",
      "4e kwartaal"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1e kwartaal",
      "2e kwartaal",
      "3e kwartaal",
      "4e kwartaal"
    ],
    script => undef,
    territory => "Netherlands",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ga ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "LL",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ga",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Luan",
      "M\N{U+00e1}irt",
      "C\N{U+00e9}ad",
      "D\N{U+00e9}ar",
      "Aoine",
      "Sath",
      "Domh"
    ],
    day_format_narrow => [
      "L",
      "M",
      "C",
      "D",
      "A",
      "S",
      "D"
    ],
    day_format_wide => [
      "D\N{U+00e9} Luain",
      "D\N{U+00e9} M\N{U+00e1}irt",
      "D\N{U+00e9} C\N{U+00e9}adaoin",
      "D\N{U+00e9}ardaoin",
      "D\N{U+00e9} hAoine",
      "D\N{U+00e9} Sathairn",
      "D\N{U+00e9} Domhnaigh"
    ],
    day_stand_alone_abbreviated => [
      "Luan",
      "M\N{U+00e1}irt",
      "C\N{U+00e9}ad",
      "D\N{U+00e9}ar",
      "Aoine",
      "Sath",
      "Domh"
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "C",
      "D",
      "A",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "D\N{U+00e9} Luain",
      "D\N{U+00e9} M\N{U+00e1}irt",
      "D\N{U+00e9} C\N{U+00e9}adaoin",
      "D\N{U+00e9}ardaoin",
      "D\N{U+00e9} hAoine",
      "D\N{U+00e9} Sathairn",
      "D\N{U+00e9} Domhnaigh"
    ],
    era_abbreviated => [
      "RC",
      "AD"
    ],
    era_narrow => [
      "RC",
      "AD"
    ],
    era_wide => [
      "Roimh Chr\N{U+00ed}ost",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Irish",
    month_format_abbreviated => [
      "Ean",
      "Feabh",
      "M\N{U+00e1}rta",
      "Aib",
      "Beal",
      "Meith",
      "I\N{U+00fa}il",
      "L\N{U+00fa}n",
      "MF\N{U+00f3}mh",
      "DF\N{U+00f3}mh",
      "Samh",
      "Noll"
    ],
    month_format_narrow => [
      "E",
      "F",
      "M",
      "A",
      "B",
      "M",
      "I",
      "L",
      "M",
      "D",
      "S",
      "N"
    ],
    month_format_wide => [
      "Ean\N{U+00e1}ir",
      "Feabhra",
      "M\N{U+00e1}rta",
      "Aibre\N{U+00e1}n",
      "Bealtaine",
      "Meitheamh",
      "I\N{U+00fa}il",
      "L\N{U+00fa}nasa",
      "Me\N{U+00e1}n F\N{U+00f3}mhair",
      "Deireadh F\N{U+00f3}mhair",
      "Samhain",
      "Nollaig"
    ],
    month_stand_alone_abbreviated => [
      "Ean",
      "Feabh",
      "M\N{U+00e1}rta",
      "Aib",
      "Beal",
      "Meith",
      "I\N{U+00fa}il",
      "L\N{U+00fa}n",
      "MF\N{U+00f3}mh",
      "DF\N{U+00f3}mh",
      "Samh",
      "Noll"
    ],
    month_stand_alone_narrow => [
      "E",
      "F",
      "M",
      "A",
      "B",
      "M",
      "I",
      "L",
      "M",
      "D",
      "S",
      "N"
    ],
    month_stand_alone_wide => [
      "Ean\N{U+00e1}ir",
      "Feabhra",
      "M\N{U+00e1}rta",
      "Aibre\N{U+00e1}n",
      "Bealtaine",
      "Meitheamh",
      "I\N{U+00fa}il",
      "L\N{U+00fa}nasa",
      "Me\N{U+00e1}n F\N{U+00f3}mhair",
      "Deireadh F\N{U+00f3}mhair",
      "Samhain",
      "Nollaig"
    ],
    name => "Irish",
    native_language => "Gaeilge",
    native_name => "Gaeilge",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1\N{U+00fa} r\N{U+00e1}ithe",
      "2\N{U+00fa} r\N{U+00e1}ithe",
      "3\N{U+00fa} r\N{U+00e1}ithe",
      "4\N{U+00fa} r\N{U+00e1}ithe"
    ],
    quarter_stand_alone_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1\N{U+00fa} r\N{U+00e1}ithe",
      "2\N{U+00fa} r\N{U+00e1}ithe",
      "3\N{U+00fa} r\N{U+00e1}ithe",
      "4\N{U+00fa} r\N{U+00e1}ithe"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ga-IE ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "LL",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E dd/MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ga-IE",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Luan",
      "M\N{U+00e1}irt",
      "C\N{U+00e9}ad",
      "D\N{U+00e9}ar",
      "Aoine",
      "Sath",
      "Domh"
    ],
    day_format_narrow => [
      "L",
      "M",
      "C",
      "D",
      "A",
      "S",
      "D"
    ],
    day_format_wide => [
      "D\N{U+00e9} Luain",
      "D\N{U+00e9} M\N{U+00e1}irt",
      "D\N{U+00e9} C\N{U+00e9}adaoin",
      "D\N{U+00e9}ardaoin",
      "D\N{U+00e9} hAoine",
      "D\N{U+00e9} Sathairn",
      "D\N{U+00e9} Domhnaigh"
    ],
    day_stand_alone_abbreviated => [
      "Luan",
      "M\N{U+00e1}irt",
      "C\N{U+00e9}ad",
      "D\N{U+00e9}ar",
      "Aoine",
      "Sath",
      "Domh"
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "C",
      "D",
      "A",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "D\N{U+00e9} Luain",
      "D\N{U+00e9} M\N{U+00e1}irt",
      "D\N{U+00e9} C\N{U+00e9}adaoin",
      "D\N{U+00e9}ardaoin",
      "D\N{U+00e9} hAoine",
      "D\N{U+00e9} Sathairn",
      "D\N{U+00e9} Domhnaigh"
    ],
    era_abbreviated => [
      "RC",
      "AD"
    ],
    era_narrow => [
      "RC",
      "AD"
    ],
    era_wide => [
      "Roimh Chr\N{U+00ed}ost",
      "Anno Domini"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d.%m.%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Irish",
    month_format_abbreviated => [
      "Ean",
      "Feabh",
      "M\N{U+00e1}rta",
      "Aib",
      "Beal",
      "Meith",
      "I\N{U+00fa}il",
      "L\N{U+00fa}n",
      "MF\N{U+00f3}mh",
      "DF\N{U+00f3}mh",
      "Samh",
      "Noll"
    ],
    month_format_narrow => [
      "E",
      "F",
      "M",
      "A",
      "B",
      "M",
      "I",
      "L",
      "M",
      "D",
      "S",
      "N"
    ],
    month_format_wide => [
      "Ean\N{U+00e1}ir",
      "Feabhra",
      "M\N{U+00e1}rta",
      "Aibre\N{U+00e1}n",
      "Bealtaine",
      "Meitheamh",
      "I\N{U+00fa}il",
      "L\N{U+00fa}nasa",
      "Me\N{U+00e1}n F\N{U+00f3}mhair",
      "Deireadh F\N{U+00f3}mhair",
      "Samhain",
      "Nollaig"
    ],
    month_stand_alone_abbreviated => [
      "Ean",
      "Feabh",
      "M\N{U+00e1}rta",
      "Aib",
      "Beal",
      "Meith",
      "I\N{U+00fa}il",
      "L\N{U+00fa}n",
      "MF\N{U+00f3}mh",
      "DF\N{U+00f3}mh",
      "Samh",
      "Noll"
    ],
    month_stand_alone_narrow => [
      "E",
      "F",
      "M",
      "A",
      "B",
      "M",
      "I",
      "L",
      "M",
      "D",
      "S",
      "N"
    ],
    month_stand_alone_wide => [
      "Ean\N{U+00e1}ir",
      "Feabhra",
      "M\N{U+00e1}rta",
      "Aibre\N{U+00e1}n",
      "Bealtaine",
      "Meitheamh",
      "I\N{U+00fa}il",
      "L\N{U+00fa}nasa",
      "Me\N{U+00e1}n F\N{U+00f3}mhair",
      "Deireadh F\N{U+00f3}mhair",
      "Samhain",
      "Nollaig"
    ],
    name => "Irish Ireland",
    native_language => "Gaeilge",
    native_name => "Gaeilge \N{U+00c9}ire",
    native_script => undef,
    native_territory => "\N{U+00c9}ire",
    native_variant => undef,
    quarter_format_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1\N{U+00fa} r\N{U+00e1}ithe",
      "2\N{U+00fa} r\N{U+00e1}ithe",
      "3\N{U+00fa} r\N{U+00e1}ithe",
      "4\N{U+00fa} r\N{U+00e1}ithe"
    ],
    quarter_stand_alone_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1\N{U+00fa} r\N{U+00e1}ithe",
      "2\N{U+00fa} r\N{U+00e1}ithe",
      "3\N{U+00fa} r\N{U+00e1}ithe",
      "4\N{U+00fa} r\N{U+00e1}ithe"
    ],
    script => undef,
    territory => "Ireland",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ gd ]__
  {
    am_pm_abbreviated => [
      "m",
      "f"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E, d",
      Ehm => "E h:mma",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d'mh' MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "ha",
      hm => "h:mma",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mma v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMM => "MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "LLLL y",
      yMMMd => "d MMM y",
      yMd => "M/d/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "gd",
    date_format_full => "EEEE, d'mh' MMMM y",
    date_format_long => "d'mh' MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "DiL",
      "DiM",
      "DiC",
      "Dia",
      "Dih",
      "DiS",
      "DiD"
    ],
    day_format_narrow => [
      "L",
      "M",
      "C",
      "A",
      "H",
      "S",
      "D"
    ],
    day_format_wide => [
      "DiLuain",
      "DiM\N{U+00e0}irt",
      "DiCiadain",
      "DiarDaoin",
      "DihAoine",
      "DiSathairne",
      "DiD\N{U+00f2}mhnaich"
    ],
    day_stand_alone_abbreviated => [
      "DiL",
      "DiM",
      "DiC",
      "Dia",
      "Dih",
      "DiS",
      "DiD"
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "C",
      "A",
      "H",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "DiLuain",
      "DiM\N{U+00e0}irt",
      "DiCiadain",
      "DiarDaoin",
      "DihAoine",
      "DiSathairne",
      "DiD\N{U+00f2}mhnaich"
    ],
    era_abbreviated => [
      "RC",
      "AD"
    ],
    era_narrow => [
      "R",
      "A"
    ],
    era_wide => [
      "Ro Chr\N{U+00ec}osta",
      "An d\N{U+00e8}idh Chr\N{U+00ec}osta"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Scottish Gaelic",
    month_format_abbreviated => [
      "Faoi",
      "Gearr",
      "M\N{U+00e0}rt",
      "Gibl",
      "C\N{U+00e8}it",
      "\N{U+00d2}gmh",
      "Iuch",
      "L\N{U+00f9}na",
      "Sult",
      "D\N{U+00e0}mh",
      "Samh",
      "D\N{U+00f9}bh"
    ],
    month_format_narrow => [
      "F",
      "G",
      "M",
      "G",
      "C",
      "\N{U+00d2}",
      "I",
      "L",
      "S",
      "D",
      "S",
      "D"
    ],
    month_format_wide => [
      "dhen Fhaoilleach",
      "dhen Ghearran",
      "dhen Mh\N{U+00e0}rt",
      "dhen Ghiblean",
      "dhen Ch\N{U+00e8}itean",
      "dhen \N{U+00d2}gmhios",
      "dhen Iuchar",
      "dhen L\N{U+00f9}nastal",
      "dhen t-Sultain",
      "dhen D\N{U+00e0}mhair",
      "dhen t-Samhain",
      "dhen D\N{U+00f9}bhlachd"
    ],
    month_stand_alone_abbreviated => [
      "Faoi",
      "Gearr",
      "M\N{U+00e0}rt",
      "Gibl",
      "C\N{U+00e8}it",
      "\N{U+00d2}gmh",
      "Iuch",
      "L\N{U+00f9}na",
      "Sult",
      "D\N{U+00e0}mh",
      "Samh",
      "D\N{U+00f9}bh"
    ],
    month_stand_alone_narrow => [
      "F",
      "G",
      "M",
      "G",
      "C",
      "\N{U+00d2}",
      "I",
      "L",
      "S",
      "D",
      "S",
      "D"
    ],
    month_stand_alone_wide => [
      "Am Faoilleach",
      "An Gearran",
      "Am M\N{U+00e0}rt",
      "An Giblean",
      "An C\N{U+00e8}itean",
      "An t-\N{U+00d2}gmhios",
      "An t-Iuchar",
      "An L\N{U+00f9}nastal",
      "An t-Sultain",
      "An D\N{U+00e0}mhair",
      "An t-Samhain",
      "An D\N{U+00f9}bhlachd"
    ],
    name => "Scottish Gaelic",
    native_language => "G\N{U+00e0}idhlig",
    native_name => "G\N{U+00e0}idhlig",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "C1",
      "C2",
      "C3",
      "C4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1d chairteal",
      "2na cairteal",
      "3s cairteal",
      "4mh cairteal"
    ],
    quarter_stand_alone_abbreviated => [
      "C1",
      "C2",
      "C3",
      "C4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1d chairteal",
      "2na cairteal",
      "3s cairteal",
      "4mh cairteal"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ gd-GB ]__
  {
    am_pm_abbreviated => [
      "m",
      "f"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E, d",
      Ehm => "E h:mma",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d'mh' MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "ha",
      hm => "h:mma",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mma v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMM => "MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "LLLL y",
      yMMMd => "d MMM y",
      yMd => "M/d/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "gd-GB",
    date_format_full => "EEEE, d'mh' MMMM y",
    date_format_long => "d'mh' MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "DiL",
      "DiM",
      "DiC",
      "Dia",
      "Dih",
      "DiS",
      "DiD"
    ],
    day_format_narrow => [
      "L",
      "M",
      "C",
      "A",
      "H",
      "S",
      "D"
    ],
    day_format_wide => [
      "DiLuain",
      "DiM\N{U+00e0}irt",
      "DiCiadain",
      "DiarDaoin",
      "DihAoine",
      "DiSathairne",
      "DiD\N{U+00f2}mhnaich"
    ],
    day_stand_alone_abbreviated => [
      "DiL",
      "DiM",
      "DiC",
      "Dia",
      "Dih",
      "DiS",
      "DiD"
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "C",
      "A",
      "H",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "DiLuain",
      "DiM\N{U+00e0}irt",
      "DiCiadain",
      "DiarDaoin",
      "DihAoine",
      "DiSathairne",
      "DiD\N{U+00f2}mhnaich"
    ],
    era_abbreviated => [
      "RC",
      "AD"
    ],
    era_narrow => [
      "R",
      "A"
    ],
    era_wide => [
      "Ro Chr\N{U+00ec}osta",
      "An d\N{U+00e8}idh Chr\N{U+00ec}osta"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%r",
    language => "Scottish Gaelic",
    month_format_abbreviated => [
      "Faoi",
      "Gearr",
      "M\N{U+00e0}rt",
      "Gibl",
      "C\N{U+00e8}it",
      "\N{U+00d2}gmh",
      "Iuch",
      "L\N{U+00f9}na",
      "Sult",
      "D\N{U+00e0}mh",
      "Samh",
      "D\N{U+00f9}bh"
    ],
    month_format_narrow => [
      "F",
      "G",
      "M",
      "G",
      "C",
      "\N{U+00d2}",
      "I",
      "L",
      "S",
      "D",
      "S",
      "D"
    ],
    month_format_wide => [
      "dhen Fhaoilleach",
      "dhen Ghearran",
      "dhen Mh\N{U+00e0}rt",
      "dhen Ghiblean",
      "dhen Ch\N{U+00e8}itean",
      "dhen \N{U+00d2}gmhios",
      "dhen Iuchar",
      "dhen L\N{U+00f9}nastal",
      "dhen t-Sultain",
      "dhen D\N{U+00e0}mhair",
      "dhen t-Samhain",
      "dhen D\N{U+00f9}bhlachd"
    ],
    month_stand_alone_abbreviated => [
      "Faoi",
      "Gearr",
      "M\N{U+00e0}rt",
      "Gibl",
      "C\N{U+00e8}it",
      "\N{U+00d2}gmh",
      "Iuch",
      "L\N{U+00f9}na",
      "Sult",
      "D\N{U+00e0}mh",
      "Samh",
      "D\N{U+00f9}bh"
    ],
    month_stand_alone_narrow => [
      "F",
      "G",
      "M",
      "G",
      "C",
      "\N{U+00d2}",
      "I",
      "L",
      "S",
      "D",
      "S",
      "D"
    ],
    month_stand_alone_wide => [
      "Am Faoilleach",
      "An Gearran",
      "Am M\N{U+00e0}rt",
      "An Giblean",
      "An C\N{U+00e8}itean",
      "An t-\N{U+00d2}gmhios",
      "An t-Iuchar",
      "An L\N{U+00f9}nastal",
      "An t-Sultain",
      "An D\N{U+00e0}mhair",
      "An t-Samhain",
      "An D\N{U+00f9}bhlachd"
    ],
    name => "Scottish Gaelic United Kingdom",
    native_language => "G\N{U+00e0}idhlig",
    native_name => "G\N{U+00e0}idhlig An R\N{U+00ec}oghachd Aonaichte",
    native_script => undef,
    native_territory => "An R\N{U+00ec}oghachd Aonaichte",
    native_variant => undef,
    quarter_format_abbreviated => [
      "C1",
      "C2",
      "C3",
      "C4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1d chairteal",
      "2na cairteal",
      "3s cairteal",
      "4mh cairteal"
    ],
    quarter_stand_alone_abbreviated => [
      "C1",
      "C2",
      "C3",
      "C4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1d chairteal",
      "2na cairteal",
      "3s cairteal",
      "4mh cairteal"
    ],
    script => undef,
    territory => "United Kingdom",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ gl ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d-M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "d-M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M-y",
      yMEd => "E, d/M/y",
      yMM => "MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM, y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM, y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "gl",
    date_format_full => "EEEE dd MMMM y",
    date_format_long => "dd MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "luns",
      "mar",
      "m\N{U+00e9}r",
      "xov",
      "ven",
      "s\N{U+00e1}b",
      "dom"
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "X",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "luns",
      "martes",
      "m\N{U+00e9}rcores",
      "xoves",
      "venres",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "Lun",
      "Mar",
      "M\N{U+00e9}r",
      "Xov",
      "Ven",
      "S\N{U+00e1}b",
      "Dom"
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "X",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "Luns",
      "Martes",
      "M\N{U+00e9}rcores",
      "Xoves",
      "Venres",
      "S\N{U+00e1}bado",
      "Domingo"
    ],
    era_abbreviated => [
      "a.C.",
      "d.C."
    ],
    era_narrow => [
      "a.C.",
      "d.C."
    ],
    era_wide => [
      "antes de Cristo",
      "despois de Cristo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Galician",
    month_format_abbreviated => [
      "xan",
      "feb",
      "mar",
      "abr",
      "mai",
      "xu\N{U+00f1}",
      "xul",
      "ago",
      "set",
      "out",
      "nov",
      "dec"
    ],
    month_format_narrow => [
      "X",
      "F",
      "M",
      "A",
      "M",
      "X",
      "X",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "xaneiro",
      "febreiro",
      "marzo",
      "abril",
      "maio",
      "xu\N{U+00f1}o",
      "xullo",
      "agosto",
      "setembro",
      "outubro",
      "novembro",
      "decembro"
    ],
    month_stand_alone_abbreviated => [
      "Xan",
      "Feb",
      "Mar",
      "Abr",
      "Mai",
      "Xu\N{U+00f1}",
      "Xul",
      "Ago",
      "Set",
      "Out",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "X",
      "F",
      "M",
      "A",
      "M",
      "X",
      "X",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Xaneiro",
      "Febreiro",
      "Marzo",
      "Abril",
      "Maio",
      "Xu\N{U+00f1}o",
      "Xullo",
      "Agosto",
      "Setembro",
      "Outubro",
      "Novembro",
      "Decembro"
    ],
    name => "Galician",
    native_language => "galego",
    native_name => "galego",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1\N{U+00ba} trimestre",
      "2\N{U+00ba} trimestre",
      "3\N{U+00ba} trimestre",
      "4\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1\N{U+00ba} trimestre",
      "2\N{U+00ba} trimestre",
      "3\N{U+00ba} trimestre",
      "4\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ gl-ES ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d-M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "d-M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M-y",
      yMEd => "E, d/M/y",
      yMM => "MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM, y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM, y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "gl-ES",
    date_format_full => "EEEE dd MMMM y",
    date_format_long => "dd MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "luns",
      "mar",
      "m\N{U+00e9}r",
      "xov",
      "ven",
      "s\N{U+00e1}b",
      "dom"
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "X",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "luns",
      "martes",
      "m\N{U+00e9}rcores",
      "xoves",
      "venres",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "Lun",
      "Mar",
      "M\N{U+00e9}r",
      "Xov",
      "Ven",
      "S\N{U+00e1}b",
      "Dom"
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "X",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "Luns",
      "Martes",
      "M\N{U+00e9}rcores",
      "Xoves",
      "Venres",
      "S\N{U+00e1}bado",
      "Domingo"
    ],
    era_abbreviated => [
      "a.C.",
      "d.C."
    ],
    era_narrow => [
      "a.C.",
      "d.C."
    ],
    era_wide => [
      "antes de Cristo",
      "despois de Cristo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Galician",
    month_format_abbreviated => [
      "xan",
      "feb",
      "mar",
      "abr",
      "mai",
      "xu\N{U+00f1}",
      "xul",
      "ago",
      "set",
      "out",
      "nov",
      "dec"
    ],
    month_format_narrow => [
      "X",
      "F",
      "M",
      "A",
      "M",
      "X",
      "X",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "xaneiro",
      "febreiro",
      "marzo",
      "abril",
      "maio",
      "xu\N{U+00f1}o",
      "xullo",
      "agosto",
      "setembro",
      "outubro",
      "novembro",
      "decembro"
    ],
    month_stand_alone_abbreviated => [
      "Xan",
      "Feb",
      "Mar",
      "Abr",
      "Mai",
      "Xu\N{U+00f1}",
      "Xul",
      "Ago",
      "Set",
      "Out",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "X",
      "F",
      "M",
      "A",
      "M",
      "X",
      "X",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Xaneiro",
      "Febreiro",
      "Marzo",
      "Abril",
      "Maio",
      "Xu\N{U+00f1}o",
      "Xullo",
      "Agosto",
      "Setembro",
      "Outubro",
      "Novembro",
      "Decembro"
    ],
    name => "Galician Spain",
    native_language => "galego",
    native_name => "galego Espa\N{U+00f1}a",
    native_script => undef,
    native_territory => "Espa\N{U+00f1}a",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1\N{U+00ba} trimestre",
      "2\N{U+00ba} trimestre",
      "3\N{U+00ba} trimestre",
      "4\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1\N{U+00ba} trimestre",
      "2\N{U+00ba} trimestre",
      "3\N{U+00ba} trimestre",
      "4\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Spain",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ gsw ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d.",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "H",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E d. MMM",
      MMMMEd => "E d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMd => "d.MM.",
      MMdd => "dd.MM.",
      Md => "d.M.",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y",
      yM => "y-M",
      yMEd => "E, y-M-d",
      yMM => "MM.y",
      yMMM => "MMM y",
      yMMMEd => "E, d. MMM y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMMdd => "dd.MM.y",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "gsw",
    date_format_full => "EEEE, d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "dd.MM.y",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "M\N{U+00e4}.",
      "Zi.",
      "Mi.",
      "Du.",
      "Fr.",
      "Sa.",
      "Su."
    ],
    day_format_narrow => [
      "M",
      "D",
      "M",
      "D",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "M\N{U+00e4}\N{U+00e4}ntig",
      "Ziischtig",
      "Mittwuch",
      "Dunschtig",
      "Friitig",
      "Samschtig",
      "Sunntig"
    ],
    day_stand_alone_abbreviated => [
      "M\N{U+00e4}.",
      "Zi.",
      "Mi.",
      "Du.",
      "Fr.",
      "Sa.",
      "Su."
    ],
    day_stand_alone_narrow => [
      "M",
      "D",
      "M",
      "D",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "M\N{U+00e4}\N{U+00e4}ntig",
      "Ziischtig",
      "Mittwuch",
      "Dunschtig",
      "Friitig",
      "Samschtig",
      "Sunntig"
    ],
    era_abbreviated => [
      "v. Chr.",
      "n. Chr."
    ],
    era_narrow => [
      "v. Chr.",
      "n. Chr."
    ],
    era_wide => [
      "v. Chr.",
      "n. Chr."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Swiss German",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "M\N{U+00e4}r",
      "Apr",
      "Mai",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Okt",
      "Nov",
      "Dez"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januar",
      "Februar",
      "M\N{U+00e4}rz",
      "April",
      "Mai",
      "Juni",
      "Juli",
      "Auguscht",
      "Sept\N{U+00e4}mber",
      "Oktoober",
      "Nov\N{U+00e4}mber",
      "Dez\N{U+00e4}mber"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "M\N{U+00e4}r",
      "Apr",
      "Mai",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Okt",
      "Nov",
      "Dez"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januar",
      "Februar",
      "M\N{U+00e4}rz",
      "April",
      "Mai",
      "Juni",
      "Juli",
      "Auguscht",
      "Sept\N{U+00e4}mber",
      "Oktoober",
      "Nov\N{U+00e4}mber",
      "Dez\N{U+00e4}mber"
    ],
    name => "Swiss German",
    native_language => "Schwiizert\N{U+00fc}\N{U+00fc}tsch",
    native_name => "Schwiizert\N{U+00fc}\N{U+00fc}tsch",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. Quartal",
      "2. Quartal",
      "3. Quartal",
      "4. Quartal"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. Quartal",
      "2. Quartal",
      "3. Quartal",
      "4. Quartal"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ gsw-CH ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d.",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "H",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E d. MMM",
      MMMMEd => "E d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMd => "d.MM.",
      MMdd => "dd.MM.",
      Md => "d.M.",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y",
      yM => "y-M",
      yMEd => "E, y-M-d",
      yMM => "MM.y",
      yMMM => "MMM y",
      yMMMEd => "E, d. MMM y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMMdd => "dd.MM.y",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "gsw-CH",
    date_format_full => "EEEE, d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "dd.MM.y",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "M\N{U+00e4}.",
      "Zi.",
      "Mi.",
      "Du.",
      "Fr.",
      "Sa.",
      "Su."
    ],
    day_format_narrow => [
      "M",
      "D",
      "M",
      "D",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "M\N{U+00e4}\N{U+00e4}ntig",
      "Ziischtig",
      "Mittwuch",
      "Dunschtig",
      "Friitig",
      "Samschtig",
      "Sunntig"
    ],
    day_stand_alone_abbreviated => [
      "M\N{U+00e4}.",
      "Zi.",
      "Mi.",
      "Du.",
      "Fr.",
      "Sa.",
      "Su."
    ],
    day_stand_alone_narrow => [
      "M",
      "D",
      "M",
      "D",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "M\N{U+00e4}\N{U+00e4}ntig",
      "Ziischtig",
      "Mittwuch",
      "Dunschtig",
      "Friitig",
      "Samschtig",
      "Sunntig"
    ],
    era_abbreviated => [
      "v. Chr.",
      "n. Chr."
    ],
    era_narrow => [
      "v. Chr.",
      "n. Chr."
    ],
    era_wide => [
      "v. Chr.",
      "n. Chr."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Swiss German",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "M\N{U+00e4}r",
      "Apr",
      "Mai",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Okt",
      "Nov",
      "Dez"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januar",
      "Februar",
      "M\N{U+00e4}rz",
      "April",
      "Mai",
      "Juni",
      "Juli",
      "Auguscht",
      "Sept\N{U+00e4}mber",
      "Oktoober",
      "Nov\N{U+00e4}mber",
      "Dez\N{U+00e4}mber"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "M\N{U+00e4}r",
      "Apr",
      "Mai",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Okt",
      "Nov",
      "Dez"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januar",
      "Februar",
      "M\N{U+00e4}rz",
      "April",
      "Mai",
      "Juni",
      "Juli",
      "Auguscht",
      "Sept\N{U+00e4}mber",
      "Oktoober",
      "Nov\N{U+00e4}mber",
      "Dez\N{U+00e4}mber"
    ],
    name => "Swiss German Switzerland",
    native_language => "Schwiizert\N{U+00fc}\N{U+00fc}tsch",
    native_name => "Schwiizert\N{U+00fc}\N{U+00fc}tsch Schwiiz",
    native_script => undef,
    native_territory => "Schwiiz",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. Quartal",
      "2. Quartal",
      "3. Quartal",
      "4. Quartal"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. Quartal",
      "2. Quartal",
      "3. Quartal",
      "4. Quartal"
    ],
    script => undef,
    territory => "Switzerland",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ gsw-FR ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d.",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "H",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E d. MMM",
      MMMMEd => "E d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMd => "d.MM.",
      MMdd => "dd.MM.",
      Md => "d.M.",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y",
      yM => "y-M",
      yMEd => "E, y-M-d",
      yMM => "MM.y",
      yMMM => "MMM y",
      yMMMEd => "E, d. MMM y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMMdd => "dd.MM.y",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "gsw-FR",
    date_format_full => "EEEE, d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "dd.MM.y",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "M\N{U+00e4}.",
      "Zi.",
      "Mi.",
      "Du.",
      "Fr.",
      "Sa.",
      "Su."
    ],
    day_format_narrow => [
      "M",
      "D",
      "M",
      "D",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "M\N{U+00e4}\N{U+00e4}ntig",
      "Ziischtig",
      "Mittwuch",
      "Dunschtig",
      "Friitig",
      "Samschtig",
      "Sunntig"
    ],
    day_stand_alone_abbreviated => [
      "M\N{U+00e4}.",
      "Zi.",
      "Mi.",
      "Du.",
      "Fr.",
      "Sa.",
      "Su."
    ],
    day_stand_alone_narrow => [
      "M",
      "D",
      "M",
      "D",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "M\N{U+00e4}\N{U+00e4}ntig",
      "Ziischtig",
      "Mittwuch",
      "Dunschtig",
      "Friitig",
      "Samschtig",
      "Sunntig"
    ],
    era_abbreviated => [
      "v. Chr.",
      "n. Chr."
    ],
    era_narrow => [
      "v. Chr.",
      "n. Chr."
    ],
    era_wide => [
      "v. Chr.",
      "n. Chr."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Swiss German",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "M\N{U+00e4}r",
      "Apr",
      "Mai",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Okt",
      "Nov",
      "Dez"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januar",
      "Februar",
      "M\N{U+00e4}rz",
      "April",
      "Mai",
      "Juni",
      "Juli",
      "Auguscht",
      "Sept\N{U+00e4}mber",
      "Oktoober",
      "Nov\N{U+00e4}mber",
      "Dez\N{U+00e4}mber"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "M\N{U+00e4}r",
      "Apr",
      "Mai",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Okt",
      "Nov",
      "Dez"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januar",
      "Februar",
      "M\N{U+00e4}rz",
      "April",
      "Mai",
      "Juni",
      "Juli",
      "Auguscht",
      "Sept\N{U+00e4}mber",
      "Oktoober",
      "Nov\N{U+00e4}mber",
      "Dez\N{U+00e4}mber"
    ],
    name => "Swiss German France",
    native_language => "Schwiizert\N{U+00fc}\N{U+00fc}tsch",
    native_name => "Schwiizert\N{U+00fc}\N{U+00fc}tsch Frankriich",
    native_script => undef,
    native_territory => "Frankriich",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. Quartal",
      "2. Quartal",
      "3. Quartal",
      "4. Quartal"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. Quartal",
      "2. Quartal",
      "3. Quartal",
      "4. Quartal"
    ],
    script => undef,
    territory => "France",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ gsw-LI ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d.",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "H",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E d. MMM",
      MMMMEd => "E d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMd => "d.MM.",
      MMdd => "dd.MM.",
      Md => "d.M.",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y",
      yM => "y-M",
      yMEd => "E, y-M-d",
      yMM => "MM.y",
      yMMM => "MMM y",
      yMMMEd => "E, d. MMM y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMMdd => "dd.MM.y",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "gsw-LI",
    date_format_full => "EEEE, d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "dd.MM.y",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "M\N{U+00e4}.",
      "Zi.",
      "Mi.",
      "Du.",
      "Fr.",
      "Sa.",
      "Su."
    ],
    day_format_narrow => [
      "M",
      "D",
      "M",
      "D",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "M\N{U+00e4}\N{U+00e4}ntig",
      "Ziischtig",
      "Mittwuch",
      "Dunschtig",
      "Friitig",
      "Samschtig",
      "Sunntig"
    ],
    day_stand_alone_abbreviated => [
      "M\N{U+00e4}.",
      "Zi.",
      "Mi.",
      "Du.",
      "Fr.",
      "Sa.",
      "Su."
    ],
    day_stand_alone_narrow => [
      "M",
      "D",
      "M",
      "D",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "M\N{U+00e4}\N{U+00e4}ntig",
      "Ziischtig",
      "Mittwuch",
      "Dunschtig",
      "Friitig",
      "Samschtig",
      "Sunntig"
    ],
    era_abbreviated => [
      "v. Chr.",
      "n. Chr."
    ],
    era_narrow => [
      "v. Chr.",
      "n. Chr."
    ],
    era_wide => [
      "v. Chr.",
      "n. Chr."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Swiss German",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "M\N{U+00e4}r",
      "Apr",
      "Mai",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Okt",
      "Nov",
      "Dez"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januar",
      "Februar",
      "M\N{U+00e4}rz",
      "April",
      "Mai",
      "Juni",
      "Juli",
      "Auguscht",
      "Sept\N{U+00e4}mber",
      "Oktoober",
      "Nov\N{U+00e4}mber",
      "Dez\N{U+00e4}mber"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "M\N{U+00e4}r",
      "Apr",
      "Mai",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Okt",
      "Nov",
      "Dez"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januar",
      "Februar",
      "M\N{U+00e4}rz",
      "April",
      "Mai",
      "Juni",
      "Juli",
      "Auguscht",
      "Sept\N{U+00e4}mber",
      "Oktoober",
      "Nov\N{U+00e4}mber",
      "Dez\N{U+00e4}mber"
    ],
    name => "Swiss German Liechtenstein",
    native_language => "Schwiizert\N{U+00fc}\N{U+00fc}tsch",
    native_name => "Schwiizert\N{U+00fc}\N{U+00fc}tsch Li\N{U+00e4}chtescht\N{U+00e4}i",
    native_script => undef,
    native_territory => "Li\N{U+00e4}chtescht\N{U+00e4}i",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. Quartal",
      "2. Quartal",
      "3. Quartal",
      "4. Quartal"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. Quartal",
      "2. Quartal",
      "3. Quartal",
      "4. Quartal"
    ],
    script => undef,
    territory => "Liechtenstein",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ gu ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "MMM, G y",
      GyMMMEd => "E, d MMM, G y",
      GyMMMd => "d MMM, G y",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd-MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMM => "MM-y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM, y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM, y",
      yMd => "d/M/y",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "gu",
    date_format_full => "EEEE, d MMMM, y",
    date_format_long => "d MMMM, y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0ab8}\N{U+0acb}\N{U+0aae}",
      "\N{U+0aae}\N{U+0a82}\N{U+0a97}\N{U+0ab3}",
      "\N{U+0aac}\N{U+0ac1}\N{U+0aa7}",
      "\N{U+0a97}\N{U+0ac1}\N{U+0ab0}\N{U+0ac1}",
      "\N{U+0ab6}\N{U+0ac1}\N{U+0a95}\N{U+0acd}\N{U+0ab0}",
      "\N{U+0ab6}\N{U+0aa8}\N{U+0abf}",
      "\N{U+0ab0}\N{U+0ab5}\N{U+0abf}"
    ],
    day_format_narrow => [
      "\N{U+0ab8}\N{U+0acb}",
      "\N{U+0aae}\N{U+0a82}",
      "\N{U+0aac}\N{U+0ac1}",
      "\N{U+0a97}\N{U+0ac1}",
      "\N{U+0ab6}\N{U+0ac1}",
      "\N{U+0ab6}",
      "\N{U+0ab0}"
    ],
    day_format_wide => [
      "\N{U+0ab8}\N{U+0acb}\N{U+0aae}\N{U+0ab5}\N{U+0abe}\N{U+0ab0}",
      "\N{U+0aae}\N{U+0a82}\N{U+0a97}\N{U+0ab3}\N{U+0ab5}\N{U+0abe}\N{U+0ab0}",
      "\N{U+0aac}\N{U+0ac1}\N{U+0aa7}\N{U+0ab5}\N{U+0abe}\N{U+0ab0}",
      "\N{U+0a97}\N{U+0ac1}\N{U+0ab0}\N{U+0ac1}\N{U+0ab5}\N{U+0abe}\N{U+0ab0}",
      "\N{U+0ab6}\N{U+0ac1}\N{U+0a95}\N{U+0acd}\N{U+0ab0}\N{U+0ab5}\N{U+0abe}\N{U+0ab0}",
      "\N{U+0ab6}\N{U+0aa8}\N{U+0abf}\N{U+0ab5}\N{U+0abe}\N{U+0ab0}",
      "\N{U+0ab0}\N{U+0ab5}\N{U+0abf}\N{U+0ab5}\N{U+0abe}\N{U+0ab0}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0ab8}\N{U+0acb}\N{U+0aae}",
      "\N{U+0aae}\N{U+0a82}\N{U+0a97}\N{U+0ab3}",
      "\N{U+0aac}\N{U+0ac1}\N{U+0aa7}",
      "\N{U+0a97}\N{U+0ac1}\N{U+0ab0}\N{U+0ac1}",
      "\N{U+0ab6}\N{U+0ac1}\N{U+0a95}\N{U+0acd}\N{U+0ab0}",
      "\N{U+0ab6}\N{U+0aa8}\N{U+0abf}",
      "\N{U+0ab0}\N{U+0ab5}\N{U+0abf}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0ab8}\N{U+0acb}",
      "\N{U+0aae}\N{U+0a82}",
      "\N{U+0aac}\N{U+0ac1}",
      "\N{U+0a97}\N{U+0ac1}",
      "\N{U+0ab6}\N{U+0ac1}",
      "\N{U+0ab6}",
      "\N{U+0ab0}"
    ],
    day_stand_alone_wide => [
      "\N{U+0ab8}\N{U+0acb}\N{U+0aae}\N{U+0ab5}\N{U+0abe}\N{U+0ab0}",
      "\N{U+0aae}\N{U+0a82}\N{U+0a97}\N{U+0ab3}\N{U+0ab5}\N{U+0abe}\N{U+0ab0}",
      "\N{U+0aac}\N{U+0ac1}\N{U+0aa7}\N{U+0ab5}\N{U+0abe}\N{U+0ab0}",
      "\N{U+0a97}\N{U+0ac1}\N{U+0ab0}\N{U+0ac1}\N{U+0ab5}\N{U+0abe}\N{U+0ab0}",
      "\N{U+0ab6}\N{U+0ac1}\N{U+0a95}\N{U+0acd}\N{U+0ab0}\N{U+0ab5}\N{U+0abe}\N{U+0ab0}",
      "\N{U+0ab6}\N{U+0aa8}\N{U+0abf}\N{U+0ab5}\N{U+0abe}\N{U+0ab0}",
      "\N{U+0ab0}\N{U+0ab5}\N{U+0abf}\N{U+0ab5}\N{U+0abe}\N{U+0ab0}"
    ],
    era_abbreviated => [
      "\N{U+0a88}.\N{U+0ab8}.\N{U+0aaa}\N{U+0ac2}\N{U+0ab0}\N{U+0acd}\N{U+0ab5}\N{U+0ac7}",
      "\N{U+0a88}.\N{U+0ab8}."
    ],
    era_narrow => [
      "\N{U+0a87} \N{U+0ab8} \N{U+0aaa}\N{U+0ac1}",
      "\N{U+0a87}\N{U+0ab8}"
    ],
    era_wide => [
      "\N{U+0a88}\N{U+0ab8}\N{U+0ab5}\N{U+0ac0}\N{U+0ab8}\N{U+0aa8} \N{U+0aaa}\N{U+0ac2}\N{U+0ab0}\N{U+0acd}\N{U+0ab5}\N{U+0ac7}",
      "\N{U+0a87}\N{U+0ab8}\N{U+0ab5}\N{U+0ac0}\N{U+0ab8}\N{U+0aa8}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Gujarati",
    month_format_abbreviated => [
      "\N{U+0a9c}\N{U+0abe}\N{U+0aa8}\N{U+0acd}\N{U+0aaf}\N{U+0ac1}",
      "\N{U+0aab}\N{U+0ac7}\N{U+0aac}\N{U+0acd}\N{U+0ab0}\N{U+0ac1}",
      "\N{U+0aae}\N{U+0abe}\N{U+0ab0}\N{U+0acd}\N{U+0a9a}",
      "\N{U+0a8f}\N{U+0aaa}\N{U+0acd}\N{U+0ab0}\N{U+0abf}\N{U+0ab2}",
      "\N{U+0aae}\N{U+0ac7}",
      "\N{U+0a9c}\N{U+0ac2}\N{U+0aa8}",
      "\N{U+0a9c}\N{U+0ac1}\N{U+0ab2}\N{U+0abe}\N{U+0a88}",
      "\N{U+0a91}\N{U+0a97}\N{U+0ab8}\N{U+0acd}\N{U+0a9f}",
      "\N{U+0ab8}\N{U+0aaa}\N{U+0acd}\N{U+0a9f}\N{U+0ac7}",
      "\N{U+0a91}\N{U+0a95}\N{U+0acd}\N{U+0a9f}\N{U+0acb}",
      "\N{U+0aa8}\N{U+0ab5}\N{U+0ac7}",
      "\N{U+0aa1}\N{U+0abf}\N{U+0ab8}\N{U+0ac7}"
    ],
    month_format_narrow => [
      "\N{U+0a9c}\N{U+0abe}",
      "\N{U+0aab}\N{U+0ac7}",
      "\N{U+0aae}\N{U+0abe}",
      "\N{U+0a8f}",
      "\N{U+0aae}\N{U+0ac7}",
      "\N{U+0a9c}\N{U+0ac2}",
      "\N{U+0a9c}\N{U+0ac1}",
      "\N{U+0a91}",
      "\N{U+0ab8}",
      "\N{U+0a91}",
      "\N{U+0aa8}",
      "\N{U+0aa1}\N{U+0abf}"
    ],
    month_format_wide => [
      "\N{U+0a9c}\N{U+0abe}\N{U+0aa8}\N{U+0acd}\N{U+0aaf}\N{U+0ac1}\N{U+0a86}\N{U+0ab0}\N{U+0ac0}",
      "\N{U+0aab}\N{U+0ac7}\N{U+0aac}\N{U+0acd}\N{U+0ab0}\N{U+0ac1}\N{U+0a86}\N{U+0ab0}\N{U+0ac0}",
      "\N{U+0aae}\N{U+0abe}\N{U+0ab0}\N{U+0acd}\N{U+0a9a}",
      "\N{U+0a8f}\N{U+0aaa}\N{U+0acd}\N{U+0ab0}\N{U+0abf}\N{U+0ab2}",
      "\N{U+0aae}\N{U+0ac7}",
      "\N{U+0a9c}\N{U+0ac2}\N{U+0aa8}",
      "\N{U+0a9c}\N{U+0ac1}\N{U+0ab2}\N{U+0abe}\N{U+0a88}",
      "\N{U+0a91}\N{U+0a97}\N{U+0ab8}\N{U+0acd}\N{U+0a9f}",
      "\N{U+0ab8}\N{U+0aaa}\N{U+0acd}\N{U+0a9f}\N{U+0ac7}\N{U+0aae}\N{U+0acd}\N{U+0aac}\N{U+0ab0}",
      "\N{U+0a91}\N{U+0a95}\N{U+0acd}\N{U+0a9f}\N{U+0acb}\N{U+0aac}\N{U+0ab0}",
      "\N{U+0aa8}\N{U+0ab5}\N{U+0ac7}\N{U+0aae}\N{U+0acd}\N{U+0aac}\N{U+0ab0}",
      "\N{U+0aa1}\N{U+0abf}\N{U+0ab8}\N{U+0ac7}\N{U+0aae}\N{U+0acd}\N{U+0aac}\N{U+0ab0}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0a9c}\N{U+0abe}\N{U+0aa8}\N{U+0acd}\N{U+0aaf}\N{U+0ac1}",
      "\N{U+0aab}\N{U+0ac7}\N{U+0aac}\N{U+0acd}\N{U+0ab0}\N{U+0ac1}",
      "\N{U+0aae}\N{U+0abe}\N{U+0ab0}\N{U+0acd}\N{U+0a9a}",
      "\N{U+0a8f}\N{U+0aaa}\N{U+0acd}\N{U+0ab0}\N{U+0abf}\N{U+0ab2}",
      "\N{U+0aae}\N{U+0ac7}",
      "\N{U+0a9c}\N{U+0ac2}\N{U+0aa8}",
      "\N{U+0a9c}\N{U+0ac1}\N{U+0ab2}\N{U+0abe}\N{U+0a88}",
      "\N{U+0a91}\N{U+0a97}\N{U+0ab8}\N{U+0acd}\N{U+0a9f}",
      "\N{U+0ab8}\N{U+0aaa}\N{U+0acd}\N{U+0a9f}\N{U+0ac7}",
      "\N{U+0a91}\N{U+0a95}\N{U+0acd}\N{U+0a9f}\N{U+0acb}",
      "\N{U+0aa8}\N{U+0ab5}\N{U+0ac7}",
      "\N{U+0aa1}\N{U+0abf}\N{U+0ab8}\N{U+0ac7}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0a9c}\N{U+0abe}",
      "\N{U+0aab}\N{U+0ac7}",
      "\N{U+0aae}\N{U+0abe}",
      "\N{U+0a8f}",
      "\N{U+0aae}\N{U+0ac7}",
      "\N{U+0a9c}\N{U+0ac2}",
      "\N{U+0a9c}\N{U+0ac1}",
      "\N{U+0a91}",
      "\N{U+0ab8}",
      "\N{U+0a91}",
      "\N{U+0aa8}",
      "\N{U+0aa1}\N{U+0abf}"
    ],
    month_stand_alone_wide => [
      "\N{U+0a9c}\N{U+0abe}\N{U+0aa8}\N{U+0acd}\N{U+0aaf}\N{U+0ac1}\N{U+0a86}\N{U+0ab0}\N{U+0ac0}",
      "\N{U+0aab}\N{U+0ac7}\N{U+0aac}\N{U+0acd}\N{U+0ab0}\N{U+0ac1}\N{U+0a86}\N{U+0ab0}\N{U+0ac0}",
      "\N{U+0aae}\N{U+0abe}\N{U+0ab0}\N{U+0acd}\N{U+0a9a}",
      "\N{U+0a8f}\N{U+0aaa}\N{U+0acd}\N{U+0ab0}\N{U+0abf}\N{U+0ab2}",
      "\N{U+0aae}\N{U+0ac7}",
      "\N{U+0a9c}\N{U+0ac2}\N{U+0aa8}",
      "\N{U+0a9c}\N{U+0ac1}\N{U+0ab2}\N{U+0abe}\N{U+0a88}",
      "\N{U+0a91}\N{U+0a97}\N{U+0ab8}\N{U+0acd}\N{U+0a9f}",
      "\N{U+0ab8}\N{U+0aaa}\N{U+0acd}\N{U+0a9f}\N{U+0ac7}\N{U+0aae}\N{U+0acd}\N{U+0aac}\N{U+0ab0}",
      "\N{U+0a91}\N{U+0a95}\N{U+0acd}\N{U+0a9f}\N{U+0acb}\N{U+0aac}\N{U+0ab0}",
      "\N{U+0aa8}\N{U+0ab5}\N{U+0ac7}\N{U+0aae}\N{U+0acd}\N{U+0aac}\N{U+0ab0}",
      "\N{U+0aa1}\N{U+0abf}\N{U+0ab8}\N{U+0ac7}\N{U+0aae}\N{U+0acd}\N{U+0aac}\N{U+0ab0}"
    ],
    name => "Gujarati",
    native_language => "\N{U+0a97}\N{U+0ac1}\N{U+0a9c}\N{U+0ab0}\N{U+0abe}\N{U+0aa4}\N{U+0ac0}",
    native_name => "\N{U+0a97}\N{U+0ac1}\N{U+0a9c}\N{U+0ab0}\N{U+0abe}\N{U+0aa4}\N{U+0ac0}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+0aaa}\N{U+0ab9}\N{U+0ac7}\N{U+0ab2}\N{U+0acb} \N{U+0aa4}\N{U+0acd}\N{U+0ab0}\N{U+0abf}\N{U+0aae}\N{U+0abe}\N{U+0ab8}",
      "\N{U+0aac}\N{U+0ac0}\N{U+0a9c}\N{U+0acb} \N{U+0aa4}\N{U+0acd}\N{U+0ab0}\N{U+0abf}\N{U+0aae}\N{U+0abe}\N{U+0ab8}",
      "\N{U+0aa4}\N{U+0acd}\N{U+0ab0}\N{U+0ac0}\N{U+0a9c}\N{U+0acb} \N{U+0aa4}\N{U+0acd}\N{U+0ab0}\N{U+0abf}\N{U+0aae}\N{U+0abe}\N{U+0ab8}",
      "\N{U+0a9a}\N{U+0acb}\N{U+0aa5}\N{U+0acb} \N{U+0aa4}\N{U+0acd}\N{U+0ab0}\N{U+0abf}\N{U+0aae}\N{U+0abe}\N{U+0ab8}"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+0aaa}\N{U+0ab9}\N{U+0ac7}\N{U+0ab2}\N{U+0acb} \N{U+0aa4}\N{U+0acd}\N{U+0ab0}\N{U+0abf}\N{U+0aae}\N{U+0abe}\N{U+0ab8}",
      "\N{U+0aac}\N{U+0ac0}\N{U+0a9c}\N{U+0acb} \N{U+0aa4}\N{U+0acd}\N{U+0ab0}\N{U+0abf}\N{U+0aae}\N{U+0abe}\N{U+0ab8}",
      "\N{U+0aa4}\N{U+0acd}\N{U+0ab0}\N{U+0ac0}\N{U+0a9c}\N{U+0acb} \N{U+0aa4}\N{U+0acd}\N{U+0ab0}\N{U+0abf}\N{U+0aae}\N{U+0abe}\N{U+0ab8}",
      "\N{U+0a9a}\N{U+0acb}\N{U+0aa5}\N{U+0acb} \N{U+0aa4}\N{U+0acd}\N{U+0ab0}\N{U+0abf}\N{U+0aae}\N{U+0abe}\N{U+0ab8}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "hh:mm:ss a zzzz",
    time_format_long => "hh:mm:ss a z",
    time_format_medium => "hh:mm:ss a",
    time_format_short => "hh:mm a",
    variant => undef,
    version => 28
  }
  __[ gu-IN ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "MMM, G y",
      GyMMMEd => "E, d MMM, G y",
      GyMMMd => "d MMM, G y",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd-MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMM => "MM-y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM, y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM, y",
      yMd => "d/M/y",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "gu-IN",
    date_format_full => "EEEE, d MMMM, y",
    date_format_long => "d MMMM, y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0ab8}\N{U+0acb}\N{U+0aae}",
      "\N{U+0aae}\N{U+0a82}\N{U+0a97}\N{U+0ab3}",
      "\N{U+0aac}\N{U+0ac1}\N{U+0aa7}",
      "\N{U+0a97}\N{U+0ac1}\N{U+0ab0}\N{U+0ac1}",
      "\N{U+0ab6}\N{U+0ac1}\N{U+0a95}\N{U+0acd}\N{U+0ab0}",
      "\N{U+0ab6}\N{U+0aa8}\N{U+0abf}",
      "\N{U+0ab0}\N{U+0ab5}\N{U+0abf}"
    ],
    day_format_narrow => [
      "\N{U+0ab8}\N{U+0acb}",
      "\N{U+0aae}\N{U+0a82}",
      "\N{U+0aac}\N{U+0ac1}",
      "\N{U+0a97}\N{U+0ac1}",
      "\N{U+0ab6}\N{U+0ac1}",
      "\N{U+0ab6}",
      "\N{U+0ab0}"
    ],
    day_format_wide => [
      "\N{U+0ab8}\N{U+0acb}\N{U+0aae}\N{U+0ab5}\N{U+0abe}\N{U+0ab0}",
      "\N{U+0aae}\N{U+0a82}\N{U+0a97}\N{U+0ab3}\N{U+0ab5}\N{U+0abe}\N{U+0ab0}",
      "\N{U+0aac}\N{U+0ac1}\N{U+0aa7}\N{U+0ab5}\N{U+0abe}\N{U+0ab0}",
      "\N{U+0a97}\N{U+0ac1}\N{U+0ab0}\N{U+0ac1}\N{U+0ab5}\N{U+0abe}\N{U+0ab0}",
      "\N{U+0ab6}\N{U+0ac1}\N{U+0a95}\N{U+0acd}\N{U+0ab0}\N{U+0ab5}\N{U+0abe}\N{U+0ab0}",
      "\N{U+0ab6}\N{U+0aa8}\N{U+0abf}\N{U+0ab5}\N{U+0abe}\N{U+0ab0}",
      "\N{U+0ab0}\N{U+0ab5}\N{U+0abf}\N{U+0ab5}\N{U+0abe}\N{U+0ab0}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0ab8}\N{U+0acb}\N{U+0aae}",
      "\N{U+0aae}\N{U+0a82}\N{U+0a97}\N{U+0ab3}",
      "\N{U+0aac}\N{U+0ac1}\N{U+0aa7}",
      "\N{U+0a97}\N{U+0ac1}\N{U+0ab0}\N{U+0ac1}",
      "\N{U+0ab6}\N{U+0ac1}\N{U+0a95}\N{U+0acd}\N{U+0ab0}",
      "\N{U+0ab6}\N{U+0aa8}\N{U+0abf}",
      "\N{U+0ab0}\N{U+0ab5}\N{U+0abf}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0ab8}\N{U+0acb}",
      "\N{U+0aae}\N{U+0a82}",
      "\N{U+0aac}\N{U+0ac1}",
      "\N{U+0a97}\N{U+0ac1}",
      "\N{U+0ab6}\N{U+0ac1}",
      "\N{U+0ab6}",
      "\N{U+0ab0}"
    ],
    day_stand_alone_wide => [
      "\N{U+0ab8}\N{U+0acb}\N{U+0aae}\N{U+0ab5}\N{U+0abe}\N{U+0ab0}",
      "\N{U+0aae}\N{U+0a82}\N{U+0a97}\N{U+0ab3}\N{U+0ab5}\N{U+0abe}\N{U+0ab0}",
      "\N{U+0aac}\N{U+0ac1}\N{U+0aa7}\N{U+0ab5}\N{U+0abe}\N{U+0ab0}",
      "\N{U+0a97}\N{U+0ac1}\N{U+0ab0}\N{U+0ac1}\N{U+0ab5}\N{U+0abe}\N{U+0ab0}",
      "\N{U+0ab6}\N{U+0ac1}\N{U+0a95}\N{U+0acd}\N{U+0ab0}\N{U+0ab5}\N{U+0abe}\N{U+0ab0}",
      "\N{U+0ab6}\N{U+0aa8}\N{U+0abf}\N{U+0ab5}\N{U+0abe}\N{U+0ab0}",
      "\N{U+0ab0}\N{U+0ab5}\N{U+0abf}\N{U+0ab5}\N{U+0abe}\N{U+0ab0}"
    ],
    era_abbreviated => [
      "\N{U+0a88}.\N{U+0ab8}.\N{U+0aaa}\N{U+0ac2}\N{U+0ab0}\N{U+0acd}\N{U+0ab5}\N{U+0ac7}",
      "\N{U+0a88}.\N{U+0ab8}."
    ],
    era_narrow => [
      "\N{U+0a87} \N{U+0ab8} \N{U+0aaa}\N{U+0ac1}",
      "\N{U+0a87}\N{U+0ab8}"
    ],
    era_wide => [
      "\N{U+0a88}\N{U+0ab8}\N{U+0ab5}\N{U+0ac0}\N{U+0ab8}\N{U+0aa8} \N{U+0aaa}\N{U+0ac2}\N{U+0ab0}\N{U+0acd}\N{U+0ab5}\N{U+0ac7}",
      "\N{U+0a87}\N{U+0ab8}\N{U+0ab5}\N{U+0ac0}\N{U+0ab8}\N{U+0aa8}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%A %d %b %Y",
    glibc_datetime_format => "%A %d %b %Y %I:%M:%S %p %Z",
    glibc_time_12_format => "%I:%M:%S %p %Z",
    glibc_time_format => "%I:%M:%S  %Z",
    language => "Gujarati",
    month_format_abbreviated => [
      "\N{U+0a9c}\N{U+0abe}\N{U+0aa8}\N{U+0acd}\N{U+0aaf}\N{U+0ac1}",
      "\N{U+0aab}\N{U+0ac7}\N{U+0aac}\N{U+0acd}\N{U+0ab0}\N{U+0ac1}",
      "\N{U+0aae}\N{U+0abe}\N{U+0ab0}\N{U+0acd}\N{U+0a9a}",
      "\N{U+0a8f}\N{U+0aaa}\N{U+0acd}\N{U+0ab0}\N{U+0abf}\N{U+0ab2}",
      "\N{U+0aae}\N{U+0ac7}",
      "\N{U+0a9c}\N{U+0ac2}\N{U+0aa8}",
      "\N{U+0a9c}\N{U+0ac1}\N{U+0ab2}\N{U+0abe}\N{U+0a88}",
      "\N{U+0a91}\N{U+0a97}\N{U+0ab8}\N{U+0acd}\N{U+0a9f}",
      "\N{U+0ab8}\N{U+0aaa}\N{U+0acd}\N{U+0a9f}\N{U+0ac7}",
      "\N{U+0a91}\N{U+0a95}\N{U+0acd}\N{U+0a9f}\N{U+0acb}",
      "\N{U+0aa8}\N{U+0ab5}\N{U+0ac7}",
      "\N{U+0aa1}\N{U+0abf}\N{U+0ab8}\N{U+0ac7}"
    ],
    month_format_narrow => [
      "\N{U+0a9c}\N{U+0abe}",
      "\N{U+0aab}\N{U+0ac7}",
      "\N{U+0aae}\N{U+0abe}",
      "\N{U+0a8f}",
      "\N{U+0aae}\N{U+0ac7}",
      "\N{U+0a9c}\N{U+0ac2}",
      "\N{U+0a9c}\N{U+0ac1}",
      "\N{U+0a91}",
      "\N{U+0ab8}",
      "\N{U+0a91}",
      "\N{U+0aa8}",
      "\N{U+0aa1}\N{U+0abf}"
    ],
    month_format_wide => [
      "\N{U+0a9c}\N{U+0abe}\N{U+0aa8}\N{U+0acd}\N{U+0aaf}\N{U+0ac1}\N{U+0a86}\N{U+0ab0}\N{U+0ac0}",
      "\N{U+0aab}\N{U+0ac7}\N{U+0aac}\N{U+0acd}\N{U+0ab0}\N{U+0ac1}\N{U+0a86}\N{U+0ab0}\N{U+0ac0}",
      "\N{U+0aae}\N{U+0abe}\N{U+0ab0}\N{U+0acd}\N{U+0a9a}",
      "\N{U+0a8f}\N{U+0aaa}\N{U+0acd}\N{U+0ab0}\N{U+0abf}\N{U+0ab2}",
      "\N{U+0aae}\N{U+0ac7}",
      "\N{U+0a9c}\N{U+0ac2}\N{U+0aa8}",
      "\N{U+0a9c}\N{U+0ac1}\N{U+0ab2}\N{U+0abe}\N{U+0a88}",
      "\N{U+0a91}\N{U+0a97}\N{U+0ab8}\N{U+0acd}\N{U+0a9f}",
      "\N{U+0ab8}\N{U+0aaa}\N{U+0acd}\N{U+0a9f}\N{U+0ac7}\N{U+0aae}\N{U+0acd}\N{U+0aac}\N{U+0ab0}",
      "\N{U+0a91}\N{U+0a95}\N{U+0acd}\N{U+0a9f}\N{U+0acb}\N{U+0aac}\N{U+0ab0}",
      "\N{U+0aa8}\N{U+0ab5}\N{U+0ac7}\N{U+0aae}\N{U+0acd}\N{U+0aac}\N{U+0ab0}",
      "\N{U+0aa1}\N{U+0abf}\N{U+0ab8}\N{U+0ac7}\N{U+0aae}\N{U+0acd}\N{U+0aac}\N{U+0ab0}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0a9c}\N{U+0abe}\N{U+0aa8}\N{U+0acd}\N{U+0aaf}\N{U+0ac1}",
      "\N{U+0aab}\N{U+0ac7}\N{U+0aac}\N{U+0acd}\N{U+0ab0}\N{U+0ac1}",
      "\N{U+0aae}\N{U+0abe}\N{U+0ab0}\N{U+0acd}\N{U+0a9a}",
      "\N{U+0a8f}\N{U+0aaa}\N{U+0acd}\N{U+0ab0}\N{U+0abf}\N{U+0ab2}",
      "\N{U+0aae}\N{U+0ac7}",
      "\N{U+0a9c}\N{U+0ac2}\N{U+0aa8}",
      "\N{U+0a9c}\N{U+0ac1}\N{U+0ab2}\N{U+0abe}\N{U+0a88}",
      "\N{U+0a91}\N{U+0a97}\N{U+0ab8}\N{U+0acd}\N{U+0a9f}",
      "\N{U+0ab8}\N{U+0aaa}\N{U+0acd}\N{U+0a9f}\N{U+0ac7}",
      "\N{U+0a91}\N{U+0a95}\N{U+0acd}\N{U+0a9f}\N{U+0acb}",
      "\N{U+0aa8}\N{U+0ab5}\N{U+0ac7}",
      "\N{U+0aa1}\N{U+0abf}\N{U+0ab8}\N{U+0ac7}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0a9c}\N{U+0abe}",
      "\N{U+0aab}\N{U+0ac7}",
      "\N{U+0aae}\N{U+0abe}",
      "\N{U+0a8f}",
      "\N{U+0aae}\N{U+0ac7}",
      "\N{U+0a9c}\N{U+0ac2}",
      "\N{U+0a9c}\N{U+0ac1}",
      "\N{U+0a91}",
      "\N{U+0ab8}",
      "\N{U+0a91}",
      "\N{U+0aa8}",
      "\N{U+0aa1}\N{U+0abf}"
    ],
    month_stand_alone_wide => [
      "\N{U+0a9c}\N{U+0abe}\N{U+0aa8}\N{U+0acd}\N{U+0aaf}\N{U+0ac1}\N{U+0a86}\N{U+0ab0}\N{U+0ac0}",
      "\N{U+0aab}\N{U+0ac7}\N{U+0aac}\N{U+0acd}\N{U+0ab0}\N{U+0ac1}\N{U+0a86}\N{U+0ab0}\N{U+0ac0}",
      "\N{U+0aae}\N{U+0abe}\N{U+0ab0}\N{U+0acd}\N{U+0a9a}",
      "\N{U+0a8f}\N{U+0aaa}\N{U+0acd}\N{U+0ab0}\N{U+0abf}\N{U+0ab2}",
      "\N{U+0aae}\N{U+0ac7}",
      "\N{U+0a9c}\N{U+0ac2}\N{U+0aa8}",
      "\N{U+0a9c}\N{U+0ac1}\N{U+0ab2}\N{U+0abe}\N{U+0a88}",
      "\N{U+0a91}\N{U+0a97}\N{U+0ab8}\N{U+0acd}\N{U+0a9f}",
      "\N{U+0ab8}\N{U+0aaa}\N{U+0acd}\N{U+0a9f}\N{U+0ac7}\N{U+0aae}\N{U+0acd}\N{U+0aac}\N{U+0ab0}",
      "\N{U+0a91}\N{U+0a95}\N{U+0acd}\N{U+0a9f}\N{U+0acb}\N{U+0aac}\N{U+0ab0}",
      "\N{U+0aa8}\N{U+0ab5}\N{U+0ac7}\N{U+0aae}\N{U+0acd}\N{U+0aac}\N{U+0ab0}",
      "\N{U+0aa1}\N{U+0abf}\N{U+0ab8}\N{U+0ac7}\N{U+0aae}\N{U+0acd}\N{U+0aac}\N{U+0ab0}"
    ],
    name => "Gujarati India",
    native_language => "\N{U+0a97}\N{U+0ac1}\N{U+0a9c}\N{U+0ab0}\N{U+0abe}\N{U+0aa4}\N{U+0ac0}",
    native_name => "\N{U+0a97}\N{U+0ac1}\N{U+0a9c}\N{U+0ab0}\N{U+0abe}\N{U+0aa4}\N{U+0ac0} \N{U+0aad}\N{U+0abe}\N{U+0ab0}\N{U+0aa4}",
    native_script => undef,
    native_territory => "\N{U+0aad}\N{U+0abe}\N{U+0ab0}\N{U+0aa4}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+0aaa}\N{U+0ab9}\N{U+0ac7}\N{U+0ab2}\N{U+0acb} \N{U+0aa4}\N{U+0acd}\N{U+0ab0}\N{U+0abf}\N{U+0aae}\N{U+0abe}\N{U+0ab8}",
      "\N{U+0aac}\N{U+0ac0}\N{U+0a9c}\N{U+0acb} \N{U+0aa4}\N{U+0acd}\N{U+0ab0}\N{U+0abf}\N{U+0aae}\N{U+0abe}\N{U+0ab8}",
      "\N{U+0aa4}\N{U+0acd}\N{U+0ab0}\N{U+0ac0}\N{U+0a9c}\N{U+0acb} \N{U+0aa4}\N{U+0acd}\N{U+0ab0}\N{U+0abf}\N{U+0aae}\N{U+0abe}\N{U+0ab8}",
      "\N{U+0a9a}\N{U+0acb}\N{U+0aa5}\N{U+0acb} \N{U+0aa4}\N{U+0acd}\N{U+0ab0}\N{U+0abf}\N{U+0aae}\N{U+0abe}\N{U+0ab8}"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+0aaa}\N{U+0ab9}\N{U+0ac7}\N{U+0ab2}\N{U+0acb} \N{U+0aa4}\N{U+0acd}\N{U+0ab0}\N{U+0abf}\N{U+0aae}\N{U+0abe}\N{U+0ab8}",
      "\N{U+0aac}\N{U+0ac0}\N{U+0a9c}\N{U+0acb} \N{U+0aa4}\N{U+0acd}\N{U+0ab0}\N{U+0abf}\N{U+0aae}\N{U+0abe}\N{U+0ab8}",
      "\N{U+0aa4}\N{U+0acd}\N{U+0ab0}\N{U+0ac0}\N{U+0a9c}\N{U+0acb} \N{U+0aa4}\N{U+0acd}\N{U+0ab0}\N{U+0abf}\N{U+0aae}\N{U+0abe}\N{U+0ab8}",
      "\N{U+0a9a}\N{U+0acb}\N{U+0aa5}\N{U+0acb} \N{U+0aa4}\N{U+0acd}\N{U+0ab0}\N{U+0abf}\N{U+0aae}\N{U+0abe}\N{U+0ab8}"
    ],
    script => undef,
    territory => "India",
    time_format_full => "hh:mm:ss a zzzz",
    time_format_long => "hh:mm:ss a z",
    time_format_medium => "hh:mm:ss a",
    time_format_short => "hh:mm a",
    variant => undef,
    version => 28
  }
  __[ guz ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "guz",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Ctt",
      "Cmn",
      "Cmt",
      "Ars",
      "Icm",
      "Est",
      "Cpr"
    ],
    day_format_narrow => [
      "C",
      "C",
      "C",
      "A",
      "I",
      "E",
      "C"
    ],
    day_format_wide => [
      "Chumatato",
      "Chumaine",
      "Chumatano",
      "Aramisi",
      "Ichuma",
      "Esabato",
      "Chumapiri"
    ],
    day_stand_alone_abbreviated => [
      "Ctt",
      "Cmn",
      "Cmt",
      "Ars",
      "Icm",
      "Est",
      "Cpr"
    ],
    day_stand_alone_narrow => [
      "C",
      "C",
      "C",
      "A",
      "I",
      "E",
      "C"
    ],
    day_stand_alone_wide => [
      "Chumatato",
      "Chumaine",
      "Chumatano",
      "Aramisi",
      "Ichuma",
      "Esabato",
      "Chumapiri"
    ],
    era_abbreviated => [
      "YA",
      "YK"
    ],
    era_narrow => [
      "YA",
      "YK"
    ],
    era_wide => [
      "Yeso ataiborwa",
      "Yeso kaiboirwe"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Gusii",
    month_format_abbreviated => [
      "Can",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Cul",
      "Agt",
      "Sep",
      "Okt",
      "Nob",
      "Dis"
    ],
    month_format_narrow => [
      "C",
      "F",
      "M",
      "A",
      "M",
      "J",
      "C",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Chanuari",
      "Feburari",
      "Machi",
      "Apiriri",
      "Mei",
      "Juni",
      "Chulai",
      "Agosti",
      "Septemba",
      "Okitoba",
      "Nobemba",
      "Disemba"
    ],
    month_stand_alone_abbreviated => [
      "Can",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Cul",
      "Agt",
      "Sep",
      "Okt",
      "Nob",
      "Dis"
    ],
    month_stand_alone_narrow => [
      "C",
      "F",
      "M",
      "A",
      "M",
      "J",
      "C",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Chanuari",
      "Feburari",
      "Machi",
      "Apiriri",
      "Mei",
      "Juni",
      "Chulai",
      "Agosti",
      "Septemba",
      "Okitoba",
      "Nobemba",
      "Disemba"
    ],
    name => "Gusii",
    native_language => "Ekegusii",
    native_name => "Ekegusii",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "E1",
      "E2",
      "E3",
      "E4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Erobo entang\N{U+2019}ani",
      "Erobo yakabere",
      "Erobo yagatato",
      "Erobo yakane"
    ],
    quarter_stand_alone_abbreviated => [
      "E1",
      "E2",
      "E3",
      "E4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Erobo entang\N{U+2019}ani",
      "Erobo yakabere",
      "Erobo yagatato",
      "Erobo yakane"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ guz-KE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "guz-KE",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Ctt",
      "Cmn",
      "Cmt",
      "Ars",
      "Icm",
      "Est",
      "Cpr"
    ],
    day_format_narrow => [
      "C",
      "C",
      "C",
      "A",
      "I",
      "E",
      "C"
    ],
    day_format_wide => [
      "Chumatato",
      "Chumaine",
      "Chumatano",
      "Aramisi",
      "Ichuma",
      "Esabato",
      "Chumapiri"
    ],
    day_stand_alone_abbreviated => [
      "Ctt",
      "Cmn",
      "Cmt",
      "Ars",
      "Icm",
      "Est",
      "Cpr"
    ],
    day_stand_alone_narrow => [
      "C",
      "C",
      "C",
      "A",
      "I",
      "E",
      "C"
    ],
    day_stand_alone_wide => [
      "Chumatato",
      "Chumaine",
      "Chumatano",
      "Aramisi",
      "Ichuma",
      "Esabato",
      "Chumapiri"
    ],
    era_abbreviated => [
      "YA",
      "YK"
    ],
    era_narrow => [
      "YA",
      "YK"
    ],
    era_wide => [
      "Yeso ataiborwa",
      "Yeso kaiboirwe"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Gusii",
    month_format_abbreviated => [
      "Can",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Cul",
      "Agt",
      "Sep",
      "Okt",
      "Nob",
      "Dis"
    ],
    month_format_narrow => [
      "C",
      "F",
      "M",
      "A",
      "M",
      "J",
      "C",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Chanuari",
      "Feburari",
      "Machi",
      "Apiriri",
      "Mei",
      "Juni",
      "Chulai",
      "Agosti",
      "Septemba",
      "Okitoba",
      "Nobemba",
      "Disemba"
    ],
    month_stand_alone_abbreviated => [
      "Can",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Cul",
      "Agt",
      "Sep",
      "Okt",
      "Nob",
      "Dis"
    ],
    month_stand_alone_narrow => [
      "C",
      "F",
      "M",
      "A",
      "M",
      "J",
      "C",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Chanuari",
      "Feburari",
      "Machi",
      "Apiriri",
      "Mei",
      "Juni",
      "Chulai",
      "Agosti",
      "Septemba",
      "Okitoba",
      "Nobemba",
      "Disemba"
    ],
    name => "Gusii Kenya",
    native_language => "Ekegusii",
    native_name => "Ekegusii Kenya",
    native_script => undef,
    native_territory => "Kenya",
    native_variant => undef,
    quarter_format_abbreviated => [
      "E1",
      "E2",
      "E3",
      "E4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Erobo entang\N{U+2019}ani",
      "Erobo yakabere",
      "Erobo yagatato",
      "Erobo yakane"
    ],
    quarter_stand_alone_abbreviated => [
      "E1",
      "E2",
      "E3",
      "E4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Erobo entang\N{U+2019}ani",
      "Erobo yakabere",
      "Erobo yagatato",
      "Erobo yakane"
    ],
    script => undef,
    territory => "Kenya",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ gv ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "gv",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Jel",
      "Jem",
      "Jerc",
      "Jerd",
      "Jeh",
      "Jes",
      "Jed"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Jelhein",
      "Jemayrt",
      "Jercean",
      "Jerdein",
      "Jeheiney",
      "Jesarn",
      "Jedoonee"
    ],
    day_stand_alone_abbreviated => [
      "Jel",
      "Jem",
      "Jerc",
      "Jerd",
      "Jeh",
      "Jes",
      "Jed"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Jelhein",
      "Jemayrt",
      "Jercean",
      "Jerdein",
      "Jeheiney",
      "Jesarn",
      "Jedoonee"
    ],
    era_abbreviated => [
      "RC",
      "AD"
    ],
    era_narrow => [
      "RC",
      "AD"
    ],
    era_wide => [
      "RC",
      "AD"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Manx",
    month_format_abbreviated => [
      "J-guer",
      "T-arree",
      "Mayrnt",
      "Avrril",
      "Boaldyn",
      "M-souree",
      "J-souree",
      "Luanistyn",
      "M-fouyir",
      "J-fouyir",
      "M-Houney",
      "M-Nollick"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Jerrey-geuree",
      "Toshiaght-arree",
      "Mayrnt",
      "Averil",
      "Boaldyn",
      "Mean-souree",
      "Jerrey-souree",
      "Luanistyn",
      "Mean-fouyir",
      "Jerrey-fouyir",
      "Mee Houney",
      "Mee ny Nollick"
    ],
    month_stand_alone_abbreviated => [
      "J-guer",
      "T-arree",
      "Mayrnt",
      "Avrril",
      "Boaldyn",
      "M-souree",
      "J-souree",
      "Luanistyn",
      "M-fouyir",
      "J-fouyir",
      "M-Houney",
      "M-Nollick"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Jerrey-geuree",
      "Toshiaght-arree",
      "Mayrnt",
      "Averil",
      "Boaldyn",
      "Mean-souree",
      "Jerrey-souree",
      "Luanistyn",
      "Mean-fouyir",
      "Jerrey-fouyir",
      "Mee Houney",
      "Mee ny Nollick"
    ],
    name => "Manx",
    native_language => "Gaelg",
    native_name => "Gaelg",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ gv-IM ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "gv-IM",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Jel",
      "Jem",
      "Jerc",
      "Jerd",
      "Jeh",
      "Jes",
      "Jed"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Jelhein",
      "Jemayrt",
      "Jercean",
      "Jerdein",
      "Jeheiney",
      "Jesarn",
      "Jedoonee"
    ],
    day_stand_alone_abbreviated => [
      "Jel",
      "Jem",
      "Jerc",
      "Jerd",
      "Jeh",
      "Jes",
      "Jed"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Jelhein",
      "Jemayrt",
      "Jercean",
      "Jerdein",
      "Jeheiney",
      "Jesarn",
      "Jedoonee"
    ],
    era_abbreviated => [
      "RC",
      "AD"
    ],
    era_narrow => [
      "RC",
      "AD"
    ],
    era_wide => [
      "RC",
      "AD"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Manx",
    month_format_abbreviated => [
      "J-guer",
      "T-arree",
      "Mayrnt",
      "Avrril",
      "Boaldyn",
      "M-souree",
      "J-souree",
      "Luanistyn",
      "M-fouyir",
      "J-fouyir",
      "M-Houney",
      "M-Nollick"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Jerrey-geuree",
      "Toshiaght-arree",
      "Mayrnt",
      "Averil",
      "Boaldyn",
      "Mean-souree",
      "Jerrey-souree",
      "Luanistyn",
      "Mean-fouyir",
      "Jerrey-fouyir",
      "Mee Houney",
      "Mee ny Nollick"
    ],
    month_stand_alone_abbreviated => [
      "J-guer",
      "T-arree",
      "Mayrnt",
      "Avrril",
      "Boaldyn",
      "M-souree",
      "J-souree",
      "Luanistyn",
      "M-fouyir",
      "J-fouyir",
      "M-Houney",
      "M-Nollick"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Jerrey-geuree",
      "Toshiaght-arree",
      "Mayrnt",
      "Averil",
      "Boaldyn",
      "Mean-souree",
      "Jerrey-souree",
      "Luanistyn",
      "Mean-fouyir",
      "Jerrey-fouyir",
      "Mee Houney",
      "Mee ny Nollick"
    ],
    name => "Manx Isle of Man",
    native_language => "Gaelg",
    native_name => "Gaelg Ellan Vannin",
    native_script => undef,
    native_territory => "Ellan Vannin",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "Isle of Man",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ha ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ha",
    date_format_full => "EEEE, d MMMM, y",
    date_format_long => "d MMMM, y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Li",
      "Ta",
      "Lr",
      "Al",
      "Ju",
      "As",
      "Lh"
    ],
    day_format_narrow => [
      "L",
      "T",
      "L",
      "A",
      "J",
      "A",
      "L"
    ],
    day_format_wide => [
      "Litinin",
      "Talata",
      "Laraba",
      "Alhamis",
      "Jumma\N{U+02bc}a",
      "Asabar",
      "Lahadi"
    ],
    day_stand_alone_abbreviated => [
      "Li",
      "Ta",
      "Lr",
      "Al",
      "Ju",
      "As",
      "Lh"
    ],
    day_stand_alone_narrow => [
      "L",
      "T",
      "L",
      "A",
      "J",
      "A",
      "L"
    ],
    day_stand_alone_wide => [
      "Litinin",
      "Talata",
      "Laraba",
      "Alhamis",
      "Jumma\N{U+02bc}a",
      "Asabar",
      "Lahadi"
    ],
    era_abbreviated => [
      "KHAI",
      "BHAI"
    ],
    era_narrow => [
      "KHAI",
      "BHAI"
    ],
    era_wide => [
      "Kafin haihuwar annab",
      "Bayan haihuwar annab"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Hausa",
    month_format_abbreviated => [
      "Jan",
      "Fab",
      "Mar",
      "Afi",
      "May",
      "Yun",
      "Yul",
      "Agu",
      "Sat",
      "Okt",
      "Nuw",
      "Dis"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "Y",
      "Y",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Janairu",
      "Faburairu",
      "Maris",
      "Afirilu",
      "Mayu",
      "Yuni",
      "Yuli",
      "Agusta",
      "Satumba",
      "Oktoba",
      "Nuwamba",
      "Disamba"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Fab",
      "Mar",
      "Afi",
      "May",
      "Yun",
      "Yul",
      "Agu",
      "Sat",
      "Okt",
      "Nuw",
      "Dis"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "Y",
      "Y",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Janairu",
      "Faburairu",
      "Maris",
      "Afirilu",
      "Mayu",
      "Yuni",
      "Yuli",
      "Agusta",
      "Satumba",
      "Oktoba",
      "Nuwamba",
      "Disamba"
    ],
    name => "Hausa",
    native_language => "Hausa",
    native_name => "Hausa",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Kwata na \N{U+0257}aya",
      "Kwata na biyu",
      "Kwata na uku",
      "Kwata na hu\N{U+0257}u"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Kwata na \N{U+0257}aya",
      "Kwata na biyu",
      "Kwata na uku",
      "Kwata na hu\N{U+0257}u"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ha-GH ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ha-GH",
    date_format_full => "EEEE, d MMMM, y",
    date_format_long => "d MMMM, y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Li",
      "Ta",
      "Lr",
      "Al",
      "Ju",
      "As",
      "Lh"
    ],
    day_format_narrow => [
      "L",
      "T",
      "L",
      "A",
      "J",
      "A",
      "L"
    ],
    day_format_wide => [
      "Litinin",
      "Talata",
      "Laraba",
      "Alhamis",
      "Jumma\N{U+02bc}a",
      "Asabar",
      "Lahadi"
    ],
    day_stand_alone_abbreviated => [
      "Li",
      "Ta",
      "Lr",
      "Al",
      "Ju",
      "As",
      "Lh"
    ],
    day_stand_alone_narrow => [
      "L",
      "T",
      "L",
      "A",
      "J",
      "A",
      "L"
    ],
    day_stand_alone_wide => [
      "Litinin",
      "Talata",
      "Laraba",
      "Alhamis",
      "Jumma\N{U+02bc}a",
      "Asabar",
      "Lahadi"
    ],
    era_abbreviated => [
      "KHAI",
      "BHAI"
    ],
    era_narrow => [
      "KHAI",
      "BHAI"
    ],
    era_wide => [
      "Kafin haihuwar annab",
      "Bayan haihuwar annab"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Hausa",
    month_format_abbreviated => [
      "Jan",
      "Fab",
      "Mar",
      "Afi",
      "May",
      "Yun",
      "Yul",
      "Agu",
      "Sat",
      "Okt",
      "Nuw",
      "Dis"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "Y",
      "Y",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Janairu",
      "Faburairu",
      "Maris",
      "Afirilu",
      "Mayu",
      "Yuni",
      "Yuli",
      "Agusta",
      "Satumba",
      "Oktoba",
      "Nuwamba",
      "Disamba"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Fab",
      "Mar",
      "Afi",
      "May",
      "Yun",
      "Yul",
      "Agu",
      "Sat",
      "Okt",
      "Nuw",
      "Dis"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "Y",
      "Y",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Janairu",
      "Faburairu",
      "Maris",
      "Afirilu",
      "Mayu",
      "Yuni",
      "Yuli",
      "Agusta",
      "Satumba",
      "Oktoba",
      "Nuwamba",
      "Disamba"
    ],
    name => "Hausa Ghana",
    native_language => "Hausa",
    native_name => "Hausa Gana",
    native_script => undef,
    native_territory => "Gana",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Kwata na \N{U+0257}aya",
      "Kwata na biyu",
      "Kwata na uku",
      "Kwata na hu\N{U+0257}u"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Kwata na \N{U+0257}aya",
      "Kwata na biyu",
      "Kwata na uku",
      "Kwata na hu\N{U+0257}u"
    ],
    script => undef,
    territory => "Ghana",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ha-NE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ha-NE",
    date_format_full => "EEEE, d MMMM, y",
    date_format_long => "d MMMM, y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Li",
      "Ta",
      "Lr",
      "Al",
      "Ju",
      "As",
      "Lh"
    ],
    day_format_narrow => [
      "L",
      "T",
      "L",
      "A",
      "J",
      "A",
      "L"
    ],
    day_format_wide => [
      "Litinin",
      "Talata",
      "Laraba",
      "Alhamis",
      "Jumma\N{U+02bc}a",
      "Asabar",
      "Lahadi"
    ],
    day_stand_alone_abbreviated => [
      "Li",
      "Ta",
      "Lr",
      "Al",
      "Ju",
      "As",
      "Lh"
    ],
    day_stand_alone_narrow => [
      "L",
      "T",
      "L",
      "A",
      "J",
      "A",
      "L"
    ],
    day_stand_alone_wide => [
      "Litinin",
      "Talata",
      "Laraba",
      "Alhamis",
      "Jumma\N{U+02bc}a",
      "Asabar",
      "Lahadi"
    ],
    era_abbreviated => [
      "KHAI",
      "BHAI"
    ],
    era_narrow => [
      "KHAI",
      "BHAI"
    ],
    era_wide => [
      "Kafin haihuwar annab",
      "Bayan haihuwar annab"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Hausa",
    month_format_abbreviated => [
      "Jan",
      "Fab",
      "Mar",
      "Afi",
      "May",
      "Yun",
      "Yul",
      "Agu",
      "Sat",
      "Okt",
      "Nuw",
      "Dis"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "Y",
      "Y",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Janairu",
      "Faburairu",
      "Maris",
      "Afirilu",
      "Mayu",
      "Yuni",
      "Yuli",
      "Agusta",
      "Satumba",
      "Oktoba",
      "Nuwamba",
      "Disamba"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Fab",
      "Mar",
      "Afi",
      "May",
      "Yun",
      "Yul",
      "Agu",
      "Sat",
      "Okt",
      "Nuw",
      "Dis"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "Y",
      "Y",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Janairu",
      "Faburairu",
      "Maris",
      "Afirilu",
      "Mayu",
      "Yuni",
      "Yuli",
      "Agusta",
      "Satumba",
      "Oktoba",
      "Nuwamba",
      "Disamba"
    ],
    name => "Hausa Niger",
    native_language => "Hausa",
    native_name => "Hausa Nijar",
    native_script => undef,
    native_territory => "Nijar",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Kwata na \N{U+0257}aya",
      "Kwata na biyu",
      "Kwata na uku",
      "Kwata na hu\N{U+0257}u"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Kwata na \N{U+0257}aya",
      "Kwata na biyu",
      "Kwata na uku",
      "Kwata na hu\N{U+0257}u"
    ],
    script => undef,
    territory => "Niger",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ha-NG ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ha-NG",
    date_format_full => "EEEE, d MMMM, y",
    date_format_long => "d MMMM, y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Li",
      "Ta",
      "Lr",
      "Al",
      "Ju",
      "As",
      "Lh"
    ],
    day_format_narrow => [
      "L",
      "T",
      "L",
      "A",
      "J",
      "A",
      "L"
    ],
    day_format_wide => [
      "Litinin",
      "Talata",
      "Laraba",
      "Alhamis",
      "Jumma\N{U+02bc}a",
      "Asabar",
      "Lahadi"
    ],
    day_stand_alone_abbreviated => [
      "Li",
      "Ta",
      "Lr",
      "Al",
      "Ju",
      "As",
      "Lh"
    ],
    day_stand_alone_narrow => [
      "L",
      "T",
      "L",
      "A",
      "J",
      "A",
      "L"
    ],
    day_stand_alone_wide => [
      "Litinin",
      "Talata",
      "Laraba",
      "Alhamis",
      "Jumma\N{U+02bc}a",
      "Asabar",
      "Lahadi"
    ],
    era_abbreviated => [
      "KHAI",
      "BHAI"
    ],
    era_narrow => [
      "KHAI",
      "BHAI"
    ],
    era_wide => [
      "Kafin haihuwar annab",
      "Bayan haihuwar annab"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "ranar %A, %d ga %B cikin %r %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%r",
    language => "Hausa",
    month_format_abbreviated => [
      "Jan",
      "Fab",
      "Mar",
      "Afi",
      "May",
      "Yun",
      "Yul",
      "Agu",
      "Sat",
      "Okt",
      "Nuw",
      "Dis"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "Y",
      "Y",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Janairu",
      "Faburairu",
      "Maris",
      "Afirilu",
      "Mayu",
      "Yuni",
      "Yuli",
      "Agusta",
      "Satumba",
      "Oktoba",
      "Nuwamba",
      "Disamba"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Fab",
      "Mar",
      "Afi",
      "May",
      "Yun",
      "Yul",
      "Agu",
      "Sat",
      "Okt",
      "Nuw",
      "Dis"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "Y",
      "Y",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Janairu",
      "Faburairu",
      "Maris",
      "Afirilu",
      "Mayu",
      "Yuni",
      "Yuli",
      "Agusta",
      "Satumba",
      "Oktoba",
      "Nuwamba",
      "Disamba"
    ],
    name => "Hausa Nigeria",
    native_language => "Hausa",
    native_name => "Hausa Najeriya",
    native_script => undef,
    native_territory => "Najeriya",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Kwata na \N{U+0257}aya",
      "Kwata na biyu",
      "Kwata na uku",
      "Kwata na hu\N{U+0257}u"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Kwata na \N{U+0257}aya",
      "Kwata na biyu",
      "Kwata na uku",
      "Kwata na hu\N{U+0257}u"
    ],
    script => undef,
    territory => "Nigeria",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ haw ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "haw",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "P1",
      "P2",
      "P3",
      "P4",
      "P5",
      "P6",
      "LP"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Po\N{U+02bb}akahi",
      "Po\N{U+02bb}alua",
      "Po\N{U+02bb}akolu",
      "Po\N{U+02bb}ah\N{U+0101}",
      "Po\N{U+02bb}alima",
      "Po\N{U+02bb}aono",
      "L\N{U+0101}pule"
    ],
    day_stand_alone_abbreviated => [
      "P1",
      "P2",
      "P3",
      "P4",
      "P5",
      "P6",
      "LP"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Po\N{U+02bb}akahi",
      "Po\N{U+02bb}alua",
      "Po\N{U+02bb}akolu",
      "Po\N{U+02bb}ah\N{U+0101}",
      "Po\N{U+02bb}alima",
      "Po\N{U+02bb}aono",
      "L\N{U+0101}pule"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Hawaiian",
    month_format_abbreviated => [
      "Ian.",
      "Pep.",
      "Mal.",
      "\N{U+02bb}Ap.",
      "Mei",
      "Iun.",
      "Iul.",
      "\N{U+02bb}Au.",
      "Kep.",
      "\N{U+02bb}Ok.",
      "Now.",
      "Kek."
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Ianuali",
      "Pepeluali",
      "Malaki",
      "\N{U+02bb}Apelila",
      "Mei",
      "Iune",
      "Iulai",
      "\N{U+02bb}Aukake",
      "Kepakemapa",
      "\N{U+02bb}Okakopa",
      "Nowemapa",
      "Kekemapa"
    ],
    month_stand_alone_abbreviated => [
      "Ian.",
      "Pep.",
      "Mal.",
      "\N{U+02bb}Ap.",
      "Mei",
      "Iun.",
      "Iul.",
      "\N{U+02bb}Au.",
      "Kep.",
      "\N{U+02bb}Ok.",
      "Now.",
      "Kek."
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Ianuali",
      "Pepeluali",
      "Malaki",
      "\N{U+02bb}Apelila",
      "Mei",
      "Iune",
      "Iulai",
      "\N{U+02bb}Aukake",
      "Kepakemapa",
      "\N{U+02bb}Okakopa",
      "Nowemapa",
      "Kekemapa"
    ],
    name => "Hawaiian",
    native_language => "\N{U+02bb}\N{U+014c}lelo Hawai\N{U+02bb}i",
    native_name => "\N{U+02bb}\N{U+014c}lelo Hawai\N{U+02bb}i",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ haw-US ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "haw-US",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "P1",
      "P2",
      "P3",
      "P4",
      "P5",
      "P6",
      "LP"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Po\N{U+02bb}akahi",
      "Po\N{U+02bb}alua",
      "Po\N{U+02bb}akolu",
      "Po\N{U+02bb}ah\N{U+0101}",
      "Po\N{U+02bb}alima",
      "Po\N{U+02bb}aono",
      "L\N{U+0101}pule"
    ],
    day_stand_alone_abbreviated => [
      "P1",
      "P2",
      "P3",
      "P4",
      "P5",
      "P6",
      "LP"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Po\N{U+02bb}akahi",
      "Po\N{U+02bb}alua",
      "Po\N{U+02bb}akolu",
      "Po\N{U+02bb}ah\N{U+0101}",
      "Po\N{U+02bb}alima",
      "Po\N{U+02bb}aono",
      "L\N{U+0101}pule"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Hawaiian",
    month_format_abbreviated => [
      "Ian.",
      "Pep.",
      "Mal.",
      "\N{U+02bb}Ap.",
      "Mei",
      "Iun.",
      "Iul.",
      "\N{U+02bb}Au.",
      "Kep.",
      "\N{U+02bb}Ok.",
      "Now.",
      "Kek."
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Ianuali",
      "Pepeluali",
      "Malaki",
      "\N{U+02bb}Apelila",
      "Mei",
      "Iune",
      "Iulai",
      "\N{U+02bb}Aukake",
      "Kepakemapa",
      "\N{U+02bb}Okakopa",
      "Nowemapa",
      "Kekemapa"
    ],
    month_stand_alone_abbreviated => [
      "Ian.",
      "Pep.",
      "Mal.",
      "\N{U+02bb}Ap.",
      "Mei",
      "Iun.",
      "Iul.",
      "\N{U+02bb}Au.",
      "Kep.",
      "\N{U+02bb}Ok.",
      "Now.",
      "Kek."
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Ianuali",
      "Pepeluali",
      "Malaki",
      "\N{U+02bb}Apelila",
      "Mei",
      "Iune",
      "Iulai",
      "\N{U+02bb}Aukake",
      "Kepakemapa",
      "\N{U+02bb}Okakopa",
      "Nowemapa",
      "Kekemapa"
    ],
    name => "Hawaiian United States",
    native_language => "\N{U+02bb}\N{U+014c}lelo Hawai\N{U+02bb}i",
    native_name => "\N{U+02bb}\N{U+014c}lelo Hawai\N{U+02bb}i \N{U+02bb}Amelika Hui P\N{U+016b} \N{U+02bb}Ia",
    native_script => undef,
    native_territory => "\N{U+02bb}Amelika Hui P\N{U+016b} \N{U+02bb}Ia",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "United States",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ he ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E H:mm",
      EHms => "E H:mm:ss",
      Ed => "E \N{U+05d4}-d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d \N{U+05d1}MMM y G",
      GyMMMd => "d \N{U+05d1}MMM y G",
      H => "H",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.M",
      MMM => "LLL",
      MMMEd => "E, d \N{U+05d1}MMM",
      MMMMd => "MMMM d",
      MMMd => "d \N{U+05d1}MMM",
      Md => "d.M",
      d => "d",
      h => "\N{U+200f}h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M.y",
      yMEd => "E, d.M.y",
      yMM => "M.y",
      yMMM => "MMM y",
      yMMMEd => "E, d \N{U+05d1}MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d \N{U+05d1}MMM y",
      yMd => "d.M.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "he",
    date_format_full => "EEEE, d \N{U+05d1}MMMM y",
    date_format_long => "d \N{U+05d1}MMMM y",
    date_format_medium => "d \N{U+05d1}MMM y",
    date_format_short => "d.M.y",
    datetime_format_full => "{1} \N{U+05d1}\N{U+05e9}\N{U+05e2}\N{U+05d4} {0}",
    datetime_format_long => "{1} \N{U+05d1}\N{U+05e9}\N{U+05e2}\N{U+05d4} {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05d1}\N{U+05f3}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05d2}\N{U+05f3}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05d3}\N{U+05f3}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05d4}\N{U+05f3}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05d5}\N{U+05f3}",
      "\N{U+05e9}\N{U+05d1}\N{U+05ea}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05d0}\N{U+05f3}"
    ],
    day_format_narrow => [
      "\N{U+05d1}\N{U+05f3}",
      "\N{U+05d2}\N{U+05f3}",
      "\N{U+05d3}\N{U+05f3}",
      "\N{U+05d4}\N{U+05f3}",
      "\N{U+05d5}\N{U+05f3}",
      "\N{U+05e9}\N{U+05f3}",
      "\N{U+05d0}\N{U+05f3}"
    ],
    day_format_wide => [
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05e9}\N{U+05e0}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05e9}\N{U+05dc}\N{U+05d9}\N{U+05e9}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05e8}\N{U+05d1}\N{U+05d9}\N{U+05e2}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05d7}\N{U+05de}\N{U+05d9}\N{U+05e9}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05e9}\N{U+05d9}\N{U+05e9}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05e9}\N{U+05d1}\N{U+05ea}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05e8}\N{U+05d0}\N{U+05e9}\N{U+05d5}\N{U+05df}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05d1}\N{U+05f3}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05d2}\N{U+05f3}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05d3}\N{U+05f3}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05d4}\N{U+05f3}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05d5}\N{U+05f3}",
      "\N{U+05e9}\N{U+05d1}\N{U+05ea}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05d0}\N{U+05f3}"
    ],
    day_stand_alone_narrow => [
      "\N{U+05d1}\N{U+05f3}",
      "\N{U+05d2}\N{U+05f3}",
      "\N{U+05d3}\N{U+05f3}",
      "\N{U+05d4}\N{U+05f3}",
      "\N{U+05d5}\N{U+05f3}",
      "\N{U+05e9}\N{U+05f3}",
      "\N{U+05d0}\N{U+05f3}"
    ],
    day_stand_alone_wide => [
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05e9}\N{U+05e0}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05e9}\N{U+05dc}\N{U+05d9}\N{U+05e9}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05e8}\N{U+05d1}\N{U+05d9}\N{U+05e2}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05d7}\N{U+05de}\N{U+05d9}\N{U+05e9}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05e9}\N{U+05d9}\N{U+05e9}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05e9}\N{U+05d1}\N{U+05ea}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05e8}\N{U+05d0}\N{U+05e9}\N{U+05d5}\N{U+05df}"
    ],
    era_abbreviated => [
      "\N{U+05dc}\N{U+05e4}\N{U+05e0}\N{U+05d4}\N{U+05f4}\N{U+05e1}",
      "\N{U+05dc}\N{U+05e1}\N{U+05e4}\N{U+05d9}\N{U+05e8}\N{U+05d4}"
    ],
    era_narrow => [
      "\N{U+05dc}\N{U+05e4}\N{U+05e0}\N{U+05d4}\N{U+05f4}\N{U+05e1}",
      "\N{U+05dc}\N{U+05e1}\N{U+05e4}\N{U+05d9}\N{U+05e8}\N{U+05d4}"
    ],
    era_wide => [
      "\N{U+05dc}\N{U+05e4}\N{U+05e0}\N{U+05d9} \N{U+05d4}\N{U+05e1}\N{U+05e4}\N{U+05d9}\N{U+05e8}\N{U+05d4}",
      "\N{U+05dc}\N{U+05e1}\N{U+05e4}\N{U+05d9}\N{U+05e8}\N{U+05d4}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Hebrew",
    month_format_abbreviated => [
      "\N{U+05d9}\N{U+05e0}\N{U+05d5}\N{U+05f3}",
      "\N{U+05e4}\N{U+05d1}\N{U+05e8}\N{U+05f3}",
      "\N{U+05de}\N{U+05e8}\N{U+05e5}",
      "\N{U+05d0}\N{U+05e4}\N{U+05e8}\N{U+05f3}",
      "\N{U+05de}\N{U+05d0}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05e0}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dc}\N{U+05d9}",
      "\N{U+05d0}\N{U+05d5}\N{U+05d2}\N{U+05f3}",
      "\N{U+05e1}\N{U+05e4}\N{U+05d8}\N{U+05f3}",
      "\N{U+05d0}\N{U+05d5}\N{U+05e7}\N{U+05f3}",
      "\N{U+05e0}\N{U+05d5}\N{U+05d1}\N{U+05f3}",
      "\N{U+05d3}\N{U+05e6}\N{U+05de}\N{U+05f3}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+05d9}\N{U+05e0}\N{U+05d5}\N{U+05d0}\N{U+05e8}",
      "\N{U+05e4}\N{U+05d1}\N{U+05e8}\N{U+05d5}\N{U+05d0}\N{U+05e8}",
      "\N{U+05de}\N{U+05e8}\N{U+05e5}",
      "\N{U+05d0}\N{U+05e4}\N{U+05e8}\N{U+05d9}\N{U+05dc}",
      "\N{U+05de}\N{U+05d0}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05e0}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dc}\N{U+05d9}",
      "\N{U+05d0}\N{U+05d5}\N{U+05d2}\N{U+05d5}\N{U+05e1}\N{U+05d8}",
      "\N{U+05e1}\N{U+05e4}\N{U+05d8}\N{U+05de}\N{U+05d1}\N{U+05e8}",
      "\N{U+05d0}\N{U+05d5}\N{U+05e7}\N{U+05d8}\N{U+05d5}\N{U+05d1}\N{U+05e8}",
      "\N{U+05e0}\N{U+05d5}\N{U+05d1}\N{U+05de}\N{U+05d1}\N{U+05e8}",
      "\N{U+05d3}\N{U+05e6}\N{U+05de}\N{U+05d1}\N{U+05e8}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+05d9}\N{U+05e0}\N{U+05d5}\N{U+05f3}",
      "\N{U+05e4}\N{U+05d1}\N{U+05e8}\N{U+05f3}",
      "\N{U+05de}\N{U+05e8}\N{U+05e5}",
      "\N{U+05d0}\N{U+05e4}\N{U+05e8}\N{U+05f3}",
      "\N{U+05de}\N{U+05d0}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05e0}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dc}\N{U+05d9}",
      "\N{U+05d0}\N{U+05d5}\N{U+05d2}\N{U+05f3}",
      "\N{U+05e1}\N{U+05e4}\N{U+05d8}\N{U+05f3}",
      "\N{U+05d0}\N{U+05d5}\N{U+05e7}\N{U+05f3}",
      "\N{U+05e0}\N{U+05d5}\N{U+05d1}\N{U+05f3}",
      "\N{U+05d3}\N{U+05e6}\N{U+05de}\N{U+05f3}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+05d9}\N{U+05e0}\N{U+05d5}\N{U+05d0}\N{U+05e8}",
      "\N{U+05e4}\N{U+05d1}\N{U+05e8}\N{U+05d5}\N{U+05d0}\N{U+05e8}",
      "\N{U+05de}\N{U+05e8}\N{U+05e5}",
      "\N{U+05d0}\N{U+05e4}\N{U+05e8}\N{U+05d9}\N{U+05dc}",
      "\N{U+05de}\N{U+05d0}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05e0}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dc}\N{U+05d9}",
      "\N{U+05d0}\N{U+05d5}\N{U+05d2}\N{U+05d5}\N{U+05e1}\N{U+05d8}",
      "\N{U+05e1}\N{U+05e4}\N{U+05d8}\N{U+05de}\N{U+05d1}\N{U+05e8}",
      "\N{U+05d0}\N{U+05d5}\N{U+05e7}\N{U+05d8}\N{U+05d5}\N{U+05d1}\N{U+05e8}",
      "\N{U+05e0}\N{U+05d5}\N{U+05d1}\N{U+05de}\N{U+05d1}\N{U+05e8}",
      "\N{U+05d3}\N{U+05e6}\N{U+05de}\N{U+05d1}\N{U+05e8}"
    ],
    name => "Hebrew",
    native_language => "\N{U+05e2}\N{U+05d1}\N{U+05e8}\N{U+05d9}\N{U+05ea}",
    native_name => "\N{U+05e2}\N{U+05d1}\N{U+05e8}\N{U+05d9}\N{U+05ea}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 1",
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 2",
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 3",
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 1",
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 2",
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 3",
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 4"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 1",
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 2",
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 3",
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 1",
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 2",
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 3",
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "H:mm:ss zzzz",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ he-IL ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E H:mm",
      EHms => "E H:mm:ss",
      Ed => "E \N{U+05d4}-d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d \N{U+05d1}MMM y G",
      GyMMMd => "d \N{U+05d1}MMM y G",
      H => "H",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.M",
      MMM => "LLL",
      MMMEd => "E, d \N{U+05d1}MMM",
      MMMMd => "MMMM d",
      MMMd => "d \N{U+05d1}MMM",
      Md => "d.M",
      d => "d",
      h => "\N{U+200f}h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M.y",
      yMEd => "E, d.M.y",
      yMM => "M.y",
      yMMM => "MMM y",
      yMMMEd => "E, d \N{U+05d1}MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d \N{U+05d1}MMM y",
      yMd => "d.M.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "he-IL",
    date_format_full => "EEEE, d \N{U+05d1}MMMM y",
    date_format_long => "d \N{U+05d1}MMMM y",
    date_format_medium => "d \N{U+05d1}MMM y",
    date_format_short => "d.M.y",
    datetime_format_full => "{1} \N{U+05d1}\N{U+05e9}\N{U+05e2}\N{U+05d4} {0}",
    datetime_format_long => "{1} \N{U+05d1}\N{U+05e9}\N{U+05e2}\N{U+05d4} {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05d1}\N{U+05f3}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05d2}\N{U+05f3}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05d3}\N{U+05f3}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05d4}\N{U+05f3}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05d5}\N{U+05f3}",
      "\N{U+05e9}\N{U+05d1}\N{U+05ea}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05d0}\N{U+05f3}"
    ],
    day_format_narrow => [
      "\N{U+05d1}\N{U+05f3}",
      "\N{U+05d2}\N{U+05f3}",
      "\N{U+05d3}\N{U+05f3}",
      "\N{U+05d4}\N{U+05f3}",
      "\N{U+05d5}\N{U+05f3}",
      "\N{U+05e9}\N{U+05f3}",
      "\N{U+05d0}\N{U+05f3}"
    ],
    day_format_wide => [
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05e9}\N{U+05e0}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05e9}\N{U+05dc}\N{U+05d9}\N{U+05e9}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05e8}\N{U+05d1}\N{U+05d9}\N{U+05e2}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05d7}\N{U+05de}\N{U+05d9}\N{U+05e9}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05e9}\N{U+05d9}\N{U+05e9}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05e9}\N{U+05d1}\N{U+05ea}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05e8}\N{U+05d0}\N{U+05e9}\N{U+05d5}\N{U+05df}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05d1}\N{U+05f3}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05d2}\N{U+05f3}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05d3}\N{U+05f3}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05d4}\N{U+05f3}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05d5}\N{U+05f3}",
      "\N{U+05e9}\N{U+05d1}\N{U+05ea}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05d0}\N{U+05f3}"
    ],
    day_stand_alone_narrow => [
      "\N{U+05d1}\N{U+05f3}",
      "\N{U+05d2}\N{U+05f3}",
      "\N{U+05d3}\N{U+05f3}",
      "\N{U+05d4}\N{U+05f3}",
      "\N{U+05d5}\N{U+05f3}",
      "\N{U+05e9}\N{U+05f3}",
      "\N{U+05d0}\N{U+05f3}"
    ],
    day_stand_alone_wide => [
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05e9}\N{U+05e0}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05e9}\N{U+05dc}\N{U+05d9}\N{U+05e9}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05e8}\N{U+05d1}\N{U+05d9}\N{U+05e2}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05d7}\N{U+05de}\N{U+05d9}\N{U+05e9}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05e9}\N{U+05d9}\N{U+05e9}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05e9}\N{U+05d1}\N{U+05ea}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dd} \N{U+05e8}\N{U+05d0}\N{U+05e9}\N{U+05d5}\N{U+05df}"
    ],
    era_abbreviated => [
      "\N{U+05dc}\N{U+05e4}\N{U+05e0}\N{U+05d4}\N{U+05f4}\N{U+05e1}",
      "\N{U+05dc}\N{U+05e1}\N{U+05e4}\N{U+05d9}\N{U+05e8}\N{U+05d4}"
    ],
    era_narrow => [
      "\N{U+05dc}\N{U+05e4}\N{U+05e0}\N{U+05d4}\N{U+05f4}\N{U+05e1}",
      "\N{U+05dc}\N{U+05e1}\N{U+05e4}\N{U+05d9}\N{U+05e8}\N{U+05d4}"
    ],
    era_wide => [
      "\N{U+05dc}\N{U+05e4}\N{U+05e0}\N{U+05d9} \N{U+05d4}\N{U+05e1}\N{U+05e4}\N{U+05d9}\N{U+05e8}\N{U+05d4}",
      "\N{U+05dc}\N{U+05e1}\N{U+05e4}\N{U+05d9}\N{U+05e8}\N{U+05d4}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%Z %H:%M:%S %Y %b %d %a",
    glibc_time_12_format => "%I:%M:%S %P",
    glibc_time_format => "%H:%M:%S",
    language => "Hebrew",
    month_format_abbreviated => [
      "\N{U+05d9}\N{U+05e0}\N{U+05d5}\N{U+05f3}",
      "\N{U+05e4}\N{U+05d1}\N{U+05e8}\N{U+05f3}",
      "\N{U+05de}\N{U+05e8}\N{U+05e5}",
      "\N{U+05d0}\N{U+05e4}\N{U+05e8}\N{U+05f3}",
      "\N{U+05de}\N{U+05d0}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05e0}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dc}\N{U+05d9}",
      "\N{U+05d0}\N{U+05d5}\N{U+05d2}\N{U+05f3}",
      "\N{U+05e1}\N{U+05e4}\N{U+05d8}\N{U+05f3}",
      "\N{U+05d0}\N{U+05d5}\N{U+05e7}\N{U+05f3}",
      "\N{U+05e0}\N{U+05d5}\N{U+05d1}\N{U+05f3}",
      "\N{U+05d3}\N{U+05e6}\N{U+05de}\N{U+05f3}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+05d9}\N{U+05e0}\N{U+05d5}\N{U+05d0}\N{U+05e8}",
      "\N{U+05e4}\N{U+05d1}\N{U+05e8}\N{U+05d5}\N{U+05d0}\N{U+05e8}",
      "\N{U+05de}\N{U+05e8}\N{U+05e5}",
      "\N{U+05d0}\N{U+05e4}\N{U+05e8}\N{U+05d9}\N{U+05dc}",
      "\N{U+05de}\N{U+05d0}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05e0}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dc}\N{U+05d9}",
      "\N{U+05d0}\N{U+05d5}\N{U+05d2}\N{U+05d5}\N{U+05e1}\N{U+05d8}",
      "\N{U+05e1}\N{U+05e4}\N{U+05d8}\N{U+05de}\N{U+05d1}\N{U+05e8}",
      "\N{U+05d0}\N{U+05d5}\N{U+05e7}\N{U+05d8}\N{U+05d5}\N{U+05d1}\N{U+05e8}",
      "\N{U+05e0}\N{U+05d5}\N{U+05d1}\N{U+05de}\N{U+05d1}\N{U+05e8}",
      "\N{U+05d3}\N{U+05e6}\N{U+05de}\N{U+05d1}\N{U+05e8}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+05d9}\N{U+05e0}\N{U+05d5}\N{U+05f3}",
      "\N{U+05e4}\N{U+05d1}\N{U+05e8}\N{U+05f3}",
      "\N{U+05de}\N{U+05e8}\N{U+05e5}",
      "\N{U+05d0}\N{U+05e4}\N{U+05e8}\N{U+05f3}",
      "\N{U+05de}\N{U+05d0}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05e0}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dc}\N{U+05d9}",
      "\N{U+05d0}\N{U+05d5}\N{U+05d2}\N{U+05f3}",
      "\N{U+05e1}\N{U+05e4}\N{U+05d8}\N{U+05f3}",
      "\N{U+05d0}\N{U+05d5}\N{U+05e7}\N{U+05f3}",
      "\N{U+05e0}\N{U+05d5}\N{U+05d1}\N{U+05f3}",
      "\N{U+05d3}\N{U+05e6}\N{U+05de}\N{U+05f3}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+05d9}\N{U+05e0}\N{U+05d5}\N{U+05d0}\N{U+05e8}",
      "\N{U+05e4}\N{U+05d1}\N{U+05e8}\N{U+05d5}\N{U+05d0}\N{U+05e8}",
      "\N{U+05de}\N{U+05e8}\N{U+05e5}",
      "\N{U+05d0}\N{U+05e4}\N{U+05e8}\N{U+05d9}\N{U+05dc}",
      "\N{U+05de}\N{U+05d0}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05e0}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dc}\N{U+05d9}",
      "\N{U+05d0}\N{U+05d5}\N{U+05d2}\N{U+05d5}\N{U+05e1}\N{U+05d8}",
      "\N{U+05e1}\N{U+05e4}\N{U+05d8}\N{U+05de}\N{U+05d1}\N{U+05e8}",
      "\N{U+05d0}\N{U+05d5}\N{U+05e7}\N{U+05d8}\N{U+05d5}\N{U+05d1}\N{U+05e8}",
      "\N{U+05e0}\N{U+05d5}\N{U+05d1}\N{U+05de}\N{U+05d1}\N{U+05e8}",
      "\N{U+05d3}\N{U+05e6}\N{U+05de}\N{U+05d1}\N{U+05e8}"
    ],
    name => "Hebrew Israel",
    native_language => "\N{U+05e2}\N{U+05d1}\N{U+05e8}\N{U+05d9}\N{U+05ea}",
    native_name => "\N{U+05e2}\N{U+05d1}\N{U+05e8}\N{U+05d9}\N{U+05ea} \N{U+05d9}\N{U+05e9}\N{U+05e8}\N{U+05d0}\N{U+05dc}",
    native_script => undef,
    native_territory => "\N{U+05d9}\N{U+05e9}\N{U+05e8}\N{U+05d0}\N{U+05dc}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 1",
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 2",
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 3",
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 1",
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 2",
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 3",
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 4"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 1",
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 2",
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 3",
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 1",
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 2",
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 3",
      "\N{U+05e8}\N{U+05d1}\N{U+05e2}\N{U+05d5}\N{U+05df} 4"
    ],
    script => undef,
    territory => "Israel",
    time_format_full => "H:mm:ss zzzz",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ hi-IN ]__
  {
    am_pm_abbreviated => [
      "\N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}",
      "\N{U+0905}\N{U+092a}\N{U+0930}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM G y",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMM => "MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMMdd => "dd/MM/y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "hi-IN",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "dd/MM/y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} \N{U+0915}\N{U+094b} {0}",
    datetime_format_long => "{1} \N{U+0915}\N{U+094b} {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+0938}\N{U+094b}\N{U+092e}",
      "\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0932}",
      "\N{U+092c}\N{U+0941}\N{U+0927}",
      "\N{U+0917}\N{U+0941}\N{U+0930}\N{U+0941}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}",
      "\N{U+0930}\N{U+0935}\N{U+093f}"
    ],
    day_format_narrow => [
      "\N{U+0938}\N{U+094b}",
      "\N{U+092e}\N{U+0902}",
      "\N{U+092c}\N{U+0941}",
      "\N{U+0917}\N{U+0941}",
      "\N{U+0936}\N{U+0941}",
      "\N{U+0936}",
      "\N{U+0930}"
    ],
    day_format_wide => [
      "\N{U+0938}\N{U+094b}\N{U+092e}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0932}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+092c}\N{U+0941}\N{U+0927}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0917}\N{U+0941}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0930}\N{U+0935}\N{U+093f}\N{U+0935}\N{U+093e}\N{U+0930}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0938}\N{U+094b}\N{U+092e}",
      "\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0932}",
      "\N{U+092c}\N{U+0941}\N{U+0927}",
      "\N{U+0917}\N{U+0941}\N{U+0930}\N{U+0941}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}",
      "\N{U+0930}\N{U+0935}\N{U+093f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0938}\N{U+094b}",
      "\N{U+092e}\N{U+0902}",
      "\N{U+092c}\N{U+0941}",
      "\N{U+0917}\N{U+0941}",
      "\N{U+0936}\N{U+0941}",
      "\N{U+0936}",
      "\N{U+0930}"
    ],
    day_stand_alone_wide => [
      "\N{U+0938}\N{U+094b}\N{U+092e}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0932}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+092c}\N{U+0941}\N{U+0927}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0917}\N{U+0941}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0930}\N{U+0935}\N{U+093f}\N{U+0935}\N{U+093e}\N{U+0930}"
    ],
    era_abbreviated => [
      "\N{U+0908}\N{U+0938}\N{U+093e}-\N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}",
      "\N{U+0908}\N{U+0938}\N{U+094d}\N{U+0935}\N{U+0940}"
    ],
    era_narrow => [
      "\N{U+0908}\N{U+0938}\N{U+093e}-\N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}",
      "\N{U+0908}\N{U+0938}\N{U+094d}\N{U+0935}\N{U+0940}"
    ],
    era_wide => [
      "\N{U+0908}\N{U+0938}\N{U+093e}-\N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}",
      "\N{U+0908}\N{U+0938}\N{U+0935}\N{U+0940} \N{U+0938}\N{U+0928}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%A %d %b %Y",
    glibc_datetime_format => "%A %d %b %Y %I:%M:%S %p %Z",
    glibc_time_12_format => "%I:%M:%S %p %Z",
    glibc_time_format => "%I:%M:%S  %Z",
    language => "Hindi",
    month_format_abbreviated => [
      "\N{U+091c}\N{U+0928}\N{U+0970}",
      "\N{U+092b}\N{U+093c}\N{U+0930}\N{U+0970}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+0905}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+0948}\N{U+0932}",
      "\N{U+092e}\N{U+0908}",
      "\N{U+091c}\N{U+0942}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+0970}",
      "\N{U+0905}\N{U+0917}\N{U+0970}",
      "\N{U+0938}\N{U+093f}\N{U+0924}\N{U+0970}",
      "\N{U+0905}\N{U+0915}\N{U+094d}\N{U+0924}\N{U+0942}\N{U+0970}",
      "\N{U+0928}\N{U+0935}\N{U+0970}",
      "\N{U+0926}\N{U+093f}\N{U+0938}\N{U+0970}"
    ],
    month_format_narrow => [
      "\N{U+091c}",
      "\N{U+092b}\N{U+093c}",
      "\N{U+092e}\N{U+093e}",
      "\N{U+0905}",
      "\N{U+092e}",
      "\N{U+091c}\N{U+0942}",
      "\N{U+091c}\N{U+0941}",
      "\N{U+0905}",
      "\N{U+0938}\N{U+093f}",
      "\N{U+0905}",
      "\N{U+0928}",
      "\N{U+0926}\N{U+093f}"
    ],
    month_format_wide => [
      "\N{U+091c}\N{U+0928}\N{U+0935}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+093c}\N{U+0930}\N{U+0935}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+0905}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+0948}\N{U+0932}",
      "\N{U+092e}\N{U+0908}",
      "\N{U+091c}\N{U+0942}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+093e}\N{U+0908}",
      "\N{U+0905}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+0924}",
      "\N{U+0938}\N{U+093f}\N{U+0924}\N{U+0902}\N{U+092c}\N{U+0930}",
      "\N{U+0905}\N{U+0915}\N{U+094d}\N{U+0924}\N{U+0942}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+0935}\N{U+0902}\N{U+092c}\N{U+0930}",
      "\N{U+0926}\N{U+093f}\N{U+0938}\N{U+0902}\N{U+092c}\N{U+0930}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+091c}\N{U+0928}\N{U+0970}",
      "\N{U+092b}\N{U+093c}\N{U+0930}\N{U+0970}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+0905}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+0948}\N{U+0932}",
      "\N{U+092e}\N{U+0908}",
      "\N{U+091c}\N{U+0942}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+0970}",
      "\N{U+0905}\N{U+0917}\N{U+0970}",
      "\N{U+0938}\N{U+093f}\N{U+0924}\N{U+0970}",
      "\N{U+0905}\N{U+0915}\N{U+094d}\N{U+0924}\N{U+0942}\N{U+0970}",
      "\N{U+0928}\N{U+0935}\N{U+0970}",
      "\N{U+0926}\N{U+093f}\N{U+0938}\N{U+0970}"
    ],
    month_stand_alone_narrow => [
      "\N{U+091c}",
      "\N{U+092b}\N{U+093c}",
      "\N{U+092e}\N{U+093e}",
      "\N{U+0905}",
      "\N{U+092e}",
      "\N{U+091c}\N{U+0942}",
      "\N{U+091c}\N{U+0941}",
      "\N{U+0905}",
      "\N{U+0938}\N{U+093f}",
      "\N{U+0905}",
      "\N{U+0928}",
      "\N{U+0926}\N{U+093f}"
    ],
    month_stand_alone_wide => [
      "\N{U+091c}\N{U+0928}\N{U+0935}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+093c}\N{U+0930}\N{U+0935}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+0905}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+0948}\N{U+0932}",
      "\N{U+092e}\N{U+0908}",
      "\N{U+091c}\N{U+0942}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+093e}\N{U+0908}",
      "\N{U+0905}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+0924}",
      "\N{U+0938}\N{U+093f}\N{U+0924}\N{U+0902}\N{U+092c}\N{U+0930}",
      "\N{U+0905}\N{U+0915}\N{U+094d}\N{U+0924}\N{U+0942}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+0935}\N{U+0902}\N{U+092c}\N{U+0930}",
      "\N{U+0926}\N{U+093f}\N{U+0938}\N{U+0902}\N{U+092c}\N{U+0930}"
    ],
    name => "Hindi India",
    native_language => "\N{U+0939}\N{U+093f}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+0940}",
    native_name => "\N{U+0939}\N{U+093f}\N{U+0928}\N{U+094d}\N{U+0926}\N{U+0940} \N{U+092d}\N{U+093e}\N{U+0930}\N{U+0924}",
    native_script => undef,
    native_territory => "\N{U+092d}\N{U+093e}\N{U+0930}\N{U+0924}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0924}\N{U+093f}1",
      "\N{U+0924}\N{U+093f}2",
      "\N{U+0924}\N{U+093f}3",
      "\N{U+0924}\N{U+093f}4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+092a}\N{U+0939}\N{U+0932}\N{U+0940} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}",
      "\N{U+0926}\N{U+0942}\N{U+0938}\N{U+0930}\N{U+0940} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}",
      "\N{U+0924}\N{U+0940}\N{U+0938}\N{U+0930}\N{U+0940} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}",
      "\N{U+091a}\N{U+094c}\N{U+0925}\N{U+0940} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0924}\N{U+093f}1",
      "\N{U+0924}\N{U+093f}2",
      "\N{U+0924}\N{U+093f}3",
      "\N{U+0924}\N{U+093f}4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+092a}\N{U+0939}\N{U+0932}\N{U+0940} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}",
      "\N{U+0926}\N{U+0942}\N{U+0938}\N{U+0930}\N{U+0940} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}",
      "\N{U+0924}\N{U+0940}\N{U+0938}\N{U+0930}\N{U+0940} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}",
      "\N{U+091a}\N{U+094c}\N{U+0925}\N{U+0940} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}"
    ],
    script => undef,
    territory => "India",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ hr ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E, d.",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y. G",
      GyMMM => "LLL y. G",
      GyMMMEd => "E, d. MMM y. G",
      GyMMMd => "d. MMM y. G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L.",
      MEd => "E, dd.MM.",
      MMM => "LLL",
      MMMEd => "E, d. MMM",
      MMMMEd => "E, d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMdd => "dd. MM.",
      Md => "dd.MM.",
      d => "d.",
      h => "h a",
      hm => "hh:mm a",
      hms => "hh:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y.",
      yM => "MM.y.",
      yMEd => "E, dd.MM.y.",
      yMM => "MM. y.",
      yMMM => "LLL y.",
      yMMMEd => "E, d. MMM y.",
      yMMMM => "LLLL y.",
      yMMMd => "d. MMM y.",
      yMd => "dd.MM.y.",
      yQQQ => "QQQ y.",
      yQQQQ => "QQQQ y."
    },
    code => "hr",
    date_format_full => "EEEE, d. MMMM y.",
    date_format_long => "d. MMMM y.",
    date_format_medium => "d. MMM y.",
    date_format_short => "dd.MM.y.",
    datetime_format_full => "{1} 'u' {0}",
    datetime_format_long => "{1} 'u' {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "pon",
      "uto",
      "sri",
      "\N{U+010d}et",
      "pet",
      "sub",
      "ned"
    ],
    day_format_narrow => [
      "P",
      "U",
      "S",
      "\N{U+010c}",
      "P",
      "S",
      "N"
    ],
    day_format_wide => [
      "ponedjeljak",
      "utorak",
      "srijeda",
      "\N{U+010d}etvrtak",
      "petak",
      "subota",
      "nedjelja"
    ],
    day_stand_alone_abbreviated => [
      "pon",
      "uto",
      "sri",
      "\N{U+010d}et",
      "pet",
      "sub",
      "ned"
    ],
    day_stand_alone_narrow => [
      "p",
      "u",
      "s",
      "\N{U+010d}",
      "p",
      "s",
      "n"
    ],
    day_stand_alone_wide => [
      "ponedjeljak",
      "utorak",
      "srijeda",
      "\N{U+010d}etvrtak",
      "petak",
      "subota",
      "nedjelja"
    ],
    era_abbreviated => [
      "pr. Kr.",
      "p. Kr."
    ],
    era_narrow => [
      "pr.n.e.",
      "AD"
    ],
    era_wide => [
      "prije Krista",
      "poslije Krista"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Croatian",
    month_format_abbreviated => [
      "sij",
      "velj",
      "o\N{U+017e}u",
      "tra",
      "svi",
      "lip",
      "srp",
      "kol",
      "ruj",
      "lis",
      "stu",
      "pro"
    ],
    month_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4.",
      "5.",
      "6.",
      "7.",
      "8.",
      "9.",
      "10.",
      "11.",
      "12."
    ],
    month_format_wide => [
      "sije\N{U+010d}nja",
      "velja\N{U+010d}e",
      "o\N{U+017e}ujka",
      "travnja",
      "svibnja",
      "lipnja",
      "srpnja",
      "kolovoza",
      "rujna",
      "listopada",
      "studenoga",
      "prosinca"
    ],
    month_stand_alone_abbreviated => [
      "sij",
      "velj",
      "o\N{U+017e}u",
      "tra",
      "svi",
      "lip",
      "srp",
      "kol",
      "ruj",
      "lis",
      "stu",
      "pro"
    ],
    month_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4.",
      "5.",
      "6.",
      "7.",
      "8.",
      "9.",
      "10.",
      "11.",
      "12."
    ],
    month_stand_alone_wide => [
      "sije\N{U+010d}anj",
      "velja\N{U+010d}a",
      "o\N{U+017e}ujak",
      "travanj",
      "svibanj",
      "lipanj",
      "srpanj",
      "kolovoz",
      "rujan",
      "listopad",
      "studeni",
      "prosinac"
    ],
    name => "Croatian",
    native_language => "hrvatski",
    native_name => "hrvatski",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "1kv",
      "2kv",
      "3kv",
      "4kv"
    ],
    quarter_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_format_wide => [
      "1. kvartal",
      "2. kvartal",
      "3. kvartal",
      "4. kvartal"
    ],
    quarter_stand_alone_abbreviated => [
      "1kv",
      "2kv",
      "3kv",
      "4kv"
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "1. kvartal",
      "2. kvartal",
      "3. kvartal",
      "4. kvartal"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ hr-BA ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E, d.",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y. G",
      GyMMM => "LLL y. G",
      GyMMMEd => "E, d. MMM y. G",
      GyMMMd => "d. MMM y. G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L.",
      MEd => "E, dd.MM.",
      MMM => "LLL",
      MMMEd => "E, d. MMM",
      MMMMEd => "E, d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMdd => "dd. MM.",
      Md => "dd.MM.",
      d => "d.",
      h => "h a",
      hm => "hh:mm a",
      hms => "hh:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y.",
      yM => "MM.y.",
      yMEd => "E, dd.MM.y.",
      yMM => "MM. y.",
      yMMM => "LLL y.",
      yMMMEd => "E, d. MMM y.",
      yMMMM => "LLLL y.",
      yMMMd => "d. MMM y.",
      yMd => "dd.MM.y.",
      yQQQ => "QQQ y.",
      yQQQQ => "QQQQ y."
    },
    code => "hr-BA",
    date_format_full => "EEEE, d. MMMM y.",
    date_format_long => "d. MMMM y.",
    date_format_medium => "d. MMM y.",
    date_format_short => "dd.MM.y.",
    datetime_format_full => "{1} 'u' {0}",
    datetime_format_long => "{1} 'u' {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "pon",
      "uto",
      "sri",
      "\N{U+010d}et",
      "pet",
      "sub",
      "ned"
    ],
    day_format_narrow => [
      "P",
      "U",
      "S",
      "\N{U+010c}",
      "P",
      "S",
      "N"
    ],
    day_format_wide => [
      "ponedjeljak",
      "utorak",
      "srijeda",
      "\N{U+010d}etvrtak",
      "petak",
      "subota",
      "nedjelja"
    ],
    day_stand_alone_abbreviated => [
      "pon",
      "uto",
      "sri",
      "\N{U+010d}et",
      "pet",
      "sub",
      "ned"
    ],
    day_stand_alone_narrow => [
      "p",
      "u",
      "s",
      "\N{U+010d}",
      "p",
      "s",
      "n"
    ],
    day_stand_alone_wide => [
      "ponedjeljak",
      "utorak",
      "srijeda",
      "\N{U+010d}etvrtak",
      "petak",
      "subota",
      "nedjelja"
    ],
    era_abbreviated => [
      "pr. Kr.",
      "p. Kr."
    ],
    era_narrow => [
      "pr.n.e.",
      "AD"
    ],
    era_wide => [
      "prije Krista",
      "poslije Krista"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Croatian",
    month_format_abbreviated => [
      "sij",
      "velj",
      "o\N{U+017e}u",
      "tra",
      "svi",
      "lip",
      "srp",
      "kol",
      "ruj",
      "lis",
      "stu",
      "pro"
    ],
    month_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4.",
      "5.",
      "6.",
      "7.",
      "8.",
      "9.",
      "10.",
      "11.",
      "12."
    ],
    month_format_wide => [
      "sije\N{U+010d}nja",
      "velja\N{U+010d}e",
      "o\N{U+017e}ujka",
      "travnja",
      "svibnja",
      "lipnja",
      "srpnja",
      "kolovoza",
      "rujna",
      "listopada",
      "studenoga",
      "prosinca"
    ],
    month_stand_alone_abbreviated => [
      "sij",
      "velj",
      "o\N{U+017e}u",
      "tra",
      "svi",
      "lip",
      "srp",
      "kol",
      "ruj",
      "lis",
      "stu",
      "pro"
    ],
    month_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4.",
      "5.",
      "6.",
      "7.",
      "8.",
      "9.",
      "10.",
      "11.",
      "12."
    ],
    month_stand_alone_wide => [
      "sije\N{U+010d}anj",
      "velja\N{U+010d}a",
      "o\N{U+017e}ujak",
      "travanj",
      "svibanj",
      "lipanj",
      "srpanj",
      "kolovoz",
      "rujan",
      "listopad",
      "studeni",
      "prosinac"
    ],
    name => "Croatian Bosnia & Herzegovina",
    native_language => "hrvatski",
    native_name => "hrvatski Bosna i Hercegovina",
    native_script => undef,
    native_territory => "Bosna i Hercegovina",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1kv",
      "2kv",
      "3kv",
      "4kv"
    ],
    quarter_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_format_wide => [
      "1. kvartal",
      "2. kvartal",
      "3. kvartal",
      "4. kvartal"
    ],
    quarter_stand_alone_abbreviated => [
      "1kv",
      "2kv",
      "3kv",
      "4kv"
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "1. kvartal",
      "2. kvartal",
      "3. kvartal",
      "4. kvartal"
    ],
    script => undef,
    territory => "Bosnia & Herzegovina",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ hr-HR ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E, d.",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y. G",
      GyMMM => "LLL y. G",
      GyMMMEd => "E, d. MMM y. G",
      GyMMMd => "d. MMM y. G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L.",
      MEd => "E, dd.MM.",
      MMM => "LLL",
      MMMEd => "E, d. MMM",
      MMMMEd => "E, d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMdd => "dd. MM.",
      Md => "dd.MM.",
      d => "d.",
      h => "h a",
      hm => "hh:mm a",
      hms => "hh:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y.",
      yM => "MM.y.",
      yMEd => "E, dd.MM.y.",
      yMM => "MM. y.",
      yMMM => "LLL y.",
      yMMMEd => "E, d. MMM y.",
      yMMMM => "LLLL y.",
      yMMMd => "d. MMM y.",
      yMd => "dd.MM.y.",
      yQQQ => "QQQ y.",
      yQQQQ => "QQQQ y."
    },
    code => "hr-HR",
    date_format_full => "EEEE, d. MMMM y.",
    date_format_long => "d. MMMM y.",
    date_format_medium => "d. MMM y.",
    date_format_short => "dd.MM.y.",
    datetime_format_full => "{1} 'u' {0}",
    datetime_format_long => "{1} 'u' {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "pon",
      "uto",
      "sri",
      "\N{U+010d}et",
      "pet",
      "sub",
      "ned"
    ],
    day_format_narrow => [
      "P",
      "U",
      "S",
      "\N{U+010c}",
      "P",
      "S",
      "N"
    ],
    day_format_wide => [
      "ponedjeljak",
      "utorak",
      "srijeda",
      "\N{U+010d}etvrtak",
      "petak",
      "subota",
      "nedjelja"
    ],
    day_stand_alone_abbreviated => [
      "pon",
      "uto",
      "sri",
      "\N{U+010d}et",
      "pet",
      "sub",
      "ned"
    ],
    day_stand_alone_narrow => [
      "p",
      "u",
      "s",
      "\N{U+010d}",
      "p",
      "s",
      "n"
    ],
    day_stand_alone_wide => [
      "ponedjeljak",
      "utorak",
      "srijeda",
      "\N{U+010d}etvrtak",
      "petak",
      "subota",
      "nedjelja"
    ],
    era_abbreviated => [
      "pr. Kr.",
      "p. Kr."
    ],
    era_narrow => [
      "pr.n.e.",
      "AD"
    ],
    era_wide => [
      "prije Krista",
      "poslije Krista"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d.%m.%Y",
    glibc_datetime_format => "%a %d %b %Y %T",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Croatian",
    month_format_abbreviated => [
      "sij",
      "velj",
      "o\N{U+017e}u",
      "tra",
      "svi",
      "lip",
      "srp",
      "kol",
      "ruj",
      "lis",
      "stu",
      "pro"
    ],
    month_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4.",
      "5.",
      "6.",
      "7.",
      "8.",
      "9.",
      "10.",
      "11.",
      "12."
    ],
    month_format_wide => [
      "sije\N{U+010d}nja",
      "velja\N{U+010d}e",
      "o\N{U+017e}ujka",
      "travnja",
      "svibnja",
      "lipnja",
      "srpnja",
      "kolovoza",
      "rujna",
      "listopada",
      "studenoga",
      "prosinca"
    ],
    month_stand_alone_abbreviated => [
      "sij",
      "velj",
      "o\N{U+017e}u",
      "tra",
      "svi",
      "lip",
      "srp",
      "kol",
      "ruj",
      "lis",
      "stu",
      "pro"
    ],
    month_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4.",
      "5.",
      "6.",
      "7.",
      "8.",
      "9.",
      "10.",
      "11.",
      "12."
    ],
    month_stand_alone_wide => [
      "sije\N{U+010d}anj",
      "velja\N{U+010d}a",
      "o\N{U+017e}ujak",
      "travanj",
      "svibanj",
      "lipanj",
      "srpanj",
      "kolovoz",
      "rujan",
      "listopad",
      "studeni",
      "prosinac"
    ],
    name => "Croatian Croatia",
    native_language => "hrvatski",
    native_name => "hrvatski Hrvatska",
    native_script => undef,
    native_territory => "Hrvatska",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1kv",
      "2kv",
      "3kv",
      "4kv"
    ],
    quarter_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_format_wide => [
      "1. kvartal",
      "2. kvartal",
      "3. kvartal",
      "4. kvartal"
    ],
    quarter_stand_alone_abbreviated => [
      "1kv",
      "2kv",
      "3kv",
      "4kv"
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "1. kvartal",
      "2. kvartal",
      "3. kvartal",
      "4. kvartal"
    ],
    script => undef,
    territory => "Croatia",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ hsb ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, H:mm 'hod\N{U+017a}'.",
      EHms => "E, HH:mm:ss",
      Ed => "E, d.",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d. MMM y G",
      GyMMMd => "d. MMM y G",
      H => "H 'hod\N{U+017a}'.",
      Hm => "H:mm 'hod\N{U+017a}'.",
      Hms => "H:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E, d. MMM",
      MMMMd => "MMMM d",
      MMMd => "d. MMM",
      Md => "d.M.",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M.y",
      yMEd => "E, d.M.y",
      yMMM => "MMM y",
      yMMMEd => "E, d. MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d. MMM y",
      yMd => "d.M.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "hsb",
    date_format_full => "EEEE, d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "d.M.y",
    date_format_short => "d.M.yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "p\N{U+00f3}n",
      "wut",
      "srj",
      "\N{U+0161}tw",
      "pja",
      "sob",
      "nje"
    ],
    day_format_narrow => [
      "p",
      "w",
      "s",
      "\N{U+0161}",
      "p",
      "s",
      "n"
    ],
    day_format_wide => [
      "p\N{U+00f3}nd\N{U+017a}ela",
      "wutora",
      "srjeda",
      "\N{U+0161}tw\N{U+00f3}rtk",
      "pjatk",
      "sobota",
      "njed\N{U+017a}ela"
    ],
    day_stand_alone_abbreviated => [
      "p\N{U+00f3}n",
      "wut",
      "srj",
      "\N{U+0161}tw",
      "pja",
      "sob",
      "nje"
    ],
    day_stand_alone_narrow => [
      "p",
      "w",
      "s",
      "\N{U+0161}",
      "p",
      "s",
      "n"
    ],
    day_stand_alone_wide => [
      "p\N{U+00f3}nd\N{U+017a}ela",
      "wutora",
      "srjeda",
      "\N{U+0161}tw\N{U+00f3}rtk",
      "pjatk",
      "sobota",
      "njed\N{U+017a}ela"
    ],
    era_abbreviated => [
      "p\N{U+0159}.Chr.n.",
      "po Chr.n."
    ],
    era_narrow => [
      "p\N{U+0159}.Chr.n.",
      "po Chr.n."
    ],
    era_wide => [
      "p\N{U+0159}ed Chrystowym narod\N{U+017a}enjom",
      "po Chrystowym narod\N{U+017a}enju"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Upper Sorbian",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "m\N{U+011b}r.",
      "apr.",
      "mej.",
      "jun.",
      "jul.",
      "awg.",
      "sep.",
      "okt.",
      "now.",
      "dec."
    ],
    month_format_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "januara",
      "februara",
      "m\N{U+011b}rca",
      "apryla",
      "meje",
      "junija",
      "julija",
      "awgusta",
      "septembra",
      "oktobra",
      "nowembra",
      "decembra"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "m\N{U+011b}r",
      "apr",
      "mej",
      "jun",
      "jul",
      "awg",
      "sep",
      "okt",
      "now",
      "dec"
    ],
    month_stand_alone_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_stand_alone_wide => [
      "januar",
      "februar",
      "m\N{U+011b}rc",
      "apryl",
      "meja",
      "junij",
      "julij",
      "awgust",
      "september",
      "oktober",
      "nowember",
      "december"
    ],
    name => "Upper Sorbian",
    native_language => "hornjoserb\N{U+0161}\N{U+0107}ina",
    native_name => "hornjoserb\N{U+0161}\N{U+0107}ina",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. kwartal",
      "2. kwartal",
      "3. kwartal",
      "4. kwartal"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. kwartal",
      "2. kwartal",
      "3. kwartal",
      "4. kwartal"
    ],
    script => undef,
    territory => undef,
    time_format_full => "H:mm:ss zzzz",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm 'hod\N{U+017a}'.",
    variant => undef,
    version => 28
  }
  __[ hsb-DE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, H:mm 'hod\N{U+017a}'.",
      EHms => "E, HH:mm:ss",
      Ed => "E, d.",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d. MMM y G",
      GyMMMd => "d. MMM y G",
      H => "H 'hod\N{U+017a}'.",
      Hm => "H:mm 'hod\N{U+017a}'.",
      Hms => "H:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E, d. MMM",
      MMMMd => "MMMM d",
      MMMd => "d. MMM",
      Md => "d.M.",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M.y",
      yMEd => "E, d.M.y",
      yMMM => "MMM y",
      yMMMEd => "E, d. MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d. MMM y",
      yMd => "d.M.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "hsb-DE",
    date_format_full => "EEEE, d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "d.M.y",
    date_format_short => "d.M.yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "p\N{U+00f3}n",
      "wut",
      "srj",
      "\N{U+0161}tw",
      "pja",
      "sob",
      "nje"
    ],
    day_format_narrow => [
      "p",
      "w",
      "s",
      "\N{U+0161}",
      "p",
      "s",
      "n"
    ],
    day_format_wide => [
      "p\N{U+00f3}nd\N{U+017a}ela",
      "wutora",
      "srjeda",
      "\N{U+0161}tw\N{U+00f3}rtk",
      "pjatk",
      "sobota",
      "njed\N{U+017a}ela"
    ],
    day_stand_alone_abbreviated => [
      "p\N{U+00f3}n",
      "wut",
      "srj",
      "\N{U+0161}tw",
      "pja",
      "sob",
      "nje"
    ],
    day_stand_alone_narrow => [
      "p",
      "w",
      "s",
      "\N{U+0161}",
      "p",
      "s",
      "n"
    ],
    day_stand_alone_wide => [
      "p\N{U+00f3}nd\N{U+017a}ela",
      "wutora",
      "srjeda",
      "\N{U+0161}tw\N{U+00f3}rtk",
      "pjatk",
      "sobota",
      "njed\N{U+017a}ela"
    ],
    era_abbreviated => [
      "p\N{U+0159}.Chr.n.",
      "po Chr.n."
    ],
    era_narrow => [
      "p\N{U+0159}.Chr.n.",
      "po Chr.n."
    ],
    era_wide => [
      "p\N{U+0159}ed Chrystowym narod\N{U+017a}enjom",
      "po Chrystowym narod\N{U+017a}enju"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d.%m.%Y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Upper Sorbian",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "m\N{U+011b}r.",
      "apr.",
      "mej.",
      "jun.",
      "jul.",
      "awg.",
      "sep.",
      "okt.",
      "now.",
      "dec."
    ],
    month_format_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "januara",
      "februara",
      "m\N{U+011b}rca",
      "apryla",
      "meje",
      "junija",
      "julija",
      "awgusta",
      "septembra",
      "oktobra",
      "nowembra",
      "decembra"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "m\N{U+011b}r",
      "apr",
      "mej",
      "jun",
      "jul",
      "awg",
      "sep",
      "okt",
      "now",
      "dec"
    ],
    month_stand_alone_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_stand_alone_wide => [
      "januar",
      "februar",
      "m\N{U+011b}rc",
      "apryl",
      "meja",
      "junij",
      "julij",
      "awgust",
      "september",
      "oktober",
      "nowember",
      "december"
    ],
    name => "Upper Sorbian Germany",
    native_language => "hornjoserb\N{U+0161}\N{U+0107}ina",
    native_name => "hornjoserb\N{U+0161}\N{U+0107}ina N\N{U+011b}mska",
    native_script => undef,
    native_territory => "N\N{U+011b}mska",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. kwartal",
      "2. kwartal",
      "3. kwartal",
      "4. kwartal"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. kwartal",
      "2. kwartal",
      "3. kwartal",
      "4. kwartal"
    ],
    script => undef,
    territory => "Germany",
    time_format_full => "H:mm:ss zzzz",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm 'hod\N{U+017a}'.",
    variant => undef,
    version => 28
  }
  __[ hu ]__
  {
    am_pm_abbreviated => [
      "de.",
      "du."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d., E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y.",
      GyMMM => "G y. MMM",
      GyMMMEd => "G y. MMM d., E",
      GyMMMd => "G y. MMM d.",
      H => "H",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "M. d., E",
      MMM => "LLL",
      MMMEd => "MMM d., E",
      MMMMd => "MMMM d.",
      MMMd => "MMM d.",
      Md => "M. d.",
      d => "d",
      h => "a h",
      hm => "a h:mm",
      hms => "a h:mm:ss",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y.",
      yM => "y. M.",
      yMEd => "y. MM. dd., E",
      yMMM => "y. MMM",
      yMMMEd => "y. MMM d., E",
      yMMMM => "y. MMMM",
      yMMMd => "y. MMM d.",
      yMd => "y. MM. dd.",
      yQQQ => "y. QQQ",
      yQQQQ => "y. QQQQ"
    },
    code => "hu",
    date_format_full => "y. MMMM d., EEEE",
    date_format_long => "y. MMMM d.",
    date_format_medium => "y. MMM d.",
    date_format_short => "y. MM. dd.",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "H",
      "K",
      "Sze",
      "Cs",
      "P",
      "Szo",
      "V"
    ],
    day_format_narrow => [
      "H",
      "K",
      "Sz",
      "Cs",
      "P",
      "Sz",
      "V"
    ],
    day_format_wide => [
      "h\N{U+00e9}tf\N{U+0151}",
      "kedd",
      "szerda",
      "cs\N{U+00fc}t\N{U+00f6}rt\N{U+00f6}k",
      "p\N{U+00e9}ntek",
      "szombat",
      "vas\N{U+00e1}rnap"
    ],
    day_stand_alone_abbreviated => [
      "H",
      "K",
      "Sze",
      "Cs",
      "P",
      "Szo",
      "V"
    ],
    day_stand_alone_narrow => [
      "H",
      "K",
      "Sz",
      "Cs",
      "P",
      "Sz",
      "V"
    ],
    day_stand_alone_wide => [
      "h\N{U+00e9}tf\N{U+0151}",
      "kedd",
      "szerda",
      "cs\N{U+00fc}t\N{U+00f6}rt\N{U+00f6}k",
      "p\N{U+00e9}ntek",
      "szombat",
      "vas\N{U+00e1}rnap"
    ],
    era_abbreviated => [
      "i. e.",
      "i. sz."
    ],
    era_narrow => [
      "ie.",
      "isz."
    ],
    era_wide => [
      "id\N{U+0151}sz\N{U+00e1}m\N{U+00ed}t\N{U+00e1}sunk el\N{U+0151}tt",
      "id\N{U+0151}sz\N{U+00e1}m\N{U+00ed}t\N{U+00e1}sunk szerint"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Hungarian",
    month_format_abbreviated => [
      "jan.",
      "febr.",
      "m\N{U+00e1}rc.",
      "\N{U+00e1}pr.",
      "m\N{U+00e1}j.",
      "j\N{U+00fa}n.",
      "j\N{U+00fa}l.",
      "aug.",
      "szept.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "\N{U+00c1}",
      "M",
      "J",
      "J",
      "A",
      "Sz",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janu\N{U+00e1}r",
      "febru\N{U+00e1}r",
      "m\N{U+00e1}rcius",
      "\N{U+00e1}prilis",
      "m\N{U+00e1}jus",
      "j\N{U+00fa}nius",
      "j\N{U+00fa}lius",
      "augusztus",
      "szeptember",
      "okt\N{U+00f3}ber",
      "november",
      "december"
    ],
    month_stand_alone_abbreviated => [
      "jan.",
      "febr.",
      "m\N{U+00e1}rc.",
      "\N{U+00e1}pr.",
      "m\N{U+00e1}j.",
      "j\N{U+00fa}n.",
      "j\N{U+00fa}l.",
      "aug.",
      "szept.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "\N{U+00c1}",
      "M",
      "J",
      "J",
      "A",
      "Sz",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janu\N{U+00e1}r",
      "febru\N{U+00e1}r",
      "m\N{U+00e1}rcius",
      "\N{U+00e1}prilis",
      "m\N{U+00e1}jus",
      "j\N{U+00fa}nius",
      "j\N{U+00fa}lius",
      "augusztus",
      "szeptember",
      "okt\N{U+00f3}ber",
      "november",
      "december"
    ],
    name => "Hungarian",
    native_language => "magyar",
    native_name => "magyar",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "N1",
      "N2",
      "N3",
      "N4"
    ],
    quarter_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_format_wide => [
      "I. negyed\N{U+00e9}v",
      "II. negyed\N{U+00e9}v",
      "III. negyed\N{U+00e9}v",
      "IV. negyed\N{U+00e9}v"
    ],
    quarter_stand_alone_abbreviated => [
      "N1",
      "N2",
      "N3",
      "N4"
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "1. negyed\N{U+00e9}v",
      "2. negyed\N{U+00e9}v",
      "3. negyed\N{U+00e9}v",
      "4. negyed\N{U+00e9}v"
    ],
    script => undef,
    territory => undef,
    time_format_full => "H:mm:ss zzzz",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ hu-HU ]__
  {
    am_pm_abbreviated => [
      "de.",
      "du."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d., E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y.",
      GyMMM => "G y. MMM",
      GyMMMEd => "G y. MMM d., E",
      GyMMMd => "G y. MMM d.",
      H => "H",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "M. d., E",
      MMM => "LLL",
      MMMEd => "MMM d., E",
      MMMMd => "MMMM d.",
      MMMd => "MMM d.",
      Md => "M. d.",
      d => "d",
      h => "a h",
      hm => "a h:mm",
      hms => "a h:mm:ss",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y.",
      yM => "y. M.",
      yMEd => "y. MM. dd., E",
      yMMM => "y. MMM",
      yMMMEd => "y. MMM d., E",
      yMMMM => "y. MMMM",
      yMMMd => "y. MMM d.",
      yMd => "y. MM. dd.",
      yQQQ => "y. QQQ",
      yQQQQ => "y. QQQQ"
    },
    code => "hu-HU",
    date_format_full => "y. MMMM d., EEEE",
    date_format_long => "y. MMMM d.",
    date_format_medium => "y. MMM d.",
    date_format_short => "y. MM. dd.",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "H",
      "K",
      "Sze",
      "Cs",
      "P",
      "Szo",
      "V"
    ],
    day_format_narrow => [
      "H",
      "K",
      "Sz",
      "Cs",
      "P",
      "Sz",
      "V"
    ],
    day_format_wide => [
      "h\N{U+00e9}tf\N{U+0151}",
      "kedd",
      "szerda",
      "cs\N{U+00fc}t\N{U+00f6}rt\N{U+00f6}k",
      "p\N{U+00e9}ntek",
      "szombat",
      "vas\N{U+00e1}rnap"
    ],
    day_stand_alone_abbreviated => [
      "H",
      "K",
      "Sze",
      "Cs",
      "P",
      "Szo",
      "V"
    ],
    day_stand_alone_narrow => [
      "H",
      "K",
      "Sz",
      "Cs",
      "P",
      "Sz",
      "V"
    ],
    day_stand_alone_wide => [
      "h\N{U+00e9}tf\N{U+0151}",
      "kedd",
      "szerda",
      "cs\N{U+00fc}t\N{U+00f6}rt\N{U+00f6}k",
      "p\N{U+00e9}ntek",
      "szombat",
      "vas\N{U+00e1}rnap"
    ],
    era_abbreviated => [
      "i. e.",
      "i. sz."
    ],
    era_narrow => [
      "ie.",
      "isz."
    ],
    era_wide => [
      "id\N{U+0151}sz\N{U+00e1}m\N{U+00ed}t\N{U+00e1}sunk el\N{U+0151}tt",
      "id\N{U+0151}sz\N{U+00e1}m\N{U+00ed}t\N{U+00e1}sunk szerint"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%Y. %b. %e., %A, %H.%M.%S %Z",
    glibc_date_format => "%Y-%m-%d",
    glibc_datetime_format => "%Y. %b. %e., %A, %H.%M.%S %Z",
    glibc_time_12_format => "%H.%M.%S",
    glibc_time_format => "%H.%M.%S",
    language => "Hungarian",
    month_format_abbreviated => [
      "jan.",
      "febr.",
      "m\N{U+00e1}rc.",
      "\N{U+00e1}pr.",
      "m\N{U+00e1}j.",
      "j\N{U+00fa}n.",
      "j\N{U+00fa}l.",
      "aug.",
      "szept.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "\N{U+00c1}",
      "M",
      "J",
      "J",
      "A",
      "Sz",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janu\N{U+00e1}r",
      "febru\N{U+00e1}r",
      "m\N{U+00e1}rcius",
      "\N{U+00e1}prilis",
      "m\N{U+00e1}jus",
      "j\N{U+00fa}nius",
      "j\N{U+00fa}lius",
      "augusztus",
      "szeptember",
      "okt\N{U+00f3}ber",
      "november",
      "december"
    ],
    month_stand_alone_abbreviated => [
      "jan.",
      "febr.",
      "m\N{U+00e1}rc.",
      "\N{U+00e1}pr.",
      "m\N{U+00e1}j.",
      "j\N{U+00fa}n.",
      "j\N{U+00fa}l.",
      "aug.",
      "szept.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "\N{U+00c1}",
      "M",
      "J",
      "J",
      "A",
      "Sz",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janu\N{U+00e1}r",
      "febru\N{U+00e1}r",
      "m\N{U+00e1}rcius",
      "\N{U+00e1}prilis",
      "m\N{U+00e1}jus",
      "j\N{U+00fa}nius",
      "j\N{U+00fa}lius",
      "augusztus",
      "szeptember",
      "okt\N{U+00f3}ber",
      "november",
      "december"
    ],
    name => "Hungarian Hungary",
    native_language => "magyar",
    native_name => "magyar Magyarorsz\N{U+00e1}g",
    native_script => undef,
    native_territory => "Magyarorsz\N{U+00e1}g",
    native_variant => undef,
    quarter_format_abbreviated => [
      "N1",
      "N2",
      "N3",
      "N4"
    ],
    quarter_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_format_wide => [
      "I. negyed\N{U+00e9}v",
      "II. negyed\N{U+00e9}v",
      "III. negyed\N{U+00e9}v",
      "IV. negyed\N{U+00e9}v"
    ],
    quarter_stand_alone_abbreviated => [
      "N1",
      "N2",
      "N3",
      "N4"
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "1. negyed\N{U+00e9}v",
      "2. negyed\N{U+00e9}v",
      "3. negyed\N{U+00e9}v",
      "4. negyed\N{U+00e9}v"
    ],
    script => undef,
    territory => "Hungary",
    time_format_full => "H:mm:ss zzzz",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ hy ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "d, ccc",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "G y\N{U+0569}.",
      GyMMM => "G y\N{U+0569}. LLL",
      GyMMMEd => "G y\N{U+0569}. MMM d, E",
      GyMMMd => "d MMM, y\N{U+0569}.,",
      H => "H",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "dd.MM, E",
      MMM => "LLL",
      MMMEd => "d MMM, E",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "dd.MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM.y",
      yMEd => "d.MM.y\N{U+0569}., E",
      yMMM => "y\N{U+0569}. LLL",
      yMMMEd => "y\N{U+0569}. MMM d, E",
      yMMMM => "y\N{U+0569}\N{U+2024} MMMM",
      yMMMd => "d MMM, y\N{U+0569}.",
      yMd => "dd.MM.y",
      yQQQ => "y \N{U+0569}, QQQ",
      yQQQQ => "y \N{U+0569}, QQQQ"
    },
    code => "hy",
    date_format_full => "y\N{U+0569}. MMMM d, EEEE",
    date_format_long => "dd MMMM, y\N{U+0569}.",
    date_format_medium => "dd MMM, y\N{U+0569}.",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+0565}\N{U+0580}\N{U+056f}",
      "\N{U+0565}\N{U+0580}\N{U+0584}",
      "\N{U+0579}\N{U+0580}\N{U+0584}",
      "\N{U+0570}\N{U+0576}\N{U+0563}",
      "\N{U+0578}\N{U+0582}\N{U+0580}",
      "\N{U+0577}\N{U+0562}\N{U+0569}",
      "\N{U+056f}\N{U+056b}\N{U+0580}"
    ],
    day_format_narrow => [
      "\N{U+0535}",
      "\N{U+0535}",
      "\N{U+0549}",
      "\N{U+0540}",
      "\N{U+0548}\N{U+0582}",
      "\N{U+0547}",
      "\N{U+053f}"
    ],
    day_format_wide => [
      "\N{U+0565}\N{U+0580}\N{U+056f}\N{U+0578}\N{U+0582}\N{U+0577}\N{U+0561}\N{U+0562}\N{U+0569}\N{U+056b}",
      "\N{U+0565}\N{U+0580}\N{U+0565}\N{U+0584}\N{U+0577}\N{U+0561}\N{U+0562}\N{U+0569}\N{U+056b}",
      "\N{U+0579}\N{U+0578}\N{U+0580}\N{U+0565}\N{U+0584}\N{U+0577}\N{U+0561}\N{U+0562}\N{U+0569}\N{U+056b}",
      "\N{U+0570}\N{U+056b}\N{U+0576}\N{U+0563}\N{U+0577}\N{U+0561}\N{U+0562}\N{U+0569}\N{U+056b}",
      "\N{U+0578}\N{U+0582}\N{U+0580}\N{U+0562}\N{U+0561}\N{U+0569}",
      "\N{U+0577}\N{U+0561}\N{U+0562}\N{U+0561}\N{U+0569}",
      "\N{U+056f}\N{U+056b}\N{U+0580}\N{U+0561}\N{U+056f}\N{U+056b}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0565}\N{U+0580}\N{U+056f}",
      "\N{U+0565}\N{U+0580}\N{U+0584}",
      "\N{U+0579}\N{U+0580}\N{U+0584}",
      "\N{U+0570}\N{U+0576}\N{U+0563}",
      "\N{U+0578}\N{U+0582}\N{U+0580}",
      "\N{U+0577}\N{U+0562}\N{U+0569}",
      "\N{U+056f}\N{U+056b}\N{U+0580}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0535}\N{U+056f}",
      "\N{U+0535}\N{U+0580}",
      "\N{U+0549}\N{U+0580}",
      "\N{U+0540}\N{U+0563}",
      "\N{U+0548}\N{U+0582}",
      "\N{U+0547}\N{U+0562}",
      "\N{U+053f}\N{U+0580}"
    ],
    day_stand_alone_wide => [
      "\N{U+0565}\N{U+0580}\N{U+056f}\N{U+0578}\N{U+0582}\N{U+0577}\N{U+0561}\N{U+0562}\N{U+0569}\N{U+056b}",
      "\N{U+0565}\N{U+0580}\N{U+0565}\N{U+0584}\N{U+0577}\N{U+0561}\N{U+0562}\N{U+0569}\N{U+056b}",
      "\N{U+0579}\N{U+0578}\N{U+0580}\N{U+0565}\N{U+0584}\N{U+0577}\N{U+0561}\N{U+0562}\N{U+0569}\N{U+056b}",
      "\N{U+0570}\N{U+056b}\N{U+0576}\N{U+0563}\N{U+0577}\N{U+0561}\N{U+0562}\N{U+0569}\N{U+056b}",
      "\N{U+0578}\N{U+0582}\N{U+0580}\N{U+0562}\N{U+0561}\N{U+0569}",
      "\N{U+0577}\N{U+0561}\N{U+0562}\N{U+0561}\N{U+0569}",
      "\N{U+056f}\N{U+056b}\N{U+0580}\N{U+0561}\N{U+056f}\N{U+056b}"
    ],
    era_abbreviated => [
      "\N{U+0574}.\N{U+0569}.\N{U+0561}.",
      "\N{U+0574}.\N{U+0569}."
    ],
    era_narrow => [
      "\N{U+0574}.\N{U+0569}.\N{U+0561}.",
      "\N{U+0574}.\N{U+0569}."
    ],
    era_wide => [
      "\N{U+0574}.\N{U+0569}.\N{U+0561}.",
      "\N{U+0574}.\N{U+0569}."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Armenian",
    month_format_abbreviated => [
      "\N{U+0570}\N{U+0576}\N{U+057e}",
      "\N{U+0583}\N{U+057f}\N{U+057e}",
      "\N{U+0574}\N{U+0580}\N{U+057f}",
      "\N{U+0561}\N{U+057a}\N{U+0580}",
      "\N{U+0574}\N{U+0575}\N{U+057d}",
      "\N{U+0570}\N{U+0576}\N{U+057d}",
      "\N{U+0570}\N{U+056c}\N{U+057d}",
      "\N{U+0585}\N{U+0563}\N{U+057d}",
      "\N{U+057d}\N{U+0565}\N{U+057a}",
      "\N{U+0570}\N{U+0578}\N{U+056f}",
      "\N{U+0576}\N{U+0578}\N{U+0575}",
      "\N{U+0564}\N{U+0565}\N{U+056f}"
    ],
    month_format_narrow => [
      "\N{U+0540}",
      "\N{U+0553}",
      "\N{U+0544}",
      "\N{U+0531}",
      "\N{U+0544}",
      "\N{U+0540}",
      "\N{U+0540}",
      "\N{U+0555}",
      "\N{U+054d}",
      "\N{U+0540}",
      "\N{U+0546}",
      "\N{U+0534}"
    ],
    month_format_wide => [
      "\N{U+0570}\N{U+0578}\N{U+0582}\N{U+0576}\N{U+057e}\N{U+0561}\N{U+0580}\N{U+056b}",
      "\N{U+0583}\N{U+0565}\N{U+057f}\N{U+0580}\N{U+057e}\N{U+0561}\N{U+0580}\N{U+056b}",
      "\N{U+0574}\N{U+0561}\N{U+0580}\N{U+057f}\N{U+056b}",
      "\N{U+0561}\N{U+057a}\N{U+0580}\N{U+056b}\N{U+056c}\N{U+056b}",
      "\N{U+0574}\N{U+0561}\N{U+0575}\N{U+056b}\N{U+057d}\N{U+056b}",
      "\N{U+0570}\N{U+0578}\N{U+0582}\N{U+0576}\N{U+056b}\N{U+057d}\N{U+056b}",
      "\N{U+0570}\N{U+0578}\N{U+0582}\N{U+056c}\N{U+056b}\N{U+057d}\N{U+056b}",
      "\N{U+0585}\N{U+0563}\N{U+0578}\N{U+057d}\N{U+057f}\N{U+0578}\N{U+057d}\N{U+056b}",
      "\N{U+057d}\N{U+0565}\N{U+057a}\N{U+057f}\N{U+0565}\N{U+0574}\N{U+0562}\N{U+0565}\N{U+0580}\N{U+056b}",
      "\N{U+0570}\N{U+0578}\N{U+056f}\N{U+057f}\N{U+0565}\N{U+0574}\N{U+0562}\N{U+0565}\N{U+0580}\N{U+056b}",
      "\N{U+0576}\N{U+0578}\N{U+0575}\N{U+0565}\N{U+0574}\N{U+0562}\N{U+0565}\N{U+0580}\N{U+056b}",
      "\N{U+0564}\N{U+0565}\N{U+056f}\N{U+057f}\N{U+0565}\N{U+0574}\N{U+0562}\N{U+0565}\N{U+0580}\N{U+056b}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0570}\N{U+0576}\N{U+057e}",
      "\N{U+0583}\N{U+057f}\N{U+057e}",
      "\N{U+0574}\N{U+0580}\N{U+057f}",
      "\N{U+0561}\N{U+057a}\N{U+0580}",
      "\N{U+0574}\N{U+0575}\N{U+057d}",
      "\N{U+0570}\N{U+0576}\N{U+057d}",
      "\N{U+0570}\N{U+056c}\N{U+057d}",
      "\N{U+0585}\N{U+0563}\N{U+057d}",
      "\N{U+057d}\N{U+0565}\N{U+057a}",
      "\N{U+0570}\N{U+0578}\N{U+056f}",
      "\N{U+0576}\N{U+0578}\N{U+0575}",
      "\N{U+0564}\N{U+0565}\N{U+056f}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0540}",
      "\N{U+0553}",
      "\N{U+0544}",
      "\N{U+0531}",
      "\N{U+0544}",
      "\N{U+0540}",
      "\N{U+0540}",
      "\N{U+0555}",
      "\N{U+054d}",
      "\N{U+0540}",
      "\N{U+0546}",
      "\N{U+0534}"
    ],
    month_stand_alone_wide => [
      "\N{U+0570}\N{U+0578}\N{U+0582}\N{U+0576}\N{U+057e}\N{U+0561}\N{U+0580}",
      "\N{U+0583}\N{U+0565}\N{U+057f}\N{U+0580}\N{U+057e}\N{U+0561}\N{U+0580}",
      "\N{U+0574}\N{U+0561}\N{U+0580}\N{U+057f}",
      "\N{U+0561}\N{U+057a}\N{U+0580}\N{U+056b}\N{U+056c}",
      "\N{U+0574}\N{U+0561}\N{U+0575}\N{U+056b}\N{U+057d}",
      "\N{U+0570}\N{U+0578}\N{U+0582}\N{U+0576}\N{U+056b}\N{U+057d}",
      "\N{U+0570}\N{U+0578}\N{U+0582}\N{U+056c}\N{U+056b}\N{U+057d}",
      "\N{U+0585}\N{U+0563}\N{U+0578}\N{U+057d}\N{U+057f}\N{U+0578}\N{U+057d}",
      "\N{U+057d}\N{U+0565}\N{U+057a}\N{U+057f}\N{U+0565}\N{U+0574}\N{U+0562}\N{U+0565}\N{U+0580}",
      "\N{U+0570}\N{U+0578}\N{U+056f}\N{U+057f}\N{U+0565}\N{U+0574}\N{U+0562}\N{U+0565}\N{U+0580}",
      "\N{U+0576}\N{U+0578}\N{U+0575}\N{U+0565}\N{U+0574}\N{U+0562}\N{U+0565}\N{U+0580}",
      "\N{U+0564}\N{U+0565}\N{U+056f}\N{U+057f}\N{U+0565}\N{U+0574}\N{U+0562}\N{U+0565}\N{U+0580}"
    ],
    name => "Armenian",
    native_language => "\N{U+0570}\N{U+0561}\N{U+0575}\N{U+0565}\N{U+0580}\N{U+0565}\N{U+0576}",
    native_name => "\N{U+0570}\N{U+0561}\N{U+0575}\N{U+0565}\N{U+0580}\N{U+0565}\N{U+0576}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "1-\N{U+056b}\N{U+0576} \N{U+0565}\N{U+057c}\N{U+0574}\N{U+057d}.",
      "2-\N{U+0580}\N{U+0564} \N{U+0565}\N{U+057c}\N{U+0574}\N{U+057d}.",
      "3-\N{U+0580}\N{U+0564} \N{U+0565}\N{U+057c}\N{U+0574}\N{U+057d}.",
      "4-\N{U+0580}\N{U+0564} \N{U+0565}\N{U+057c}\N{U+0574}\N{U+057d}."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1-\N{U+056b}\N{U+0576} \N{U+0565}\N{U+057c}\N{U+0561}\N{U+0574}\N{U+057d}\N{U+0575}\N{U+0561}\N{U+056f}",
      "2-\N{U+0580}\N{U+0564} \N{U+0565}\N{U+057c}\N{U+0561}\N{U+0574}\N{U+057d}\N{U+0575}\N{U+0561}\N{U+056f}",
      "3-\N{U+0580}\N{U+0564} \N{U+0565}\N{U+057c}\N{U+0561}\N{U+0574}\N{U+057d}\N{U+0575}\N{U+0561}\N{U+056f}",
      "4-\N{U+0580}\N{U+0564} \N{U+0565}\N{U+057c}\N{U+0561}\N{U+0574}\N{U+057d}\N{U+0575}\N{U+0561}\N{U+056f}"
    ],
    quarter_stand_alone_abbreviated => [
      "1-\N{U+056b}\N{U+0576} \N{U+0565}\N{U+057c}\N{U+0574}\N{U+057d}.",
      "2-\N{U+0580}\N{U+0564} \N{U+0565}\N{U+057c}\N{U+0574}\N{U+057d}.",
      "3-\N{U+0580}\N{U+0564} \N{U+0565}\N{U+057c}\N{U+0574}\N{U+057d}.",
      "4-\N{U+0580}\N{U+0564} \N{U+0565}\N{U+057c}\N{U+0574}\N{U+057d}."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-\N{U+056b}\N{U+0576} \N{U+0565}\N{U+057c}\N{U+0561}\N{U+0574}\N{U+057d}\N{U+0575}\N{U+0561}\N{U+056f}",
      "2-\N{U+0580}\N{U+0564} \N{U+0565}\N{U+057c}\N{U+0561}\N{U+0574}\N{U+057d}\N{U+0575}\N{U+0561}\N{U+056f}",
      "3-\N{U+0580}\N{U+0564} \N{U+0565}\N{U+057c}\N{U+0561}\N{U+0574}\N{U+057d}\N{U+0575}\N{U+0561}\N{U+056f}",
      "4-\N{U+0580}\N{U+0564} \N{U+0565}\N{U+057c}\N{U+0561}\N{U+0574}\N{U+057d}\N{U+0575}\N{U+0561}\N{U+056f}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "H:mm:ss, zzzz",
    time_format_long => "H:mm:ss, z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ hy-AM ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "d, ccc",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "G y\N{U+0569}.",
      GyMMM => "G y\N{U+0569}. LLL",
      GyMMMEd => "G y\N{U+0569}. MMM d, E",
      GyMMMd => "d MMM, y\N{U+0569}.,",
      H => "H",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "dd.MM, E",
      MMM => "LLL",
      MMMEd => "d MMM, E",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "dd.MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM.y",
      yMEd => "d.MM.y\N{U+0569}., E",
      yMMM => "y\N{U+0569}. LLL",
      yMMMEd => "y\N{U+0569}. MMM d, E",
      yMMMM => "y\N{U+0569}\N{U+2024} MMMM",
      yMMMd => "d MMM, y\N{U+0569}.",
      yMd => "dd.MM.y",
      yQQQ => "y \N{U+0569}, QQQ",
      yQQQQ => "y \N{U+0569}, QQQQ"
    },
    code => "hy-AM",
    date_format_full => "y\N{U+0569}. MMMM d, EEEE",
    date_format_long => "dd MMMM, y\N{U+0569}.",
    date_format_medium => "dd MMM, y\N{U+0569}.",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+0565}\N{U+0580}\N{U+056f}",
      "\N{U+0565}\N{U+0580}\N{U+0584}",
      "\N{U+0579}\N{U+0580}\N{U+0584}",
      "\N{U+0570}\N{U+0576}\N{U+0563}",
      "\N{U+0578}\N{U+0582}\N{U+0580}",
      "\N{U+0577}\N{U+0562}\N{U+0569}",
      "\N{U+056f}\N{U+056b}\N{U+0580}"
    ],
    day_format_narrow => [
      "\N{U+0535}",
      "\N{U+0535}",
      "\N{U+0549}",
      "\N{U+0540}",
      "\N{U+0548}\N{U+0582}",
      "\N{U+0547}",
      "\N{U+053f}"
    ],
    day_format_wide => [
      "\N{U+0565}\N{U+0580}\N{U+056f}\N{U+0578}\N{U+0582}\N{U+0577}\N{U+0561}\N{U+0562}\N{U+0569}\N{U+056b}",
      "\N{U+0565}\N{U+0580}\N{U+0565}\N{U+0584}\N{U+0577}\N{U+0561}\N{U+0562}\N{U+0569}\N{U+056b}",
      "\N{U+0579}\N{U+0578}\N{U+0580}\N{U+0565}\N{U+0584}\N{U+0577}\N{U+0561}\N{U+0562}\N{U+0569}\N{U+056b}",
      "\N{U+0570}\N{U+056b}\N{U+0576}\N{U+0563}\N{U+0577}\N{U+0561}\N{U+0562}\N{U+0569}\N{U+056b}",
      "\N{U+0578}\N{U+0582}\N{U+0580}\N{U+0562}\N{U+0561}\N{U+0569}",
      "\N{U+0577}\N{U+0561}\N{U+0562}\N{U+0561}\N{U+0569}",
      "\N{U+056f}\N{U+056b}\N{U+0580}\N{U+0561}\N{U+056f}\N{U+056b}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0565}\N{U+0580}\N{U+056f}",
      "\N{U+0565}\N{U+0580}\N{U+0584}",
      "\N{U+0579}\N{U+0580}\N{U+0584}",
      "\N{U+0570}\N{U+0576}\N{U+0563}",
      "\N{U+0578}\N{U+0582}\N{U+0580}",
      "\N{U+0577}\N{U+0562}\N{U+0569}",
      "\N{U+056f}\N{U+056b}\N{U+0580}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0535}\N{U+056f}",
      "\N{U+0535}\N{U+0580}",
      "\N{U+0549}\N{U+0580}",
      "\N{U+0540}\N{U+0563}",
      "\N{U+0548}\N{U+0582}",
      "\N{U+0547}\N{U+0562}",
      "\N{U+053f}\N{U+0580}"
    ],
    day_stand_alone_wide => [
      "\N{U+0565}\N{U+0580}\N{U+056f}\N{U+0578}\N{U+0582}\N{U+0577}\N{U+0561}\N{U+0562}\N{U+0569}\N{U+056b}",
      "\N{U+0565}\N{U+0580}\N{U+0565}\N{U+0584}\N{U+0577}\N{U+0561}\N{U+0562}\N{U+0569}\N{U+056b}",
      "\N{U+0579}\N{U+0578}\N{U+0580}\N{U+0565}\N{U+0584}\N{U+0577}\N{U+0561}\N{U+0562}\N{U+0569}\N{U+056b}",
      "\N{U+0570}\N{U+056b}\N{U+0576}\N{U+0563}\N{U+0577}\N{U+0561}\N{U+0562}\N{U+0569}\N{U+056b}",
      "\N{U+0578}\N{U+0582}\N{U+0580}\N{U+0562}\N{U+0561}\N{U+0569}",
      "\N{U+0577}\N{U+0561}\N{U+0562}\N{U+0561}\N{U+0569}",
      "\N{U+056f}\N{U+056b}\N{U+0580}\N{U+0561}\N{U+056f}\N{U+056b}"
    ],
    era_abbreviated => [
      "\N{U+0574}.\N{U+0569}.\N{U+0561}.",
      "\N{U+0574}.\N{U+0569}."
    ],
    era_narrow => [
      "\N{U+0574}.\N{U+0569}.\N{U+0561}.",
      "\N{U+0574}.\N{U+0569}."
    ],
    era_wide => [
      "\N{U+0574}.\N{U+0569}.\N{U+0561}.",
      "\N{U+0574}.\N{U+0569}."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %d %b %Y %r %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%r",
    language => "Armenian",
    month_format_abbreviated => [
      "\N{U+0570}\N{U+0576}\N{U+057e}",
      "\N{U+0583}\N{U+057f}\N{U+057e}",
      "\N{U+0574}\N{U+0580}\N{U+057f}",
      "\N{U+0561}\N{U+057a}\N{U+0580}",
      "\N{U+0574}\N{U+0575}\N{U+057d}",
      "\N{U+0570}\N{U+0576}\N{U+057d}",
      "\N{U+0570}\N{U+056c}\N{U+057d}",
      "\N{U+0585}\N{U+0563}\N{U+057d}",
      "\N{U+057d}\N{U+0565}\N{U+057a}",
      "\N{U+0570}\N{U+0578}\N{U+056f}",
      "\N{U+0576}\N{U+0578}\N{U+0575}",
      "\N{U+0564}\N{U+0565}\N{U+056f}"
    ],
    month_format_narrow => [
      "\N{U+0540}",
      "\N{U+0553}",
      "\N{U+0544}",
      "\N{U+0531}",
      "\N{U+0544}",
      "\N{U+0540}",
      "\N{U+0540}",
      "\N{U+0555}",
      "\N{U+054d}",
      "\N{U+0540}",
      "\N{U+0546}",
      "\N{U+0534}"
    ],
    month_format_wide => [
      "\N{U+0570}\N{U+0578}\N{U+0582}\N{U+0576}\N{U+057e}\N{U+0561}\N{U+0580}\N{U+056b}",
      "\N{U+0583}\N{U+0565}\N{U+057f}\N{U+0580}\N{U+057e}\N{U+0561}\N{U+0580}\N{U+056b}",
      "\N{U+0574}\N{U+0561}\N{U+0580}\N{U+057f}\N{U+056b}",
      "\N{U+0561}\N{U+057a}\N{U+0580}\N{U+056b}\N{U+056c}\N{U+056b}",
      "\N{U+0574}\N{U+0561}\N{U+0575}\N{U+056b}\N{U+057d}\N{U+056b}",
      "\N{U+0570}\N{U+0578}\N{U+0582}\N{U+0576}\N{U+056b}\N{U+057d}\N{U+056b}",
      "\N{U+0570}\N{U+0578}\N{U+0582}\N{U+056c}\N{U+056b}\N{U+057d}\N{U+056b}",
      "\N{U+0585}\N{U+0563}\N{U+0578}\N{U+057d}\N{U+057f}\N{U+0578}\N{U+057d}\N{U+056b}",
      "\N{U+057d}\N{U+0565}\N{U+057a}\N{U+057f}\N{U+0565}\N{U+0574}\N{U+0562}\N{U+0565}\N{U+0580}\N{U+056b}",
      "\N{U+0570}\N{U+0578}\N{U+056f}\N{U+057f}\N{U+0565}\N{U+0574}\N{U+0562}\N{U+0565}\N{U+0580}\N{U+056b}",
      "\N{U+0576}\N{U+0578}\N{U+0575}\N{U+0565}\N{U+0574}\N{U+0562}\N{U+0565}\N{U+0580}\N{U+056b}",
      "\N{U+0564}\N{U+0565}\N{U+056f}\N{U+057f}\N{U+0565}\N{U+0574}\N{U+0562}\N{U+0565}\N{U+0580}\N{U+056b}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0570}\N{U+0576}\N{U+057e}",
      "\N{U+0583}\N{U+057f}\N{U+057e}",
      "\N{U+0574}\N{U+0580}\N{U+057f}",
      "\N{U+0561}\N{U+057a}\N{U+0580}",
      "\N{U+0574}\N{U+0575}\N{U+057d}",
      "\N{U+0570}\N{U+0576}\N{U+057d}",
      "\N{U+0570}\N{U+056c}\N{U+057d}",
      "\N{U+0585}\N{U+0563}\N{U+057d}",
      "\N{U+057d}\N{U+0565}\N{U+057a}",
      "\N{U+0570}\N{U+0578}\N{U+056f}",
      "\N{U+0576}\N{U+0578}\N{U+0575}",
      "\N{U+0564}\N{U+0565}\N{U+056f}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0540}",
      "\N{U+0553}",
      "\N{U+0544}",
      "\N{U+0531}",
      "\N{U+0544}",
      "\N{U+0540}",
      "\N{U+0540}",
      "\N{U+0555}",
      "\N{U+054d}",
      "\N{U+0540}",
      "\N{U+0546}",
      "\N{U+0534}"
    ],
    month_stand_alone_wide => [
      "\N{U+0570}\N{U+0578}\N{U+0582}\N{U+0576}\N{U+057e}\N{U+0561}\N{U+0580}",
      "\N{U+0583}\N{U+0565}\N{U+057f}\N{U+0580}\N{U+057e}\N{U+0561}\N{U+0580}",
      "\N{U+0574}\N{U+0561}\N{U+0580}\N{U+057f}",
      "\N{U+0561}\N{U+057a}\N{U+0580}\N{U+056b}\N{U+056c}",
      "\N{U+0574}\N{U+0561}\N{U+0575}\N{U+056b}\N{U+057d}",
      "\N{U+0570}\N{U+0578}\N{U+0582}\N{U+0576}\N{U+056b}\N{U+057d}",
      "\N{U+0570}\N{U+0578}\N{U+0582}\N{U+056c}\N{U+056b}\N{U+057d}",
      "\N{U+0585}\N{U+0563}\N{U+0578}\N{U+057d}\N{U+057f}\N{U+0578}\N{U+057d}",
      "\N{U+057d}\N{U+0565}\N{U+057a}\N{U+057f}\N{U+0565}\N{U+0574}\N{U+0562}\N{U+0565}\N{U+0580}",
      "\N{U+0570}\N{U+0578}\N{U+056f}\N{U+057f}\N{U+0565}\N{U+0574}\N{U+0562}\N{U+0565}\N{U+0580}",
      "\N{U+0576}\N{U+0578}\N{U+0575}\N{U+0565}\N{U+0574}\N{U+0562}\N{U+0565}\N{U+0580}",
      "\N{U+0564}\N{U+0565}\N{U+056f}\N{U+057f}\N{U+0565}\N{U+0574}\N{U+0562}\N{U+0565}\N{U+0580}"
    ],
    name => "Armenian Armenia",
    native_language => "\N{U+0570}\N{U+0561}\N{U+0575}\N{U+0565}\N{U+0580}\N{U+0565}\N{U+0576}",
    native_name => "\N{U+0570}\N{U+0561}\N{U+0575}\N{U+0565}\N{U+0580}\N{U+0565}\N{U+0576} \N{U+0540}\N{U+0561}\N{U+0575}\N{U+0561}\N{U+057d}\N{U+057f}\N{U+0561}\N{U+0576}",
    native_script => undef,
    native_territory => "\N{U+0540}\N{U+0561}\N{U+0575}\N{U+0561}\N{U+057d}\N{U+057f}\N{U+0561}\N{U+0576}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1-\N{U+056b}\N{U+0576} \N{U+0565}\N{U+057c}\N{U+0574}\N{U+057d}.",
      "2-\N{U+0580}\N{U+0564} \N{U+0565}\N{U+057c}\N{U+0574}\N{U+057d}.",
      "3-\N{U+0580}\N{U+0564} \N{U+0565}\N{U+057c}\N{U+0574}\N{U+057d}.",
      "4-\N{U+0580}\N{U+0564} \N{U+0565}\N{U+057c}\N{U+0574}\N{U+057d}."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1-\N{U+056b}\N{U+0576} \N{U+0565}\N{U+057c}\N{U+0561}\N{U+0574}\N{U+057d}\N{U+0575}\N{U+0561}\N{U+056f}",
      "2-\N{U+0580}\N{U+0564} \N{U+0565}\N{U+057c}\N{U+0561}\N{U+0574}\N{U+057d}\N{U+0575}\N{U+0561}\N{U+056f}",
      "3-\N{U+0580}\N{U+0564} \N{U+0565}\N{U+057c}\N{U+0561}\N{U+0574}\N{U+057d}\N{U+0575}\N{U+0561}\N{U+056f}",
      "4-\N{U+0580}\N{U+0564} \N{U+0565}\N{U+057c}\N{U+0561}\N{U+0574}\N{U+057d}\N{U+0575}\N{U+0561}\N{U+056f}"
    ],
    quarter_stand_alone_abbreviated => [
      "1-\N{U+056b}\N{U+0576} \N{U+0565}\N{U+057c}\N{U+0574}\N{U+057d}.",
      "2-\N{U+0580}\N{U+0564} \N{U+0565}\N{U+057c}\N{U+0574}\N{U+057d}.",
      "3-\N{U+0580}\N{U+0564} \N{U+0565}\N{U+057c}\N{U+0574}\N{U+057d}.",
      "4-\N{U+0580}\N{U+0564} \N{U+0565}\N{U+057c}\N{U+0574}\N{U+057d}."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-\N{U+056b}\N{U+0576} \N{U+0565}\N{U+057c}\N{U+0561}\N{U+0574}\N{U+057d}\N{U+0575}\N{U+0561}\N{U+056f}",
      "2-\N{U+0580}\N{U+0564} \N{U+0565}\N{U+057c}\N{U+0561}\N{U+0574}\N{U+057d}\N{U+0575}\N{U+0561}\N{U+056f}",
      "3-\N{U+0580}\N{U+0564} \N{U+0565}\N{U+057c}\N{U+0561}\N{U+0574}\N{U+057d}\N{U+0575}\N{U+0561}\N{U+056f}",
      "4-\N{U+0580}\N{U+0564} \N{U+0565}\N{U+057c}\N{U+0561}\N{U+0574}\N{U+057d}\N{U+0575}\N{U+0561}\N{U+056f}"
    ],
    script => undef,
    territory => "Armenia",
    time_format_full => "H:mm:ss, zzzz",
    time_format_long => "H:mm:ss, z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ id ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH.mm",
      EHms => "E HH.mm.ss",
      Ed => "E, d",
      Ehm => "E h.mm a",
      Ehms => "E h.mm.ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH.mm",
      Hms => "HH.mm.ss",
      Hmsv => "HH.mm.ss v",
      Hmv => "HH.mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h.mm a",
      hms => "h.mm.ss a",
      hmsv => "h.mm.ss. a v",
      hmv => "h.mm a v",
      ms => "mm.ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "id",
    date_format_full => "EEEE, dd MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Sen",
      "Sel",
      "Rab",
      "Kam",
      "Jum",
      "Sab",
      "Min"
    ],
    day_format_narrow => [
      "S",
      "S",
      "R",
      "K",
      "J",
      "S",
      "M"
    ],
    day_format_wide => [
      "Senin",
      "Selasa",
      "Rabu",
      "Kamis",
      "Jumat",
      "Sabtu",
      "Minggu"
    ],
    day_stand_alone_abbreviated => [
      "Sen",
      "Sel",
      "Rab",
      "Kam",
      "Jum",
      "Sab",
      "Min"
    ],
    day_stand_alone_narrow => [
      "S",
      "S",
      "R",
      "K",
      "J",
      "S",
      "M"
    ],
    day_stand_alone_wide => [
      "Senin",
      "Selasa",
      "Rabu",
      "Kamis",
      "Jumat",
      "Sabtu",
      "Minggu"
    ],
    era_abbreviated => [
      "SM",
      "M"
    ],
    era_narrow => [
      "SM",
      "M"
    ],
    era_wide => [
      "Sebelum Masehi",
      "M"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Indonesian",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Agt",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januari",
      "Februari",
      "Maret",
      "April",
      "Mei",
      "Juni",
      "Juli",
      "Agustus",
      "September",
      "Oktober",
      "November",
      "Desember"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Agt",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januari",
      "Februari",
      "Maret",
      "April",
      "Mei",
      "Juni",
      "Juli",
      "Agustus",
      "September",
      "Oktober",
      "November",
      "Desember"
    ],
    name => "Indonesian",
    native_language => "Indonesia",
    native_name => "Indonesia",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Kuartal ke-1",
      "Kuartal ke-2",
      "Kuartal ke-3",
      "Kuartal ke-4"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Kuartal ke-1",
      "Kuartal ke-2",
      "Kuartal ke-3",
      "Kuartal ke-4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH.mm.ss zzzz",
    time_format_long => "HH.mm.ss z",
    time_format_medium => "HH.mm.ss",
    time_format_short => "HH.mm",
    variant => undef,
    version => 28
  }
  __[ id-ID ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH.mm",
      EHms => "E HH.mm.ss",
      Ed => "E, d",
      Ehm => "E h.mm a",
      Ehms => "E h.mm.ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH.mm",
      Hms => "HH.mm.ss",
      Hmsv => "HH.mm.ss v",
      Hmv => "HH.mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h.mm a",
      hms => "h.mm.ss a",
      hmsv => "h.mm.ss. a v",
      hmv => "h.mm a v",
      ms => "mm.ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "id-ID",
    date_format_full => "EEEE, dd MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Sen",
      "Sel",
      "Rab",
      "Kam",
      "Jum",
      "Sab",
      "Min"
    ],
    day_format_narrow => [
      "S",
      "S",
      "R",
      "K",
      "J",
      "S",
      "M"
    ],
    day_format_wide => [
      "Senin",
      "Selasa",
      "Rabu",
      "Kamis",
      "Jumat",
      "Sabtu",
      "Minggu"
    ],
    day_stand_alone_abbreviated => [
      "Sen",
      "Sel",
      "Rab",
      "Kam",
      "Jum",
      "Sab",
      "Min"
    ],
    day_stand_alone_narrow => [
      "S",
      "S",
      "R",
      "K",
      "J",
      "S",
      "M"
    ],
    day_stand_alone_wide => [
      "Senin",
      "Selasa",
      "Rabu",
      "Kamis",
      "Jumat",
      "Sabtu",
      "Minggu"
    ],
    era_abbreviated => [
      "SM",
      "M"
    ],
    era_narrow => [
      "SM",
      "M"
    ],
    era_wide => [
      "Sebelum Masehi",
      "M"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %r %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Indonesian",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Agt",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januari",
      "Februari",
      "Maret",
      "April",
      "Mei",
      "Juni",
      "Juli",
      "Agustus",
      "September",
      "Oktober",
      "November",
      "Desember"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Agt",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januari",
      "Februari",
      "Maret",
      "April",
      "Mei",
      "Juni",
      "Juli",
      "Agustus",
      "September",
      "Oktober",
      "November",
      "Desember"
    ],
    name => "Indonesian Indonesia",
    native_language => "Indonesia",
    native_name => "Indonesia Indonesia",
    native_script => undef,
    native_territory => "Indonesia",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Kuartal ke-1",
      "Kuartal ke-2",
      "Kuartal ke-3",
      "Kuartal ke-4"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Kuartal ke-1",
      "Kuartal ke-2",
      "Kuartal ke-3",
      "Kuartal ke-4"
    ],
    script => undef,
    territory => "Indonesia",
    time_format_full => "HH.mm.ss zzzz",
    time_format_long => "HH.mm.ss z",
    time_format_medium => "HH.mm.ss",
    time_format_short => "HH.mm",
    variant => undef,
    version => 28
  }
  __[ ig ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ig",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "M\N{U+1ecd}n",
      "Tiu",
      "Wen",
      "T\N{U+1ecd}\N{U+1ecd}",
      "Fra\N{U+1ecb}",
      "Sat",
      "\N{U+1ee4}ka"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "M\N{U+1ecd}nde",
      "Tiuzdee",
      "Wenezdee",
      "T\N{U+1ecd}\N{U+1ecd}zdee",
      "Fra\N{U+1ecb}dee",
      "Sat\N{U+1ecd}dee",
      "Mb\N{U+1ecd}s\N{U+1ecb} \N{U+1ee4}ka"
    ],
    day_stand_alone_abbreviated => [
      "M\N{U+1ecd}n",
      "Tiu",
      "Wen",
      "T\N{U+1ecd}\N{U+1ecd}",
      "Fra\N{U+1ecb}",
      "Sat",
      "\N{U+1ee4}ka"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "M\N{U+1ecd}nde",
      "Tiuzdee",
      "Wenezdee",
      "T\N{U+1ecd}\N{U+1ecd}zdee",
      "Fra\N{U+1ecb}dee",
      "Sat\N{U+1ecd}dee",
      "Mb\N{U+1ecd}s\N{U+1ecb} \N{U+1ee4}ka"
    ],
    era_abbreviated => [
      "T.K.",
      "A.K."
    ],
    era_narrow => [
      "T.K.",
      "A.K."
    ],
    era_wide => [
      "Tupu Kristi",
      "Af\N{U+1ecd} Kristi"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Igbo",
    month_format_abbreviated => [
      "Jen",
      "Feb",
      "Maa",
      "Epr",
      "Mee",
      "Juu",
      "Jul",
      "\N{U+1ecc}g\N{U+1ecd}",
      "Sep",
      "\N{U+1ecc}kt",
      "Nov",
      "Dis"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Jen\N{U+1ee5}war\N{U+1ecb}",
      "Febr\N{U+1ee5}war\N{U+1ecb}",
      "Maach\N{U+1ecb}",
      "Eprel",
      "Mee",
      "Juun",
      "Jula\N{U+1ecb}",
      "\N{U+1ecc}g\N{U+1ecd}\N{U+1ecd}st",
      "Septemba",
      "\N{U+1ecc}ktoba",
      "Novemba",
      "Disemba"
    ],
    month_stand_alone_abbreviated => [
      "Jen",
      "Feb",
      "Maa",
      "Epr",
      "Mee",
      "Juu",
      "Jul",
      "\N{U+1ecc}g\N{U+1ecd}",
      "Sep",
      "\N{U+1ecc}kt",
      "Nov",
      "Dis"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Jen\N{U+1ee5}war\N{U+1ecb}",
      "Febr\N{U+1ee5}war\N{U+1ecb}",
      "Maach\N{U+1ecb}",
      "Eprel",
      "Mee",
      "Juun",
      "Jula\N{U+1ecb}",
      "\N{U+1ecc}g\N{U+1ecd}\N{U+1ecd}st",
      "Septemba",
      "\N{U+1ecc}ktoba",
      "Novemba",
      "Disemba"
    ],
    name => "Igbo",
    native_language => "Igbo",
    native_name => "Igbo",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+1ecc}1",
      "\N{U+1ecc}2",
      "\N{U+1ecc}3",
      "\N{U+1ecc}4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+1ecc}kara 1",
      "\N{U+1ecc}kara 2",
      "\N{U+1ecc}kara 3",
      "\N{U+1ecc}kara 4"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+1ecc}1",
      "\N{U+1ecc}2",
      "\N{U+1ecc}3",
      "\N{U+1ecc}4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+1ecc}kara 1",
      "\N{U+1ecc}kara 2",
      "\N{U+1ecc}kara 3",
      "\N{U+1ecc}kara 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ig-NG ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ig-NG",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "M\N{U+1ecd}n",
      "Tiu",
      "Wen",
      "T\N{U+1ecd}\N{U+1ecd}",
      "Fra\N{U+1ecb}",
      "Sat",
      "\N{U+1ee4}ka"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "M\N{U+1ecd}nde",
      "Tiuzdee",
      "Wenezdee",
      "T\N{U+1ecd}\N{U+1ecd}zdee",
      "Fra\N{U+1ecb}dee",
      "Sat\N{U+1ecd}dee",
      "Mb\N{U+1ecd}s\N{U+1ecb} \N{U+1ee4}ka"
    ],
    day_stand_alone_abbreviated => [
      "M\N{U+1ecd}n",
      "Tiu",
      "Wen",
      "T\N{U+1ecd}\N{U+1ecd}",
      "Fra\N{U+1ecb}",
      "Sat",
      "\N{U+1ee4}ka"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "M\N{U+1ecd}nde",
      "Tiuzdee",
      "Wenezdee",
      "T\N{U+1ecd}\N{U+1ecd}zdee",
      "Fra\N{U+1ecb}dee",
      "Sat\N{U+1ecd}dee",
      "Mb\N{U+1ecd}s\N{U+1ecb} \N{U+1ee4}ka"
    ],
    era_abbreviated => [
      "T.K.",
      "A.K."
    ],
    era_narrow => [
      "T.K.",
      "A.K."
    ],
    era_wide => [
      "Tupu Kristi",
      "Af\N{U+1ecd} Kristi"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%A, %d %B %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%r",
    language => "Igbo",
    month_format_abbreviated => [
      "Jen",
      "Feb",
      "Maa",
      "Epr",
      "Mee",
      "Juu",
      "Jul",
      "\N{U+1ecc}g\N{U+1ecd}",
      "Sep",
      "\N{U+1ecc}kt",
      "Nov",
      "Dis"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Jen\N{U+1ee5}war\N{U+1ecb}",
      "Febr\N{U+1ee5}war\N{U+1ecb}",
      "Maach\N{U+1ecb}",
      "Eprel",
      "Mee",
      "Juun",
      "Jula\N{U+1ecb}",
      "\N{U+1ecc}g\N{U+1ecd}\N{U+1ecd}st",
      "Septemba",
      "\N{U+1ecc}ktoba",
      "Novemba",
      "Disemba"
    ],
    month_stand_alone_abbreviated => [
      "Jen",
      "Feb",
      "Maa",
      "Epr",
      "Mee",
      "Juu",
      "Jul",
      "\N{U+1ecc}g\N{U+1ecd}",
      "Sep",
      "\N{U+1ecc}kt",
      "Nov",
      "Dis"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Jen\N{U+1ee5}war\N{U+1ecb}",
      "Febr\N{U+1ee5}war\N{U+1ecb}",
      "Maach\N{U+1ecb}",
      "Eprel",
      "Mee",
      "Juun",
      "Jula\N{U+1ecb}",
      "\N{U+1ecc}g\N{U+1ecd}\N{U+1ecd}st",
      "Septemba",
      "\N{U+1ecc}ktoba",
      "Novemba",
      "Disemba"
    ],
    name => "Igbo Nigeria",
    native_language => "Igbo",
    native_name => "Igbo Nigeria",
    native_script => undef,
    native_territory => "Nigeria",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+1ecc}1",
      "\N{U+1ecc}2",
      "\N{U+1ecc}3",
      "\N{U+1ecc}4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+1ecc}kara 1",
      "\N{U+1ecc}kara 2",
      "\N{U+1ecc}kara 3",
      "\N{U+1ecc}kara 4"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+1ecc}1",
      "\N{U+1ecc}2",
      "\N{U+1ecc}3",
      "\N{U+1ecc}4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+1ecc}kara 1",
      "\N{U+1ecc}kara 2",
      "\N{U+1ecc}kara 3",
      "\N{U+1ecc}kara 4"
    ],
    script => undef,
    territory => "Nigeria",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ii ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "ii",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+a18f}\N{U+a2cd}",
      "\N{U+a18f}\N{U+a44d}",
      "\N{U+a18f}\N{U+a315}",
      "\N{U+a18f}\N{U+a1d6}",
      "\N{U+a18f}\N{U+a26c}",
      "\N{U+a18f}\N{U+a0d8}",
      "\N{U+a46d}\N{U+a18f}"
    ],
    day_format_narrow => [
      "\N{U+a2cd}",
      "\N{U+a44d}",
      "\N{U+a315}",
      "\N{U+a1d6}",
      "\N{U+a26c}",
      "\N{U+a0d8}",
      "\N{U+a18f}"
    ],
    day_format_wide => [
      "\N{U+a18f}\N{U+a282}\N{U+a2cd}",
      "\N{U+a18f}\N{U+a282}\N{U+a44d}",
      "\N{U+a18f}\N{U+a282}\N{U+a315}",
      "\N{U+a18f}\N{U+a282}\N{U+a1d6}",
      "\N{U+a18f}\N{U+a282}\N{U+a26c}",
      "\N{U+a18f}\N{U+a282}\N{U+a0d8}",
      "\N{U+a46d}\N{U+a18f}\N{U+a44d}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+a18f}\N{U+a2cd}",
      "\N{U+a18f}\N{U+a44d}",
      "\N{U+a18f}\N{U+a315}",
      "\N{U+a18f}\N{U+a1d6}",
      "\N{U+a18f}\N{U+a26c}",
      "\N{U+a18f}\N{U+a0d8}",
      "\N{U+a46d}\N{U+a18f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+a2cd}",
      "\N{U+a44d}",
      "\N{U+a315}",
      "\N{U+a1d6}",
      "\N{U+a26c}",
      "\N{U+a0d8}",
      "\N{U+a18f}"
    ],
    day_stand_alone_wide => [
      "\N{U+a18f}\N{U+a282}\N{U+a2cd}",
      "\N{U+a18f}\N{U+a282}\N{U+a44d}",
      "\N{U+a18f}\N{U+a282}\N{U+a315}",
      "\N{U+a18f}\N{U+a282}\N{U+a1d6}",
      "\N{U+a18f}\N{U+a282}\N{U+a26c}",
      "\N{U+a18f}\N{U+a282}\N{U+a0d8}",
      "\N{U+a46d}\N{U+a18f}\N{U+a44d}"
    ],
    era_abbreviated => [
      "\N{U+a0c5}\N{U+a2ca}\N{U+a0bf}",
      "\N{U+a0c5}\N{U+a2ca}\N{U+a282}"
    ],
    era_narrow => [
      "\N{U+a0c5}\N{U+a2ca}\N{U+a0bf}",
      "\N{U+a0c5}\N{U+a2ca}\N{U+a282}"
    ],
    era_wide => [
      "\N{U+a0c5}\N{U+a2ca}\N{U+a0bf}",
      "\N{U+a0c5}\N{U+a2ca}\N{U+a282}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Sichuan Yi",
    month_format_abbreviated => [
      "\N{U+a2cd}\N{U+a1aa}",
      "\N{U+a44d}\N{U+a1aa}",
      "\N{U+a315}\N{U+a1aa}",
      "\N{U+a1d6}\N{U+a1aa}",
      "\N{U+a26c}\N{U+a1aa}",
      "\N{U+a0d8}\N{U+a1aa}",
      "\N{U+a3c3}\N{U+a1aa}",
      "\N{U+a246}\N{U+a1aa}",
      "\N{U+a22c}\N{U+a1aa}",
      "\N{U+a2b0}\N{U+a1aa}",
      "\N{U+a2b0}\N{U+a2aa}\N{U+a1aa}",
      "\N{U+a2b0}\N{U+a44b}\N{U+a1aa}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+a2cd}\N{U+a1aa}",
      "\N{U+a44d}\N{U+a1aa}",
      "\N{U+a315}\N{U+a1aa}",
      "\N{U+a1d6}\N{U+a1aa}",
      "\N{U+a26c}\N{U+a1aa}",
      "\N{U+a0d8}\N{U+a1aa}",
      "\N{U+a3c3}\N{U+a1aa}",
      "\N{U+a246}\N{U+a1aa}",
      "\N{U+a22c}\N{U+a1aa}",
      "\N{U+a2b0}\N{U+a1aa}",
      "\N{U+a2b0}\N{U+a2aa}\N{U+a1aa}",
      "\N{U+a2b0}\N{U+a44b}\N{U+a1aa}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+a2cd}\N{U+a1aa}",
      "\N{U+a44d}\N{U+a1aa}",
      "\N{U+a315}\N{U+a1aa}",
      "\N{U+a1d6}\N{U+a1aa}",
      "\N{U+a26c}\N{U+a1aa}",
      "\N{U+a0d8}\N{U+a1aa}",
      "\N{U+a3c3}\N{U+a1aa}",
      "\N{U+a246}\N{U+a1aa}",
      "\N{U+a22c}\N{U+a1aa}",
      "\N{U+a2b0}\N{U+a1aa}",
      "\N{U+a2b0}\N{U+a2aa}\N{U+a1aa}",
      "\N{U+a2b0}\N{U+a44b}\N{U+a1aa}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+a2cd}\N{U+a1aa}",
      "\N{U+a44d}\N{U+a1aa}",
      "\N{U+a315}\N{U+a1aa}",
      "\N{U+a1d6}\N{U+a1aa}",
      "\N{U+a26c}\N{U+a1aa}",
      "\N{U+a0d8}\N{U+a1aa}",
      "\N{U+a3c3}\N{U+a1aa}",
      "\N{U+a246}\N{U+a1aa}",
      "\N{U+a22c}\N{U+a1aa}",
      "\N{U+a2b0}\N{U+a1aa}",
      "\N{U+a2b0}\N{U+a2aa}\N{U+a1aa}",
      "\N{U+a2b0}\N{U+a44b}\N{U+a1aa}"
    ],
    name => "Sichuan Yi",
    native_language => "\N{U+a188}\N{U+a320}\N{U+a259}",
    native_name => "\N{U+a188}\N{U+a320}\N{U+a259}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+a0c5}\N{U+a44c}",
      "\N{U+a0c5}\N{U+a3b8}",
      "\N{U+a0c5}\N{U+a375}",
      "\N{U+a0c5}\N{U+a2c6}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+a0c5}\N{U+a44c}",
      "\N{U+a0c5}\N{U+a3b8}",
      "\N{U+a0c5}\N{U+a375}",
      "\N{U+a0c5}\N{U+a2c6}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+a0c5}\N{U+a44c}",
      "\N{U+a0c5}\N{U+a3b8}",
      "\N{U+a0c5}\N{U+a375}",
      "\N{U+a0c5}\N{U+a2c6}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+a0c5}\N{U+a44c}",
      "\N{U+a0c5}\N{U+a3b8}",
      "\N{U+a0c5}\N{U+a375}",
      "\N{U+a0c5}\N{U+a2c6}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ii-CN ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "ii-CN",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+a18f}\N{U+a2cd}",
      "\N{U+a18f}\N{U+a44d}",
      "\N{U+a18f}\N{U+a315}",
      "\N{U+a18f}\N{U+a1d6}",
      "\N{U+a18f}\N{U+a26c}",
      "\N{U+a18f}\N{U+a0d8}",
      "\N{U+a46d}\N{U+a18f}"
    ],
    day_format_narrow => [
      "\N{U+a2cd}",
      "\N{U+a44d}",
      "\N{U+a315}",
      "\N{U+a1d6}",
      "\N{U+a26c}",
      "\N{U+a0d8}",
      "\N{U+a18f}"
    ],
    day_format_wide => [
      "\N{U+a18f}\N{U+a282}\N{U+a2cd}",
      "\N{U+a18f}\N{U+a282}\N{U+a44d}",
      "\N{U+a18f}\N{U+a282}\N{U+a315}",
      "\N{U+a18f}\N{U+a282}\N{U+a1d6}",
      "\N{U+a18f}\N{U+a282}\N{U+a26c}",
      "\N{U+a18f}\N{U+a282}\N{U+a0d8}",
      "\N{U+a46d}\N{U+a18f}\N{U+a44d}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+a18f}\N{U+a2cd}",
      "\N{U+a18f}\N{U+a44d}",
      "\N{U+a18f}\N{U+a315}",
      "\N{U+a18f}\N{U+a1d6}",
      "\N{U+a18f}\N{U+a26c}",
      "\N{U+a18f}\N{U+a0d8}",
      "\N{U+a46d}\N{U+a18f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+a2cd}",
      "\N{U+a44d}",
      "\N{U+a315}",
      "\N{U+a1d6}",
      "\N{U+a26c}",
      "\N{U+a0d8}",
      "\N{U+a18f}"
    ],
    day_stand_alone_wide => [
      "\N{U+a18f}\N{U+a282}\N{U+a2cd}",
      "\N{U+a18f}\N{U+a282}\N{U+a44d}",
      "\N{U+a18f}\N{U+a282}\N{U+a315}",
      "\N{U+a18f}\N{U+a282}\N{U+a1d6}",
      "\N{U+a18f}\N{U+a282}\N{U+a26c}",
      "\N{U+a18f}\N{U+a282}\N{U+a0d8}",
      "\N{U+a46d}\N{U+a18f}\N{U+a44d}"
    ],
    era_abbreviated => [
      "\N{U+a0c5}\N{U+a2ca}\N{U+a0bf}",
      "\N{U+a0c5}\N{U+a2ca}\N{U+a282}"
    ],
    era_narrow => [
      "\N{U+a0c5}\N{U+a2ca}\N{U+a0bf}",
      "\N{U+a0c5}\N{U+a2ca}\N{U+a282}"
    ],
    era_wide => [
      "\N{U+a0c5}\N{U+a2ca}\N{U+a0bf}",
      "\N{U+a0c5}\N{U+a2ca}\N{U+a282}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Sichuan Yi",
    month_format_abbreviated => [
      "\N{U+a2cd}\N{U+a1aa}",
      "\N{U+a44d}\N{U+a1aa}",
      "\N{U+a315}\N{U+a1aa}",
      "\N{U+a1d6}\N{U+a1aa}",
      "\N{U+a26c}\N{U+a1aa}",
      "\N{U+a0d8}\N{U+a1aa}",
      "\N{U+a3c3}\N{U+a1aa}",
      "\N{U+a246}\N{U+a1aa}",
      "\N{U+a22c}\N{U+a1aa}",
      "\N{U+a2b0}\N{U+a1aa}",
      "\N{U+a2b0}\N{U+a2aa}\N{U+a1aa}",
      "\N{U+a2b0}\N{U+a44b}\N{U+a1aa}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+a2cd}\N{U+a1aa}",
      "\N{U+a44d}\N{U+a1aa}",
      "\N{U+a315}\N{U+a1aa}",
      "\N{U+a1d6}\N{U+a1aa}",
      "\N{U+a26c}\N{U+a1aa}",
      "\N{U+a0d8}\N{U+a1aa}",
      "\N{U+a3c3}\N{U+a1aa}",
      "\N{U+a246}\N{U+a1aa}",
      "\N{U+a22c}\N{U+a1aa}",
      "\N{U+a2b0}\N{U+a1aa}",
      "\N{U+a2b0}\N{U+a2aa}\N{U+a1aa}",
      "\N{U+a2b0}\N{U+a44b}\N{U+a1aa}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+a2cd}\N{U+a1aa}",
      "\N{U+a44d}\N{U+a1aa}",
      "\N{U+a315}\N{U+a1aa}",
      "\N{U+a1d6}\N{U+a1aa}",
      "\N{U+a26c}\N{U+a1aa}",
      "\N{U+a0d8}\N{U+a1aa}",
      "\N{U+a3c3}\N{U+a1aa}",
      "\N{U+a246}\N{U+a1aa}",
      "\N{U+a22c}\N{U+a1aa}",
      "\N{U+a2b0}\N{U+a1aa}",
      "\N{U+a2b0}\N{U+a2aa}\N{U+a1aa}",
      "\N{U+a2b0}\N{U+a44b}\N{U+a1aa}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+a2cd}\N{U+a1aa}",
      "\N{U+a44d}\N{U+a1aa}",
      "\N{U+a315}\N{U+a1aa}",
      "\N{U+a1d6}\N{U+a1aa}",
      "\N{U+a26c}\N{U+a1aa}",
      "\N{U+a0d8}\N{U+a1aa}",
      "\N{U+a3c3}\N{U+a1aa}",
      "\N{U+a246}\N{U+a1aa}",
      "\N{U+a22c}\N{U+a1aa}",
      "\N{U+a2b0}\N{U+a1aa}",
      "\N{U+a2b0}\N{U+a2aa}\N{U+a1aa}",
      "\N{U+a2b0}\N{U+a44b}\N{U+a1aa}"
    ],
    name => "Sichuan Yi China",
    native_language => "\N{U+a188}\N{U+a320}\N{U+a259}",
    native_name => "\N{U+a188}\N{U+a320}\N{U+a259} \N{U+a34f}\N{U+a1e9}",
    native_script => undef,
    native_territory => "\N{U+a34f}\N{U+a1e9}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+a0c5}\N{U+a44c}",
      "\N{U+a0c5}\N{U+a3b8}",
      "\N{U+a0c5}\N{U+a375}",
      "\N{U+a0c5}\N{U+a2c6}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+a0c5}\N{U+a44c}",
      "\N{U+a0c5}\N{U+a3b8}",
      "\N{U+a0c5}\N{U+a375}",
      "\N{U+a0c5}\N{U+a2c6}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+a0c5}\N{U+a44c}",
      "\N{U+a0c5}\N{U+a3b8}",
      "\N{U+a0c5}\N{U+a375}",
      "\N{U+a0c5}\N{U+a2c6}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+a0c5}\N{U+a44c}",
      "\N{U+a0c5}\N{U+a3b8}",
      "\N{U+a0c5}\N{U+a375}",
      "\N{U+a0c5}\N{U+a2c6}"
    ],
    script => undef,
    territory => "China",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ is ]__
  {
    am_pm_abbreviated => [
      "f.h.",
      "e.h."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E d.",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d. MMM y G",
      GyMMMd => "d. MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E, d. MMM",
      MMMMEd => "E, d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      Md => "d.M.",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M. y",
      yMEd => "E, d.M.y",
      yMMM => "MMM y",
      yMMMEd => "E, d. MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d. MMM y",
      yMd => "d.M.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "is",
    date_format_full => "EEEE, d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "d. MMM y",
    date_format_short => "d.M.y",
    datetime_format_full => "{1} 'kl'. {0}",
    datetime_format_long => "{1} 'kl'. {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "m\N{U+00e1}n.",
      "\N{U+00fe}ri.",
      "mi\N{U+00f0}.",
      "fim.",
      "f\N{U+00f6}s.",
      "lau.",
      "sun."
    ],
    day_format_narrow => [
      "M",
      "\N{U+00de}",
      "M",
      "F",
      "F",
      "L",
      "S"
    ],
    day_format_wide => [
      "m\N{U+00e1}nudagur",
      "\N{U+00fe}ri\N{U+00f0}judagur",
      "mi\N{U+00f0}vikudagur",
      "fimmtudagur",
      "f\N{U+00f6}studagur",
      "laugardagur",
      "sunnudagur"
    ],
    day_stand_alone_abbreviated => [
      "m\N{U+00e1}n.",
      "\N{U+00fe}ri.",
      "mi\N{U+00f0}.",
      "fim.",
      "f\N{U+00f6}s.",
      "lau.",
      "sun."
    ],
    day_stand_alone_narrow => [
      "M",
      "\N{U+00de}",
      "M",
      "F",
      "F",
      "L",
      "S"
    ],
    day_stand_alone_wide => [
      "m\N{U+00e1}nudagur",
      "\N{U+00fe}ri\N{U+00f0}judagur",
      "mi\N{U+00f0}vikudagur",
      "fimmtudagur",
      "f\N{U+00f6}studagur",
      "laugardagur",
      "sunnudagur"
    ],
    era_abbreviated => [
      "f.Kr.",
      "e.Kr."
    ],
    era_narrow => [
      "f.k.",
      "e.k."
    ],
    era_wide => [
      "fyrir Krist",
      "eftir Krist"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Icelandic",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "mar.",
      "apr.",
      "ma\N{U+00ed}",
      "j\N{U+00fa}n.",
      "j\N{U+00fa}l.",
      "\N{U+00e1}g\N{U+00fa}.",
      "sep.",
      "okt.",
      "n\N{U+00f3}v.",
      "des."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "\N{U+00c1}",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "jan\N{U+00fa}ar",
      "febr\N{U+00fa}ar",
      "mars",
      "apr\N{U+00ed}l",
      "ma\N{U+00ed}",
      "j\N{U+00fa}n\N{U+00ed}",
      "j\N{U+00fa}l\N{U+00ed}",
      "\N{U+00e1}g\N{U+00fa}st",
      "september",
      "okt\N{U+00f3}ber",
      "n\N{U+00f3}vember",
      "desember"
    ],
    month_stand_alone_abbreviated => [
      "jan.",
      "feb.",
      "mar.",
      "apr.",
      "ma\N{U+00ed}",
      "j\N{U+00fa}n.",
      "j\N{U+00fa}l.",
      "\N{U+00e1}g\N{U+00fa}.",
      "sep.",
      "okt.",
      "n\N{U+00f3}v.",
      "des."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "\N{U+00c1}",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "jan\N{U+00fa}ar",
      "febr\N{U+00fa}ar",
      "mars",
      "apr\N{U+00ed}l",
      "ma\N{U+00ed}",
      "j\N{U+00fa}n\N{U+00ed}",
      "j\N{U+00fa}l\N{U+00ed}",
      "\N{U+00e1}g\N{U+00fa}st",
      "september",
      "okt\N{U+00f3}ber",
      "n\N{U+00f3}vember",
      "desember"
    ],
    name => "Icelandic",
    native_language => "\N{U+00ed}slenska",
    native_name => "\N{U+00ed}slenska",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "F1",
      "F2",
      "F3",
      "F4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. fj\N{U+00f3}r\N{U+00f0}ungur",
      "2. fj\N{U+00f3}r\N{U+00f0}ungur",
      "3. fj\N{U+00f3}r\N{U+00f0}ungur",
      "4. fj\N{U+00f3}r\N{U+00f0}ungur"
    ],
    quarter_stand_alone_abbreviated => [
      "F1",
      "F2",
      "F3",
      "F4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. fj\N{U+00f3}r\N{U+00f0}ungur",
      "2. fj\N{U+00f3}r\N{U+00f0}ungur",
      "3. fj\N{U+00f3}r\N{U+00f0}ungur",
      "4. fj\N{U+00f3}r\N{U+00f0}ungur"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ is-IS ]__
  {
    am_pm_abbreviated => [
      "f.h.",
      "e.h."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E d.",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d. MMM y G",
      GyMMMd => "d. MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E, d. MMM",
      MMMMEd => "E, d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      Md => "d.M.",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M. y",
      yMEd => "E, d.M.y",
      yMMM => "MMM y",
      yMMMEd => "E, d. MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d. MMM y",
      yMd => "d.M.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "is-IS",
    date_format_full => "EEEE, d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "d. MMM y",
    date_format_short => "d.M.y",
    datetime_format_full => "{1} 'kl'. {0}",
    datetime_format_long => "{1} 'kl'. {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "m\N{U+00e1}n.",
      "\N{U+00fe}ri.",
      "mi\N{U+00f0}.",
      "fim.",
      "f\N{U+00f6}s.",
      "lau.",
      "sun."
    ],
    day_format_narrow => [
      "M",
      "\N{U+00de}",
      "M",
      "F",
      "F",
      "L",
      "S"
    ],
    day_format_wide => [
      "m\N{U+00e1}nudagur",
      "\N{U+00fe}ri\N{U+00f0}judagur",
      "mi\N{U+00f0}vikudagur",
      "fimmtudagur",
      "f\N{U+00f6}studagur",
      "laugardagur",
      "sunnudagur"
    ],
    day_stand_alone_abbreviated => [
      "m\N{U+00e1}n.",
      "\N{U+00fe}ri.",
      "mi\N{U+00f0}.",
      "fim.",
      "f\N{U+00f6}s.",
      "lau.",
      "sun."
    ],
    day_stand_alone_narrow => [
      "M",
      "\N{U+00de}",
      "M",
      "F",
      "F",
      "L",
      "S"
    ],
    day_stand_alone_wide => [
      "m\N{U+00e1}nudagur",
      "\N{U+00fe}ri\N{U+00f0}judagur",
      "mi\N{U+00f0}vikudagur",
      "fimmtudagur",
      "f\N{U+00f6}studagur",
      "laugardagur",
      "sunnudagur"
    ],
    era_abbreviated => [
      "f.Kr.",
      "e.Kr."
    ],
    era_narrow => [
      "f.k.",
      "e.k."
    ],
    era_wide => [
      "fyrir Krist",
      "eftir Krist"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%a %e.%b %Y",
    glibc_datetime_format => "%a %e.%b %Y, %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Icelandic",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "mar.",
      "apr.",
      "ma\N{U+00ed}",
      "j\N{U+00fa}n.",
      "j\N{U+00fa}l.",
      "\N{U+00e1}g\N{U+00fa}.",
      "sep.",
      "okt.",
      "n\N{U+00f3}v.",
      "des."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "\N{U+00c1}",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "jan\N{U+00fa}ar",
      "febr\N{U+00fa}ar",
      "mars",
      "apr\N{U+00ed}l",
      "ma\N{U+00ed}",
      "j\N{U+00fa}n\N{U+00ed}",
      "j\N{U+00fa}l\N{U+00ed}",
      "\N{U+00e1}g\N{U+00fa}st",
      "september",
      "okt\N{U+00f3}ber",
      "n\N{U+00f3}vember",
      "desember"
    ],
    month_stand_alone_abbreviated => [
      "jan.",
      "feb.",
      "mar.",
      "apr.",
      "ma\N{U+00ed}",
      "j\N{U+00fa}n.",
      "j\N{U+00fa}l.",
      "\N{U+00e1}g\N{U+00fa}.",
      "sep.",
      "okt.",
      "n\N{U+00f3}v.",
      "des."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "\N{U+00c1}",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "jan\N{U+00fa}ar",
      "febr\N{U+00fa}ar",
      "mars",
      "apr\N{U+00ed}l",
      "ma\N{U+00ed}",
      "j\N{U+00fa}n\N{U+00ed}",
      "j\N{U+00fa}l\N{U+00ed}",
      "\N{U+00e1}g\N{U+00fa}st",
      "september",
      "okt\N{U+00f3}ber",
      "n\N{U+00f3}vember",
      "desember"
    ],
    name => "Icelandic Iceland",
    native_language => "\N{U+00ed}slenska",
    native_name => "\N{U+00ed}slenska \N{U+00cd}sland",
    native_script => undef,
    native_territory => "\N{U+00cd}sland",
    native_variant => undef,
    quarter_format_abbreviated => [
      "F1",
      "F2",
      "F3",
      "F4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. fj\N{U+00f3}r\N{U+00f0}ungur",
      "2. fj\N{U+00f3}r\N{U+00f0}ungur",
      "3. fj\N{U+00f3}r\N{U+00f0}ungur",
      "4. fj\N{U+00f3}r\N{U+00f0}ungur"
    ],
    quarter_stand_alone_abbreviated => [
      "F1",
      "F2",
      "F3",
      "F4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. fj\N{U+00f3}r\N{U+00f0}ungur",
      "2. fj\N{U+00f3}r\N{U+00f0}ungur",
      "3. fj\N{U+00f3}r\N{U+00f0}ungur",
      "4. fj\N{U+00f3}r\N{U+00f0}ungur"
    ],
    script => undef,
    territory => "Iceland",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ it ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "it",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "dd MMM y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "lun",
      "mar",
      "mer",
      "gio",
      "ven",
      "sab",
      "dom"
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "G",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "luned\N{U+00ec}",
      "marted\N{U+00ec}",
      "mercoled\N{U+00ec}",
      "gioved\N{U+00ec}",
      "venerd\N{U+00ec}",
      "sabato",
      "domenica"
    ],
    day_stand_alone_abbreviated => [
      "lun",
      "mar",
      "mer",
      "gio",
      "ven",
      "sab",
      "dom"
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "G",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "Luned\N{U+00ec}",
      "Marted\N{U+00ec}",
      "Mercoled\N{U+00ec}",
      "Gioved\N{U+00ec}",
      "Venerd\N{U+00ec}",
      "Sabato",
      "Domenica"
    ],
    era_abbreviated => [
      "a.C.",
      "d.C."
    ],
    era_narrow => [
      "aC",
      "dC"
    ],
    era_wide => [
      "a.C.",
      "d.C."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Italian",
    month_format_abbreviated => [
      "gen",
      "feb",
      "mar",
      "apr",
      "mag",
      "giu",
      "lug",
      "ago",
      "set",
      "ott",
      "nov",
      "dic"
    ],
    month_format_narrow => [
      "G",
      "F",
      "M",
      "A",
      "M",
      "G",
      "L",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "gennaio",
      "febbraio",
      "marzo",
      "aprile",
      "maggio",
      "giugno",
      "luglio",
      "agosto",
      "settembre",
      "ottobre",
      "novembre",
      "dicembre"
    ],
    month_stand_alone_abbreviated => [
      "gen",
      "feb",
      "mar",
      "apr",
      "mag",
      "giu",
      "lug",
      "ago",
      "set",
      "ott",
      "nov",
      "dic"
    ],
    month_stand_alone_narrow => [
      "G",
      "F",
      "M",
      "A",
      "M",
      "G",
      "L",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Gennaio",
      "Febbraio",
      "Marzo",
      "Aprile",
      "Maggio",
      "Giugno",
      "Luglio",
      "Agosto",
      "Settembre",
      "Ottobre",
      "Novembre",
      "Dicembre"
    ],
    name => "Italian",
    native_language => "italiano",
    native_name => "italiano",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1\N{U+00ba} trimestre",
      "2\N{U+00ba} trimestre",
      "3\N{U+00ba} trimestre",
      "4\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1\N{U+00ba} trimestre",
      "2\N{U+00ba} trimestre",
      "3\N{U+00ba} trimestre",
      "4\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ it-CH ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "it-CH",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d-MMM-y",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "lun",
      "mar",
      "mer",
      "gio",
      "ven",
      "sab",
      "dom"
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "G",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "luned\N{U+00ec}",
      "marted\N{U+00ec}",
      "mercoled\N{U+00ec}",
      "gioved\N{U+00ec}",
      "venerd\N{U+00ec}",
      "sabato",
      "domenica"
    ],
    day_stand_alone_abbreviated => [
      "lun",
      "mar",
      "mer",
      "gio",
      "ven",
      "sab",
      "dom"
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "G",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "Luned\N{U+00ec}",
      "Marted\N{U+00ec}",
      "Mercoled\N{U+00ec}",
      "Gioved\N{U+00ec}",
      "Venerd\N{U+00ec}",
      "Sabato",
      "Domenica"
    ],
    era_abbreviated => [
      "a.C.",
      "d.C."
    ],
    era_narrow => [
      "aC",
      "dC"
    ],
    era_wide => [
      "a.C.",
      "d.C."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %e %b %Y, %H.%M.%S, %Z",
    glibc_date_format => "%d. %m. %y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Italian",
    month_format_abbreviated => [
      "gen",
      "feb",
      "mar",
      "apr",
      "mag",
      "giu",
      "lug",
      "ago",
      "set",
      "ott",
      "nov",
      "dic"
    ],
    month_format_narrow => [
      "G",
      "F",
      "M",
      "A",
      "M",
      "G",
      "L",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "gennaio",
      "febbraio",
      "marzo",
      "aprile",
      "maggio",
      "giugno",
      "luglio",
      "agosto",
      "settembre",
      "ottobre",
      "novembre",
      "dicembre"
    ],
    month_stand_alone_abbreviated => [
      "gen",
      "feb",
      "mar",
      "apr",
      "mag",
      "giu",
      "lug",
      "ago",
      "set",
      "ott",
      "nov",
      "dic"
    ],
    month_stand_alone_narrow => [
      "G",
      "F",
      "M",
      "A",
      "M",
      "G",
      "L",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "gennaio",
      "febbraio",
      "marzo",
      "aprile",
      "maggio",
      "giugno",
      "luglio",
      "agosto",
      "settembre",
      "ottobre",
      "novembre",
      "dicembre"
    ],
    name => "Italian Switzerland",
    native_language => "italiano",
    native_name => "italiano Svizzera",
    native_script => undef,
    native_territory => "Svizzera",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1\N{U+00ba} trimestre",
      "2\N{U+00ba} trimestre",
      "3\N{U+00ba} trimestre",
      "4\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1\N{U+00ba} trimestre",
      "2\N{U+00ba} trimestre",
      "3\N{U+00ba} trimestre",
      "4\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Switzerland",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ it-IT ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "it-IT",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "dd MMM y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "lun",
      "mar",
      "mer",
      "gio",
      "ven",
      "sab",
      "dom"
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "G",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "luned\N{U+00ec}",
      "marted\N{U+00ec}",
      "mercoled\N{U+00ec}",
      "gioved\N{U+00ec}",
      "venerd\N{U+00ec}",
      "sabato",
      "domenica"
    ],
    day_stand_alone_abbreviated => [
      "lun",
      "mar",
      "mer",
      "gio",
      "ven",
      "sab",
      "dom"
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "G",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "Luned\N{U+00ec}",
      "Marted\N{U+00ec}",
      "Mercoled\N{U+00ec}",
      "Gioved\N{U+00ec}",
      "Venerd\N{U+00ec}",
      "Sabato",
      "Domenica"
    ],
    era_abbreviated => [
      "a.C.",
      "d.C."
    ],
    era_narrow => [
      "aC",
      "dC"
    ],
    era_wide => [
      "a.C.",
      "d.C."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %e %b %Y, %H.%M.%S, %Z",
    glibc_date_format => "%d/%m/%Y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Italian",
    month_format_abbreviated => [
      "gen",
      "feb",
      "mar",
      "apr",
      "mag",
      "giu",
      "lug",
      "ago",
      "set",
      "ott",
      "nov",
      "dic"
    ],
    month_format_narrow => [
      "G",
      "F",
      "M",
      "A",
      "M",
      "G",
      "L",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "gennaio",
      "febbraio",
      "marzo",
      "aprile",
      "maggio",
      "giugno",
      "luglio",
      "agosto",
      "settembre",
      "ottobre",
      "novembre",
      "dicembre"
    ],
    month_stand_alone_abbreviated => [
      "gen",
      "feb",
      "mar",
      "apr",
      "mag",
      "giu",
      "lug",
      "ago",
      "set",
      "ott",
      "nov",
      "dic"
    ],
    month_stand_alone_narrow => [
      "G",
      "F",
      "M",
      "A",
      "M",
      "G",
      "L",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Gennaio",
      "Febbraio",
      "Marzo",
      "Aprile",
      "Maggio",
      "Giugno",
      "Luglio",
      "Agosto",
      "Settembre",
      "Ottobre",
      "Novembre",
      "Dicembre"
    ],
    name => "Italian Italy",
    native_language => "italiano",
    native_name => "italiano Italia",
    native_script => undef,
    native_territory => "Italia",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1\N{U+00ba} trimestre",
      "2\N{U+00ba} trimestre",
      "3\N{U+00ba} trimestre",
      "4\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1\N{U+00ba} trimestre",
      "2\N{U+00ba} trimestre",
      "3\N{U+00ba} trimestre",
      "4\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Italy",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ it-SM ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "it-SM",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "dd MMM y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "lun",
      "mar",
      "mer",
      "gio",
      "ven",
      "sab",
      "dom"
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "G",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "luned\N{U+00ec}",
      "marted\N{U+00ec}",
      "mercoled\N{U+00ec}",
      "gioved\N{U+00ec}",
      "venerd\N{U+00ec}",
      "sabato",
      "domenica"
    ],
    day_stand_alone_abbreviated => [
      "lun",
      "mar",
      "mer",
      "gio",
      "ven",
      "sab",
      "dom"
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "G",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "Luned\N{U+00ec}",
      "Marted\N{U+00ec}",
      "Mercoled\N{U+00ec}",
      "Gioved\N{U+00ec}",
      "Venerd\N{U+00ec}",
      "Sabato",
      "Domenica"
    ],
    era_abbreviated => [
      "a.C.",
      "d.C."
    ],
    era_narrow => [
      "aC",
      "dC"
    ],
    era_wide => [
      "a.C.",
      "d.C."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Italian",
    month_format_abbreviated => [
      "gen",
      "feb",
      "mar",
      "apr",
      "mag",
      "giu",
      "lug",
      "ago",
      "set",
      "ott",
      "nov",
      "dic"
    ],
    month_format_narrow => [
      "G",
      "F",
      "M",
      "A",
      "M",
      "G",
      "L",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "gennaio",
      "febbraio",
      "marzo",
      "aprile",
      "maggio",
      "giugno",
      "luglio",
      "agosto",
      "settembre",
      "ottobre",
      "novembre",
      "dicembre"
    ],
    month_stand_alone_abbreviated => [
      "gen",
      "feb",
      "mar",
      "apr",
      "mag",
      "giu",
      "lug",
      "ago",
      "set",
      "ott",
      "nov",
      "dic"
    ],
    month_stand_alone_narrow => [
      "G",
      "F",
      "M",
      "A",
      "M",
      "G",
      "L",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Gennaio",
      "Febbraio",
      "Marzo",
      "Aprile",
      "Maggio",
      "Giugno",
      "Luglio",
      "Agosto",
      "Settembre",
      "Ottobre",
      "Novembre",
      "Dicembre"
    ],
    name => "Italian San Marino",
    native_language => "italiano",
    native_name => "italiano San Marino",
    native_script => undef,
    native_territory => "San Marino",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1\N{U+00ba} trimestre",
      "2\N{U+00ba} trimestre",
      "3\N{U+00ba} trimestre",
      "4\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1\N{U+00ba} trimestre",
      "2\N{U+00ba} trimestre",
      "3\N{U+00ba} trimestre",
      "4\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "San Marino",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ja ]__
  {
    am_pm_abbreviated => [
      "\N{U+5348}\N{U+524d}",
      "\N{U+5348}\N{U+5f8c}"
    ],
    available_formats => {
      E => "ccc",
      EEEEd => "d\N{U+65e5}EEEE",
      EHm => "H:mm (E)",
      EHms => "H:mm:ss (E)",
      Ed => "d\N{U+65e5}(E)",
      Ehm => "aK:mm (E)",
      Ehms => "aK:mm:ss (E)",
      Gy => "Gy\N{U+5e74}",
      GyMMM => "Gy\N{U+5e74}M\N{U+6708}",
      GyMMMEEEEd => "Gy\N{U+5e74}M\N{U+6708}d\N{U+65e5}EEEE",
      GyMMMEd => "Gy\N{U+5e74}M\N{U+6708}d\N{U+65e5}(E)",
      GyMMMd => "Gy\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
      H => "H\N{U+6642}",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmv => "H:mm v",
      M => "M\N{U+6708}",
      MEEEEd => "M/dEEEE",
      MEd => "M/d(E)",
      MMM => "M\N{U+6708}",
      MMMEEEEd => "M\N{U+6708}d\N{U+65e5}EEEE",
      MMMEd => "M\N{U+6708}d\N{U+65e5}(E)",
      MMMMd => "M\N{U+6708}d\N{U+65e5}",
      MMMd => "M\N{U+6708}d\N{U+65e5}",
      Md => "M/d",
      d => "d\N{U+65e5}",
      h => "aK\N{U+6642}",
      hm => "aK:mm",
      hms => "aK:mm:ss",
      hmsv => "aK:mm:ss v",
      hmv => "aK:mm v",
      ms => "mm:ss",
      y => "y\N{U+5e74}",
      yM => "y/M",
      yMEEEEd => "y/M/dEEEE",
      yMEd => "y/M/d(E)",
      yMM => "y/MM",
      yMMM => "y\N{U+5e74}M\N{U+6708}",
      yMMMEEEEd => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}EEEE",
      yMMMEd => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}(E)",
      yMMMM => "y\N{U+5e74}M\N{U+6708}",
      yMMMd => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
      yMd => "y/M/d",
      yQQQ => "y/QQQ",
      yQQQQ => "yQQQQ"
    },
    code => "ja",
    date_format_full => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}EEEE",
    date_format_long => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
    date_format_medium => "y/MM/dd",
    date_format_short => "y/MM/dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+6708}",
      "\N{U+706b}",
      "\N{U+6c34}",
      "\N{U+6728}",
      "\N{U+91d1}",
      "\N{U+571f}",
      "\N{U+65e5}"
    ],
    day_format_narrow => [
      "\N{U+6708}",
      "\N{U+706b}",
      "\N{U+6c34}",
      "\N{U+6728}",
      "\N{U+91d1}",
      "\N{U+571f}",
      "\N{U+65e5}"
    ],
    day_format_wide => [
      "\N{U+6708}\N{U+66dc}\N{U+65e5}",
      "\N{U+706b}\N{U+66dc}\N{U+65e5}",
      "\N{U+6c34}\N{U+66dc}\N{U+65e5}",
      "\N{U+6728}\N{U+66dc}\N{U+65e5}",
      "\N{U+91d1}\N{U+66dc}\N{U+65e5}",
      "\N{U+571f}\N{U+66dc}\N{U+65e5}",
      "\N{U+65e5}\N{U+66dc}\N{U+65e5}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+6708}",
      "\N{U+706b}",
      "\N{U+6c34}",
      "\N{U+6728}",
      "\N{U+91d1}",
      "\N{U+571f}",
      "\N{U+65e5}"
    ],
    day_stand_alone_narrow => [
      "\N{U+6708}",
      "\N{U+706b}",
      "\N{U+6c34}",
      "\N{U+6728}",
      "\N{U+91d1}",
      "\N{U+571f}",
      "\N{U+65e5}"
    ],
    day_stand_alone_wide => [
      "\N{U+6708}\N{U+66dc}\N{U+65e5}",
      "\N{U+706b}\N{U+66dc}\N{U+65e5}",
      "\N{U+6c34}\N{U+66dc}\N{U+65e5}",
      "\N{U+6728}\N{U+66dc}\N{U+65e5}",
      "\N{U+91d1}\N{U+66dc}\N{U+65e5}",
      "\N{U+571f}\N{U+66dc}\N{U+65e5}",
      "\N{U+65e5}\N{U+66dc}\N{U+65e5}"
    ],
    era_abbreviated => [
      "\N{U+7d00}\N{U+5143}\N{U+524d}",
      "\N{U+897f}\N{U+66a6}"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "\N{U+7d00}\N{U+5143}\N{U+524d}",
      "\N{U+897f}\N{U+66a6}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Japanese",
    month_format_abbreviated => [
      "1\N{U+6708}",
      "2\N{U+6708}",
      "3\N{U+6708}",
      "4\N{U+6708}",
      "5\N{U+6708}",
      "6\N{U+6708}",
      "7\N{U+6708}",
      "8\N{U+6708}",
      "9\N{U+6708}",
      "10\N{U+6708}",
      "11\N{U+6708}",
      "12\N{U+6708}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "1\N{U+6708}",
      "2\N{U+6708}",
      "3\N{U+6708}",
      "4\N{U+6708}",
      "5\N{U+6708}",
      "6\N{U+6708}",
      "7\N{U+6708}",
      "8\N{U+6708}",
      "9\N{U+6708}",
      "10\N{U+6708}",
      "11\N{U+6708}",
      "12\N{U+6708}"
    ],
    month_stand_alone_abbreviated => [
      "1\N{U+6708}",
      "2\N{U+6708}",
      "3\N{U+6708}",
      "4\N{U+6708}",
      "5\N{U+6708}",
      "6\N{U+6708}",
      "7\N{U+6708}",
      "8\N{U+6708}",
      "9\N{U+6708}",
      "10\N{U+6708}",
      "11\N{U+6708}",
      "12\N{U+6708}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "1\N{U+6708}",
      "2\N{U+6708}",
      "3\N{U+6708}",
      "4\N{U+6708}",
      "5\N{U+6708}",
      "6\N{U+6708}",
      "7\N{U+6708}",
      "8\N{U+6708}",
      "9\N{U+6708}",
      "10\N{U+6708}",
      "11\N{U+6708}",
      "12\N{U+6708}"
    ],
    name => "Japanese",
    native_language => "\N{U+65e5}\N{U+672c}\N{U+8a9e}",
    native_name => "\N{U+65e5}\N{U+672c}\N{U+8a9e}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+7b2c}1\N{U+56db}\N{U+534a}\N{U+671f}",
      "\N{U+7b2c}2\N{U+56db}\N{U+534a}\N{U+671f}",
      "\N{U+7b2c}3\N{U+56db}\N{U+534a}\N{U+671f}",
      "\N{U+7b2c}4\N{U+56db}\N{U+534a}\N{U+671f}"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+7b2c}1\N{U+56db}\N{U+534a}\N{U+671f}",
      "\N{U+7b2c}2\N{U+56db}\N{U+534a}\N{U+671f}",
      "\N{U+7b2c}3\N{U+56db}\N{U+534a}\N{U+671f}",
      "\N{U+7b2c}4\N{U+56db}\N{U+534a}\N{U+671f}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "H\N{U+6642}mm\N{U+5206}ss\N{U+79d2} zzzz",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ jgo ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.M",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "d.M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "M.d.y",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "jgo",
    date_format_full => "EEEE, y MMMM dd",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "M\N{U+0254}\N{U+0301}ndi",
      "\N{U+00c1}pta M\N{U+0254}\N{U+0301}ndi",
      "W\N{U+025b}\N{U+0301}n\N{U+025b}s\N{U+025b}d\N{U+025b}",
      "T\N{U+0254}\N{U+0301}s\N{U+025b}d\N{U+025b}",
      "F\N{U+025b}l\N{U+00e2}y\N{U+025b}d\N{U+025b}",
      "S\N{U+00e1}sid\N{U+025b}",
      "S\N{U+0254}\N{U+0301}ndi"
    ],
    day_format_narrow => [
      "M\N{U+0254}\N{U+0301}",
      "\N{U+00c1}M",
      "W\N{U+025b}\N{U+0301}",
      "T\N{U+0254}\N{U+0301}",
      "F\N{U+025b}",
      "S\N{U+00e1}",
      "S\N{U+0254}\N{U+0301}"
    ],
    day_format_wide => [
      "M\N{U+0254}\N{U+0301}ndi",
      "\N{U+00c1}pta M\N{U+0254}\N{U+0301}ndi",
      "W\N{U+025b}\N{U+0301}n\N{U+025b}s\N{U+025b}d\N{U+025b}",
      "T\N{U+0254}\N{U+0301}s\N{U+025b}d\N{U+025b}",
      "F\N{U+025b}l\N{U+00e2}y\N{U+025b}d\N{U+025b}",
      "S\N{U+00e1}sid\N{U+025b}",
      "S\N{U+0254}\N{U+0301}ndi"
    ],
    day_stand_alone_abbreviated => [
      "M\N{U+0254}\N{U+0301}ndi",
      "\N{U+00c1}pta M\N{U+0254}\N{U+0301}ndi",
      "W\N{U+025b}\N{U+0301}n\N{U+025b}s\N{U+025b}d\N{U+025b}",
      "T\N{U+0254}\N{U+0301}s\N{U+025b}d\N{U+025b}",
      "F\N{U+025b}l\N{U+00e2}y\N{U+025b}d\N{U+025b}",
      "S\N{U+00e1}sid\N{U+025b}",
      "S\N{U+0254}\N{U+0301}ndi"
    ],
    day_stand_alone_narrow => [
      "M\N{U+0254}\N{U+0301}",
      "\N{U+00c1}M",
      "W\N{U+025b}\N{U+0301}",
      "T\N{U+0254}\N{U+0301}",
      "F\N{U+025b}",
      "S\N{U+00e1}",
      "S\N{U+0254}\N{U+0301}"
    ],
    day_stand_alone_wide => [
      "M\N{U+0254}\N{U+0301}ndi",
      "\N{U+00c1}pta M\N{U+0254}\N{U+0301}ndi",
      "W\N{U+025b}\N{U+0301}n\N{U+025b}s\N{U+025b}d\N{U+025b}",
      "T\N{U+0254}\N{U+0301}s\N{U+025b}d\N{U+025b}",
      "F\N{U+025b}l\N{U+00e2}y\N{U+025b}d\N{U+025b}",
      "S\N{U+00e1}sid\N{U+025b}",
      "S\N{U+0254}\N{U+0301}ndi"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "ts\N{U+025b}tts\N{U+025b}t m\N{U+025b}\N{U+014b}gu\N{U+a78c} mi \N{U+025b}\N{U+0301} l\N{U+025b}\N{U+025b}n\N{U+025b} K\N{U+025b}l\N{U+00ed}s\N{U+025b}t\N{U+0254} g\N{U+0254} \N{U+0144}\N{U+0254}\N{U+0301}",
      "ts\N{U+025b}tts\N{U+025b}t m\N{U+025b}\N{U+014b}gu\N{U+a78c} mi \N{U+025b}\N{U+0301} f\N{U+00fa}n\N{U+025b} K\N{U+025b}l\N{U+00ed}s\N{U+025b}t\N{U+0254} t\N{U+0254}\N{U+0301} m\N{U+0254}\N{U+0301}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Ngomba",
    month_format_abbreviated => [
      "Ndu\N{U+014b}mbi Sa\N{U+014b}",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}p\N{U+00e1}",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}t\N{U+00e1}t",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}kwa",
      "P\N{U+025b}sa\N{U+014b} Pataa",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}nt\N{U+00fa}k\N{U+00fa}",
      "P\N{U+025b}sa\N{U+014b} Saamb\N{U+00e1}",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}f\N{U+0254}m",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}pf\N{U+00fa}\N{U+a78b}\N{U+00fa}",
      "P\N{U+025b}sa\N{U+014b} N\N{U+025b}g\N{U+025b}\N{U+0301}m",
      "P\N{U+025b}sa\N{U+014b} Nts\N{U+0254}\N{U+030c}pm\N{U+0254}\N{U+0301}",
      "P\N{U+025b}sa\N{U+014b} Nts\N{U+0254}\N{U+030c}pp\N{U+00e1}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Ndu\N{U+014b}mbi Sa\N{U+014b}",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}p\N{U+00e1}",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}t\N{U+00e1}t",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}kwa",
      "P\N{U+025b}sa\N{U+014b} Pataa",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}nt\N{U+00fa}k\N{U+00fa}",
      "P\N{U+025b}sa\N{U+014b} Saamb\N{U+00e1}",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}f\N{U+0254}m",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}pf\N{U+00fa}\N{U+a78b}\N{U+00fa}",
      "P\N{U+025b}sa\N{U+014b} N\N{U+025b}g\N{U+025b}\N{U+0301}m",
      "P\N{U+025b}sa\N{U+014b} Nts\N{U+0254}\N{U+030c}pm\N{U+0254}\N{U+0301}",
      "P\N{U+025b}sa\N{U+014b} Nts\N{U+0254}\N{U+030c}pp\N{U+00e1}"
    ],
    month_stand_alone_abbreviated => [
      "Ndu\N{U+014b}mbi Sa\N{U+014b}",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}p\N{U+00e1}",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}t\N{U+00e1}t",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}kwa",
      "P\N{U+025b}sa\N{U+014b} Pataa",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}nt\N{U+00fa}k\N{U+00fa}",
      "P\N{U+025b}sa\N{U+014b} Saamb\N{U+00e1}",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}f\N{U+0254}m",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}pf\N{U+00fa}\N{U+a78b}\N{U+00fa}",
      "P\N{U+025b}sa\N{U+014b} N\N{U+025b}g\N{U+025b}\N{U+0301}m",
      "P\N{U+025b}sa\N{U+014b} Nts\N{U+0254}\N{U+030c}pm\N{U+0254}\N{U+0301}",
      "P\N{U+025b}sa\N{U+014b} Nts\N{U+0254}\N{U+030c}pp\N{U+00e1}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Ndu\N{U+014b}mbi Sa\N{U+014b}",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}p\N{U+00e1}",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}t\N{U+00e1}t",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}kwa",
      "P\N{U+025b}sa\N{U+014b} Pataa",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}nt\N{U+00fa}k\N{U+00fa}",
      "P\N{U+025b}sa\N{U+014b} Saamb\N{U+00e1}",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}f\N{U+0254}m",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}pf\N{U+00fa}\N{U+a78b}\N{U+00fa}",
      "P\N{U+025b}sa\N{U+014b} N\N{U+025b}g\N{U+025b}\N{U+0301}m",
      "P\N{U+025b}sa\N{U+014b} Nts\N{U+0254}\N{U+030c}pm\N{U+0254}\N{U+0301}",
      "P\N{U+025b}sa\N{U+014b} Nts\N{U+0254}\N{U+030c}pp\N{U+00e1}"
    ],
    name => "Ngomba",
    native_language => "Nda\N{U+a78c}a",
    native_name => "Nda\N{U+a78c}a",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ jgo-CM ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.M",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "d.M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "M.d.y",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "jgo-CM",
    date_format_full => "EEEE, y MMMM dd",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "M\N{U+0254}\N{U+0301}ndi",
      "\N{U+00c1}pta M\N{U+0254}\N{U+0301}ndi",
      "W\N{U+025b}\N{U+0301}n\N{U+025b}s\N{U+025b}d\N{U+025b}",
      "T\N{U+0254}\N{U+0301}s\N{U+025b}d\N{U+025b}",
      "F\N{U+025b}l\N{U+00e2}y\N{U+025b}d\N{U+025b}",
      "S\N{U+00e1}sid\N{U+025b}",
      "S\N{U+0254}\N{U+0301}ndi"
    ],
    day_format_narrow => [
      "M\N{U+0254}\N{U+0301}",
      "\N{U+00c1}M",
      "W\N{U+025b}\N{U+0301}",
      "T\N{U+0254}\N{U+0301}",
      "F\N{U+025b}",
      "S\N{U+00e1}",
      "S\N{U+0254}\N{U+0301}"
    ],
    day_format_wide => [
      "M\N{U+0254}\N{U+0301}ndi",
      "\N{U+00c1}pta M\N{U+0254}\N{U+0301}ndi",
      "W\N{U+025b}\N{U+0301}n\N{U+025b}s\N{U+025b}d\N{U+025b}",
      "T\N{U+0254}\N{U+0301}s\N{U+025b}d\N{U+025b}",
      "F\N{U+025b}l\N{U+00e2}y\N{U+025b}d\N{U+025b}",
      "S\N{U+00e1}sid\N{U+025b}",
      "S\N{U+0254}\N{U+0301}ndi"
    ],
    day_stand_alone_abbreviated => [
      "M\N{U+0254}\N{U+0301}ndi",
      "\N{U+00c1}pta M\N{U+0254}\N{U+0301}ndi",
      "W\N{U+025b}\N{U+0301}n\N{U+025b}s\N{U+025b}d\N{U+025b}",
      "T\N{U+0254}\N{U+0301}s\N{U+025b}d\N{U+025b}",
      "F\N{U+025b}l\N{U+00e2}y\N{U+025b}d\N{U+025b}",
      "S\N{U+00e1}sid\N{U+025b}",
      "S\N{U+0254}\N{U+0301}ndi"
    ],
    day_stand_alone_narrow => [
      "M\N{U+0254}\N{U+0301}",
      "\N{U+00c1}M",
      "W\N{U+025b}\N{U+0301}",
      "T\N{U+0254}\N{U+0301}",
      "F\N{U+025b}",
      "S\N{U+00e1}",
      "S\N{U+0254}\N{U+0301}"
    ],
    day_stand_alone_wide => [
      "M\N{U+0254}\N{U+0301}ndi",
      "\N{U+00c1}pta M\N{U+0254}\N{U+0301}ndi",
      "W\N{U+025b}\N{U+0301}n\N{U+025b}s\N{U+025b}d\N{U+025b}",
      "T\N{U+0254}\N{U+0301}s\N{U+025b}d\N{U+025b}",
      "F\N{U+025b}l\N{U+00e2}y\N{U+025b}d\N{U+025b}",
      "S\N{U+00e1}sid\N{U+025b}",
      "S\N{U+0254}\N{U+0301}ndi"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "ts\N{U+025b}tts\N{U+025b}t m\N{U+025b}\N{U+014b}gu\N{U+a78c} mi \N{U+025b}\N{U+0301} l\N{U+025b}\N{U+025b}n\N{U+025b} K\N{U+025b}l\N{U+00ed}s\N{U+025b}t\N{U+0254} g\N{U+0254} \N{U+0144}\N{U+0254}\N{U+0301}",
      "ts\N{U+025b}tts\N{U+025b}t m\N{U+025b}\N{U+014b}gu\N{U+a78c} mi \N{U+025b}\N{U+0301} f\N{U+00fa}n\N{U+025b} K\N{U+025b}l\N{U+00ed}s\N{U+025b}t\N{U+0254} t\N{U+0254}\N{U+0301} m\N{U+0254}\N{U+0301}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Ngomba",
    month_format_abbreviated => [
      "Ndu\N{U+014b}mbi Sa\N{U+014b}",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}p\N{U+00e1}",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}t\N{U+00e1}t",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}kwa",
      "P\N{U+025b}sa\N{U+014b} Pataa",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}nt\N{U+00fa}k\N{U+00fa}",
      "P\N{U+025b}sa\N{U+014b} Saamb\N{U+00e1}",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}f\N{U+0254}m",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}pf\N{U+00fa}\N{U+a78b}\N{U+00fa}",
      "P\N{U+025b}sa\N{U+014b} N\N{U+025b}g\N{U+025b}\N{U+0301}m",
      "P\N{U+025b}sa\N{U+014b} Nts\N{U+0254}\N{U+030c}pm\N{U+0254}\N{U+0301}",
      "P\N{U+025b}sa\N{U+014b} Nts\N{U+0254}\N{U+030c}pp\N{U+00e1}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Ndu\N{U+014b}mbi Sa\N{U+014b}",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}p\N{U+00e1}",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}t\N{U+00e1}t",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}kwa",
      "P\N{U+025b}sa\N{U+014b} Pataa",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}nt\N{U+00fa}k\N{U+00fa}",
      "P\N{U+025b}sa\N{U+014b} Saamb\N{U+00e1}",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}f\N{U+0254}m",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}pf\N{U+00fa}\N{U+a78b}\N{U+00fa}",
      "P\N{U+025b}sa\N{U+014b} N\N{U+025b}g\N{U+025b}\N{U+0301}m",
      "P\N{U+025b}sa\N{U+014b} Nts\N{U+0254}\N{U+030c}pm\N{U+0254}\N{U+0301}",
      "P\N{U+025b}sa\N{U+014b} Nts\N{U+0254}\N{U+030c}pp\N{U+00e1}"
    ],
    month_stand_alone_abbreviated => [
      "Ndu\N{U+014b}mbi Sa\N{U+014b}",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}p\N{U+00e1}",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}t\N{U+00e1}t",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}kwa",
      "P\N{U+025b}sa\N{U+014b} Pataa",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}nt\N{U+00fa}k\N{U+00fa}",
      "P\N{U+025b}sa\N{U+014b} Saamb\N{U+00e1}",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}f\N{U+0254}m",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}pf\N{U+00fa}\N{U+a78b}\N{U+00fa}",
      "P\N{U+025b}sa\N{U+014b} N\N{U+025b}g\N{U+025b}\N{U+0301}m",
      "P\N{U+025b}sa\N{U+014b} Nts\N{U+0254}\N{U+030c}pm\N{U+0254}\N{U+0301}",
      "P\N{U+025b}sa\N{U+014b} Nts\N{U+0254}\N{U+030c}pp\N{U+00e1}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Ndu\N{U+014b}mbi Sa\N{U+014b}",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}p\N{U+00e1}",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}t\N{U+00e1}t",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}kwa",
      "P\N{U+025b}sa\N{U+014b} Pataa",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}nt\N{U+00fa}k\N{U+00fa}",
      "P\N{U+025b}sa\N{U+014b} Saamb\N{U+00e1}",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}f\N{U+0254}m",
      "P\N{U+025b}sa\N{U+014b} P\N{U+025b}\N{U+0301}n\N{U+025b}\N{U+0301}pf\N{U+00fa}\N{U+a78b}\N{U+00fa}",
      "P\N{U+025b}sa\N{U+014b} N\N{U+025b}g\N{U+025b}\N{U+0301}m",
      "P\N{U+025b}sa\N{U+014b} Nts\N{U+0254}\N{U+030c}pm\N{U+0254}\N{U+0301}",
      "P\N{U+025b}sa\N{U+014b} Nts\N{U+0254}\N{U+030c}pp\N{U+00e1}"
    ],
    name => "Ngomba Cameroon",
    native_language => "Nda\N{U+a78c}a",
    native_name => "Nda\N{U+a78c}a Kam\N{U+025b}l\N{U+00fb}n",
    native_script => undef,
    native_territory => "Kam\N{U+025b}l\N{U+00fb}n",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "Cameroon",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ jmc ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "jmc",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Jtt",
      "Jnn",
      "Jtn",
      "Alh",
      "Iju",
      "Jmo",
      "Jpi"
    ],
    day_format_narrow => [
      "J",
      "J",
      "J",
      "A",
      "I",
      "J",
      "J"
    ],
    day_format_wide => [
      "Jumatatuu",
      "Jumanne",
      "Jumatanu",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapilyi"
    ],
    day_stand_alone_abbreviated => [
      "Jtt",
      "Jnn",
      "Jtn",
      "Alh",
      "Iju",
      "Jmo",
      "Jpi"
    ],
    day_stand_alone_narrow => [
      "J",
      "J",
      "J",
      "A",
      "I",
      "J",
      "J"
    ],
    day_stand_alone_wide => [
      "Jumatatuu",
      "Jumanne",
      "Jumatanu",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapilyi"
    ],
    era_abbreviated => [
      "KK",
      "BK"
    ],
    era_narrow => [
      "KK",
      "BK"
    ],
    era_wide => [
      "Kabla ya Kristu",
      "Baada ya Kristu"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Machame",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Aprilyi",
      "Mei",
      "Junyi",
      "Julyai",
      "Agusti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Aprilyi",
      "Mei",
      "Junyi",
      "Julyai",
      "Agusti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    name => "Machame",
    native_language => "Kimachame",
    native_name => "Kimachame",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Robo 1",
      "Robo 2",
      "Robo 3",
      "Robo 4"
    ],
    quarter_stand_alone_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Robo 1",
      "Robo 2",
      "Robo 3",
      "Robo 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ jmc-TZ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "jmc-TZ",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Jtt",
      "Jnn",
      "Jtn",
      "Alh",
      "Iju",
      "Jmo",
      "Jpi"
    ],
    day_format_narrow => [
      "J",
      "J",
      "J",
      "A",
      "I",
      "J",
      "J"
    ],
    day_format_wide => [
      "Jumatatuu",
      "Jumanne",
      "Jumatanu",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapilyi"
    ],
    day_stand_alone_abbreviated => [
      "Jtt",
      "Jnn",
      "Jtn",
      "Alh",
      "Iju",
      "Jmo",
      "Jpi"
    ],
    day_stand_alone_narrow => [
      "J",
      "J",
      "J",
      "A",
      "I",
      "J",
      "J"
    ],
    day_stand_alone_wide => [
      "Jumatatuu",
      "Jumanne",
      "Jumatanu",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapilyi"
    ],
    era_abbreviated => [
      "KK",
      "BK"
    ],
    era_narrow => [
      "KK",
      "BK"
    ],
    era_wide => [
      "Kabla ya Kristu",
      "Baada ya Kristu"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Machame",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Aprilyi",
      "Mei",
      "Junyi",
      "Julyai",
      "Agusti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Aprilyi",
      "Mei",
      "Junyi",
      "Julyai",
      "Agusti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    name => "Machame Tanzania",
    native_language => "Kimachame",
    native_name => "Kimachame Tanzania",
    native_script => undef,
    native_territory => "Tanzania",
    native_variant => undef,
    quarter_format_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Robo 1",
      "Robo 2",
      "Robo 3",
      "Robo 4"
    ],
    quarter_stand_alone_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Robo 1",
      "Robo 2",
      "Robo 3",
      "Robo 4"
    ],
    script => undef,
    territory => "Tanzania",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ka ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "d E",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM. y G",
      GyMMMEd => "E, d MMM. y G",
      GyMMMd => "d MMM. y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d.M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M.y",
      yMEd => "E, d.M.y",
      yMMM => "MMM. y",
      yMMMEd => "E, d MMM. y",
      yMMMM => "MMMM, y",
      yMMMd => "d MMM. y",
      yMd => "d.M.y",
      yQQQ => "QQQ, y",
      yQQQQ => "QQQQ, y"
    },
    code => "ka",
    date_format_full => "EEEE, dd MMMM, y",
    date_format_long => "d MMMM, y",
    date_format_medium => "d MMM. y",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+10dd}\N{U+10e0}\N{U+10e8}",
      "\N{U+10e1}\N{U+10d0}\N{U+10db}",
      "\N{U+10dd}\N{U+10d7}\N{U+10ee}",
      "\N{U+10ee}\N{U+10e3}\N{U+10d7}",
      "\N{U+10de}\N{U+10d0}\N{U+10e0}",
      "\N{U+10e8}\N{U+10d0}\N{U+10d1}",
      "\N{U+10d9}\N{U+10d5}\N{U+10d8}"
    ],
    day_format_narrow => [
      "\N{U+10dd}",
      "\N{U+10e1}",
      "\N{U+10dd}",
      "\N{U+10ee}",
      "\N{U+10de}",
      "\N{U+10e8}",
      "\N{U+10d9}"
    ],
    day_format_wide => [
      "\N{U+10dd}\N{U+10e0}\N{U+10e8}\N{U+10d0}\N{U+10d1}\N{U+10d0}\N{U+10d7}\N{U+10d8}",
      "\N{U+10e1}\N{U+10d0}\N{U+10db}\N{U+10e8}\N{U+10d0}\N{U+10d1}\N{U+10d0}\N{U+10d7}\N{U+10d8}",
      "\N{U+10dd}\N{U+10d7}\N{U+10ee}\N{U+10e8}\N{U+10d0}\N{U+10d1}\N{U+10d0}\N{U+10d7}\N{U+10d8}",
      "\N{U+10ee}\N{U+10e3}\N{U+10d7}\N{U+10e8}\N{U+10d0}\N{U+10d1}\N{U+10d0}\N{U+10d7}\N{U+10d8}",
      "\N{U+10de}\N{U+10d0}\N{U+10e0}\N{U+10d0}\N{U+10e1}\N{U+10d9}\N{U+10d4}\N{U+10d5}\N{U+10d8}",
      "\N{U+10e8}\N{U+10d0}\N{U+10d1}\N{U+10d0}\N{U+10d7}\N{U+10d8}",
      "\N{U+10d9}\N{U+10d5}\N{U+10d8}\N{U+10e0}\N{U+10d0}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+10dd}\N{U+10e0}\N{U+10e8}",
      "\N{U+10e1}\N{U+10d0}\N{U+10db}",
      "\N{U+10dd}\N{U+10d7}\N{U+10ee}",
      "\N{U+10ee}\N{U+10e3}\N{U+10d7}",
      "\N{U+10de}\N{U+10d0}\N{U+10e0}",
      "\N{U+10e8}\N{U+10d0}\N{U+10d1}",
      "\N{U+10d9}\N{U+10d5}\N{U+10d8}"
    ],
    day_stand_alone_narrow => [
      "\N{U+10dd}",
      "\N{U+10e1}",
      "\N{U+10dd}",
      "\N{U+10ee}",
      "\N{U+10de}",
      "\N{U+10e8}",
      "\N{U+10d9}"
    ],
    day_stand_alone_wide => [
      "\N{U+10dd}\N{U+10e0}\N{U+10e8}\N{U+10d0}\N{U+10d1}\N{U+10d0}\N{U+10d7}\N{U+10d8}",
      "\N{U+10e1}\N{U+10d0}\N{U+10db}\N{U+10e8}\N{U+10d0}\N{U+10d1}\N{U+10d0}\N{U+10d7}\N{U+10d8}",
      "\N{U+10dd}\N{U+10d7}\N{U+10ee}\N{U+10e8}\N{U+10d0}\N{U+10d1}\N{U+10d0}\N{U+10d7}\N{U+10d8}",
      "\N{U+10ee}\N{U+10e3}\N{U+10d7}\N{U+10e8}\N{U+10d0}\N{U+10d1}\N{U+10d0}\N{U+10d7}\N{U+10d8}",
      "\N{U+10de}\N{U+10d0}\N{U+10e0}\N{U+10d0}\N{U+10e1}\N{U+10d9}\N{U+10d4}\N{U+10d5}\N{U+10d8}",
      "\N{U+10e8}\N{U+10d0}\N{U+10d1}\N{U+10d0}\N{U+10d7}\N{U+10d8}",
      "\N{U+10d9}\N{U+10d5}\N{U+10d8}\N{U+10e0}\N{U+10d0}"
    ],
    era_abbreviated => [
      "\N{U+10eb}\N{U+10d5}. \N{U+10ec}.",
      "\N{U+10d0}\N{U+10ee}. \N{U+10ec}."
    ],
    era_narrow => [
      "\N{U+10eb}\N{U+10d5}. \N{U+10ec}.",
      "\N{U+10d0}\N{U+10ee}. \N{U+10ec}."
    ],
    era_wide => [
      "\N{U+10eb}\N{U+10d5}\N{U+10d4}\N{U+10da}\N{U+10d8} \N{U+10ec}\N{U+10d4}\N{U+10da}\N{U+10d7}\N{U+10d0}\N{U+10e6}\N{U+10e0}\N{U+10d8}\N{U+10ea}\N{U+10ee}\N{U+10d5}\N{U+10d8}\N{U+10d7}",
      "\N{U+10d0}\N{U+10ee}\N{U+10d0}\N{U+10da}\N{U+10d8} \N{U+10ec}\N{U+10d4}\N{U+10da}\N{U+10d7}\N{U+10d0}\N{U+10e6}\N{U+10e0}\N{U+10d8}\N{U+10ea}\N{U+10ee}\N{U+10d5}\N{U+10d8}\N{U+10d7}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Georgian",
    month_format_abbreviated => [
      "\N{U+10d8}\N{U+10d0}\N{U+10dc}",
      "\N{U+10d7}\N{U+10d4}\N{U+10d1}",
      "\N{U+10db}\N{U+10d0}\N{U+10e0}",
      "\N{U+10d0}\N{U+10de}\N{U+10e0}",
      "\N{U+10db}\N{U+10d0}\N{U+10d8}",
      "\N{U+10d8}\N{U+10d5}\N{U+10dc}",
      "\N{U+10d8}\N{U+10d5}\N{U+10da}",
      "\N{U+10d0}\N{U+10d2}\N{U+10d5}",
      "\N{U+10e1}\N{U+10d4}\N{U+10e5}",
      "\N{U+10dd}\N{U+10e5}\N{U+10e2}",
      "\N{U+10dc}\N{U+10dd}\N{U+10d4}",
      "\N{U+10d3}\N{U+10d4}\N{U+10d9}"
    ],
    month_format_narrow => [
      "\N{U+10d8}",
      "\N{U+10d7}",
      "\N{U+10db}",
      "\N{U+10d0}",
      "\N{U+10db}",
      "\N{U+10d8}",
      "\N{U+10d8}",
      "\N{U+10d0}",
      "\N{U+10e1}",
      "\N{U+10dd}",
      "\N{U+10dc}",
      "\N{U+10d3}"
    ],
    month_format_wide => [
      "\N{U+10d8}\N{U+10d0}\N{U+10dc}\N{U+10d5}\N{U+10d0}\N{U+10e0}\N{U+10d8}",
      "\N{U+10d7}\N{U+10d4}\N{U+10d1}\N{U+10d4}\N{U+10e0}\N{U+10d5}\N{U+10d0}\N{U+10da}\N{U+10d8}",
      "\N{U+10db}\N{U+10d0}\N{U+10e0}\N{U+10e2}\N{U+10d8}",
      "\N{U+10d0}\N{U+10de}\N{U+10e0}\N{U+10d8}\N{U+10da}\N{U+10d8}",
      "\N{U+10db}\N{U+10d0}\N{U+10d8}\N{U+10e1}\N{U+10d8}",
      "\N{U+10d8}\N{U+10d5}\N{U+10dc}\N{U+10d8}\N{U+10e1}\N{U+10d8}",
      "\N{U+10d8}\N{U+10d5}\N{U+10da}\N{U+10d8}\N{U+10e1}\N{U+10d8}",
      "\N{U+10d0}\N{U+10d2}\N{U+10d5}\N{U+10d8}\N{U+10e1}\N{U+10e2}\N{U+10dd}",
      "\N{U+10e1}\N{U+10d4}\N{U+10e5}\N{U+10e2}\N{U+10d4}\N{U+10db}\N{U+10d1}\N{U+10d4}\N{U+10e0}\N{U+10d8}",
      "\N{U+10dd}\N{U+10e5}\N{U+10e2}\N{U+10dd}\N{U+10db}\N{U+10d1}\N{U+10d4}\N{U+10e0}\N{U+10d8}",
      "\N{U+10dc}\N{U+10dd}\N{U+10d4}\N{U+10db}\N{U+10d1}\N{U+10d4}\N{U+10e0}\N{U+10d8}",
      "\N{U+10d3}\N{U+10d4}\N{U+10d9}\N{U+10d4}\N{U+10db}\N{U+10d1}\N{U+10d4}\N{U+10e0}\N{U+10d8}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+10d8}\N{U+10d0}\N{U+10dc}",
      "\N{U+10d7}\N{U+10d4}\N{U+10d1}",
      "\N{U+10db}\N{U+10d0}\N{U+10e0}",
      "\N{U+10d0}\N{U+10de}\N{U+10e0}",
      "\N{U+10db}\N{U+10d0}\N{U+10d8}",
      "\N{U+10d8}\N{U+10d5}\N{U+10dc}",
      "\N{U+10d8}\N{U+10d5}\N{U+10da}",
      "\N{U+10d0}\N{U+10d2}\N{U+10d5}",
      "\N{U+10e1}\N{U+10d4}\N{U+10e5}",
      "\N{U+10dd}\N{U+10e5}\N{U+10e2}",
      "\N{U+10dc}\N{U+10dd}\N{U+10d4}",
      "\N{U+10d3}\N{U+10d4}\N{U+10d9}"
    ],
    month_stand_alone_narrow => [
      "\N{U+10d8}",
      "\N{U+10d7}",
      "\N{U+10db}",
      "\N{U+10d0}",
      "\N{U+10db}",
      "\N{U+10d8}",
      "\N{U+10d8}",
      "\N{U+10d0}",
      "\N{U+10e1}",
      "\N{U+10dd}",
      "\N{U+10dc}",
      "\N{U+10d3}"
    ],
    month_stand_alone_wide => [
      "\N{U+10d8}\N{U+10d0}\N{U+10dc}\N{U+10d5}\N{U+10d0}\N{U+10e0}\N{U+10d8}",
      "\N{U+10d7}\N{U+10d4}\N{U+10d1}\N{U+10d4}\N{U+10e0}\N{U+10d5}\N{U+10d0}\N{U+10da}\N{U+10d8}",
      "\N{U+10db}\N{U+10d0}\N{U+10e0}\N{U+10e2}\N{U+10d8}",
      "\N{U+10d0}\N{U+10de}\N{U+10e0}\N{U+10d8}\N{U+10da}\N{U+10d8}",
      "\N{U+10db}\N{U+10d0}\N{U+10d8}\N{U+10e1}\N{U+10d8}",
      "\N{U+10d8}\N{U+10d5}\N{U+10dc}\N{U+10d8}\N{U+10e1}\N{U+10d8}",
      "\N{U+10d8}\N{U+10d5}\N{U+10da}\N{U+10d8}\N{U+10e1}\N{U+10d8}",
      "\N{U+10d0}\N{U+10d2}\N{U+10d5}\N{U+10d8}\N{U+10e1}\N{U+10e2}\N{U+10dd}",
      "\N{U+10e1}\N{U+10d4}\N{U+10e5}\N{U+10e2}\N{U+10d4}\N{U+10db}\N{U+10d1}\N{U+10d4}\N{U+10e0}\N{U+10d8}",
      "\N{U+10dd}\N{U+10e5}\N{U+10e2}\N{U+10dd}\N{U+10db}\N{U+10d1}\N{U+10d4}\N{U+10e0}\N{U+10d8}",
      "\N{U+10dc}\N{U+10dd}\N{U+10d4}\N{U+10db}\N{U+10d1}\N{U+10d4}\N{U+10e0}\N{U+10d8}",
      "\N{U+10d3}\N{U+10d4}\N{U+10d9}\N{U+10d4}\N{U+10db}\N{U+10d1}\N{U+10d4}\N{U+10e0}\N{U+10d8}"
    ],
    name => "Georgian",
    native_language => "\N{U+10e5}\N{U+10d0}\N{U+10e0}\N{U+10d7}\N{U+10e3}\N{U+10da}\N{U+10d8}",
    native_name => "\N{U+10e5}\N{U+10d0}\N{U+10e0}\N{U+10d7}\N{U+10e3}\N{U+10da}\N{U+10d8}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "I \N{U+10d9}\N{U+10d5}.",
      "II \N{U+10d9}\N{U+10d5}.",
      "III \N{U+10d9}\N{U+10d5}.",
      "IV \N{U+10d9}\N{U+10d5}."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "I \N{U+10d9}\N{U+10d5}\N{U+10d0}\N{U+10e0}\N{U+10e2}\N{U+10d0}\N{U+10da}\N{U+10d8}",
      "II \N{U+10d9}\N{U+10d5}\N{U+10d0}\N{U+10e0}\N{U+10e2}\N{U+10d0}\N{U+10da}\N{U+10d8}",
      "III \N{U+10d9}\N{U+10d5}\N{U+10d0}\N{U+10e0}\N{U+10e2}\N{U+10d0}\N{U+10da}\N{U+10d8}",
      "IV \N{U+10d9}\N{U+10d5}\N{U+10d0}\N{U+10e0}\N{U+10e2}\N{U+10d0}\N{U+10da}\N{U+10d8}"
    ],
    quarter_stand_alone_abbreviated => [
      "I \N{U+10d9}\N{U+10d5}.",
      "II \N{U+10d9}\N{U+10d5}.",
      "III \N{U+10d9}\N{U+10d5}.",
      "IV \N{U+10d9}\N{U+10d5}."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "I \N{U+10d9}\N{U+10d5}\N{U+10d0}\N{U+10e0}\N{U+10e2}\N{U+10d0}\N{U+10da}\N{U+10d8}",
      "II \N{U+10d9}\N{U+10d5}\N{U+10d0}\N{U+10e0}\N{U+10e2}\N{U+10d0}\N{U+10da}\N{U+10d8}",
      "III \N{U+10d9}\N{U+10d5}\N{U+10d0}\N{U+10e0}\N{U+10e2}\N{U+10d0}\N{U+10da}\N{U+10d8}",
      "IV \N{U+10d9}\N{U+10d5}\N{U+10d0}\N{U+10e0}\N{U+10e2}\N{U+10d0}\N{U+10da}\N{U+10d8}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ka-GE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "d E",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM. y G",
      GyMMMEd => "E, d MMM. y G",
      GyMMMd => "d MMM. y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d.M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M.y",
      yMEd => "E, d.M.y",
      yMMM => "MMM. y",
      yMMMEd => "E, d MMM. y",
      yMMMM => "MMMM, y",
      yMMMd => "d MMM. y",
      yMd => "d.M.y",
      yQQQ => "QQQ, y",
      yQQQQ => "QQQQ, y"
    },
    code => "ka-GE",
    date_format_full => "EEEE, dd MMMM, y",
    date_format_long => "d MMMM, y",
    date_format_medium => "d MMM. y",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+10dd}\N{U+10e0}\N{U+10e8}",
      "\N{U+10e1}\N{U+10d0}\N{U+10db}",
      "\N{U+10dd}\N{U+10d7}\N{U+10ee}",
      "\N{U+10ee}\N{U+10e3}\N{U+10d7}",
      "\N{U+10de}\N{U+10d0}\N{U+10e0}",
      "\N{U+10e8}\N{U+10d0}\N{U+10d1}",
      "\N{U+10d9}\N{U+10d5}\N{U+10d8}"
    ],
    day_format_narrow => [
      "\N{U+10dd}",
      "\N{U+10e1}",
      "\N{U+10dd}",
      "\N{U+10ee}",
      "\N{U+10de}",
      "\N{U+10e8}",
      "\N{U+10d9}"
    ],
    day_format_wide => [
      "\N{U+10dd}\N{U+10e0}\N{U+10e8}\N{U+10d0}\N{U+10d1}\N{U+10d0}\N{U+10d7}\N{U+10d8}",
      "\N{U+10e1}\N{U+10d0}\N{U+10db}\N{U+10e8}\N{U+10d0}\N{U+10d1}\N{U+10d0}\N{U+10d7}\N{U+10d8}",
      "\N{U+10dd}\N{U+10d7}\N{U+10ee}\N{U+10e8}\N{U+10d0}\N{U+10d1}\N{U+10d0}\N{U+10d7}\N{U+10d8}",
      "\N{U+10ee}\N{U+10e3}\N{U+10d7}\N{U+10e8}\N{U+10d0}\N{U+10d1}\N{U+10d0}\N{U+10d7}\N{U+10d8}",
      "\N{U+10de}\N{U+10d0}\N{U+10e0}\N{U+10d0}\N{U+10e1}\N{U+10d9}\N{U+10d4}\N{U+10d5}\N{U+10d8}",
      "\N{U+10e8}\N{U+10d0}\N{U+10d1}\N{U+10d0}\N{U+10d7}\N{U+10d8}",
      "\N{U+10d9}\N{U+10d5}\N{U+10d8}\N{U+10e0}\N{U+10d0}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+10dd}\N{U+10e0}\N{U+10e8}",
      "\N{U+10e1}\N{U+10d0}\N{U+10db}",
      "\N{U+10dd}\N{U+10d7}\N{U+10ee}",
      "\N{U+10ee}\N{U+10e3}\N{U+10d7}",
      "\N{U+10de}\N{U+10d0}\N{U+10e0}",
      "\N{U+10e8}\N{U+10d0}\N{U+10d1}",
      "\N{U+10d9}\N{U+10d5}\N{U+10d8}"
    ],
    day_stand_alone_narrow => [
      "\N{U+10dd}",
      "\N{U+10e1}",
      "\N{U+10dd}",
      "\N{U+10ee}",
      "\N{U+10de}",
      "\N{U+10e8}",
      "\N{U+10d9}"
    ],
    day_stand_alone_wide => [
      "\N{U+10dd}\N{U+10e0}\N{U+10e8}\N{U+10d0}\N{U+10d1}\N{U+10d0}\N{U+10d7}\N{U+10d8}",
      "\N{U+10e1}\N{U+10d0}\N{U+10db}\N{U+10e8}\N{U+10d0}\N{U+10d1}\N{U+10d0}\N{U+10d7}\N{U+10d8}",
      "\N{U+10dd}\N{U+10d7}\N{U+10ee}\N{U+10e8}\N{U+10d0}\N{U+10d1}\N{U+10d0}\N{U+10d7}\N{U+10d8}",
      "\N{U+10ee}\N{U+10e3}\N{U+10d7}\N{U+10e8}\N{U+10d0}\N{U+10d1}\N{U+10d0}\N{U+10d7}\N{U+10d8}",
      "\N{U+10de}\N{U+10d0}\N{U+10e0}\N{U+10d0}\N{U+10e1}\N{U+10d9}\N{U+10d4}\N{U+10d5}\N{U+10d8}",
      "\N{U+10e8}\N{U+10d0}\N{U+10d1}\N{U+10d0}\N{U+10d7}\N{U+10d8}",
      "\N{U+10d9}\N{U+10d5}\N{U+10d8}\N{U+10e0}\N{U+10d0}"
    ],
    era_abbreviated => [
      "\N{U+10eb}\N{U+10d5}. \N{U+10ec}.",
      "\N{U+10d0}\N{U+10ee}. \N{U+10ec}."
    ],
    era_narrow => [
      "\N{U+10eb}\N{U+10d5}. \N{U+10ec}.",
      "\N{U+10d0}\N{U+10ee}. \N{U+10ec}."
    ],
    era_wide => [
      "\N{U+10eb}\N{U+10d5}\N{U+10d4}\N{U+10da}\N{U+10d8} \N{U+10ec}\N{U+10d4}\N{U+10da}\N{U+10d7}\N{U+10d0}\N{U+10e6}\N{U+10e0}\N{U+10d8}\N{U+10ea}\N{U+10ee}\N{U+10d5}\N{U+10d8}\N{U+10d7}",
      "\N{U+10d0}\N{U+10ee}\N{U+10d0}\N{U+10da}\N{U+10d8} \N{U+10ec}\N{U+10d4}\N{U+10da}\N{U+10d7}\N{U+10d0}\N{U+10e6}\N{U+10e0}\N{U+10d8}\N{U+10ea}\N{U+10ee}\N{U+10d5}\N{U+10d8}\N{U+10d7}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%Y",
    glibc_datetime_format => "%Y \N{U+10ec}\N{U+10da}\N{U+10d8}\N{U+10e1} %d %B, %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Georgian",
    month_format_abbreviated => [
      "\N{U+10d8}\N{U+10d0}\N{U+10dc}",
      "\N{U+10d7}\N{U+10d4}\N{U+10d1}",
      "\N{U+10db}\N{U+10d0}\N{U+10e0}",
      "\N{U+10d0}\N{U+10de}\N{U+10e0}",
      "\N{U+10db}\N{U+10d0}\N{U+10d8}",
      "\N{U+10d8}\N{U+10d5}\N{U+10dc}",
      "\N{U+10d8}\N{U+10d5}\N{U+10da}",
      "\N{U+10d0}\N{U+10d2}\N{U+10d5}",
      "\N{U+10e1}\N{U+10d4}\N{U+10e5}",
      "\N{U+10dd}\N{U+10e5}\N{U+10e2}",
      "\N{U+10dc}\N{U+10dd}\N{U+10d4}",
      "\N{U+10d3}\N{U+10d4}\N{U+10d9}"
    ],
    month_format_narrow => [
      "\N{U+10d8}",
      "\N{U+10d7}",
      "\N{U+10db}",
      "\N{U+10d0}",
      "\N{U+10db}",
      "\N{U+10d8}",
      "\N{U+10d8}",
      "\N{U+10d0}",
      "\N{U+10e1}",
      "\N{U+10dd}",
      "\N{U+10dc}",
      "\N{U+10d3}"
    ],
    month_format_wide => [
      "\N{U+10d8}\N{U+10d0}\N{U+10dc}\N{U+10d5}\N{U+10d0}\N{U+10e0}\N{U+10d8}",
      "\N{U+10d7}\N{U+10d4}\N{U+10d1}\N{U+10d4}\N{U+10e0}\N{U+10d5}\N{U+10d0}\N{U+10da}\N{U+10d8}",
      "\N{U+10db}\N{U+10d0}\N{U+10e0}\N{U+10e2}\N{U+10d8}",
      "\N{U+10d0}\N{U+10de}\N{U+10e0}\N{U+10d8}\N{U+10da}\N{U+10d8}",
      "\N{U+10db}\N{U+10d0}\N{U+10d8}\N{U+10e1}\N{U+10d8}",
      "\N{U+10d8}\N{U+10d5}\N{U+10dc}\N{U+10d8}\N{U+10e1}\N{U+10d8}",
      "\N{U+10d8}\N{U+10d5}\N{U+10da}\N{U+10d8}\N{U+10e1}\N{U+10d8}",
      "\N{U+10d0}\N{U+10d2}\N{U+10d5}\N{U+10d8}\N{U+10e1}\N{U+10e2}\N{U+10dd}",
      "\N{U+10e1}\N{U+10d4}\N{U+10e5}\N{U+10e2}\N{U+10d4}\N{U+10db}\N{U+10d1}\N{U+10d4}\N{U+10e0}\N{U+10d8}",
      "\N{U+10dd}\N{U+10e5}\N{U+10e2}\N{U+10dd}\N{U+10db}\N{U+10d1}\N{U+10d4}\N{U+10e0}\N{U+10d8}",
      "\N{U+10dc}\N{U+10dd}\N{U+10d4}\N{U+10db}\N{U+10d1}\N{U+10d4}\N{U+10e0}\N{U+10d8}",
      "\N{U+10d3}\N{U+10d4}\N{U+10d9}\N{U+10d4}\N{U+10db}\N{U+10d1}\N{U+10d4}\N{U+10e0}\N{U+10d8}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+10d8}\N{U+10d0}\N{U+10dc}",
      "\N{U+10d7}\N{U+10d4}\N{U+10d1}",
      "\N{U+10db}\N{U+10d0}\N{U+10e0}",
      "\N{U+10d0}\N{U+10de}\N{U+10e0}",
      "\N{U+10db}\N{U+10d0}\N{U+10d8}",
      "\N{U+10d8}\N{U+10d5}\N{U+10dc}",
      "\N{U+10d8}\N{U+10d5}\N{U+10da}",
      "\N{U+10d0}\N{U+10d2}\N{U+10d5}",
      "\N{U+10e1}\N{U+10d4}\N{U+10e5}",
      "\N{U+10dd}\N{U+10e5}\N{U+10e2}",
      "\N{U+10dc}\N{U+10dd}\N{U+10d4}",
      "\N{U+10d3}\N{U+10d4}\N{U+10d9}"
    ],
    month_stand_alone_narrow => [
      "\N{U+10d8}",
      "\N{U+10d7}",
      "\N{U+10db}",
      "\N{U+10d0}",
      "\N{U+10db}",
      "\N{U+10d8}",
      "\N{U+10d8}",
      "\N{U+10d0}",
      "\N{U+10e1}",
      "\N{U+10dd}",
      "\N{U+10dc}",
      "\N{U+10d3}"
    ],
    month_stand_alone_wide => [
      "\N{U+10d8}\N{U+10d0}\N{U+10dc}\N{U+10d5}\N{U+10d0}\N{U+10e0}\N{U+10d8}",
      "\N{U+10d7}\N{U+10d4}\N{U+10d1}\N{U+10d4}\N{U+10e0}\N{U+10d5}\N{U+10d0}\N{U+10da}\N{U+10d8}",
      "\N{U+10db}\N{U+10d0}\N{U+10e0}\N{U+10e2}\N{U+10d8}",
      "\N{U+10d0}\N{U+10de}\N{U+10e0}\N{U+10d8}\N{U+10da}\N{U+10d8}",
      "\N{U+10db}\N{U+10d0}\N{U+10d8}\N{U+10e1}\N{U+10d8}",
      "\N{U+10d8}\N{U+10d5}\N{U+10dc}\N{U+10d8}\N{U+10e1}\N{U+10d8}",
      "\N{U+10d8}\N{U+10d5}\N{U+10da}\N{U+10d8}\N{U+10e1}\N{U+10d8}",
      "\N{U+10d0}\N{U+10d2}\N{U+10d5}\N{U+10d8}\N{U+10e1}\N{U+10e2}\N{U+10dd}",
      "\N{U+10e1}\N{U+10d4}\N{U+10e5}\N{U+10e2}\N{U+10d4}\N{U+10db}\N{U+10d1}\N{U+10d4}\N{U+10e0}\N{U+10d8}",
      "\N{U+10dd}\N{U+10e5}\N{U+10e2}\N{U+10dd}\N{U+10db}\N{U+10d1}\N{U+10d4}\N{U+10e0}\N{U+10d8}",
      "\N{U+10dc}\N{U+10dd}\N{U+10d4}\N{U+10db}\N{U+10d1}\N{U+10d4}\N{U+10e0}\N{U+10d8}",
      "\N{U+10d3}\N{U+10d4}\N{U+10d9}\N{U+10d4}\N{U+10db}\N{U+10d1}\N{U+10d4}\N{U+10e0}\N{U+10d8}"
    ],
    name => "Georgian Georgia",
    native_language => "\N{U+10e5}\N{U+10d0}\N{U+10e0}\N{U+10d7}\N{U+10e3}\N{U+10da}\N{U+10d8}",
    native_name => "\N{U+10e5}\N{U+10d0}\N{U+10e0}\N{U+10d7}\N{U+10e3}\N{U+10da}\N{U+10d8} \N{U+10e1}\N{U+10d0}\N{U+10e5}\N{U+10d0}\N{U+10e0}\N{U+10d7}\N{U+10d5}\N{U+10d4}\N{U+10da}\N{U+10dd}",
    native_script => undef,
    native_territory => "\N{U+10e1}\N{U+10d0}\N{U+10e5}\N{U+10d0}\N{U+10e0}\N{U+10d7}\N{U+10d5}\N{U+10d4}\N{U+10da}\N{U+10dd}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "I \N{U+10d9}\N{U+10d5}.",
      "II \N{U+10d9}\N{U+10d5}.",
      "III \N{U+10d9}\N{U+10d5}.",
      "IV \N{U+10d9}\N{U+10d5}."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "I \N{U+10d9}\N{U+10d5}\N{U+10d0}\N{U+10e0}\N{U+10e2}\N{U+10d0}\N{U+10da}\N{U+10d8}",
      "II \N{U+10d9}\N{U+10d5}\N{U+10d0}\N{U+10e0}\N{U+10e2}\N{U+10d0}\N{U+10da}\N{U+10d8}",
      "III \N{U+10d9}\N{U+10d5}\N{U+10d0}\N{U+10e0}\N{U+10e2}\N{U+10d0}\N{U+10da}\N{U+10d8}",
      "IV \N{U+10d9}\N{U+10d5}\N{U+10d0}\N{U+10e0}\N{U+10e2}\N{U+10d0}\N{U+10da}\N{U+10d8}"
    ],
    quarter_stand_alone_abbreviated => [
      "I \N{U+10d9}\N{U+10d5}.",
      "II \N{U+10d9}\N{U+10d5}.",
      "III \N{U+10d9}\N{U+10d5}.",
      "IV \N{U+10d9}\N{U+10d5}."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "I \N{U+10d9}\N{U+10d5}\N{U+10d0}\N{U+10e0}\N{U+10e2}\N{U+10d0}\N{U+10da}\N{U+10d8}",
      "II \N{U+10d9}\N{U+10d5}\N{U+10d0}\N{U+10e0}\N{U+10e2}\N{U+10d0}\N{U+10da}\N{U+10d8}",
      "III \N{U+10d9}\N{U+10d5}\N{U+10d0}\N{U+10e0}\N{U+10e2}\N{U+10d0}\N{U+10da}\N{U+10d8}",
      "IV \N{U+10d9}\N{U+10d5}\N{U+10d0}\N{U+10e0}\N{U+10e2}\N{U+10d0}\N{U+10da}\N{U+10d8}"
    ],
    script => undef,
    territory => "Georgia",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ kab ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "M",
      MEd => "MM-dd, E",
      MMM => "MMM",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMd => "d/MM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "kab",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "San",
      "Kra\N{U+1e0d}",
      "Ku\N{U+1e93}",
      "Sam",
      "S\N{U+1e0d}is",
      "Say",
      "Yan"
    ],
    day_format_narrow => [
      "S",
      "K",
      "K",
      "S",
      "S",
      "S",
      "Y"
    ],
    day_format_wide => [
      "Sanass",
      "Kra\N{U+1e0d}ass",
      "Ku\N{U+1e93}ass",
      "Samass",
      "S\N{U+1e0d}isass",
      "Sayass",
      "Yanass"
    ],
    day_stand_alone_abbreviated => [
      "San",
      "Kra\N{U+1e0d}",
      "Ku\N{U+1e93}",
      "Sam",
      "S\N{U+1e0d}is",
      "Say",
      "Yan"
    ],
    day_stand_alone_narrow => [
      "S",
      "K",
      "K",
      "S",
      "S",
      "S",
      "Y"
    ],
    day_stand_alone_wide => [
      "Sanass",
      "Kra\N{U+1e0d}ass",
      "Ku\N{U+1e93}ass",
      "Samass",
      "S\N{U+1e0d}isass",
      "Sayass",
      "Yanass"
    ],
    era_abbreviated => [
      "snd. T.\N{U+0190}",
      "sld. T.\N{U+0190}"
    ],
    era_narrow => [
      "snd. T.\N{U+0190}",
      "sld. T.\N{U+0190}"
    ],
    era_wide => [
      "send talalit n \N{U+0190}isa",
      "seld talalit n \N{U+0190}isa"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Kabyle",
    month_format_abbreviated => [
      "Yen",
      "Fur",
      "Me\N{U+0263}",
      "Yeb",
      "May",
      "Yun",
      "Yul",
      "\N{U+0194}uc",
      "Cte",
      "Tub",
      "Nun",
      "Du\N{U+01e7}"
    ],
    month_format_narrow => [
      "Y",
      "F",
      "M",
      "Y",
      "M",
      "Y",
      "Y",
      "\N{U+0194}",
      "C",
      "T",
      "N",
      "D"
    ],
    month_format_wide => [
      "Yennayer",
      "Fu\N{U+1e5b}ar",
      "Me\N{U+0263}res",
      "Yebrir",
      "Mayyu",
      "Yunyu",
      "Yulyu",
      "\N{U+0194}uct",
      "Ctembe\N{U+1e5b}",
      "Tube\N{U+1e5b}",
      "Nunembe\N{U+1e5b}",
      "Du\N{U+01e7}embe\N{U+1e5b}"
    ],
    month_stand_alone_abbreviated => [
      "Yen",
      "Fur",
      "Me\N{U+0263}",
      "Yeb",
      "May",
      "Yun",
      "Yul",
      "\N{U+0194}uc",
      "Cte",
      "Tub",
      "Nun",
      "Du\N{U+01e7}"
    ],
    month_stand_alone_narrow => [
      "Y",
      "F",
      "M",
      "Y",
      "M",
      "Y",
      "Y",
      "\N{U+0194}",
      "C",
      "T",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Yennayer",
      "Fu\N{U+1e5b}ar",
      "Me\N{U+0263}res",
      "Yebrir",
      "Mayyu",
      "Yunyu",
      "Yulyu",
      "\N{U+0194}uct",
      "Ctembe\N{U+1e5b}",
      "Tube\N{U+1e5b}",
      "Nunembe\N{U+1e5b}",
      "Du\N{U+01e7}embe\N{U+1e5b}"
    ],
    name => "Kabyle",
    native_language => "Taqbaylit",
    native_name => "Taqbaylit",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "K\N{U+1e0d}g1",
      "K\N{U+1e0d}g2",
      "K\N{U+1e0d}g3",
      "K\N{U+1e0d}g4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "akra\N{U+1e0d}aggur amenzu",
      "akra\N{U+1e0d}aggur wis-sin",
      "akra\N{U+1e0d}aggur wis-kra\N{U+1e0d}",
      "akra\N{U+1e0d}aggur wis-ku\N{U+1e93}"
    ],
    quarter_stand_alone_abbreviated => [
      "K\N{U+1e0d}g1",
      "K\N{U+1e0d}g2",
      "K\N{U+1e0d}g3",
      "K\N{U+1e0d}g4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "akra\N{U+1e0d}aggur amenzu",
      "akra\N{U+1e0d}aggur wis-sin",
      "akra\N{U+1e0d}aggur wis-kra\N{U+1e0d}",
      "akra\N{U+1e0d}aggur wis-ku\N{U+1e93}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ kab-DZ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "M",
      MEd => "MM-dd, E",
      MMM => "MMM",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMd => "d/MM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "kab-DZ",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "San",
      "Kra\N{U+1e0d}",
      "Ku\N{U+1e93}",
      "Sam",
      "S\N{U+1e0d}is",
      "Say",
      "Yan"
    ],
    day_format_narrow => [
      "S",
      "K",
      "K",
      "S",
      "S",
      "S",
      "Y"
    ],
    day_format_wide => [
      "Sanass",
      "Kra\N{U+1e0d}ass",
      "Ku\N{U+1e93}ass",
      "Samass",
      "S\N{U+1e0d}isass",
      "Sayass",
      "Yanass"
    ],
    day_stand_alone_abbreviated => [
      "San",
      "Kra\N{U+1e0d}",
      "Ku\N{U+1e93}",
      "Sam",
      "S\N{U+1e0d}is",
      "Say",
      "Yan"
    ],
    day_stand_alone_narrow => [
      "S",
      "K",
      "K",
      "S",
      "S",
      "S",
      "Y"
    ],
    day_stand_alone_wide => [
      "Sanass",
      "Kra\N{U+1e0d}ass",
      "Ku\N{U+1e93}ass",
      "Samass",
      "S\N{U+1e0d}isass",
      "Sayass",
      "Yanass"
    ],
    era_abbreviated => [
      "snd. T.\N{U+0190}",
      "sld. T.\N{U+0190}"
    ],
    era_narrow => [
      "snd. T.\N{U+0190}",
      "sld. T.\N{U+0190}"
    ],
    era_wide => [
      "send talalit n \N{U+0190}isa",
      "seld talalit n \N{U+0190}isa"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Kabyle",
    month_format_abbreviated => [
      "Yen",
      "Fur",
      "Me\N{U+0263}",
      "Yeb",
      "May",
      "Yun",
      "Yul",
      "\N{U+0194}uc",
      "Cte",
      "Tub",
      "Nun",
      "Du\N{U+01e7}"
    ],
    month_format_narrow => [
      "Y",
      "F",
      "M",
      "Y",
      "M",
      "Y",
      "Y",
      "\N{U+0194}",
      "C",
      "T",
      "N",
      "D"
    ],
    month_format_wide => [
      "Yennayer",
      "Fu\N{U+1e5b}ar",
      "Me\N{U+0263}res",
      "Yebrir",
      "Mayyu",
      "Yunyu",
      "Yulyu",
      "\N{U+0194}uct",
      "Ctembe\N{U+1e5b}",
      "Tube\N{U+1e5b}",
      "Nunembe\N{U+1e5b}",
      "Du\N{U+01e7}embe\N{U+1e5b}"
    ],
    month_stand_alone_abbreviated => [
      "Yen",
      "Fur",
      "Me\N{U+0263}",
      "Yeb",
      "May",
      "Yun",
      "Yul",
      "\N{U+0194}uc",
      "Cte",
      "Tub",
      "Nun",
      "Du\N{U+01e7}"
    ],
    month_stand_alone_narrow => [
      "Y",
      "F",
      "M",
      "Y",
      "M",
      "Y",
      "Y",
      "\N{U+0194}",
      "C",
      "T",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Yennayer",
      "Fu\N{U+1e5b}ar",
      "Me\N{U+0263}res",
      "Yebrir",
      "Mayyu",
      "Yunyu",
      "Yulyu",
      "\N{U+0194}uct",
      "Ctembe\N{U+1e5b}",
      "Tube\N{U+1e5b}",
      "Nunembe\N{U+1e5b}",
      "Du\N{U+01e7}embe\N{U+1e5b}"
    ],
    name => "Kabyle Algeria",
    native_language => "Taqbaylit",
    native_name => "Taqbaylit Lezzayer",
    native_script => undef,
    native_territory => "Lezzayer",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K\N{U+1e0d}g1",
      "K\N{U+1e0d}g2",
      "K\N{U+1e0d}g3",
      "K\N{U+1e0d}g4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "akra\N{U+1e0d}aggur amenzu",
      "akra\N{U+1e0d}aggur wis-sin",
      "akra\N{U+1e0d}aggur wis-kra\N{U+1e0d}",
      "akra\N{U+1e0d}aggur wis-ku\N{U+1e93}"
    ],
    quarter_stand_alone_abbreviated => [
      "K\N{U+1e0d}g1",
      "K\N{U+1e0d}g2",
      "K\N{U+1e0d}g3",
      "K\N{U+1e0d}g4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "akra\N{U+1e0d}aggur amenzu",
      "akra\N{U+1e0d}aggur wis-sin",
      "akra\N{U+1e0d}aggur wis-kra\N{U+1e0d}",
      "akra\N{U+1e0d}aggur wis-ku\N{U+1e93}"
    ],
    script => undef,
    territory => "Algeria",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ kam ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "kam",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Wkw",
      "Wkl",
      "Wt\N{U+0169}",
      "Wkn",
      "Wtn",
      "Wth",
      "Wky"
    ],
    day_format_narrow => [
      "W",
      "E",
      "A",
      "A",
      "A",
      "A",
      "Y"
    ],
    day_format_wide => [
      "Wa kwamb\N{U+0129}l\N{U+0129}lya",
      "Wa kel\N{U+0129}",
      "Wa katat\N{U+0169}",
      "Wa kana",
      "Wa katano",
      "Wa thanthat\N{U+0169}",
      "Wa kyumwa"
    ],
    day_stand_alone_abbreviated => [
      "Wkw",
      "Wkl",
      "Wt\N{U+0169}",
      "Wkn",
      "Wtn",
      "Wth",
      "Wky"
    ],
    day_stand_alone_narrow => [
      "W",
      "E",
      "A",
      "A",
      "A",
      "A",
      "Y"
    ],
    day_stand_alone_wide => [
      "Wa kwamb\N{U+0129}l\N{U+0129}lya",
      "Wa kel\N{U+0129}",
      "Wa katat\N{U+0169}",
      "Wa kana",
      "Wa katano",
      "Wa thanthat\N{U+0169}",
      "Wa kyumwa"
    ],
    era_abbreviated => [
      "MY",
      "IY"
    ],
    era_narrow => [
      "MY",
      "IY"
    ],
    era_wide => [
      "Mbee wa Yes\N{U+0169}",
      "\N{U+0128}tina wa Yes\N{U+0169}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Kamba",
    month_format_abbreviated => [
      "Mbe",
      "Kel",
      "Kt\N{U+0169}",
      "Kan",
      "Ktn",
      "Tha",
      "Moo",
      "Nya",
      "Knd",
      "\N{U+0128}ku",
      "\N{U+0128}km",
      "\N{U+0128}kl"
    ],
    month_format_narrow => [
      "M",
      "K",
      "K",
      "K",
      "K",
      "T",
      "M",
      "N",
      "K",
      "\N{U+0128}",
      "\N{U+0128}",
      "\N{U+0128}"
    ],
    month_format_wide => [
      "Mwai wa mbee",
      "Mwai wa kel\N{U+0129}",
      "Mwai wa katat\N{U+0169}",
      "Mwai wa kana",
      "Mwai wa katano",
      "Mwai wa thanthat\N{U+0169}",
      "Mwai wa muonza",
      "Mwai wa nyaanya",
      "Mwai wa kenda",
      "Mwai wa \N{U+0129}kumi",
      "Mwai wa \N{U+0129}kumi na \N{U+0129}mwe",
      "Mwai wa \N{U+0129}kumi na il\N{U+0129}"
    ],
    month_stand_alone_abbreviated => [
      "Mbe",
      "Kel",
      "Kt\N{U+0169}",
      "Kan",
      "Ktn",
      "Tha",
      "Moo",
      "Nya",
      "Knd",
      "\N{U+0128}ku",
      "\N{U+0128}km",
      "\N{U+0128}kl"
    ],
    month_stand_alone_narrow => [
      "M",
      "K",
      "K",
      "K",
      "K",
      "T",
      "M",
      "N",
      "K",
      "\N{U+0128}",
      "\N{U+0128}",
      "\N{U+0128}"
    ],
    month_stand_alone_wide => [
      "Mwai wa mbee",
      "Mwai wa kel\N{U+0129}",
      "Mwai wa katat\N{U+0169}",
      "Mwai wa kana",
      "Mwai wa katano",
      "Mwai wa thanthat\N{U+0169}",
      "Mwai wa muonza",
      "Mwai wa nyaanya",
      "Mwai wa kenda",
      "Mwai wa \N{U+0129}kumi",
      "Mwai wa \N{U+0129}kumi na \N{U+0129}mwe",
      "Mwai wa \N{U+0129}kumi na il\N{U+0129}"
    ],
    name => "Kamba",
    native_language => "Kikamba",
    native_name => "Kikamba",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "L1",
      "L2",
      "L3",
      "L4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Lovo ya mbee",
      "Lovo ya kel\N{U+0129}",
      "Lovo ya katat\N{U+0169}",
      "Lovo ya kana"
    ],
    quarter_stand_alone_abbreviated => [
      "L1",
      "L2",
      "L3",
      "L4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Lovo ya mbee",
      "Lovo ya kel\N{U+0129}",
      "Lovo ya katat\N{U+0169}",
      "Lovo ya kana"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ kam-KE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "kam-KE",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Wkw",
      "Wkl",
      "Wt\N{U+0169}",
      "Wkn",
      "Wtn",
      "Wth",
      "Wky"
    ],
    day_format_narrow => [
      "W",
      "E",
      "A",
      "A",
      "A",
      "A",
      "Y"
    ],
    day_format_wide => [
      "Wa kwamb\N{U+0129}l\N{U+0129}lya",
      "Wa kel\N{U+0129}",
      "Wa katat\N{U+0169}",
      "Wa kana",
      "Wa katano",
      "Wa thanthat\N{U+0169}",
      "Wa kyumwa"
    ],
    day_stand_alone_abbreviated => [
      "Wkw",
      "Wkl",
      "Wt\N{U+0169}",
      "Wkn",
      "Wtn",
      "Wth",
      "Wky"
    ],
    day_stand_alone_narrow => [
      "W",
      "E",
      "A",
      "A",
      "A",
      "A",
      "Y"
    ],
    day_stand_alone_wide => [
      "Wa kwamb\N{U+0129}l\N{U+0129}lya",
      "Wa kel\N{U+0129}",
      "Wa katat\N{U+0169}",
      "Wa kana",
      "Wa katano",
      "Wa thanthat\N{U+0169}",
      "Wa kyumwa"
    ],
    era_abbreviated => [
      "MY",
      "IY"
    ],
    era_narrow => [
      "MY",
      "IY"
    ],
    era_wide => [
      "Mbee wa Yes\N{U+0169}",
      "\N{U+0128}tina wa Yes\N{U+0169}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Kamba",
    month_format_abbreviated => [
      "Mbe",
      "Kel",
      "Kt\N{U+0169}",
      "Kan",
      "Ktn",
      "Tha",
      "Moo",
      "Nya",
      "Knd",
      "\N{U+0128}ku",
      "\N{U+0128}km",
      "\N{U+0128}kl"
    ],
    month_format_narrow => [
      "M",
      "K",
      "K",
      "K",
      "K",
      "T",
      "M",
      "N",
      "K",
      "\N{U+0128}",
      "\N{U+0128}",
      "\N{U+0128}"
    ],
    month_format_wide => [
      "Mwai wa mbee",
      "Mwai wa kel\N{U+0129}",
      "Mwai wa katat\N{U+0169}",
      "Mwai wa kana",
      "Mwai wa katano",
      "Mwai wa thanthat\N{U+0169}",
      "Mwai wa muonza",
      "Mwai wa nyaanya",
      "Mwai wa kenda",
      "Mwai wa \N{U+0129}kumi",
      "Mwai wa \N{U+0129}kumi na \N{U+0129}mwe",
      "Mwai wa \N{U+0129}kumi na il\N{U+0129}"
    ],
    month_stand_alone_abbreviated => [
      "Mbe",
      "Kel",
      "Kt\N{U+0169}",
      "Kan",
      "Ktn",
      "Tha",
      "Moo",
      "Nya",
      "Knd",
      "\N{U+0128}ku",
      "\N{U+0128}km",
      "\N{U+0128}kl"
    ],
    month_stand_alone_narrow => [
      "M",
      "K",
      "K",
      "K",
      "K",
      "T",
      "M",
      "N",
      "K",
      "\N{U+0128}",
      "\N{U+0128}",
      "\N{U+0128}"
    ],
    month_stand_alone_wide => [
      "Mwai wa mbee",
      "Mwai wa kel\N{U+0129}",
      "Mwai wa katat\N{U+0169}",
      "Mwai wa kana",
      "Mwai wa katano",
      "Mwai wa thanthat\N{U+0169}",
      "Mwai wa muonza",
      "Mwai wa nyaanya",
      "Mwai wa kenda",
      "Mwai wa \N{U+0129}kumi",
      "Mwai wa \N{U+0129}kumi na \N{U+0129}mwe",
      "Mwai wa \N{U+0129}kumi na il\N{U+0129}"
    ],
    name => "Kamba Kenya",
    native_language => "Kikamba",
    native_name => "Kikamba Kenya",
    native_script => undef,
    native_territory => "Kenya",
    native_variant => undef,
    quarter_format_abbreviated => [
      "L1",
      "L2",
      "L3",
      "L4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Lovo ya mbee",
      "Lovo ya kel\N{U+0129}",
      "Lovo ya katat\N{U+0169}",
      "Lovo ya kana"
    ],
    quarter_stand_alone_abbreviated => [
      "L1",
      "L2",
      "L3",
      "L4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Lovo ya mbee",
      "Lovo ya kel\N{U+0129}",
      "Lovo ya katat\N{U+0169}",
      "Lovo ya kana"
    ],
    script => undef,
    territory => "Kenya",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ kde ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "kde",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Ll3",
      "Ll4",
      "Ll5",
      "Ll6",
      "Ll7",
      "Ll1",
      "Ll2"
    ],
    day_format_narrow => [
      3,
      4,
      5,
      6,
      7,
      1,
      2
    ],
    day_format_wide => [
      "Liduva lyatatu",
      "Liduva lyanchechi",
      "Liduva lyannyano",
      "Liduva lyannyano na linji",
      "Liduva lyannyano na mavili",
      "Liduva litandi",
      "Liduva lyapili"
    ],
    day_stand_alone_abbreviated => [
      "Ll3",
      "Ll4",
      "Ll5",
      "Ll6",
      "Ll7",
      "Ll1",
      "Ll2"
    ],
    day_stand_alone_narrow => [
      3,
      4,
      5,
      6,
      7,
      1,
      2
    ],
    day_stand_alone_wide => [
      "Liduva lyatatu",
      "Liduva lyanchechi",
      "Liduva lyannyano",
      "Liduva lyannyano na linji",
      "Liduva lyannyano na mavili",
      "Liduva litandi",
      "Liduva lyapili"
    ],
    era_abbreviated => [
      "AY",
      "NY"
    ],
    era_narrow => [
      "AY",
      "NY"
    ],
    era_wide => [
      "Akanapawa Yesu",
      "Nankuida Yesu"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Makonde",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Mwedi Ntandi",
      "Mwedi wa Pili",
      "Mwedi wa Tatu",
      "Mwedi wa Nchechi",
      "Mwedi wa Nnyano",
      "Mwedi wa Nnyano na Umo",
      "Mwedi wa Nnyano na Mivili",
      "Mwedi wa Nnyano na Mitatu",
      "Mwedi wa Nnyano na Nchechi",
      "Mwedi wa Nnyano na Nnyano",
      "Mwedi wa Nnyano na Nnyano na U",
      "Mwedi wa Nnyano na Nnyano na M"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Mwedi Ntandi",
      "Mwedi wa Pili",
      "Mwedi wa Tatu",
      "Mwedi wa Nchechi",
      "Mwedi wa Nnyano",
      "Mwedi wa Nnyano na Umo",
      "Mwedi wa Nnyano na Mivili",
      "Mwedi wa Nnyano na Mitatu",
      "Mwedi wa Nnyano na Nchechi",
      "Mwedi wa Nnyano na Nnyano",
      "Mwedi wa Nnyano na Nnyano na U",
      "Mwedi wa Nnyano na Nnyano na M"
    ],
    name => "Makonde",
    native_language => "Chimakonde",
    native_name => "Chimakonde",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "L1",
      "L2",
      "L3",
      "L4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Lobo 1",
      "Lobo 2",
      "Lobo 3",
      "Lobo 4"
    ],
    quarter_stand_alone_abbreviated => [
      "L1",
      "L2",
      "L3",
      "L4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Lobo 1",
      "Lobo 2",
      "Lobo 3",
      "Lobo 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ kde-TZ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "kde-TZ",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Ll3",
      "Ll4",
      "Ll5",
      "Ll6",
      "Ll7",
      "Ll1",
      "Ll2"
    ],
    day_format_narrow => [
      3,
      4,
      5,
      6,
      7,
      1,
      2
    ],
    day_format_wide => [
      "Liduva lyatatu",
      "Liduva lyanchechi",
      "Liduva lyannyano",
      "Liduva lyannyano na linji",
      "Liduva lyannyano na mavili",
      "Liduva litandi",
      "Liduva lyapili"
    ],
    day_stand_alone_abbreviated => [
      "Ll3",
      "Ll4",
      "Ll5",
      "Ll6",
      "Ll7",
      "Ll1",
      "Ll2"
    ],
    day_stand_alone_narrow => [
      3,
      4,
      5,
      6,
      7,
      1,
      2
    ],
    day_stand_alone_wide => [
      "Liduva lyatatu",
      "Liduva lyanchechi",
      "Liduva lyannyano",
      "Liduva lyannyano na linji",
      "Liduva lyannyano na mavili",
      "Liduva litandi",
      "Liduva lyapili"
    ],
    era_abbreviated => [
      "AY",
      "NY"
    ],
    era_narrow => [
      "AY",
      "NY"
    ],
    era_wide => [
      "Akanapawa Yesu",
      "Nankuida Yesu"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Makonde",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Mwedi Ntandi",
      "Mwedi wa Pili",
      "Mwedi wa Tatu",
      "Mwedi wa Nchechi",
      "Mwedi wa Nnyano",
      "Mwedi wa Nnyano na Umo",
      "Mwedi wa Nnyano na Mivili",
      "Mwedi wa Nnyano na Mitatu",
      "Mwedi wa Nnyano na Nchechi",
      "Mwedi wa Nnyano na Nnyano",
      "Mwedi wa Nnyano na Nnyano na U",
      "Mwedi wa Nnyano na Nnyano na M"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Mwedi Ntandi",
      "Mwedi wa Pili",
      "Mwedi wa Tatu",
      "Mwedi wa Nchechi",
      "Mwedi wa Nnyano",
      "Mwedi wa Nnyano na Umo",
      "Mwedi wa Nnyano na Mivili",
      "Mwedi wa Nnyano na Mitatu",
      "Mwedi wa Nnyano na Nchechi",
      "Mwedi wa Nnyano na Nnyano",
      "Mwedi wa Nnyano na Nnyano na U",
      "Mwedi wa Nnyano na Nnyano na M"
    ],
    name => "Makonde Tanzania",
    native_language => "Chimakonde",
    native_name => "Chimakonde Tanzania",
    native_script => undef,
    native_territory => "Tanzania",
    native_variant => undef,
    quarter_format_abbreviated => [
      "L1",
      "L2",
      "L3",
      "L4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Lobo 1",
      "Lobo 2",
      "Lobo 3",
      "Lobo 4"
    ],
    quarter_stand_alone_abbreviated => [
      "L1",
      "L2",
      "L3",
      "L4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Lobo 1",
      "Lobo 2",
      "Lobo 3",
      "Lobo 4"
    ],
    script => undef,
    territory => "Tanzania",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ kea ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM 'di' y G",
      GyMMMEd => "E, d 'di' MMM 'di' y G",
      GyMMMd => "d 'di' MMM 'di' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d 'di' MMMM",
      MMMMd => "d 'di' MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMM => "MM/y",
      yMMM => "MMM 'di' y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM 'di' y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ 'di' y"
    },
    code => "kea",
    date_format_full => "EEEE, d 'di' MMMM 'di' y",
    date_format_long => "d 'di' MMMM 'di' y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "sig",
      "ter",
      "kua",
      "kin",
      "ses",
      "sab",
      "dum"
    ],
    day_format_narrow => [
      "S",
      "T",
      "K",
      "K",
      "S",
      "S",
      "D"
    ],
    day_format_wide => [
      "sigunda-fera",
      "tersa-fera",
      "kuarta-fera",
      "kinta-fera",
      "sesta-fera",
      "sabadu",
      "dumingu"
    ],
    day_stand_alone_abbreviated => [
      "sig",
      "ter",
      "kua",
      "kin",
      "ses",
      "sab",
      "dum"
    ],
    day_stand_alone_narrow => [
      "s",
      "t",
      "k",
      "k",
      "s",
      "s",
      "d"
    ],
    day_stand_alone_wide => [
      "sigunda-fera",
      "tersa-fera",
      "kuarta-fera",
      "kinta-fera",
      "sesta-fera",
      "sabadu",
      "dumingu"
    ],
    era_abbreviated => [
      "AK",
      "DK"
    ],
    era_narrow => [
      "AK",
      "DK"
    ],
    era_wide => [
      "Antis di Kristu",
      "Dispos di Kristu"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Kabuverdianu",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Abr",
      "Mai",
      "Jun",
      "Jul",
      "Ago",
      "Set",
      "Otu",
      "Nuv",
      "Diz"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Janeru",
      "Febreru",
      "Marsu",
      "Abril",
      "Maiu",
      "Junhu",
      "Julhu",
      "Agostu",
      "Setenbru",
      "Otubru",
      "Nuvenbru",
      "Dizenbru"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Abr",
      "Mai",
      "Jun",
      "Jul",
      "Ago",
      "Set",
      "Otu",
      "Nuv",
      "Diz"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Janeru",
      "Febreru",
      "Marsu",
      "Abril",
      "Maiu",
      "Junhu",
      "Julhu",
      "Agostu",
      "Setenbru",
      "Otubru",
      "Nuvenbru",
      "Dizenbru"
    ],
    name => "Kabuverdianu",
    native_language => "kabuverdianu",
    native_name => "kabuverdianu",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1\N{U+00ba} trimestri",
      "2\N{U+00ba} trimestri",
      "3\N{U+00ba} trimestri",
      "4\N{U+00ba} trimestri"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1\N{U+00ba} trimestri",
      "2\N{U+00ba} trimestri",
      "3\N{U+00ba} trimestri",
      "4\N{U+00ba} trimestri"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ kea-CV ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM 'di' y G",
      GyMMMEd => "E, d 'di' MMM 'di' y G",
      GyMMMd => "d 'di' MMM 'di' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d 'di' MMMM",
      MMMMd => "d 'di' MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMM => "MM/y",
      yMMM => "MMM 'di' y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM 'di' y",
      yMMMd => "d MMM y",
      yMd => "dd/MM/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ 'di' y"
    },
    code => "kea-CV",
    date_format_full => "EEEE, d 'di' MMMM 'di' y",
    date_format_long => "d 'di' MMMM 'di' y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "sig",
      "ter",
      "kua",
      "kin",
      "ses",
      "sab",
      "dum"
    ],
    day_format_narrow => [
      "S",
      "T",
      "K",
      "K",
      "S",
      "S",
      "D"
    ],
    day_format_wide => [
      "sigunda-fera",
      "tersa-fera",
      "kuarta-fera",
      "kinta-fera",
      "sesta-fera",
      "sabadu",
      "dumingu"
    ],
    day_stand_alone_abbreviated => [
      "sig",
      "ter",
      "kua",
      "kin",
      "ses",
      "sab",
      "dum"
    ],
    day_stand_alone_narrow => [
      "s",
      "t",
      "k",
      "k",
      "s",
      "s",
      "d"
    ],
    day_stand_alone_wide => [
      "sigunda-fera",
      "tersa-fera",
      "kuarta-fera",
      "kinta-fera",
      "sesta-fera",
      "sabadu",
      "dumingu"
    ],
    era_abbreviated => [
      "AK",
      "DK"
    ],
    era_narrow => [
      "AK",
      "DK"
    ],
    era_wide => [
      "Antis di Kristu",
      "Dispos di Kristu"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Kabuverdianu",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Abr",
      "Mai",
      "Jun",
      "Jul",
      "Ago",
      "Set",
      "Otu",
      "Nuv",
      "Diz"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Janeru",
      "Febreru",
      "Marsu",
      "Abril",
      "Maiu",
      "Junhu",
      "Julhu",
      "Agostu",
      "Setenbru",
      "Otubru",
      "Nuvenbru",
      "Dizenbru"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Abr",
      "Mai",
      "Jun",
      "Jul",
      "Ago",
      "Set",
      "Otu",
      "Nuv",
      "Diz"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Janeru",
      "Febreru",
      "Marsu",
      "Abril",
      "Maiu",
      "Junhu",
      "Julhu",
      "Agostu",
      "Setenbru",
      "Otubru",
      "Nuvenbru",
      "Dizenbru"
    ],
    name => "Kabuverdianu Cape Verde",
    native_language => "kabuverdianu",
    native_name => "kabuverdianu Kabu Verdi",
    native_script => undef,
    native_territory => "Kabu Verdi",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1\N{U+00ba} trimestri",
      "2\N{U+00ba} trimestri",
      "3\N{U+00ba} trimestri",
      "4\N{U+00ba} trimestri"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1\N{U+00ba} trimestri",
      "2\N{U+00ba} trimestri",
      "3\N{U+00ba} trimestri",
      "4\N{U+00ba} trimestri"
    ],
    script => undef,
    territory => "Cape Verde",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ khq ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "M",
      MEd => "MM-dd, E",
      MMM => "MMM",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMd => "d/MM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "khq",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Ati",
      "Ata",
      "Ala",
      "Alm",
      "Alj",
      "Ass",
      "Alh"
    ],
    day_format_narrow => [
      "T",
      "T",
      "L",
      "L",
      "L",
      "S",
      "H"
    ],
    day_format_wide => [
      "Atini",
      "Atalata",
      "Alarba",
      "Alhamiisa",
      "Aljuma",
      "Assabdu",
      "Alhadi"
    ],
    day_stand_alone_abbreviated => [
      "Ati",
      "Ata",
      "Ala",
      "Alm",
      "Alj",
      "Ass",
      "Alh"
    ],
    day_stand_alone_narrow => [
      "T",
      "T",
      "L",
      "L",
      "L",
      "S",
      "H"
    ],
    day_stand_alone_wide => [
      "Atini",
      "Atalata",
      "Alarba",
      "Alhamiisa",
      "Aljuma",
      "Assabdu",
      "Alhadi"
    ],
    era_abbreviated => [
      "IJ",
      "IZ"
    ],
    era_narrow => [
      "IJ",
      "IZ"
    ],
    era_wide => [
      "Isaa jine",
      "Isaa jamanoo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Koyra Chiini",
    month_format_abbreviated => [
      "\N{U+017d}an",
      "Fee",
      "Mar",
      "Awi",
      "Me",
      "\N{U+017d}uw",
      "\N{U+017d}uy",
      "Ut",
      "Sek",
      "Okt",
      "Noo",
      "Dee"
    ],
    month_format_narrow => [
      "\N{U+017d}",
      "F",
      "M",
      "A",
      "M",
      "\N{U+017d}",
      "\N{U+017d}",
      "U",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "\N{U+017d}anwiye",
      "Feewiriye",
      "Marsi",
      "Awiril",
      "Me",
      "\N{U+017d}uwe\N{U+014b}",
      "\N{U+017d}uyye",
      "Ut",
      "Sektanbur",
      "Oktoobur",
      "Noowanbur",
      "Deesanbur"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+017d}an",
      "Fee",
      "Mar",
      "Awi",
      "Me",
      "\N{U+017d}uw",
      "\N{U+017d}uy",
      "Ut",
      "Sek",
      "Okt",
      "Noo",
      "Dee"
    ],
    month_stand_alone_narrow => [
      "\N{U+017d}",
      "F",
      "M",
      "A",
      "M",
      "\N{U+017d}",
      "\N{U+017d}",
      "U",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "\N{U+017d}anwiye",
      "Feewiriye",
      "Marsi",
      "Awiril",
      "Me",
      "\N{U+017d}uwe\N{U+014b}",
      "\N{U+017d}uyye",
      "Ut",
      "Sektanbur",
      "Oktoobur",
      "Noowanbur",
      "Deesanbur"
    ],
    name => "Koyra Chiini",
    native_language => "Koyra ciini",
    native_name => "Koyra ciini",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "A1",
      "A2",
      "A3",
      "A4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Arrubu 1",
      "Arrubu 2",
      "Arrubu 3",
      "Arrubu 4"
    ],
    quarter_stand_alone_abbreviated => [
      "A1",
      "A2",
      "A3",
      "A4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Arrubu 1",
      "Arrubu 2",
      "Arrubu 3",
      "Arrubu 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ khq-ML ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "M",
      MEd => "MM-dd, E",
      MMM => "MMM",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMd => "d/MM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "khq-ML",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Ati",
      "Ata",
      "Ala",
      "Alm",
      "Alj",
      "Ass",
      "Alh"
    ],
    day_format_narrow => [
      "T",
      "T",
      "L",
      "L",
      "L",
      "S",
      "H"
    ],
    day_format_wide => [
      "Atini",
      "Atalata",
      "Alarba",
      "Alhamiisa",
      "Aljuma",
      "Assabdu",
      "Alhadi"
    ],
    day_stand_alone_abbreviated => [
      "Ati",
      "Ata",
      "Ala",
      "Alm",
      "Alj",
      "Ass",
      "Alh"
    ],
    day_stand_alone_narrow => [
      "T",
      "T",
      "L",
      "L",
      "L",
      "S",
      "H"
    ],
    day_stand_alone_wide => [
      "Atini",
      "Atalata",
      "Alarba",
      "Alhamiisa",
      "Aljuma",
      "Assabdu",
      "Alhadi"
    ],
    era_abbreviated => [
      "IJ",
      "IZ"
    ],
    era_narrow => [
      "IJ",
      "IZ"
    ],
    era_wide => [
      "Isaa jine",
      "Isaa jamanoo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Koyra Chiini",
    month_format_abbreviated => [
      "\N{U+017d}an",
      "Fee",
      "Mar",
      "Awi",
      "Me",
      "\N{U+017d}uw",
      "\N{U+017d}uy",
      "Ut",
      "Sek",
      "Okt",
      "Noo",
      "Dee"
    ],
    month_format_narrow => [
      "\N{U+017d}",
      "F",
      "M",
      "A",
      "M",
      "\N{U+017d}",
      "\N{U+017d}",
      "U",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "\N{U+017d}anwiye",
      "Feewiriye",
      "Marsi",
      "Awiril",
      "Me",
      "\N{U+017d}uwe\N{U+014b}",
      "\N{U+017d}uyye",
      "Ut",
      "Sektanbur",
      "Oktoobur",
      "Noowanbur",
      "Deesanbur"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+017d}an",
      "Fee",
      "Mar",
      "Awi",
      "Me",
      "\N{U+017d}uw",
      "\N{U+017d}uy",
      "Ut",
      "Sek",
      "Okt",
      "Noo",
      "Dee"
    ],
    month_stand_alone_narrow => [
      "\N{U+017d}",
      "F",
      "M",
      "A",
      "M",
      "\N{U+017d}",
      "\N{U+017d}",
      "U",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "\N{U+017d}anwiye",
      "Feewiriye",
      "Marsi",
      "Awiril",
      "Me",
      "\N{U+017d}uwe\N{U+014b}",
      "\N{U+017d}uyye",
      "Ut",
      "Sektanbur",
      "Oktoobur",
      "Noowanbur",
      "Deesanbur"
    ],
    name => "Koyra Chiini Mali",
    native_language => "Koyra ciini",
    native_name => "Koyra ciini Maali",
    native_script => undef,
    native_territory => "Maali",
    native_variant => undef,
    quarter_format_abbreviated => [
      "A1",
      "A2",
      "A3",
      "A4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Arrubu 1",
      "Arrubu 2",
      "Arrubu 3",
      "Arrubu 4"
    ],
    quarter_stand_alone_abbreviated => [
      "A1",
      "A2",
      "A3",
      "A4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Arrubu 1",
      "Arrubu 2",
      "Arrubu 3",
      "Arrubu 4"
    ],
    script => undef,
    territory => "Mali",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ki ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ki",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "NTT",
      "NMN",
      "NMT",
      "ART",
      "NMA",
      "NMM",
      "KMA"
    ],
    day_format_narrow => [
      "N",
      "N",
      "N",
      "A",
      "N",
      "N",
      "K"
    ],
    day_format_wide => [
      "Njumatat\N{U+0169}",
      "Njumaine",
      "Njumatana",
      "Aramithi",
      "Njumaa",
      "Njumamothi",
      "Kiumia"
    ],
    day_stand_alone_abbreviated => [
      "NTT",
      "NMN",
      "NMT",
      "ART",
      "NMA",
      "NMM",
      "KMA"
    ],
    day_stand_alone_narrow => [
      "N",
      "N",
      "N",
      "A",
      "N",
      "N",
      "K"
    ],
    day_stand_alone_wide => [
      "Njumatat\N{U+0169}",
      "Njumaine",
      "Njumatana",
      "Aramithi",
      "Njumaa",
      "Njumamothi",
      "Kiumia"
    ],
    era_abbreviated => [
      "MK",
      "TK"
    ],
    era_narrow => [
      "MK",
      "TK"
    ],
    era_wide => [
      "Mbere ya Kristo",
      "Thutha wa Kristo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Kikuyu",
    month_format_abbreviated => [
      "JEN",
      "WKR",
      "WGT",
      "WKN",
      "WTN",
      "WTD",
      "WMJ",
      "WNN",
      "WKD",
      "WIK",
      "WMW",
      "DIT"
    ],
    month_format_narrow => [
      "J",
      "K",
      "G",
      "K",
      "G",
      "G",
      "M",
      "K",
      "K",
      "I",
      "I",
      "D"
    ],
    month_format_wide => [
      "Njenuar\N{U+0129}",
      "Mwere wa ker\N{U+0129}",
      "Mwere wa gatat\N{U+0169}",
      "Mwere wa kana",
      "Mwere wa gatano",
      "Mwere wa gatandat\N{U+0169}",
      "Mwere wa m\N{U+0169}gwanja",
      "Mwere wa kanana",
      "Mwere wa kenda",
      "Mwere wa ik\N{U+0169}mi",
      "Mwere wa ik\N{U+0169}mi na \N{U+0169}mwe",
      "Ndithemba"
    ],
    month_stand_alone_abbreviated => [
      "JEN",
      "WKR",
      "WGT",
      "WKN",
      "WTN",
      "WTD",
      "WMJ",
      "WNN",
      "WKD",
      "WIK",
      "WMW",
      "DIT"
    ],
    month_stand_alone_narrow => [
      "J",
      "K",
      "G",
      "K",
      "G",
      "G",
      "M",
      "K",
      "K",
      "I",
      "I",
      "D"
    ],
    month_stand_alone_wide => [
      "Njenuar\N{U+0129}",
      "Mwere wa ker\N{U+0129}",
      "Mwere wa gatat\N{U+0169}",
      "Mwere wa kana",
      "Mwere wa gatano",
      "Mwere wa gatandat\N{U+0169}",
      "Mwere wa m\N{U+0169}gwanja",
      "Mwere wa kanana",
      "Mwere wa kenda",
      "Mwere wa ik\N{U+0169}mi",
      "Mwere wa ik\N{U+0169}mi na \N{U+0169}mwe",
      "Ndithemba"
    ],
    name => "Kikuyu",
    native_language => "Gikuyu",
    native_name => "Gikuyu",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Robo ya mbere",
      "Robo ya ker\N{U+0129}",
      "Robo ya gatat\N{U+0169}",
      "Robo ya kana"
    ],
    quarter_stand_alone_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Robo ya mbere",
      "Robo ya ker\N{U+0129}",
      "Robo ya gatat\N{U+0169}",
      "Robo ya kana"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ki-KE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ki-KE",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "NTT",
      "NMN",
      "NMT",
      "ART",
      "NMA",
      "NMM",
      "KMA"
    ],
    day_format_narrow => [
      "N",
      "N",
      "N",
      "A",
      "N",
      "N",
      "K"
    ],
    day_format_wide => [
      "Njumatat\N{U+0169}",
      "Njumaine",
      "Njumatana",
      "Aramithi",
      "Njumaa",
      "Njumamothi",
      "Kiumia"
    ],
    day_stand_alone_abbreviated => [
      "NTT",
      "NMN",
      "NMT",
      "ART",
      "NMA",
      "NMM",
      "KMA"
    ],
    day_stand_alone_narrow => [
      "N",
      "N",
      "N",
      "A",
      "N",
      "N",
      "K"
    ],
    day_stand_alone_wide => [
      "Njumatat\N{U+0169}",
      "Njumaine",
      "Njumatana",
      "Aramithi",
      "Njumaa",
      "Njumamothi",
      "Kiumia"
    ],
    era_abbreviated => [
      "MK",
      "TK"
    ],
    era_narrow => [
      "MK",
      "TK"
    ],
    era_wide => [
      "Mbere ya Kristo",
      "Thutha wa Kristo"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Kikuyu",
    month_format_abbreviated => [
      "JEN",
      "WKR",
      "WGT",
      "WKN",
      "WTN",
      "WTD",
      "WMJ",
      "WNN",
      "WKD",
      "WIK",
      "WMW",
      "DIT"
    ],
    month_format_narrow => [
      "J",
      "K",
      "G",
      "K",
      "G",
      "G",
      "M",
      "K",
      "K",
      "I",
      "I",
      "D"
    ],
    month_format_wide => [
      "Njenuar\N{U+0129}",
      "Mwere wa ker\N{U+0129}",
      "Mwere wa gatat\N{U+0169}",
      "Mwere wa kana",
      "Mwere wa gatano",
      "Mwere wa gatandat\N{U+0169}",
      "Mwere wa m\N{U+0169}gwanja",
      "Mwere wa kanana",
      "Mwere wa kenda",
      "Mwere wa ik\N{U+0169}mi",
      "Mwere wa ik\N{U+0169}mi na \N{U+0169}mwe",
      "Ndithemba"
    ],
    month_stand_alone_abbreviated => [
      "JEN",
      "WKR",
      "WGT",
      "WKN",
      "WTN",
      "WTD",
      "WMJ",
      "WNN",
      "WKD",
      "WIK",
      "WMW",
      "DIT"
    ],
    month_stand_alone_narrow => [
      "J",
      "K",
      "G",
      "K",
      "G",
      "G",
      "M",
      "K",
      "K",
      "I",
      "I",
      "D"
    ],
    month_stand_alone_wide => [
      "Njenuar\N{U+0129}",
      "Mwere wa ker\N{U+0129}",
      "Mwere wa gatat\N{U+0169}",
      "Mwere wa kana",
      "Mwere wa gatano",
      "Mwere wa gatandat\N{U+0169}",
      "Mwere wa m\N{U+0169}gwanja",
      "Mwere wa kanana",
      "Mwere wa kenda",
      "Mwere wa ik\N{U+0169}mi",
      "Mwere wa ik\N{U+0169}mi na \N{U+0169}mwe",
      "Ndithemba"
    ],
    name => "Kikuyu Kenya",
    native_language => "Gikuyu",
    native_name => "Gikuyu Kenya",
    native_script => undef,
    native_territory => "Kenya",
    native_variant => undef,
    quarter_format_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Robo ya mbere",
      "Robo ya ker\N{U+0129}",
      "Robo ya gatat\N{U+0169}",
      "Robo ya kana"
    ],
    quarter_stand_alone_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Robo ya mbere",
      "Robo ya ker\N{U+0129}",
      "Robo ya gatat\N{U+0169}",
      "Robo ya kana"
    ],
    script => undef,
    territory => "Kenya",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ kk ]__
  {
    am_pm_abbreviated => [
      "\N{U+0442}\N{U+0430}\N{U+04a3}\N{U+0493}\N{U+044b}",
      "\N{U+0442}\N{U+04af}\N{U+0441}\N{U+043a}\N{U+0456}/\N{U+043a}\N{U+0435}\N{U+0448}\N{U+043a}\N{U+0456}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E, a h:mm",
      Ehms => "E, a h:mm:ss",
      Gy => "G y '\N{U+0436}'.",
      GyMMM => "G y '\N{U+0436}'. MMM",
      GyMMMEd => "G y '\N{U+0436}'. d MMM, E",
      GyMMMd => "G y '\N{U+0436}'. d MMM",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "dd.MM, E",
      MMM => "LLL",
      MMMEd => "d MMM, E",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd.MM",
      d => "d",
      h => "a h",
      hm => "a h:mm",
      hms => "a h:mm:ss",
      hmsv => "a h:mm:ss v",
      hmv => "a h:mm v",
      ms => "mm:ss",
      y => "y",
      yM => "MM.y",
      yMEd => "dd.MM.y, E",
      yMMM => "y '\N{U+0436}'. MMM",
      yMMMEd => "y '\N{U+0436}'. d MMM, E",
      yMMMM => "y '\N{U+0436}'. MMMM",
      yMMMd => "y '\N{U+0436}'. d MMM",
      yMd => "dd.MM.y",
      yQQQ => "y '\N{U+0436}'. QQQ",
      yQQQQ => "y '\N{U+0436}'. QQQQ"
    },
    code => "kk",
    date_format_full => "y '\N{U+0436}'. d MMMM, EEEE",
    date_format_long => "y '\N{U+0436}'. d MMMM",
    date_format_medium => "y '\N{U+0436}'. dd MMM",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0414}\N{U+0441}",
      "\N{U+0421}\N{U+0441}",
      "\N{U+0421}\N{U+0440}",
      "\N{U+0411}\N{U+0441}",
      "\N{U+0416}\N{U+043c}",
      "\N{U+0421}\N{U+0431}",
      "\N{U+0416}\N{U+0441}"
    ],
    day_format_narrow => [
      "\N{U+0414}",
      "\N{U+0421}",
      "\N{U+0421}",
      "\N{U+0411}",
      "\N{U+0416}",
      "\N{U+0421}",
      "\N{U+0416}"
    ],
    day_format_wide => [
      "\N{U+0434}\N{U+04af}\N{U+0439}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0431}\N{U+0456}",
      "\N{U+0441}\N{U+0435}\N{U+0439}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0431}\N{U+0456}",
      "\N{U+0441}\N{U+04d9}\N{U+0440}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0431}\N{U+0456}",
      "\N{U+0431}\N{U+0435}\N{U+0439}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0431}\N{U+0456}",
      "\N{U+0436}\N{U+04b1}\N{U+043c}\N{U+0430}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0431}\N{U+0456}",
      "\N{U+0436}\N{U+0435}\N{U+043a}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0431}\N{U+0456}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0414}\N{U+0441}",
      "\N{U+0421}\N{U+0441}",
      "\N{U+0421}\N{U+0440}",
      "\N{U+0411}\N{U+0441}",
      "\N{U+0416}\N{U+043c}",
      "\N{U+0421}\N{U+0431}",
      "\N{U+0416}\N{U+0441}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0414}",
      "\N{U+0421}",
      "\N{U+0421}",
      "\N{U+0411}",
      "\N{U+0416}",
      "\N{U+0421}",
      "\N{U+0416}"
    ],
    day_stand_alone_wide => [
      "\N{U+0414}\N{U+04af}\N{U+0439}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0431}\N{U+0456}",
      "\N{U+0421}\N{U+0435}\N{U+0439}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0431}\N{U+0456}",
      "\N{U+0421}\N{U+04d9}\N{U+0440}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0431}\N{U+0456}",
      "\N{U+0411}\N{U+0435}\N{U+0439}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0431}\N{U+0456}",
      "\N{U+0416}\N{U+04b1}\N{U+043c}\N{U+0430}",
      "\N{U+0421}\N{U+0435}\N{U+043d}\N{U+0431}\N{U+0456}",
      "\N{U+0416}\N{U+0435}\N{U+043a}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0431}\N{U+0456}"
    ],
    era_abbreviated => [
      "\N{U+0431}.\N{U+0437}.\N{U+0434}.",
      "\N{U+0431}.\N{U+0437}."
    ],
    era_narrow => [
      "\N{U+0431}.\N{U+0437}.\N{U+0434}.",
      "\N{U+0431}.\N{U+0437}."
    ],
    era_wide => [
      "\N{U+0411}\N{U+0456}\N{U+0437}\N{U+0434}\N{U+0456}\N{U+04a3} \N{U+0437}\N{U+0430}\N{U+043c}\N{U+0430}\N{U+043d}\N{U+044b}\N{U+043c}\N{U+044b}\N{U+0437}\N{U+0493}\N{U+0430} \N{U+0434}\N{U+0435}\N{U+0439}\N{U+0456}\N{U+043d}",
      "\N{U+0411}\N{U+0456}\N{U+0437}\N{U+0434}\N{U+0456}\N{U+04a3} \N{U+0437}\N{U+0430}\N{U+043c}\N{U+0430}\N{U+043d}\N{U+044b}\N{U+043c}\N{U+044b}\N{U+0437}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Kazakh",
    month_format_abbreviated => [
      "\N{U+049b}\N{U+0430}\N{U+04a3}.",
      "\N{U+0430}\N{U+049b}\N{U+043f}.",
      "\N{U+043d}\N{U+0430}\N{U+0443}.",
      "\N{U+0441}\N{U+04d9}\N{U+0443}.",
      "\N{U+043c}\N{U+0430}\N{U+043c}.",
      "\N{U+043c}\N{U+0430}\N{U+0443}.",
      "\N{U+0448}\N{U+0456}\N{U+043b}.",
      "\N{U+0442}\N{U+0430}\N{U+043c}.",
      "\N{U+049b}\N{U+044b}\N{U+0440}.",
      "\N{U+049b}\N{U+0430}\N{U+0437}.",
      "\N{U+049b}\N{U+0430}\N{U+0440}.",
      "\N{U+0436}\N{U+0435}\N{U+043b}."
    ],
    month_format_narrow => [
      "\N{U+049a}",
      "\N{U+0410}",
      "\N{U+041d}",
      "\N{U+0421}",
      "\N{U+041c}",
      "\N{U+041c}",
      "\N{U+0428}",
      "\N{U+0422}",
      "\N{U+049a}",
      "\N{U+049a}",
      "\N{U+049a}",
      "\N{U+0416}"
    ],
    month_format_wide => [
      "\N{U+049b}\N{U+0430}\N{U+04a3}\N{U+0442}\N{U+0430}\N{U+0440}",
      "\N{U+0430}\N{U+049b}\N{U+043f}\N{U+0430}\N{U+043d}",
      "\N{U+043d}\N{U+0430}\N{U+0443}\N{U+0440}\N{U+044b}\N{U+0437}",
      "\N{U+0441}\N{U+04d9}\N{U+0443}\N{U+0456}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+043c}\N{U+044b}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0443}\N{U+0441}\N{U+044b}\N{U+043c}",
      "\N{U+0448}\N{U+0456}\N{U+043b}\N{U+0434}\N{U+0435}",
      "\N{U+0442}\N{U+0430}\N{U+043c}\N{U+044b}\N{U+0437}",
      "\N{U+049b}\N{U+044b}\N{U+0440}\N{U+043a}\N{U+04af}\N{U+0439}\N{U+0435}\N{U+043a}",
      "\N{U+049b}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+043d}",
      "\N{U+049b}\N{U+0430}\N{U+0440}\N{U+0430}\N{U+0448}\N{U+0430}",
      "\N{U+0436}\N{U+0435}\N{U+043b}\N{U+0442}\N{U+043e}\N{U+049b}\N{U+0441}\N{U+0430}\N{U+043d}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+049a}\N{U+0430}\N{U+04a3}.",
      "\N{U+0410}\N{U+049b}\N{U+043f}.",
      "\N{U+041d}\N{U+0430}\N{U+0443}.",
      "\N{U+0421}\N{U+04d9}\N{U+0443}.",
      "\N{U+041c}\N{U+0430}\N{U+043c}.",
      "\N{U+041c}\N{U+0430}\N{U+0443}.",
      "\N{U+0428}\N{U+0456}\N{U+043b}.",
      "\N{U+0422}\N{U+0430}\N{U+043c}.",
      "\N{U+049a}\N{U+044b}\N{U+0440}.",
      "\N{U+049a}\N{U+0430}\N{U+0437}.",
      "\N{U+049a}\N{U+0430}\N{U+0440}.",
      "\N{U+0416}\N{U+0435}\N{U+043b}."
    ],
    month_stand_alone_narrow => [
      "\N{U+049a}",
      "\N{U+0410}",
      "\N{U+041d}",
      "\N{U+0421}",
      "\N{U+041c}",
      "\N{U+041c}",
      "\N{U+0428}",
      "\N{U+0422}",
      "\N{U+049a}",
      "\N{U+049a}",
      "\N{U+049a}",
      "\N{U+0416}"
    ],
    month_stand_alone_wide => [
      "\N{U+049a}\N{U+0430}\N{U+04a3}\N{U+0442}\N{U+0430}\N{U+0440}",
      "\N{U+0410}\N{U+049b}\N{U+043f}\N{U+0430}\N{U+043d}",
      "\N{U+041d}\N{U+0430}\N{U+0443}\N{U+0440}\N{U+044b}\N{U+0437}",
      "\N{U+0421}\N{U+04d9}\N{U+0443}\N{U+0456}\N{U+0440}",
      "\N{U+041c}\N{U+0430}\N{U+043c}\N{U+044b}\N{U+0440}",
      "\N{U+041c}\N{U+0430}\N{U+0443}\N{U+0441}\N{U+044b}\N{U+043c}",
      "\N{U+0428}\N{U+0456}\N{U+043b}\N{U+0434}\N{U+0435}",
      "\N{U+0422}\N{U+0430}\N{U+043c}\N{U+044b}\N{U+0437}",
      "\N{U+049a}\N{U+044b}\N{U+0440}\N{U+043a}\N{U+04af}\N{U+0439}\N{U+0435}\N{U+043a}",
      "\N{U+049a}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+043d}",
      "\N{U+049a}\N{U+0430}\N{U+0440}\N{U+0430}\N{U+0448}\N{U+0430}",
      "\N{U+0416}\N{U+0435}\N{U+043b}\N{U+0442}\N{U+043e}\N{U+049b}\N{U+0441}\N{U+0430}\N{U+043d}"
    ],
    name => "Kazakh",
    native_language => "\N{U+049b}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+049b} \N{U+0442}\N{U+0456}\N{U+043b}\N{U+0456}",
    native_name => "\N{U+049b}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+049b} \N{U+0442}\N{U+0456}\N{U+043b}\N{U+0456}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0406} \N{U+0448}.",
      "\N{U+0406}\N{U+0406} \N{U+0448}.",
      "\N{U+0406}\N{U+0406}\N{U+0406} \N{U+0448}.",
      "IV \N{U+0448}."
    ],
    quarter_format_narrow => [
      "I",
      "II",
      "III",
      "IV"
    ],
    quarter_format_wide => [
      "\N{U+0406} \N{U+0448}\N{U+0438}\N{U+0440}\N{U+0435}\N{U+043a}",
      "\N{U+0406}\N{U+0406} \N{U+0448}\N{U+0438}\N{U+0440}\N{U+0435}\N{U+043a}",
      "\N{U+0406}\N{U+0406}\N{U+0406} \N{U+0448}\N{U+0438}\N{U+0440}\N{U+0435}\N{U+043a}",
      "IV \N{U+0448}\N{U+0438}\N{U+0440}\N{U+0435}\N{U+043a}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0406} \N{U+0448}.",
      "\N{U+0406}\N{U+0406} \N{U+0448}.",
      "\N{U+0406}\N{U+0406}\N{U+0406} \N{U+0448}.",
      "IV \N{U+0448}."
    ],
    quarter_stand_alone_narrow => [
      "I",
      "II",
      "III",
      "IV"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0406} \N{U+0448}\N{U+0438}\N{U+0440}\N{U+0435}\N{U+043a}",
      "\N{U+0406}\N{U+0406} \N{U+0448}\N{U+0438}\N{U+0440}\N{U+0435}\N{U+043a}",
      "\N{U+0406}\N{U+0406}\N{U+0406} \N{U+0448}\N{U+0438}\N{U+0440}\N{U+0435}\N{U+043a}",
      "IV \N{U+0448}\N{U+0438}\N{U+0440}\N{U+0435}\N{U+043a}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ kk-KZ ]__
  {
    am_pm_abbreviated => [
      "\N{U+0442}\N{U+0430}\N{U+04a3}\N{U+0493}\N{U+044b}",
      "\N{U+0442}\N{U+04af}\N{U+0441}\N{U+043a}\N{U+0456}/\N{U+043a}\N{U+0435}\N{U+0448}\N{U+043a}\N{U+0456}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E, a h:mm",
      Ehms => "E, a h:mm:ss",
      Gy => "G y '\N{U+0436}'.",
      GyMMM => "G y '\N{U+0436}'. MMM",
      GyMMMEd => "G y '\N{U+0436}'. d MMM, E",
      GyMMMd => "G y '\N{U+0436}'. d MMM",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "dd.MM, E",
      MMM => "LLL",
      MMMEd => "d MMM, E",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd.MM",
      d => "d",
      h => "a h",
      hm => "a h:mm",
      hms => "a h:mm:ss",
      hmsv => "a h:mm:ss v",
      hmv => "a h:mm v",
      ms => "mm:ss",
      y => "y",
      yM => "MM.y",
      yMEd => "dd.MM.y, E",
      yMMM => "y '\N{U+0436}'. MMM",
      yMMMEd => "y '\N{U+0436}'. d MMM, E",
      yMMMM => "y '\N{U+0436}'. MMMM",
      yMMMd => "y '\N{U+0436}'. d MMM",
      yMd => "dd.MM.y",
      yQQQ => "y '\N{U+0436}'. QQQ",
      yQQQQ => "y '\N{U+0436}'. QQQQ"
    },
    code => "kk-KZ",
    date_format_full => "y '\N{U+0436}'. d MMMM, EEEE",
    date_format_long => "y '\N{U+0436}'. d MMMM",
    date_format_medium => "y '\N{U+0436}'. dd MMM",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0414}\N{U+0441}",
      "\N{U+0421}\N{U+0441}",
      "\N{U+0421}\N{U+0440}",
      "\N{U+0411}\N{U+0441}",
      "\N{U+0416}\N{U+043c}",
      "\N{U+0421}\N{U+0431}",
      "\N{U+0416}\N{U+0441}"
    ],
    day_format_narrow => [
      "\N{U+0414}",
      "\N{U+0421}",
      "\N{U+0421}",
      "\N{U+0411}",
      "\N{U+0416}",
      "\N{U+0421}",
      "\N{U+0416}"
    ],
    day_format_wide => [
      "\N{U+0434}\N{U+04af}\N{U+0439}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0431}\N{U+0456}",
      "\N{U+0441}\N{U+0435}\N{U+0439}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0431}\N{U+0456}",
      "\N{U+0441}\N{U+04d9}\N{U+0440}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0431}\N{U+0456}",
      "\N{U+0431}\N{U+0435}\N{U+0439}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0431}\N{U+0456}",
      "\N{U+0436}\N{U+04b1}\N{U+043c}\N{U+0430}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0431}\N{U+0456}",
      "\N{U+0436}\N{U+0435}\N{U+043a}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0431}\N{U+0456}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0414}\N{U+0441}",
      "\N{U+0421}\N{U+0441}",
      "\N{U+0421}\N{U+0440}",
      "\N{U+0411}\N{U+0441}",
      "\N{U+0416}\N{U+043c}",
      "\N{U+0421}\N{U+0431}",
      "\N{U+0416}\N{U+0441}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0414}",
      "\N{U+0421}",
      "\N{U+0421}",
      "\N{U+0411}",
      "\N{U+0416}",
      "\N{U+0421}",
      "\N{U+0416}"
    ],
    day_stand_alone_wide => [
      "\N{U+0414}\N{U+04af}\N{U+0439}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0431}\N{U+0456}",
      "\N{U+0421}\N{U+0435}\N{U+0439}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0431}\N{U+0456}",
      "\N{U+0421}\N{U+04d9}\N{U+0440}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0431}\N{U+0456}",
      "\N{U+0411}\N{U+0435}\N{U+0439}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0431}\N{U+0456}",
      "\N{U+0416}\N{U+04b1}\N{U+043c}\N{U+0430}",
      "\N{U+0421}\N{U+0435}\N{U+043d}\N{U+0431}\N{U+0456}",
      "\N{U+0416}\N{U+0435}\N{U+043a}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0431}\N{U+0456}"
    ],
    era_abbreviated => [
      "\N{U+0431}.\N{U+0437}.\N{U+0434}.",
      "\N{U+0431}.\N{U+0437}."
    ],
    era_narrow => [
      "\N{U+0431}.\N{U+0437}.\N{U+0434}.",
      "\N{U+0431}.\N{U+0437}."
    ],
    era_wide => [
      "\N{U+0411}\N{U+0456}\N{U+0437}\N{U+0434}\N{U+0456}\N{U+04a3} \N{U+0437}\N{U+0430}\N{U+043c}\N{U+0430}\N{U+043d}\N{U+044b}\N{U+043c}\N{U+044b}\N{U+0437}\N{U+0493}\N{U+0430} \N{U+0434}\N{U+0435}\N{U+0439}\N{U+0456}\N{U+043d}",
      "\N{U+0411}\N{U+0456}\N{U+0437}\N{U+0434}\N{U+0456}\N{U+04a3} \N{U+0437}\N{U+0430}\N{U+043c}\N{U+0430}\N{U+043d}\N{U+044b}\N{U+043c}\N{U+044b}\N{U+0437}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d.%m.%Y",
    glibc_datetime_format => "%a %d %b %Y %T",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Kazakh",
    month_format_abbreviated => [
      "\N{U+049b}\N{U+0430}\N{U+04a3}.",
      "\N{U+0430}\N{U+049b}\N{U+043f}.",
      "\N{U+043d}\N{U+0430}\N{U+0443}.",
      "\N{U+0441}\N{U+04d9}\N{U+0443}.",
      "\N{U+043c}\N{U+0430}\N{U+043c}.",
      "\N{U+043c}\N{U+0430}\N{U+0443}.",
      "\N{U+0448}\N{U+0456}\N{U+043b}.",
      "\N{U+0442}\N{U+0430}\N{U+043c}.",
      "\N{U+049b}\N{U+044b}\N{U+0440}.",
      "\N{U+049b}\N{U+0430}\N{U+0437}.",
      "\N{U+049b}\N{U+0430}\N{U+0440}.",
      "\N{U+0436}\N{U+0435}\N{U+043b}."
    ],
    month_format_narrow => [
      "\N{U+049a}",
      "\N{U+0410}",
      "\N{U+041d}",
      "\N{U+0421}",
      "\N{U+041c}",
      "\N{U+041c}",
      "\N{U+0428}",
      "\N{U+0422}",
      "\N{U+049a}",
      "\N{U+049a}",
      "\N{U+049a}",
      "\N{U+0416}"
    ],
    month_format_wide => [
      "\N{U+049b}\N{U+0430}\N{U+04a3}\N{U+0442}\N{U+0430}\N{U+0440}",
      "\N{U+0430}\N{U+049b}\N{U+043f}\N{U+0430}\N{U+043d}",
      "\N{U+043d}\N{U+0430}\N{U+0443}\N{U+0440}\N{U+044b}\N{U+0437}",
      "\N{U+0441}\N{U+04d9}\N{U+0443}\N{U+0456}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+043c}\N{U+044b}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0443}\N{U+0441}\N{U+044b}\N{U+043c}",
      "\N{U+0448}\N{U+0456}\N{U+043b}\N{U+0434}\N{U+0435}",
      "\N{U+0442}\N{U+0430}\N{U+043c}\N{U+044b}\N{U+0437}",
      "\N{U+049b}\N{U+044b}\N{U+0440}\N{U+043a}\N{U+04af}\N{U+0439}\N{U+0435}\N{U+043a}",
      "\N{U+049b}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+043d}",
      "\N{U+049b}\N{U+0430}\N{U+0440}\N{U+0430}\N{U+0448}\N{U+0430}",
      "\N{U+0436}\N{U+0435}\N{U+043b}\N{U+0442}\N{U+043e}\N{U+049b}\N{U+0441}\N{U+0430}\N{U+043d}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+049a}\N{U+0430}\N{U+04a3}.",
      "\N{U+0410}\N{U+049b}\N{U+043f}.",
      "\N{U+041d}\N{U+0430}\N{U+0443}.",
      "\N{U+0421}\N{U+04d9}\N{U+0443}.",
      "\N{U+041c}\N{U+0430}\N{U+043c}.",
      "\N{U+041c}\N{U+0430}\N{U+0443}.",
      "\N{U+0428}\N{U+0456}\N{U+043b}.",
      "\N{U+0422}\N{U+0430}\N{U+043c}.",
      "\N{U+049a}\N{U+044b}\N{U+0440}.",
      "\N{U+049a}\N{U+0430}\N{U+0437}.",
      "\N{U+049a}\N{U+0430}\N{U+0440}.",
      "\N{U+0416}\N{U+0435}\N{U+043b}."
    ],
    month_stand_alone_narrow => [
      "\N{U+049a}",
      "\N{U+0410}",
      "\N{U+041d}",
      "\N{U+0421}",
      "\N{U+041c}",
      "\N{U+041c}",
      "\N{U+0428}",
      "\N{U+0422}",
      "\N{U+049a}",
      "\N{U+049a}",
      "\N{U+049a}",
      "\N{U+0416}"
    ],
    month_stand_alone_wide => [
      "\N{U+049a}\N{U+0430}\N{U+04a3}\N{U+0442}\N{U+0430}\N{U+0440}",
      "\N{U+0410}\N{U+049b}\N{U+043f}\N{U+0430}\N{U+043d}",
      "\N{U+041d}\N{U+0430}\N{U+0443}\N{U+0440}\N{U+044b}\N{U+0437}",
      "\N{U+0421}\N{U+04d9}\N{U+0443}\N{U+0456}\N{U+0440}",
      "\N{U+041c}\N{U+0430}\N{U+043c}\N{U+044b}\N{U+0440}",
      "\N{U+041c}\N{U+0430}\N{U+0443}\N{U+0441}\N{U+044b}\N{U+043c}",
      "\N{U+0428}\N{U+0456}\N{U+043b}\N{U+0434}\N{U+0435}",
      "\N{U+0422}\N{U+0430}\N{U+043c}\N{U+044b}\N{U+0437}",
      "\N{U+049a}\N{U+044b}\N{U+0440}\N{U+043a}\N{U+04af}\N{U+0439}\N{U+0435}\N{U+043a}",
      "\N{U+049a}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+043d}",
      "\N{U+049a}\N{U+0430}\N{U+0440}\N{U+0430}\N{U+0448}\N{U+0430}",
      "\N{U+0416}\N{U+0435}\N{U+043b}\N{U+0442}\N{U+043e}\N{U+049b}\N{U+0441}\N{U+0430}\N{U+043d}"
    ],
    name => "Kazakh Kazakhstan",
    native_language => "\N{U+049b}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+049b} \N{U+0442}\N{U+0456}\N{U+043b}\N{U+0456}",
    native_name => "\N{U+049b}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+049b} \N{U+0442}\N{U+0456}\N{U+043b}\N{U+0456} \N{U+049a}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+049b}\N{U+0441}\N{U+0442}\N{U+0430}\N{U+043d}",
    native_script => undef,
    native_territory => "\N{U+049a}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+049b}\N{U+0441}\N{U+0442}\N{U+0430}\N{U+043d}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0406} \N{U+0448}.",
      "\N{U+0406}\N{U+0406} \N{U+0448}.",
      "\N{U+0406}\N{U+0406}\N{U+0406} \N{U+0448}.",
      "IV \N{U+0448}."
    ],
    quarter_format_narrow => [
      "I",
      "II",
      "III",
      "IV"
    ],
    quarter_format_wide => [
      "\N{U+0406} \N{U+0448}\N{U+0438}\N{U+0440}\N{U+0435}\N{U+043a}",
      "\N{U+0406}\N{U+0406} \N{U+0448}\N{U+0438}\N{U+0440}\N{U+0435}\N{U+043a}",
      "\N{U+0406}\N{U+0406}\N{U+0406} \N{U+0448}\N{U+0438}\N{U+0440}\N{U+0435}\N{U+043a}",
      "IV \N{U+0448}\N{U+0438}\N{U+0440}\N{U+0435}\N{U+043a}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0406} \N{U+0448}.",
      "\N{U+0406}\N{U+0406} \N{U+0448}.",
      "\N{U+0406}\N{U+0406}\N{U+0406} \N{U+0448}.",
      "IV \N{U+0448}."
    ],
    quarter_stand_alone_narrow => [
      "I",
      "II",
      "III",
      "IV"
    ],
    quarter_stand_alone_wide => [
      "\N{U+0406} \N{U+0448}\N{U+0438}\N{U+0440}\N{U+0435}\N{U+043a}",
      "\N{U+0406}\N{U+0406} \N{U+0448}\N{U+0438}\N{U+0440}\N{U+0435}\N{U+043a}",
      "\N{U+0406}\N{U+0406}\N{U+0406} \N{U+0448}\N{U+0438}\N{U+0440}\N{U+0435}\N{U+043a}",
      "IV \N{U+0448}\N{U+0438}\N{U+0440}\N{U+0435}\N{U+043a}"
    ],
    script => undef,
    territory => "Kazakhstan",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ kkj ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM y",
      yMEd => "E dd/MM y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "dd/MM y",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "kkj",
    date_format_full => "EEEE dd MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lundi",
      "mardi",
      "m\N{U+025b}rk\N{U+025b}r\N{U+025b}di",
      "yedi",
      "va\N{U+014b}d\N{U+025b}r\N{U+025b}di",
      "m\N{U+0254}n\N{U+0254} s\N{U+0254}ndi",
      "s\N{U+0254}ndi"
    ],
    day_format_narrow => [
      "lu",
      "ma",
      "m\N{U+025b}",
      "ye",
      "va",
      "ms",
      "so"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "m\N{U+025b}rk\N{U+025b}r\N{U+025b}di",
      "yedi",
      "va\N{U+014b}d\N{U+025b}r\N{U+025b}di",
      "m\N{U+0254}n\N{U+0254} s\N{U+0254}ndi",
      "s\N{U+0254}ndi"
    ],
    day_stand_alone_abbreviated => [
      "lundi",
      "mardi",
      "m\N{U+025b}rk\N{U+025b}r\N{U+025b}di",
      "yedi",
      "va\N{U+014b}d\N{U+025b}r\N{U+025b}di",
      "m\N{U+0254}n\N{U+0254} s\N{U+0254}ndi",
      "s\N{U+0254}ndi"
    ],
    day_stand_alone_narrow => [
      "lu",
      "ma",
      "m\N{U+025b}",
      "ye",
      "va",
      "ms",
      "so"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "m\N{U+025b}rk\N{U+025b}r\N{U+025b}di",
      "yedi",
      "va\N{U+014b}d\N{U+025b}r\N{U+025b}di",
      "m\N{U+0254}n\N{U+0254} s\N{U+0254}ndi",
      "s\N{U+0254}ndi"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Kako",
    month_format_abbreviated => [
      "pamba",
      "wanja",
      "mbiy\N{U+0254} m\N{U+025b}ndo\N{U+014b}g\N{U+0254}",
      "Ny\N{U+0254}l\N{U+0254}mb\N{U+0254}\N{U+014b}g\N{U+0254}",
      "M\N{U+0254}n\N{U+0254} \N{U+014b}gbanja",
      "Nya\N{U+014b}gw\N{U+025b} \N{U+014b}gbanja",
      "ku\N{U+014b}gw\N{U+025b}",
      "f\N{U+025b}",
      "njapi",
      "nyukul",
      11,
      "\N{U+0253}ul\N{U+0253}us\N{U+025b}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "pamba",
      "wanja",
      "mbiy\N{U+0254} m\N{U+025b}ndo\N{U+014b}g\N{U+0254}",
      "Ny\N{U+0254}l\N{U+0254}mb\N{U+0254}\N{U+014b}g\N{U+0254}",
      "M\N{U+0254}n\N{U+0254} \N{U+014b}gbanja",
      "Nya\N{U+014b}gw\N{U+025b} \N{U+014b}gbanja",
      "ku\N{U+014b}gw\N{U+025b}",
      "f\N{U+025b}",
      "njapi",
      "nyukul",
      11,
      "\N{U+0253}ul\N{U+0253}us\N{U+025b}"
    ],
    month_stand_alone_abbreviated => [
      "pamba",
      "wanja",
      "mbiy\N{U+0254} m\N{U+025b}ndo\N{U+014b}g\N{U+0254}",
      "Ny\N{U+0254}l\N{U+0254}mb\N{U+0254}\N{U+014b}g\N{U+0254}",
      "M\N{U+0254}n\N{U+0254} \N{U+014b}gbanja",
      "Nya\N{U+014b}gw\N{U+025b} \N{U+014b}gbanja",
      "ku\N{U+014b}gw\N{U+025b}",
      "f\N{U+025b}",
      "njapi",
      "nyukul",
      11,
      "\N{U+0253}ul\N{U+0253}us\N{U+025b}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "pamba",
      "wanja",
      "mbiy\N{U+0254} m\N{U+025b}ndo\N{U+014b}g\N{U+0254}",
      "Ny\N{U+0254}l\N{U+0254}mb\N{U+0254}\N{U+014b}g\N{U+0254}",
      "M\N{U+0254}n\N{U+0254} \N{U+014b}gbanja",
      "Nya\N{U+014b}gw\N{U+025b} \N{U+014b}gbanja",
      "ku\N{U+014b}gw\N{U+025b}",
      "f\N{U+025b}",
      "njapi",
      "nyukul",
      11,
      "\N{U+0253}ul\N{U+0253}us\N{U+025b}"
    ],
    name => "Kako",
    native_language => "kak\N{U+0254}",
    native_name => "kak\N{U+0254}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ kkj-CM ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E dd/MM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM y",
      yMEd => "E dd/MM y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "dd/MM y",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "kkj-CM",
    date_format_full => "EEEE dd MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lundi",
      "mardi",
      "m\N{U+025b}rk\N{U+025b}r\N{U+025b}di",
      "yedi",
      "va\N{U+014b}d\N{U+025b}r\N{U+025b}di",
      "m\N{U+0254}n\N{U+0254} s\N{U+0254}ndi",
      "s\N{U+0254}ndi"
    ],
    day_format_narrow => [
      "lu",
      "ma",
      "m\N{U+025b}",
      "ye",
      "va",
      "ms",
      "so"
    ],
    day_format_wide => [
      "lundi",
      "mardi",
      "m\N{U+025b}rk\N{U+025b}r\N{U+025b}di",
      "yedi",
      "va\N{U+014b}d\N{U+025b}r\N{U+025b}di",
      "m\N{U+0254}n\N{U+0254} s\N{U+0254}ndi",
      "s\N{U+0254}ndi"
    ],
    day_stand_alone_abbreviated => [
      "lundi",
      "mardi",
      "m\N{U+025b}rk\N{U+025b}r\N{U+025b}di",
      "yedi",
      "va\N{U+014b}d\N{U+025b}r\N{U+025b}di",
      "m\N{U+0254}n\N{U+0254} s\N{U+0254}ndi",
      "s\N{U+0254}ndi"
    ],
    day_stand_alone_narrow => [
      "lu",
      "ma",
      "m\N{U+025b}",
      "ye",
      "va",
      "ms",
      "so"
    ],
    day_stand_alone_wide => [
      "lundi",
      "mardi",
      "m\N{U+025b}rk\N{U+025b}r\N{U+025b}di",
      "yedi",
      "va\N{U+014b}d\N{U+025b}r\N{U+025b}di",
      "m\N{U+0254}n\N{U+0254} s\N{U+0254}ndi",
      "s\N{U+0254}ndi"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Kako",
    month_format_abbreviated => [
      "pamba",
      "wanja",
      "mbiy\N{U+0254} m\N{U+025b}ndo\N{U+014b}g\N{U+0254}",
      "Ny\N{U+0254}l\N{U+0254}mb\N{U+0254}\N{U+014b}g\N{U+0254}",
      "M\N{U+0254}n\N{U+0254} \N{U+014b}gbanja",
      "Nya\N{U+014b}gw\N{U+025b} \N{U+014b}gbanja",
      "ku\N{U+014b}gw\N{U+025b}",
      "f\N{U+025b}",
      "njapi",
      "nyukul",
      11,
      "\N{U+0253}ul\N{U+0253}us\N{U+025b}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "pamba",
      "wanja",
      "mbiy\N{U+0254} m\N{U+025b}ndo\N{U+014b}g\N{U+0254}",
      "Ny\N{U+0254}l\N{U+0254}mb\N{U+0254}\N{U+014b}g\N{U+0254}",
      "M\N{U+0254}n\N{U+0254} \N{U+014b}gbanja",
      "Nya\N{U+014b}gw\N{U+025b} \N{U+014b}gbanja",
      "ku\N{U+014b}gw\N{U+025b}",
      "f\N{U+025b}",
      "njapi",
      "nyukul",
      11,
      "\N{U+0253}ul\N{U+0253}us\N{U+025b}"
    ],
    month_stand_alone_abbreviated => [
      "pamba",
      "wanja",
      "mbiy\N{U+0254} m\N{U+025b}ndo\N{U+014b}g\N{U+0254}",
      "Ny\N{U+0254}l\N{U+0254}mb\N{U+0254}\N{U+014b}g\N{U+0254}",
      "M\N{U+0254}n\N{U+0254} \N{U+014b}gbanja",
      "Nya\N{U+014b}gw\N{U+025b} \N{U+014b}gbanja",
      "ku\N{U+014b}gw\N{U+025b}",
      "f\N{U+025b}",
      "njapi",
      "nyukul",
      11,
      "\N{U+0253}ul\N{U+0253}us\N{U+025b}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "pamba",
      "wanja",
      "mbiy\N{U+0254} m\N{U+025b}ndo\N{U+014b}g\N{U+0254}",
      "Ny\N{U+0254}l\N{U+0254}mb\N{U+0254}\N{U+014b}g\N{U+0254}",
      "M\N{U+0254}n\N{U+0254} \N{U+014b}gbanja",
      "Nya\N{U+014b}gw\N{U+025b} \N{U+014b}gbanja",
      "ku\N{U+014b}gw\N{U+025b}",
      "f\N{U+025b}",
      "njapi",
      "nyukul",
      11,
      "\N{U+0253}ul\N{U+0253}us\N{U+025b}"
    ],
    name => "Kako Cameroon",
    native_language => "kak\N{U+0254}",
    native_name => "kak\N{U+0254} Kam\N{U+025b}run",
    native_script => undef,
    native_territory => "Kam\N{U+025b}run",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "Cameroon",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ kl ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "kl",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "ata",
      "mar",
      "pin",
      "sis",
      "tal",
      "arf",
      "sab"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "ataasinngorneq",
      "marlunngorneq",
      "pingasunngorneq",
      "sisamanngorneq",
      "tallimanngorneq",
      "arfininngorneq",
      "sabaat"
    ],
    day_stand_alone_abbreviated => [
      "ata",
      "mar",
      "pin",
      "sis",
      "tal",
      "arf",
      "sab"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "ataasinngorneq",
      "marlunngorneq",
      "pingasunngorneq",
      "sisamanngorneq",
      "tallimanngorneq",
      "arfininngorneq",
      "sabaat"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Kalaallisut",
    month_format_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "maj",
      "jun",
      "jul",
      "aug",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "januari",
      "februari",
      "martsi",
      "aprili",
      "maji",
      "juni",
      "juli",
      "augustusi",
      "septemberi",
      "oktoberi",
      "novemberi",
      "decemberi"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "maj",
      "jun",
      "jul",
      "aug",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "januari",
      "februari",
      "martsi",
      "aprili",
      "maji",
      "juni",
      "juli",
      "augustusi",
      "septemberi",
      "oktoberi",
      "novemberi",
      "decemberi"
    ],
    name => "Kalaallisut",
    native_language => "kalaallisut",
    native_name => "kalaallisut",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ kl-GL ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "kl-GL",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "ata",
      "mar",
      "pin",
      "sis",
      "tal",
      "arf",
      "sab"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "ataasinngorneq",
      "marlunngorneq",
      "pingasunngorneq",
      "sisamanngorneq",
      "tallimanngorneq",
      "arfininngorneq",
      "sabaat"
    ],
    day_stand_alone_abbreviated => [
      "ata",
      "mar",
      "pin",
      "sis",
      "tal",
      "arf",
      "sab"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "ataasinngorneq",
      "marlunngorneq",
      "pingasunngorneq",
      "sisamanngorneq",
      "tallimanngorneq",
      "arfininngorneq",
      "sabaat"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d %b %Y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Kalaallisut",
    month_format_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "maj",
      "jun",
      "jul",
      "aug",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "januari",
      "februari",
      "martsi",
      "aprili",
      "maji",
      "juni",
      "juli",
      "augustusi",
      "septemberi",
      "oktoberi",
      "novemberi",
      "decemberi"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "maj",
      "jun",
      "jul",
      "aug",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "januari",
      "februari",
      "martsi",
      "aprili",
      "maji",
      "juni",
      "juli",
      "augustusi",
      "septemberi",
      "oktoberi",
      "novemberi",
      "decemberi"
    ],
    name => "Kalaallisut Greenland",
    native_language => "kalaallisut",
    native_name => "kalaallisut Kalaallit Nunaat",
    native_script => undef,
    native_territory => "Kalaallit Nunaat",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "Greenland",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ kln ]__
  {
    am_pm_abbreviated => [
      "krn",
      "koosk"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "kln",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Kot",
      "Koo",
      "Kos",
      "Koa",
      "Kom",
      "Kol",
      "Kts"
    ],
    day_format_narrow => [
      "T",
      "O",
      "S",
      "A",
      "M",
      "L",
      "T"
    ],
    day_format_wide => [
      "Kotaai",
      "Koaeng\N{U+2019}",
      "Kosomok",
      "Koang\N{U+2019}wan",
      "Komuut",
      "Kolo",
      "Kotisap"
    ],
    day_stand_alone_abbreviated => [
      "Kot",
      "Koo",
      "Kos",
      "Koa",
      "Kom",
      "Kol",
      "Kts"
    ],
    day_stand_alone_narrow => [
      "T",
      "O",
      "S",
      "A",
      "M",
      "L",
      "T"
    ],
    day_stand_alone_wide => [
      "Kotaai",
      "Koaeng\N{U+2019}",
      "Kosomok",
      "Koang\N{U+2019}wan",
      "Komuut",
      "Kolo",
      "Kotisap"
    ],
    era_abbreviated => [
      "AM",
      "KO"
    ],
    era_narrow => [
      "AM",
      "KO"
    ],
    era_wide => [
      "Amait kesich Jesu",
      "Kokakesich Jesu"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Kalenjin",
    month_format_abbreviated => [
      "Mul",
      "Ngat",
      "Taa",
      "Iwo",
      "Mam",
      "Paa",
      "Nge",
      "Roo",
      "Bur",
      "Epe",
      "Kpt",
      "Kpa"
    ],
    month_format_narrow => [
      "M",
      "N",
      "T",
      "I",
      "M",
      "P",
      "N",
      "R",
      "B",
      "E",
      "K",
      "K"
    ],
    month_format_wide => [
      "Mulgul",
      "Ng\N{U+2019}atyaato",
      "Kiptaamo",
      "Iwootkuut",
      "Mamuut",
      "Paagi",
      "Ng\N{U+2019}eiyeet",
      "Rooptui",
      "Bureet",
      "Epeeso",
      "Kipsuunde ne taai",
      "Kipsuunde nebo aeng\N{U+2019}"
    ],
    month_stand_alone_abbreviated => [
      "Mul",
      "Ngat",
      "Taa",
      "Iwo",
      "Mam",
      "Paa",
      "Nge",
      "Roo",
      "Bur",
      "Epe",
      "Kpt",
      "Kpa"
    ],
    month_stand_alone_narrow => [
      "M",
      "N",
      "T",
      "I",
      "M",
      "P",
      "N",
      "R",
      "B",
      "E",
      "K",
      "K"
    ],
    month_stand_alone_wide => [
      "Mulgul",
      "Ng\N{U+2019}atyaato",
      "Kiptaamo",
      "Iwootkuut",
      "Mamuut",
      "Paagi",
      "Ng\N{U+2019}eiyeet",
      "Rooptui",
      "Bureet",
      "Epeeso",
      "Kipsuunde ne taai",
      "Kipsuunde nebo aeng\N{U+2019}"
    ],
    name => "Kalenjin",
    native_language => "Kalenjin",
    native_name => "Kalenjin",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Robo netai",
      "Robo nebo aeng\N{U+2019}",
      "Robo nebo somok",
      "Robo nebo ang\N{U+2019}wan"
    ],
    quarter_stand_alone_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Robo netai",
      "Robo nebo aeng\N{U+2019}",
      "Robo nebo somok",
      "Robo nebo ang\N{U+2019}wan"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ kln-KE ]__
  {
    am_pm_abbreviated => [
      "krn",
      "koosk"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "kln-KE",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Kot",
      "Koo",
      "Kos",
      "Koa",
      "Kom",
      "Kol",
      "Kts"
    ],
    day_format_narrow => [
      "T",
      "O",
      "S",
      "A",
      "M",
      "L",
      "T"
    ],
    day_format_wide => [
      "Kotaai",
      "Koaeng\N{U+2019}",
      "Kosomok",
      "Koang\N{U+2019}wan",
      "Komuut",
      "Kolo",
      "Kotisap"
    ],
    day_stand_alone_abbreviated => [
      "Kot",
      "Koo",
      "Kos",
      "Koa",
      "Kom",
      "Kol",
      "Kts"
    ],
    day_stand_alone_narrow => [
      "T",
      "O",
      "S",
      "A",
      "M",
      "L",
      "T"
    ],
    day_stand_alone_wide => [
      "Kotaai",
      "Koaeng\N{U+2019}",
      "Kosomok",
      "Koang\N{U+2019}wan",
      "Komuut",
      "Kolo",
      "Kotisap"
    ],
    era_abbreviated => [
      "AM",
      "KO"
    ],
    era_narrow => [
      "AM",
      "KO"
    ],
    era_wide => [
      "Amait kesich Jesu",
      "Kokakesich Jesu"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Kalenjin",
    month_format_abbreviated => [
      "Mul",
      "Ngat",
      "Taa",
      "Iwo",
      "Mam",
      "Paa",
      "Nge",
      "Roo",
      "Bur",
      "Epe",
      "Kpt",
      "Kpa"
    ],
    month_format_narrow => [
      "M",
      "N",
      "T",
      "I",
      "M",
      "P",
      "N",
      "R",
      "B",
      "E",
      "K",
      "K"
    ],
    month_format_wide => [
      "Mulgul",
      "Ng\N{U+2019}atyaato",
      "Kiptaamo",
      "Iwootkuut",
      "Mamuut",
      "Paagi",
      "Ng\N{U+2019}eiyeet",
      "Rooptui",
      "Bureet",
      "Epeeso",
      "Kipsuunde ne taai",
      "Kipsuunde nebo aeng\N{U+2019}"
    ],
    month_stand_alone_abbreviated => [
      "Mul",
      "Ngat",
      "Taa",
      "Iwo",
      "Mam",
      "Paa",
      "Nge",
      "Roo",
      "Bur",
      "Epe",
      "Kpt",
      "Kpa"
    ],
    month_stand_alone_narrow => [
      "M",
      "N",
      "T",
      "I",
      "M",
      "P",
      "N",
      "R",
      "B",
      "E",
      "K",
      "K"
    ],
    month_stand_alone_wide => [
      "Mulgul",
      "Ng\N{U+2019}atyaato",
      "Kiptaamo",
      "Iwootkuut",
      "Mamuut",
      "Paagi",
      "Ng\N{U+2019}eiyeet",
      "Rooptui",
      "Bureet",
      "Epeeso",
      "Kipsuunde ne taai",
      "Kipsuunde nebo aeng\N{U+2019}"
    ],
    name => "Kalenjin Kenya",
    native_language => "Kalenjin",
    native_name => "Kalenjin Emetab Kenya",
    native_script => undef,
    native_territory => "Emetab Kenya",
    native_variant => undef,
    quarter_format_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Robo netai",
      "Robo nebo aeng\N{U+2019}",
      "Robo nebo somok",
      "Robo nebo ang\N{U+2019}wan"
    ],
    quarter_stand_alone_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Robo netai",
      "Robo nebo aeng\N{U+2019}",
      "Robo nebo somok",
      "Robo nebo ang\N{U+2019}wan"
    ],
    script => undef,
    territory => "Kenya",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ km ]__
  {
    am_pm_abbreviated => [
      "\N{U+1796}\N{U+17d2}\N{U+179a}\N{U+17b9}\N{U+1780}",
      "\N{U+179b}\N{U+17d2}\N{U+1784}\N{U+17b6}\N{U+1785}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y \N{U+1793}\N{U+17c3} G",
      GyMMM => "MMM y \N{U+1793}\N{U+17c3} G",
      GyMMMEd => "E d MMM y \N{U+1793}\N{U+17c3} G",
      GyMMMd => "d MMM y \N{U+1793}\N{U+17c3} G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d MMM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d-M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M-y",
      yMEd => "E d-M-y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d-M-y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "km",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} \N{U+1793}\N{U+17c5} {0}",
    datetime_format_long => "{1} \N{U+1793}\N{U+17c5} {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+1785}\N{U+17d0}\N{U+1793}\N{U+17d2}\N{U+1791}",
      "\N{U+17a2}\N{U+1784}\N{U+17d2}\N{U+1782}\N{U+17b6}\N{U+179a}",
      "\N{U+1796}\N{U+17bb}\N{U+1792}",
      "\N{U+1796}\N{U+17d2}\N{U+179a}\N{U+17a0}\N{U+179f}\N{U+17d2}\N{U+1794}\N{U+178f}\N{U+17b7}\N{U+17cd}",
      "\N{U+179f}\N{U+17bb}\N{U+1780}\N{U+17d2}\N{U+179a}",
      "\N{U+179f}\N{U+17c5}\N{U+179a}\N{U+17cd}",
      "\N{U+17a2}\N{U+17b6}\N{U+1791}\N{U+17b7}\N{U+178f}\N{U+17d2}\N{U+1799}"
    ],
    day_format_narrow => [
      "\N{U+1785}",
      "\N{U+17a2}",
      "\N{U+1796}\N{U+17bb}",
      "\N{U+1796}\N{U+17d2}\N{U+179a}",
      "\N{U+179f}\N{U+17bb}",
      "\N{U+179f}",
      "\N{U+17a2}\N{U+17b6}"
    ],
    day_format_wide => [
      "\N{U+1785}\N{U+17d0}\N{U+1793}\N{U+17d2}\N{U+1791}",
      "\N{U+17a2}\N{U+1784}\N{U+17d2}\N{U+1782}\N{U+17b6}\N{U+179a}",
      "\N{U+1796}\N{U+17bb}\N{U+1792}",
      "\N{U+1796}\N{U+17d2}\N{U+179a}\N{U+17a0}\N{U+179f}\N{U+17d2}\N{U+1794}\N{U+178f}\N{U+17b7}\N{U+17cd}",
      "\N{U+179f}\N{U+17bb}\N{U+1780}\N{U+17d2}\N{U+179a}",
      "\N{U+179f}\N{U+17c5}\N{U+179a}\N{U+17cd}",
      "\N{U+17a2}\N{U+17b6}\N{U+1791}\N{U+17b7}\N{U+178f}\N{U+17d2}\N{U+1799}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+1785}\N{U+17d0}\N{U+1793}\N{U+17d2}\N{U+1791}",
      "\N{U+17a2}\N{U+1784}\N{U+17d2}\N{U+1782}\N{U+17b6}\N{U+179a}",
      "\N{U+1796}\N{U+17bb}\N{U+1792}",
      "\N{U+1796}\N{U+17d2}\N{U+179a}\N{U+17a0}\N{U+179f}\N{U+17d2}\N{U+1794}\N{U+178f}\N{U+17b7}\N{U+17cd}",
      "\N{U+179f}\N{U+17bb}\N{U+1780}\N{U+17d2}\N{U+179a}",
      "\N{U+179f}\N{U+17c5}\N{U+179a}\N{U+17cd}",
      "\N{U+17a2}\N{U+17b6}\N{U+1791}\N{U+17b7}\N{U+178f}\N{U+17d2}\N{U+1799}"
    ],
    day_stand_alone_narrow => [
      "\N{U+1785}",
      "\N{U+17a2}",
      "\N{U+1796}\N{U+17bb}",
      "\N{U+1796}\N{U+17d2}\N{U+179a}",
      "\N{U+179f}\N{U+17bb}",
      "\N{U+179f}",
      "\N{U+17a2}\N{U+17b6}"
    ],
    day_stand_alone_wide => [
      "\N{U+1785}\N{U+17d0}\N{U+1793}\N{U+17d2}\N{U+1791}",
      "\N{U+17a2}\N{U+1784}\N{U+17d2}\N{U+1782}\N{U+17b6}\N{U+179a}",
      "\N{U+1796}\N{U+17bb}\N{U+1792}",
      "\N{U+1796}\N{U+17d2}\N{U+179a}\N{U+17a0}\N{U+179f}\N{U+17d2}\N{U+1794}\N{U+178f}\N{U+17b7}\N{U+17cd}",
      "\N{U+179f}\N{U+17bb}\N{U+1780}\N{U+17d2}\N{U+179a}",
      "\N{U+179f}\N{U+17c5}\N{U+179a}\N{U+17cd}",
      "\N{U+17a2}\N{U+17b6}\N{U+1791}\N{U+17b7}\N{U+178f}\N{U+17d2}\N{U+1799}"
    ],
    era_abbreviated => [
      "\N{U+1798}\N{U+17bb}\N{U+1793} \N{U+1782}.\N{U+179f}.",
      "\N{U+1782}.\N{U+179f}."
    ],
    era_narrow => [
      "\N{U+1798}\N{U+17bb}\N{U+1793} \N{U+1782}.\N{U+179f}.",
      "\N{U+1782}.\N{U+179f}."
    ],
    era_wide => [
      "\N{U+1798}\N{U+17bb}\N{U+1793}\N{U+200b}\N{U+1782}\N{U+17d2}\N{U+179a}\N{U+17b7}\N{U+179f}\N{U+17d2}\N{U+178f}\N{U+179f}\N{U+1780}\N{U+179a}\N{U+17b6}\N{U+1787}",
      "\N{U+1782}\N{U+17d2}\N{U+179a}\N{U+17b7}\N{U+179f}\N{U+17d2}\N{U+178f}\N{U+179f}\N{U+1780}\N{U+179a}\N{U+17b6}\N{U+1787}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Khmer",
    month_format_abbreviated => [
      "\N{U+1798}\N{U+1780}\N{U+179a}\N{U+17b6}",
      "\N{U+1780}\N{U+17bb}\N{U+1798}\N{U+17d2}\N{U+1797}\N{U+17c8}",
      "\N{U+1798}\N{U+17b8}\N{U+1793}\N{U+17b6}",
      "\N{U+1798}\N{U+17c1}\N{U+179f}\N{U+17b6}",
      "\N{U+17a7}\N{U+179f}\N{U+1797}\N{U+17b6}",
      "\N{U+1798}\N{U+17b7}\N{U+1790}\N{U+17bb}\N{U+1793}\N{U+17b6}",
      "\N{U+1780}\N{U+1780}\N{U+17d2}\N{U+1780}\N{U+178a}\N{U+17b6}",
      "\N{U+179f}\N{U+17b8}\N{U+17a0}\N{U+17b6}",
      "\N{U+1780}\N{U+1789}\N{U+17d2}\N{U+1789}\N{U+17b6}",
      "\N{U+178f}\N{U+17bb}\N{U+179b}\N{U+17b6}",
      "\N{U+179c}\N{U+17b7}\N{U+1785}\N{U+17d2}\N{U+1786}\N{U+17b7}\N{U+1780}\N{U+17b6}",
      "\N{U+1792}\N{U+17d2}\N{U+1793}\N{U+17bc}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+1798}\N{U+1780}\N{U+179a}\N{U+17b6}",
      "\N{U+1780}\N{U+17bb}\N{U+1798}\N{U+17d2}\N{U+1797}\N{U+17c8}",
      "\N{U+1798}\N{U+17b8}\N{U+1793}\N{U+17b6}",
      "\N{U+1798}\N{U+17c1}\N{U+179f}\N{U+17b6}",
      "\N{U+17a7}\N{U+179f}\N{U+1797}\N{U+17b6}",
      "\N{U+1798}\N{U+17b7}\N{U+1790}\N{U+17bb}\N{U+1793}\N{U+17b6}",
      "\N{U+1780}\N{U+1780}\N{U+17d2}\N{U+1780}\N{U+178a}\N{U+17b6}",
      "\N{U+179f}\N{U+17b8}\N{U+17a0}\N{U+17b6}",
      "\N{U+1780}\N{U+1789}\N{U+17d2}\N{U+1789}\N{U+17b6}",
      "\N{U+178f}\N{U+17bb}\N{U+179b}\N{U+17b6}",
      "\N{U+179c}\N{U+17b7}\N{U+1785}\N{U+17d2}\N{U+1786}\N{U+17b7}\N{U+1780}\N{U+17b6}",
      "\N{U+1792}\N{U+17d2}\N{U+1793}\N{U+17bc}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+1798}\N{U+1780}\N{U+179a}\N{U+17b6}",
      "\N{U+1780}\N{U+17bb}\N{U+1798}\N{U+17d2}\N{U+1797}\N{U+17c8}",
      "\N{U+1798}\N{U+17b8}\N{U+1793}\N{U+17b6}",
      "\N{U+1798}\N{U+17c1}\N{U+179f}\N{U+17b6}",
      "\N{U+17a7}\N{U+179f}\N{U+1797}\N{U+17b6}",
      "\N{U+1798}\N{U+17b7}\N{U+1790}\N{U+17bb}\N{U+1793}\N{U+17b6}",
      "\N{U+1780}\N{U+1780}\N{U+17d2}\N{U+1780}\N{U+178a}\N{U+17b6}",
      "\N{U+179f}\N{U+17b8}\N{U+17a0}\N{U+17b6}",
      "\N{U+1780}\N{U+1789}\N{U+17d2}\N{U+1789}\N{U+17b6}",
      "\N{U+178f}\N{U+17bb}\N{U+179b}\N{U+17b6}",
      "\N{U+179c}\N{U+17b7}\N{U+1785}\N{U+17d2}\N{U+1786}\N{U+17b7}\N{U+1780}\N{U+17b6}",
      "\N{U+1792}\N{U+17d2}\N{U+1793}\N{U+17bc}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+1798}\N{U+1780}\N{U+179a}\N{U+17b6}",
      "\N{U+1780}\N{U+17bb}\N{U+1798}\N{U+17d2}\N{U+1797}\N{U+17c8}",
      "\N{U+1798}\N{U+17b8}\N{U+1793}\N{U+17b6}",
      "\N{U+1798}\N{U+17c1}\N{U+179f}\N{U+17b6}",
      "\N{U+17a7}\N{U+179f}\N{U+1797}\N{U+17b6}",
      "\N{U+1798}\N{U+17b7}\N{U+1790}\N{U+17bb}\N{U+1793}\N{U+17b6}",
      "\N{U+1780}\N{U+1780}\N{U+17d2}\N{U+1780}\N{U+178a}\N{U+17b6}",
      "\N{U+179f}\N{U+17b8}\N{U+17a0}\N{U+17b6}",
      "\N{U+1780}\N{U+1789}\N{U+17d2}\N{U+1789}\N{U+17b6}",
      "\N{U+178f}\N{U+17bb}\N{U+179b}\N{U+17b6}",
      "\N{U+179c}\N{U+17b7}\N{U+1785}\N{U+17d2}\N{U+1786}\N{U+17b7}\N{U+1780}\N{U+17b6}",
      "\N{U+1792}\N{U+17d2}\N{U+1793}\N{U+17bc}"
    ],
    name => "Khmer",
    native_language => "\N{U+1781}\N{U+17d2}\N{U+1798}\N{U+17c2}\N{U+179a}",
    native_name => "\N{U+1781}\N{U+17d2}\N{U+1798}\N{U+17c2}\N{U+179a}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 1",
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 2",
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 3",
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 1",
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 2",
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 3",
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 4"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 1",
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 2",
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 3",
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 1",
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 2",
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 3",
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ km-KH ]__
  {
    am_pm_abbreviated => [
      "\N{U+1796}\N{U+17d2}\N{U+179a}\N{U+17b9}\N{U+1780}",
      "\N{U+179b}\N{U+17d2}\N{U+1784}\N{U+17b6}\N{U+1785}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y \N{U+1793}\N{U+17c3} G",
      GyMMM => "MMM y \N{U+1793}\N{U+17c3} G",
      GyMMMEd => "E d MMM y \N{U+1793}\N{U+17c3} G",
      GyMMMd => "d MMM y \N{U+1793}\N{U+17c3} G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d MMM",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d-M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M-y",
      yMEd => "E d-M-y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d-M-y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "km-KH",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} \N{U+1793}\N{U+17c5} {0}",
    datetime_format_long => "{1} \N{U+1793}\N{U+17c5} {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+1785}\N{U+17d0}\N{U+1793}\N{U+17d2}\N{U+1791}",
      "\N{U+17a2}\N{U+1784}\N{U+17d2}\N{U+1782}\N{U+17b6}\N{U+179a}",
      "\N{U+1796}\N{U+17bb}\N{U+1792}",
      "\N{U+1796}\N{U+17d2}\N{U+179a}\N{U+17a0}\N{U+179f}\N{U+17d2}\N{U+1794}\N{U+178f}\N{U+17b7}\N{U+17cd}",
      "\N{U+179f}\N{U+17bb}\N{U+1780}\N{U+17d2}\N{U+179a}",
      "\N{U+179f}\N{U+17c5}\N{U+179a}\N{U+17cd}",
      "\N{U+17a2}\N{U+17b6}\N{U+1791}\N{U+17b7}\N{U+178f}\N{U+17d2}\N{U+1799}"
    ],
    day_format_narrow => [
      "\N{U+1785}",
      "\N{U+17a2}",
      "\N{U+1796}\N{U+17bb}",
      "\N{U+1796}\N{U+17d2}\N{U+179a}",
      "\N{U+179f}\N{U+17bb}",
      "\N{U+179f}",
      "\N{U+17a2}\N{U+17b6}"
    ],
    day_format_wide => [
      "\N{U+1785}\N{U+17d0}\N{U+1793}\N{U+17d2}\N{U+1791}",
      "\N{U+17a2}\N{U+1784}\N{U+17d2}\N{U+1782}\N{U+17b6}\N{U+179a}",
      "\N{U+1796}\N{U+17bb}\N{U+1792}",
      "\N{U+1796}\N{U+17d2}\N{U+179a}\N{U+17a0}\N{U+179f}\N{U+17d2}\N{U+1794}\N{U+178f}\N{U+17b7}\N{U+17cd}",
      "\N{U+179f}\N{U+17bb}\N{U+1780}\N{U+17d2}\N{U+179a}",
      "\N{U+179f}\N{U+17c5}\N{U+179a}\N{U+17cd}",
      "\N{U+17a2}\N{U+17b6}\N{U+1791}\N{U+17b7}\N{U+178f}\N{U+17d2}\N{U+1799}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+1785}\N{U+17d0}\N{U+1793}\N{U+17d2}\N{U+1791}",
      "\N{U+17a2}\N{U+1784}\N{U+17d2}\N{U+1782}\N{U+17b6}\N{U+179a}",
      "\N{U+1796}\N{U+17bb}\N{U+1792}",
      "\N{U+1796}\N{U+17d2}\N{U+179a}\N{U+17a0}\N{U+179f}\N{U+17d2}\N{U+1794}\N{U+178f}\N{U+17b7}\N{U+17cd}",
      "\N{U+179f}\N{U+17bb}\N{U+1780}\N{U+17d2}\N{U+179a}",
      "\N{U+179f}\N{U+17c5}\N{U+179a}\N{U+17cd}",
      "\N{U+17a2}\N{U+17b6}\N{U+1791}\N{U+17b7}\N{U+178f}\N{U+17d2}\N{U+1799}"
    ],
    day_stand_alone_narrow => [
      "\N{U+1785}",
      "\N{U+17a2}",
      "\N{U+1796}\N{U+17bb}",
      "\N{U+1796}\N{U+17d2}\N{U+179a}",
      "\N{U+179f}\N{U+17bb}",
      "\N{U+179f}",
      "\N{U+17a2}\N{U+17b6}"
    ],
    day_stand_alone_wide => [
      "\N{U+1785}\N{U+17d0}\N{U+1793}\N{U+17d2}\N{U+1791}",
      "\N{U+17a2}\N{U+1784}\N{U+17d2}\N{U+1782}\N{U+17b6}\N{U+179a}",
      "\N{U+1796}\N{U+17bb}\N{U+1792}",
      "\N{U+1796}\N{U+17d2}\N{U+179a}\N{U+17a0}\N{U+179f}\N{U+17d2}\N{U+1794}\N{U+178f}\N{U+17b7}\N{U+17cd}",
      "\N{U+179f}\N{U+17bb}\N{U+1780}\N{U+17d2}\N{U+179a}",
      "\N{U+179f}\N{U+17c5}\N{U+179a}\N{U+17cd}",
      "\N{U+17a2}\N{U+17b6}\N{U+1791}\N{U+17b7}\N{U+178f}\N{U+17d2}\N{U+1799}"
    ],
    era_abbreviated => [
      "\N{U+1798}\N{U+17bb}\N{U+1793} \N{U+1782}.\N{U+179f}.",
      "\N{U+1782}.\N{U+179f}."
    ],
    era_narrow => [
      "\N{U+1798}\N{U+17bb}\N{U+1793} \N{U+1782}.\N{U+179f}.",
      "\N{U+1782}.\N{U+179f}."
    ],
    era_wide => [
      "\N{U+1798}\N{U+17bb}\N{U+1793}\N{U+200b}\N{U+1782}\N{U+17d2}\N{U+179a}\N{U+17b7}\N{U+179f}\N{U+17d2}\N{U+178f}\N{U+179f}\N{U+1780}\N{U+179a}\N{U+17b6}\N{U+1787}",
      "\N{U+1782}\N{U+17d2}\N{U+179a}\N{U+17b7}\N{U+179f}\N{U+17d2}\N{U+178f}\N{U+179f}\N{U+1780}\N{U+179a}\N{U+17b6}\N{U+1787}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%e %B %Y",
    glibc_datetime_format => "%A \N{U+1790}\N{U+17d2}\N{U+1784}\N{U+17c3} %e \N{U+1781}\N{U+17c2} %B \N{U+1786}\N{U+17d2}\N{U+1793}\N{U+17b6}\N{U+17c6}  %Y, %H \N{U+1798}\N{U+17c9}\N{U+17c4}\N{U+1784} m \N{U+1793}\N{U+17b6}\N{U+1791}\N{U+17b8} %S \N{U+179c}\N{U+17b7}\N{U+1793}\N{U+17b6}\N{U+1791}\N{U+17b8}\N{U+200b}",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Khmer",
    month_format_abbreviated => [
      "\N{U+1798}\N{U+1780}\N{U+179a}\N{U+17b6}",
      "\N{U+1780}\N{U+17bb}\N{U+1798}\N{U+17d2}\N{U+1797}\N{U+17c8}",
      "\N{U+1798}\N{U+17b8}\N{U+1793}\N{U+17b6}",
      "\N{U+1798}\N{U+17c1}\N{U+179f}\N{U+17b6}",
      "\N{U+17a7}\N{U+179f}\N{U+1797}\N{U+17b6}",
      "\N{U+1798}\N{U+17b7}\N{U+1790}\N{U+17bb}\N{U+1793}\N{U+17b6}",
      "\N{U+1780}\N{U+1780}\N{U+17d2}\N{U+1780}\N{U+178a}\N{U+17b6}",
      "\N{U+179f}\N{U+17b8}\N{U+17a0}\N{U+17b6}",
      "\N{U+1780}\N{U+1789}\N{U+17d2}\N{U+1789}\N{U+17b6}",
      "\N{U+178f}\N{U+17bb}\N{U+179b}\N{U+17b6}",
      "\N{U+179c}\N{U+17b7}\N{U+1785}\N{U+17d2}\N{U+1786}\N{U+17b7}\N{U+1780}\N{U+17b6}",
      "\N{U+1792}\N{U+17d2}\N{U+1793}\N{U+17bc}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+1798}\N{U+1780}\N{U+179a}\N{U+17b6}",
      "\N{U+1780}\N{U+17bb}\N{U+1798}\N{U+17d2}\N{U+1797}\N{U+17c8}",
      "\N{U+1798}\N{U+17b8}\N{U+1793}\N{U+17b6}",
      "\N{U+1798}\N{U+17c1}\N{U+179f}\N{U+17b6}",
      "\N{U+17a7}\N{U+179f}\N{U+1797}\N{U+17b6}",
      "\N{U+1798}\N{U+17b7}\N{U+1790}\N{U+17bb}\N{U+1793}\N{U+17b6}",
      "\N{U+1780}\N{U+1780}\N{U+17d2}\N{U+1780}\N{U+178a}\N{U+17b6}",
      "\N{U+179f}\N{U+17b8}\N{U+17a0}\N{U+17b6}",
      "\N{U+1780}\N{U+1789}\N{U+17d2}\N{U+1789}\N{U+17b6}",
      "\N{U+178f}\N{U+17bb}\N{U+179b}\N{U+17b6}",
      "\N{U+179c}\N{U+17b7}\N{U+1785}\N{U+17d2}\N{U+1786}\N{U+17b7}\N{U+1780}\N{U+17b6}",
      "\N{U+1792}\N{U+17d2}\N{U+1793}\N{U+17bc}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+1798}\N{U+1780}\N{U+179a}\N{U+17b6}",
      "\N{U+1780}\N{U+17bb}\N{U+1798}\N{U+17d2}\N{U+1797}\N{U+17c8}",
      "\N{U+1798}\N{U+17b8}\N{U+1793}\N{U+17b6}",
      "\N{U+1798}\N{U+17c1}\N{U+179f}\N{U+17b6}",
      "\N{U+17a7}\N{U+179f}\N{U+1797}\N{U+17b6}",
      "\N{U+1798}\N{U+17b7}\N{U+1790}\N{U+17bb}\N{U+1793}\N{U+17b6}",
      "\N{U+1780}\N{U+1780}\N{U+17d2}\N{U+1780}\N{U+178a}\N{U+17b6}",
      "\N{U+179f}\N{U+17b8}\N{U+17a0}\N{U+17b6}",
      "\N{U+1780}\N{U+1789}\N{U+17d2}\N{U+1789}\N{U+17b6}",
      "\N{U+178f}\N{U+17bb}\N{U+179b}\N{U+17b6}",
      "\N{U+179c}\N{U+17b7}\N{U+1785}\N{U+17d2}\N{U+1786}\N{U+17b7}\N{U+1780}\N{U+17b6}",
      "\N{U+1792}\N{U+17d2}\N{U+1793}\N{U+17bc}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+1798}\N{U+1780}\N{U+179a}\N{U+17b6}",
      "\N{U+1780}\N{U+17bb}\N{U+1798}\N{U+17d2}\N{U+1797}\N{U+17c8}",
      "\N{U+1798}\N{U+17b8}\N{U+1793}\N{U+17b6}",
      "\N{U+1798}\N{U+17c1}\N{U+179f}\N{U+17b6}",
      "\N{U+17a7}\N{U+179f}\N{U+1797}\N{U+17b6}",
      "\N{U+1798}\N{U+17b7}\N{U+1790}\N{U+17bb}\N{U+1793}\N{U+17b6}",
      "\N{U+1780}\N{U+1780}\N{U+17d2}\N{U+1780}\N{U+178a}\N{U+17b6}",
      "\N{U+179f}\N{U+17b8}\N{U+17a0}\N{U+17b6}",
      "\N{U+1780}\N{U+1789}\N{U+17d2}\N{U+1789}\N{U+17b6}",
      "\N{U+178f}\N{U+17bb}\N{U+179b}\N{U+17b6}",
      "\N{U+179c}\N{U+17b7}\N{U+1785}\N{U+17d2}\N{U+1786}\N{U+17b7}\N{U+1780}\N{U+17b6}",
      "\N{U+1792}\N{U+17d2}\N{U+1793}\N{U+17bc}"
    ],
    name => "Khmer Cambodia",
    native_language => "\N{U+1781}\N{U+17d2}\N{U+1798}\N{U+17c2}\N{U+179a}",
    native_name => "\N{U+1781}\N{U+17d2}\N{U+1798}\N{U+17c2}\N{U+179a} \N{U+1780}\N{U+1798}\N{U+17d2}\N{U+1796}\N{U+17bb}\N{U+1787}\N{U+17b6}",
    native_script => undef,
    native_territory => "\N{U+1780}\N{U+1798}\N{U+17d2}\N{U+1796}\N{U+17bb}\N{U+1787}\N{U+17b6}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 1",
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 2",
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 3",
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 1",
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 2",
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 3",
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 4"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 1",
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 2",
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 3",
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 1",
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 2",
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 3",
      "\N{U+178f}\N{U+17d2}\N{U+179a}\N{U+17b8}\N{U+1798}\N{U+17b6}\N{U+179f}\N{U+1791}\N{U+17b8} 4"
    ],
    script => undef,
    territory => "Cambodia",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ kn ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "d/M, E",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "MMM d",
      MMdd => "dd-MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMM => "MM-y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "MMM d,y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "kn",
    date_format_full => "EEEE, MMMM d, y",
    date_format_long => "MMMM d, y",
    date_format_medium => "MMM d, y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0cb8}\N{U+0ccb}\N{U+0cae}",
      "\N{U+0cae}\N{U+0c82}\N{U+0c97}\N{U+0cb3}",
      "\N{U+0cac}\N{U+0cc1}\N{U+0ca7}",
      "\N{U+0c97}\N{U+0cc1}\N{U+0cb0}\N{U+0cc1}",
      "\N{U+0cb6}\N{U+0cc1}\N{U+0c95}\N{U+0ccd}\N{U+0cb0}",
      "\N{U+0cb6}\N{U+0ca8}\N{U+0cbf}",
      "\N{U+0cad}\N{U+0cbe}\N{U+0ca8}\N{U+0cc1}"
    ],
    day_format_narrow => [
      "\N{U+0cb8}\N{U+0ccb}",
      "\N{U+0cae}\N{U+0c82}",
      "\N{U+0cac}\N{U+0cc1}",
      "\N{U+0c97}\N{U+0cc1}",
      "\N{U+0cb6}\N{U+0cc1}",
      "\N{U+0cb6}",
      "\N{U+0cad}\N{U+0cbe}"
    ],
    day_format_wide => [
      "\N{U+0cb8}\N{U+0ccb}\N{U+0cae}\N{U+0cb5}\N{U+0cbe}\N{U+0cb0}",
      "\N{U+0cae}\N{U+0c82}\N{U+0c97}\N{U+0cb3}\N{U+0cb5}\N{U+0cbe}\N{U+0cb0}",
      "\N{U+0cac}\N{U+0cc1}\N{U+0ca7}\N{U+0cb5}\N{U+0cbe}\N{U+0cb0}",
      "\N{U+0c97}\N{U+0cc1}\N{U+0cb0}\N{U+0cc1}\N{U+0cb5}\N{U+0cbe}\N{U+0cb0}",
      "\N{U+0cb6}\N{U+0cc1}\N{U+0c95}\N{U+0ccd}\N{U+0cb0}\N{U+0cb5}\N{U+0cbe}\N{U+0cb0}",
      "\N{U+0cb6}\N{U+0ca8}\N{U+0cbf}\N{U+0cb5}\N{U+0cbe}\N{U+0cb0}",
      "\N{U+0cad}\N{U+0cbe}\N{U+0ca8}\N{U+0cc1}\N{U+0cb5}\N{U+0cbe}\N{U+0cb0}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0cb8}\N{U+0ccb}\N{U+0cae}",
      "\N{U+0cae}\N{U+0c82}\N{U+0c97}\N{U+0cb3}",
      "\N{U+0cac}\N{U+0cc1}\N{U+0ca7}",
      "\N{U+0c97}\N{U+0cc1}\N{U+0cb0}\N{U+0cc1}",
      "\N{U+0cb6}\N{U+0cc1}\N{U+0c95}\N{U+0ccd}\N{U+0cb0}",
      "\N{U+0cb6}\N{U+0ca8}\N{U+0cbf}",
      "\N{U+0cad}\N{U+0cbe}\N{U+0ca8}\N{U+0cc1}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0cb8}\N{U+0ccb}",
      "\N{U+0cae}\N{U+0c82}",
      "\N{U+0cac}\N{U+0cc1}",
      "\N{U+0c97}\N{U+0cc1}",
      "\N{U+0cb6}\N{U+0cc1}",
      "\N{U+0cb6}",
      "\N{U+0cad}\N{U+0cbe}"
    ],
    day_stand_alone_wide => [
      "\N{U+0cb8}\N{U+0ccb}\N{U+0cae}\N{U+0cb5}\N{U+0cbe}\N{U+0cb0}",
      "\N{U+0cae}\N{U+0c82}\N{U+0c97}\N{U+0cb3}\N{U+0cb5}\N{U+0cbe}\N{U+0cb0}",
      "\N{U+0cac}\N{U+0cc1}\N{U+0ca7}\N{U+0cb5}\N{U+0cbe}\N{U+0cb0}",
      "\N{U+0c97}\N{U+0cc1}\N{U+0cb0}\N{U+0cc1}\N{U+0cb5}\N{U+0cbe}\N{U+0cb0}",
      "\N{U+0cb6}\N{U+0cc1}\N{U+0c95}\N{U+0ccd}\N{U+0cb0}\N{U+0cb5}\N{U+0cbe}\N{U+0cb0}",
      "\N{U+0cb6}\N{U+0ca8}\N{U+0cbf}\N{U+0cb5}\N{U+0cbe}\N{U+0cb0}",
      "\N{U+0cad}\N{U+0cbe}\N{U+0ca8}\N{U+0cc1}\N{U+0cb5}\N{U+0cbe}\N{U+0cb0}"
    ],
    era_abbreviated => [
      "\N{U+0c95}\N{U+0ccd}\N{U+0cb0}\N{U+0cbf}.\N{U+0caa}\N{U+0cc2}",
      "\N{U+0c95}\N{U+0ccd}\N{U+0cb0}\N{U+0cbf}.\N{U+0cb6}"
    ],
    era_narrow => [
      "\N{U+0c95}\N{U+0ccd}\N{U+0cb0}\N{U+0cbf}.\N{U+0caa}\N{U+0cc2}",
      "\N{U+0c95}\N{U+0ccd}\N{U+0cb0}\N{U+0cbf}.\N{U+0cb6}"
    ],
    era_wide => [
      "\N{U+0c95}\N{U+0ccd}\N{U+0cb0}\N{U+0cbf}\N{U+0cb8}\N{U+0ccd}\N{U+0ca4} \N{U+0caa}\N{U+0cc2}\N{U+0cb0}\N{U+0ccd}\N{U+0cb5}",
      "\N{U+0c95}\N{U+0ccd}\N{U+0cb0}\N{U+0cbf}\N{U+0cb8}\N{U+0ccd}\N{U+0ca4} \N{U+0cb6}\N{U+0c95}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Kannada",
    month_format_abbreviated => [
      "\N{U+0c9c}\N{U+0ca8}",
      "\N{U+0cab}\N{U+0cc6}\N{U+0cac}\N{U+0ccd}\N{U+0cb0}",
      "\N{U+0cae}\N{U+0cbe}\N{U+0cb0}\N{U+0ccd}\N{U+0c9a}\N{U+0ccd}",
      "\N{U+0c8f}\N{U+0caa}\N{U+0ccd}\N{U+0cb0}\N{U+0cbf}",
      "\N{U+0cae}\N{U+0cc7}",
      "\N{U+0c9c}\N{U+0cc2}\N{U+0ca8}\N{U+0ccd}",
      "\N{U+0c9c}\N{U+0cc1}\N{U+0cb2}\N{U+0cc8}",
      "\N{U+0c86}\N{U+0c97}",
      "\N{U+0cb8}\N{U+0cc6}\N{U+0caa}\N{U+0ccd}\N{U+0c9f}\N{U+0cc6}\N{U+0c82}",
      "\N{U+0c85}\N{U+0c95}\N{U+0ccd}\N{U+0c9f}\N{U+0ccb}",
      "\N{U+0ca8}\N{U+0cb5}\N{U+0cc6}\N{U+0c82}",
      "\N{U+0ca1}\N{U+0cbf}\N{U+0cb8}\N{U+0cc6}\N{U+0c82}"
    ],
    month_format_narrow => [
      "\N{U+0c9c}",
      "\N{U+0cab}\N{U+0cc6}",
      "\N{U+0cae}\N{U+0cbe}",
      "\N{U+0c8f}",
      "\N{U+0cae}\N{U+0cc7}",
      "\N{U+0c9c}\N{U+0cc2}",
      "\N{U+0c9c}\N{U+0cc1}",
      "\N{U+0c86}",
      "\N{U+0cb8}\N{U+0cc6}",
      "\N{U+0c85}",
      "\N{U+0ca8}",
      "\N{U+0ca1}\N{U+0cbf}"
    ],
    month_format_wide => [
      "\N{U+0c9c}\N{U+0ca8}\N{U+0cb5}\N{U+0cb0}\N{U+0cbf}",
      "\N{U+0cab}\N{U+0cc6}\N{U+0cac}\N{U+0ccd}\N{U+0cb0}\N{U+0cb5}\N{U+0cb0}\N{U+0cbf}",
      "\N{U+0cae}\N{U+0cbe}\N{U+0cb0}\N{U+0ccd}\N{U+0c9a}\N{U+0ccd}",
      "\N{U+0c8f}\N{U+0caa}\N{U+0ccd}\N{U+0cb0}\N{U+0cbf}\N{U+0cb2}\N{U+0ccd}",
      "\N{U+0cae}\N{U+0cc7}",
      "\N{U+0c9c}\N{U+0cc2}\N{U+0ca8}\N{U+0ccd}",
      "\N{U+0c9c}\N{U+0cc1}\N{U+0cb2}\N{U+0cc8}",
      "\N{U+0c86}\N{U+0c97}\N{U+0cb8}\N{U+0ccd}\N{U+0c9f}\N{U+0ccd}",
      "\N{U+0cb8}\N{U+0cc6}\N{U+0caa}\N{U+0ccd}\N{U+0c9f}\N{U+0cc6}\N{U+0c82}\N{U+0cac}\N{U+0cb0}\N{U+0ccd}",
      "\N{U+0c85}\N{U+0c95}\N{U+0ccd}\N{U+0c9f}\N{U+0ccb}\N{U+0cac}\N{U+0cb0}\N{U+0ccd}",
      "\N{U+0ca8}\N{U+0cb5}\N{U+0cc6}\N{U+0c82}\N{U+0cac}\N{U+0cb0}\N{U+0ccd}",
      "\N{U+0ca1}\N{U+0cbf}\N{U+0cb8}\N{U+0cc6}\N{U+0c82}\N{U+0cac}\N{U+0cb0}\N{U+0ccd}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0c9c}\N{U+0ca8}",
      "\N{U+0cab}\N{U+0cc6}\N{U+0cac}\N{U+0ccd}\N{U+0cb0}",
      "\N{U+0cae}\N{U+0cbe}\N{U+0cb0}\N{U+0ccd}\N{U+0c9a}\N{U+0ccd}",
      "\N{U+0c8f}\N{U+0caa}\N{U+0ccd}\N{U+0cb0}\N{U+0cbf}",
      "\N{U+0cae}\N{U+0cc7}",
      "\N{U+0c9c}\N{U+0cc2}\N{U+0ca8}\N{U+0ccd}",
      "\N{U+0c9c}\N{U+0cc1}\N{U+0cb2}\N{U+0cc8}",
      "\N{U+0c86}\N{U+0c97}",
      "\N{U+0cb8}\N{U+0cc6}\N{U+0caa}\N{U+0ccd}\N{U+0c9f}\N{U+0cc6}\N{U+0c82}",
      "\N{U+0c85}\N{U+0c95}\N{U+0ccd}\N{U+0c9f}\N{U+0ccb}",
      "\N{U+0ca8}\N{U+0cb5}\N{U+0cc6}\N{U+0c82}",
      "\N{U+0ca1}\N{U+0cbf}\N{U+0cb8}\N{U+0cc6}\N{U+0c82}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0c9c}",
      "\N{U+0cab}\N{U+0cc6}",
      "\N{U+0cae}\N{U+0cbe}",
      "\N{U+0c8f}",
      "\N{U+0cae}\N{U+0cc7}",
      "\N{U+0c9c}\N{U+0cc2}",
      "\N{U+0c9c}\N{U+0cc1}",
      "\N{U+0c86}",
      "\N{U+0cb8}\N{U+0cc6}",
      "\N{U+0c85}",
      "\N{U+0ca8}",
      "\N{U+0ca1}\N{U+0cbf}"
    ],
    month_stand_alone_wide => [
      "\N{U+0c9c}\N{U+0ca8}\N{U+0cb5}\N{U+0cb0}\N{U+0cbf}",
      "\N{U+0cab}\N{U+0cc6}\N{U+0cac}\N{U+0ccd}\N{U+0cb0}\N{U+0cb5}\N{U+0cb0}\N{U+0cbf}",
      "\N{U+0cae}\N{U+0cbe}\N{U+0cb0}\N{U+0ccd}\N{U+0c9a}\N{U+0ccd}",
      "\N{U+0c8f}\N{U+0caa}\N{U+0ccd}\N{U+0cb0}\N{U+0cbf}\N{U+0cb2}\N{U+0ccd}",
      "\N{U+0cae}\N{U+0cc7}",
      "\N{U+0c9c}\N{U+0cc2}\N{U+0ca8}\N{U+0ccd}",
      "\N{U+0c9c}\N{U+0cc1}\N{U+0cb2}\N{U+0cc8}",
      "\N{U+0c86}\N{U+0c97}\N{U+0cb8}\N{U+0ccd}\N{U+0c9f}\N{U+0ccd}",
      "\N{U+0cb8}\N{U+0cc6}\N{U+0caa}\N{U+0ccd}\N{U+0c9f}\N{U+0cc6}\N{U+0c82}\N{U+0cac}\N{U+0cb0}\N{U+0ccd}",
      "\N{U+0c85}\N{U+0c95}\N{U+0ccd}\N{U+0c9f}\N{U+0ccb}\N{U+0cac}\N{U+0cb0}\N{U+0ccd}",
      "\N{U+0ca8}\N{U+0cb5}\N{U+0cc6}\N{U+0c82}\N{U+0cac}\N{U+0cb0}\N{U+0ccd}",
      "\N{U+0ca1}\N{U+0cbf}\N{U+0cb8}\N{U+0cc6}\N{U+0c82}\N{U+0cac}\N{U+0cb0}\N{U+0ccd}"
    ],
    name => "Kannada",
    native_language => "\N{U+0c95}\N{U+0ca8}\N{U+0ccd}\N{U+0ca8}\N{U+0ca1}",
    native_name => "\N{U+0c95}\N{U+0ca8}\N{U+0ccd}\N{U+0ca8}\N{U+0ca1}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8} 1",
      "\N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8} 2",
      "\N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8} 3",
      "\N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8} 4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1\N{U+0ca8}\N{U+0cc7} \N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8}\N{U+0cae}\N{U+0cbe}\N{U+0cb8}\N{U+0cbf}\N{U+0c95}",
      "2\N{U+0ca8}\N{U+0cc7} \N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8}\N{U+0cae}\N{U+0cbe}\N{U+0cb8}\N{U+0cbf}\N{U+0c95}",
      "3\N{U+0ca8}\N{U+0cc7} \N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8}\N{U+0cae}\N{U+0cbe}\N{U+0cb8}\N{U+0cbf}\N{U+0c95}",
      "4\N{U+0ca8}\N{U+0cc7} \N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8}\N{U+0cae}\N{U+0cbe}\N{U+0cb8}\N{U+0cbf}\N{U+0c95}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8} 1",
      "\N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8} 2",
      "\N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8} 3",
      "\N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8} 4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1\N{U+0ca8}\N{U+0cc7} \N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8}\N{U+0cae}\N{U+0cbe}\N{U+0cb8}\N{U+0cbf}\N{U+0c95}",
      "2\N{U+0ca8}\N{U+0cc7} \N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8}\N{U+0cae}\N{U+0cbe}\N{U+0cb8}\N{U+0cbf}\N{U+0c95}",
      "3\N{U+0ca8}\N{U+0cc7} \N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8}\N{U+0cae}\N{U+0cbe}\N{U+0cb8}\N{U+0cbf}\N{U+0c95}",
      "4\N{U+0ca8}\N{U+0cc7} \N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8}\N{U+0cae}\N{U+0cbe}\N{U+0cb8}\N{U+0cbf}\N{U+0c95}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "hh:mm:ss a zzzz",
    time_format_long => "hh:mm:ss a z",
    time_format_medium => "hh:mm:ss a",
    time_format_short => "hh:mm a",
    variant => undef,
    version => 28
  }
  __[ kn-IN ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "d/M, E",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "MMM d",
      MMdd => "dd-MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMM => "MM-y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "MMM d,y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "kn-IN",
    date_format_full => "EEEE, MMMM d, y",
    date_format_long => "MMMM d, y",
    date_format_medium => "MMM d, y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0cb8}\N{U+0ccb}\N{U+0cae}",
      "\N{U+0cae}\N{U+0c82}\N{U+0c97}\N{U+0cb3}",
      "\N{U+0cac}\N{U+0cc1}\N{U+0ca7}",
      "\N{U+0c97}\N{U+0cc1}\N{U+0cb0}\N{U+0cc1}",
      "\N{U+0cb6}\N{U+0cc1}\N{U+0c95}\N{U+0ccd}\N{U+0cb0}",
      "\N{U+0cb6}\N{U+0ca8}\N{U+0cbf}",
      "\N{U+0cad}\N{U+0cbe}\N{U+0ca8}\N{U+0cc1}"
    ],
    day_format_narrow => [
      "\N{U+0cb8}\N{U+0ccb}",
      "\N{U+0cae}\N{U+0c82}",
      "\N{U+0cac}\N{U+0cc1}",
      "\N{U+0c97}\N{U+0cc1}",
      "\N{U+0cb6}\N{U+0cc1}",
      "\N{U+0cb6}",
      "\N{U+0cad}\N{U+0cbe}"
    ],
    day_format_wide => [
      "\N{U+0cb8}\N{U+0ccb}\N{U+0cae}\N{U+0cb5}\N{U+0cbe}\N{U+0cb0}",
      "\N{U+0cae}\N{U+0c82}\N{U+0c97}\N{U+0cb3}\N{U+0cb5}\N{U+0cbe}\N{U+0cb0}",
      "\N{U+0cac}\N{U+0cc1}\N{U+0ca7}\N{U+0cb5}\N{U+0cbe}\N{U+0cb0}",
      "\N{U+0c97}\N{U+0cc1}\N{U+0cb0}\N{U+0cc1}\N{U+0cb5}\N{U+0cbe}\N{U+0cb0}",
      "\N{U+0cb6}\N{U+0cc1}\N{U+0c95}\N{U+0ccd}\N{U+0cb0}\N{U+0cb5}\N{U+0cbe}\N{U+0cb0}",
      "\N{U+0cb6}\N{U+0ca8}\N{U+0cbf}\N{U+0cb5}\N{U+0cbe}\N{U+0cb0}",
      "\N{U+0cad}\N{U+0cbe}\N{U+0ca8}\N{U+0cc1}\N{U+0cb5}\N{U+0cbe}\N{U+0cb0}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0cb8}\N{U+0ccb}\N{U+0cae}",
      "\N{U+0cae}\N{U+0c82}\N{U+0c97}\N{U+0cb3}",
      "\N{U+0cac}\N{U+0cc1}\N{U+0ca7}",
      "\N{U+0c97}\N{U+0cc1}\N{U+0cb0}\N{U+0cc1}",
      "\N{U+0cb6}\N{U+0cc1}\N{U+0c95}\N{U+0ccd}\N{U+0cb0}",
      "\N{U+0cb6}\N{U+0ca8}\N{U+0cbf}",
      "\N{U+0cad}\N{U+0cbe}\N{U+0ca8}\N{U+0cc1}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0cb8}\N{U+0ccb}",
      "\N{U+0cae}\N{U+0c82}",
      "\N{U+0cac}\N{U+0cc1}",
      "\N{U+0c97}\N{U+0cc1}",
      "\N{U+0cb6}\N{U+0cc1}",
      "\N{U+0cb6}",
      "\N{U+0cad}\N{U+0cbe}"
    ],
    day_stand_alone_wide => [
      "\N{U+0cb8}\N{U+0ccb}\N{U+0cae}\N{U+0cb5}\N{U+0cbe}\N{U+0cb0}",
      "\N{U+0cae}\N{U+0c82}\N{U+0c97}\N{U+0cb3}\N{U+0cb5}\N{U+0cbe}\N{U+0cb0}",
      "\N{U+0cac}\N{U+0cc1}\N{U+0ca7}\N{U+0cb5}\N{U+0cbe}\N{U+0cb0}",
      "\N{U+0c97}\N{U+0cc1}\N{U+0cb0}\N{U+0cc1}\N{U+0cb5}\N{U+0cbe}\N{U+0cb0}",
      "\N{U+0cb6}\N{U+0cc1}\N{U+0c95}\N{U+0ccd}\N{U+0cb0}\N{U+0cb5}\N{U+0cbe}\N{U+0cb0}",
      "\N{U+0cb6}\N{U+0ca8}\N{U+0cbf}\N{U+0cb5}\N{U+0cbe}\N{U+0cb0}",
      "\N{U+0cad}\N{U+0cbe}\N{U+0ca8}\N{U+0cc1}\N{U+0cb5}\N{U+0cbe}\N{U+0cb0}"
    ],
    era_abbreviated => [
      "\N{U+0c95}\N{U+0ccd}\N{U+0cb0}\N{U+0cbf}.\N{U+0caa}\N{U+0cc2}",
      "\N{U+0c95}\N{U+0ccd}\N{U+0cb0}\N{U+0cbf}.\N{U+0cb6}"
    ],
    era_narrow => [
      "\N{U+0c95}\N{U+0ccd}\N{U+0cb0}\N{U+0cbf}.\N{U+0caa}\N{U+0cc2}",
      "\N{U+0c95}\N{U+0ccd}\N{U+0cb0}\N{U+0cbf}.\N{U+0cb6}"
    ],
    era_wide => [
      "\N{U+0c95}\N{U+0ccd}\N{U+0cb0}\N{U+0cbf}\N{U+0cb8}\N{U+0ccd}\N{U+0ca4} \N{U+0caa}\N{U+0cc2}\N{U+0cb0}\N{U+0ccd}\N{U+0cb5}",
      "\N{U+0c95}\N{U+0ccd}\N{U+0cb0}\N{U+0cbf}\N{U+0cb8}\N{U+0ccd}\N{U+0ca4} \N{U+0cb6}\N{U+0c95}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%A %d %b %Y",
    glibc_datetime_format => "%A %d %b %Y %I:%M:%S %p %Z",
    glibc_time_12_format => "%I:%M:%S %p %Z",
    glibc_time_format => "%I:%M:%S  %Z",
    language => "Kannada",
    month_format_abbreviated => [
      "\N{U+0c9c}\N{U+0ca8}",
      "\N{U+0cab}\N{U+0cc6}\N{U+0cac}\N{U+0ccd}\N{U+0cb0}",
      "\N{U+0cae}\N{U+0cbe}\N{U+0cb0}\N{U+0ccd}\N{U+0c9a}\N{U+0ccd}",
      "\N{U+0c8f}\N{U+0caa}\N{U+0ccd}\N{U+0cb0}\N{U+0cbf}",
      "\N{U+0cae}\N{U+0cc7}",
      "\N{U+0c9c}\N{U+0cc2}\N{U+0ca8}\N{U+0ccd}",
      "\N{U+0c9c}\N{U+0cc1}\N{U+0cb2}\N{U+0cc8}",
      "\N{U+0c86}\N{U+0c97}",
      "\N{U+0cb8}\N{U+0cc6}\N{U+0caa}\N{U+0ccd}\N{U+0c9f}\N{U+0cc6}\N{U+0c82}",
      "\N{U+0c85}\N{U+0c95}\N{U+0ccd}\N{U+0c9f}\N{U+0ccb}",
      "\N{U+0ca8}\N{U+0cb5}\N{U+0cc6}\N{U+0c82}",
      "\N{U+0ca1}\N{U+0cbf}\N{U+0cb8}\N{U+0cc6}\N{U+0c82}"
    ],
    month_format_narrow => [
      "\N{U+0c9c}",
      "\N{U+0cab}\N{U+0cc6}",
      "\N{U+0cae}\N{U+0cbe}",
      "\N{U+0c8f}",
      "\N{U+0cae}\N{U+0cc7}",
      "\N{U+0c9c}\N{U+0cc2}",
      "\N{U+0c9c}\N{U+0cc1}",
      "\N{U+0c86}",
      "\N{U+0cb8}\N{U+0cc6}",
      "\N{U+0c85}",
      "\N{U+0ca8}",
      "\N{U+0ca1}\N{U+0cbf}"
    ],
    month_format_wide => [
      "\N{U+0c9c}\N{U+0ca8}\N{U+0cb5}\N{U+0cb0}\N{U+0cbf}",
      "\N{U+0cab}\N{U+0cc6}\N{U+0cac}\N{U+0ccd}\N{U+0cb0}\N{U+0cb5}\N{U+0cb0}\N{U+0cbf}",
      "\N{U+0cae}\N{U+0cbe}\N{U+0cb0}\N{U+0ccd}\N{U+0c9a}\N{U+0ccd}",
      "\N{U+0c8f}\N{U+0caa}\N{U+0ccd}\N{U+0cb0}\N{U+0cbf}\N{U+0cb2}\N{U+0ccd}",
      "\N{U+0cae}\N{U+0cc7}",
      "\N{U+0c9c}\N{U+0cc2}\N{U+0ca8}\N{U+0ccd}",
      "\N{U+0c9c}\N{U+0cc1}\N{U+0cb2}\N{U+0cc8}",
      "\N{U+0c86}\N{U+0c97}\N{U+0cb8}\N{U+0ccd}\N{U+0c9f}\N{U+0ccd}",
      "\N{U+0cb8}\N{U+0cc6}\N{U+0caa}\N{U+0ccd}\N{U+0c9f}\N{U+0cc6}\N{U+0c82}\N{U+0cac}\N{U+0cb0}\N{U+0ccd}",
      "\N{U+0c85}\N{U+0c95}\N{U+0ccd}\N{U+0c9f}\N{U+0ccb}\N{U+0cac}\N{U+0cb0}\N{U+0ccd}",
      "\N{U+0ca8}\N{U+0cb5}\N{U+0cc6}\N{U+0c82}\N{U+0cac}\N{U+0cb0}\N{U+0ccd}",
      "\N{U+0ca1}\N{U+0cbf}\N{U+0cb8}\N{U+0cc6}\N{U+0c82}\N{U+0cac}\N{U+0cb0}\N{U+0ccd}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0c9c}\N{U+0ca8}",
      "\N{U+0cab}\N{U+0cc6}\N{U+0cac}\N{U+0ccd}\N{U+0cb0}",
      "\N{U+0cae}\N{U+0cbe}\N{U+0cb0}\N{U+0ccd}\N{U+0c9a}\N{U+0ccd}",
      "\N{U+0c8f}\N{U+0caa}\N{U+0ccd}\N{U+0cb0}\N{U+0cbf}",
      "\N{U+0cae}\N{U+0cc7}",
      "\N{U+0c9c}\N{U+0cc2}\N{U+0ca8}\N{U+0ccd}",
      "\N{U+0c9c}\N{U+0cc1}\N{U+0cb2}\N{U+0cc8}",
      "\N{U+0c86}\N{U+0c97}",
      "\N{U+0cb8}\N{U+0cc6}\N{U+0caa}\N{U+0ccd}\N{U+0c9f}\N{U+0cc6}\N{U+0c82}",
      "\N{U+0c85}\N{U+0c95}\N{U+0ccd}\N{U+0c9f}\N{U+0ccb}",
      "\N{U+0ca8}\N{U+0cb5}\N{U+0cc6}\N{U+0c82}",
      "\N{U+0ca1}\N{U+0cbf}\N{U+0cb8}\N{U+0cc6}\N{U+0c82}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0c9c}",
      "\N{U+0cab}\N{U+0cc6}",
      "\N{U+0cae}\N{U+0cbe}",
      "\N{U+0c8f}",
      "\N{U+0cae}\N{U+0cc7}",
      "\N{U+0c9c}\N{U+0cc2}",
      "\N{U+0c9c}\N{U+0cc1}",
      "\N{U+0c86}",
      "\N{U+0cb8}\N{U+0cc6}",
      "\N{U+0c85}",
      "\N{U+0ca8}",
      "\N{U+0ca1}\N{U+0cbf}"
    ],
    month_stand_alone_wide => [
      "\N{U+0c9c}\N{U+0ca8}\N{U+0cb5}\N{U+0cb0}\N{U+0cbf}",
      "\N{U+0cab}\N{U+0cc6}\N{U+0cac}\N{U+0ccd}\N{U+0cb0}\N{U+0cb5}\N{U+0cb0}\N{U+0cbf}",
      "\N{U+0cae}\N{U+0cbe}\N{U+0cb0}\N{U+0ccd}\N{U+0c9a}\N{U+0ccd}",
      "\N{U+0c8f}\N{U+0caa}\N{U+0ccd}\N{U+0cb0}\N{U+0cbf}\N{U+0cb2}\N{U+0ccd}",
      "\N{U+0cae}\N{U+0cc7}",
      "\N{U+0c9c}\N{U+0cc2}\N{U+0ca8}\N{U+0ccd}",
      "\N{U+0c9c}\N{U+0cc1}\N{U+0cb2}\N{U+0cc8}",
      "\N{U+0c86}\N{U+0c97}\N{U+0cb8}\N{U+0ccd}\N{U+0c9f}\N{U+0ccd}",
      "\N{U+0cb8}\N{U+0cc6}\N{U+0caa}\N{U+0ccd}\N{U+0c9f}\N{U+0cc6}\N{U+0c82}\N{U+0cac}\N{U+0cb0}\N{U+0ccd}",
      "\N{U+0c85}\N{U+0c95}\N{U+0ccd}\N{U+0c9f}\N{U+0ccb}\N{U+0cac}\N{U+0cb0}\N{U+0ccd}",
      "\N{U+0ca8}\N{U+0cb5}\N{U+0cc6}\N{U+0c82}\N{U+0cac}\N{U+0cb0}\N{U+0ccd}",
      "\N{U+0ca1}\N{U+0cbf}\N{U+0cb8}\N{U+0cc6}\N{U+0c82}\N{U+0cac}\N{U+0cb0}\N{U+0ccd}"
    ],
    name => "Kannada India",
    native_language => "\N{U+0c95}\N{U+0ca8}\N{U+0ccd}\N{U+0ca8}\N{U+0ca1}",
    native_name => "\N{U+0c95}\N{U+0ca8}\N{U+0ccd}\N{U+0ca8}\N{U+0ca1} \N{U+0cad}\N{U+0cbe}\N{U+0cb0}\N{U+0ca4}",
    native_script => undef,
    native_territory => "\N{U+0cad}\N{U+0cbe}\N{U+0cb0}\N{U+0ca4}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8} 1",
      "\N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8} 2",
      "\N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8} 3",
      "\N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8} 4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1\N{U+0ca8}\N{U+0cc7} \N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8}\N{U+0cae}\N{U+0cbe}\N{U+0cb8}\N{U+0cbf}\N{U+0c95}",
      "2\N{U+0ca8}\N{U+0cc7} \N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8}\N{U+0cae}\N{U+0cbe}\N{U+0cb8}\N{U+0cbf}\N{U+0c95}",
      "3\N{U+0ca8}\N{U+0cc7} \N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8}\N{U+0cae}\N{U+0cbe}\N{U+0cb8}\N{U+0cbf}\N{U+0c95}",
      "4\N{U+0ca8}\N{U+0cc7} \N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8}\N{U+0cae}\N{U+0cbe}\N{U+0cb8}\N{U+0cbf}\N{U+0c95}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8} 1",
      "\N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8} 2",
      "\N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8} 3",
      "\N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8} 4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1\N{U+0ca8}\N{U+0cc7} \N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8}\N{U+0cae}\N{U+0cbe}\N{U+0cb8}\N{U+0cbf}\N{U+0c95}",
      "2\N{U+0ca8}\N{U+0cc7} \N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8}\N{U+0cae}\N{U+0cbe}\N{U+0cb8}\N{U+0cbf}\N{U+0c95}",
      "3\N{U+0ca8}\N{U+0cc7} \N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8}\N{U+0cae}\N{U+0cbe}\N{U+0cb8}\N{U+0cbf}\N{U+0c95}",
      "4\N{U+0ca8}\N{U+0cc7} \N{U+0ca4}\N{U+0ccd}\N{U+0cb0}\N{U+0cc8}\N{U+0cae}\N{U+0cbe}\N{U+0cb8}\N{U+0cbf}\N{U+0c95}"
    ],
    script => undef,
    territory => "India",
    time_format_full => "hh:mm:ss a zzzz",
    time_format_long => "hh:mm:ss a z",
    time_format_medium => "hh:mm:ss a",
    time_format_short => "hh:mm a",
    variant => undef,
    version => 28
  }
  __[ ko ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EEEEd => "d\N{U+c77c} EEEE",
      EHm => "(E) HH:mm",
      EHms => "(E) HH:mm:ss",
      Ed => "d\N{U+c77c} (E)",
      Ehm => "(E) a h:mm",
      Ehms => "(E) a h:mm:ss",
      Gy => "G y\N{U+b144}",
      GyMMM => "G y\N{U+b144} MMM",
      GyMMMEEEEd => "G y\N{U+b144} MMM d\N{U+c77c} EEEE",
      GyMMMEd => "G y\N{U+b144} MMM d\N{U+c77c} (E)",
      GyMMMd => "G y\N{U+b144} MMM d\N{U+c77c}",
      H => "H\N{U+c2dc}",
      HHmmss => "HH:mm:ss",
      Hm => "HH:mm",
      Hms => "H\N{U+c2dc} m\N{U+bd84} s\N{U+cd08}",
      Hmsv => "H\N{U+c2dc} m\N{U+bd84} s\N{U+cd08} v",
      Hmv => "HH:mm v",
      M => "M\N{U+c6d4}",
      MEEEEd => "M. d. EEEE",
      MEd => "M. d. (E)",
      MMM => "LLL",
      MMMEEEEd => "MMM d\N{U+c77c} EEEE",
      MMMEd => "MMM d\N{U+c77c} (E)",
      MMMMd => "MMMM d\N{U+c77c}",
      MMMd => "MMM d\N{U+c77c}",
      Md => "M. d.",
      d => "d\N{U+c77c}",
      h => "a h\N{U+c2dc}",
      hm => "a h:mm",
      hms => "a h:mm:ss",
      hmsv => "a h:mm:ss v",
      hmv => "a h:mm v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y\N{U+b144}",
      yM => "y. M.",
      yMEEEEd => "y. M. d. EEEE",
      yMEd => "y. M. d. (E)",
      yMM => "y. M.",
      yMMM => "y\N{U+b144} MMM",
      yMMMEEEEd => "y\N{U+b144} MMM d\N{U+c77c} EEEE",
      yMMMEd => "y\N{U+b144} MMM d\N{U+c77c} (E)",
      yMMMM => "y\N{U+b144} MMMM",
      yMMMd => "y\N{U+b144} MMM d\N{U+c77c}",
      yMd => "y. M. d.",
      yQQQ => "y\N{U+b144} QQQ",
      yQQQQ => "y\N{U+b144} QQQQ"
    },
    code => "ko",
    date_format_full => "y\N{U+b144} M\N{U+c6d4} d\N{U+c77c} EEEE",
    date_format_long => "y\N{U+b144} M\N{U+c6d4} d\N{U+c77c}",
    date_format_medium => "y. M. d.",
    date_format_short => "yy. M. d.",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+c6d4}",
      "\N{U+d654}",
      "\N{U+c218}",
      "\N{U+baa9}",
      "\N{U+ae08}",
      "\N{U+d1a0}",
      "\N{U+c77c}"
    ],
    day_format_narrow => [
      "\N{U+c6d4}",
      "\N{U+d654}",
      "\N{U+c218}",
      "\N{U+baa9}",
      "\N{U+ae08}",
      "\N{U+d1a0}",
      "\N{U+c77c}"
    ],
    day_format_wide => [
      "\N{U+c6d4}\N{U+c694}\N{U+c77c}",
      "\N{U+d654}\N{U+c694}\N{U+c77c}",
      "\N{U+c218}\N{U+c694}\N{U+c77c}",
      "\N{U+baa9}\N{U+c694}\N{U+c77c}",
      "\N{U+ae08}\N{U+c694}\N{U+c77c}",
      "\N{U+d1a0}\N{U+c694}\N{U+c77c}",
      "\N{U+c77c}\N{U+c694}\N{U+c77c}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+c6d4}",
      "\N{U+d654}",
      "\N{U+c218}",
      "\N{U+baa9}",
      "\N{U+ae08}",
      "\N{U+d1a0}",
      "\N{U+c77c}"
    ],
    day_stand_alone_narrow => [
      "\N{U+c6d4}",
      "\N{U+d654}",
      "\N{U+c218}",
      "\N{U+baa9}",
      "\N{U+ae08}",
      "\N{U+d1a0}",
      "\N{U+c77c}"
    ],
    day_stand_alone_wide => [
      "\N{U+c6d4}\N{U+c694}\N{U+c77c}",
      "\N{U+d654}\N{U+c694}\N{U+c77c}",
      "\N{U+c218}\N{U+c694}\N{U+c77c}",
      "\N{U+baa9}\N{U+c694}\N{U+c77c}",
      "\N{U+ae08}\N{U+c694}\N{U+c77c}",
      "\N{U+d1a0}\N{U+c694}\N{U+c77c}",
      "\N{U+c77c}\N{U+c694}\N{U+c77c}"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "\N{U+ae30}\N{U+c6d0}\N{U+c804}",
      "\N{U+c11c}\N{U+ae30}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Korean",
    month_format_abbreviated => [
      "1\N{U+c6d4}",
      "2\N{U+c6d4}",
      "3\N{U+c6d4}",
      "4\N{U+c6d4}",
      "5\N{U+c6d4}",
      "6\N{U+c6d4}",
      "7\N{U+c6d4}",
      "8\N{U+c6d4}",
      "9\N{U+c6d4}",
      "10\N{U+c6d4}",
      "11\N{U+c6d4}",
      "12\N{U+c6d4}"
    ],
    month_format_narrow => [
      "1\N{U+c6d4}",
      "2\N{U+c6d4}",
      "3\N{U+c6d4}",
      "4\N{U+c6d4}",
      "5\N{U+c6d4}",
      "6\N{U+c6d4}",
      "7\N{U+c6d4}",
      "8\N{U+c6d4}",
      "9\N{U+c6d4}",
      "10\N{U+c6d4}",
      "11\N{U+c6d4}",
      "12\N{U+c6d4}"
    ],
    month_format_wide => [
      "1\N{U+c6d4}",
      "2\N{U+c6d4}",
      "3\N{U+c6d4}",
      "4\N{U+c6d4}",
      "5\N{U+c6d4}",
      "6\N{U+c6d4}",
      "7\N{U+c6d4}",
      "8\N{U+c6d4}",
      "9\N{U+c6d4}",
      "10\N{U+c6d4}",
      "11\N{U+c6d4}",
      "12\N{U+c6d4}"
    ],
    month_stand_alone_abbreviated => [
      "1\N{U+c6d4}",
      "2\N{U+c6d4}",
      "3\N{U+c6d4}",
      "4\N{U+c6d4}",
      "5\N{U+c6d4}",
      "6\N{U+c6d4}",
      "7\N{U+c6d4}",
      "8\N{U+c6d4}",
      "9\N{U+c6d4}",
      "10\N{U+c6d4}",
      "11\N{U+c6d4}",
      "12\N{U+c6d4}"
    ],
    month_stand_alone_narrow => [
      "1\N{U+c6d4}",
      "2\N{U+c6d4}",
      "3\N{U+c6d4}",
      "4\N{U+c6d4}",
      "5\N{U+c6d4}",
      "6\N{U+c6d4}",
      "7\N{U+c6d4}",
      "8\N{U+c6d4}",
      "9\N{U+c6d4}",
      "10\N{U+c6d4}",
      "11\N{U+c6d4}",
      "12\N{U+c6d4}"
    ],
    month_stand_alone_wide => [
      "1\N{U+c6d4}",
      "2\N{U+c6d4}",
      "3\N{U+c6d4}",
      "4\N{U+c6d4}",
      "5\N{U+c6d4}",
      "6\N{U+c6d4}",
      "7\N{U+c6d4}",
      "8\N{U+c6d4}",
      "9\N{U+c6d4}",
      "10\N{U+c6d4}",
      "11\N{U+c6d4}",
      "12\N{U+c6d4}"
    ],
    name => "Korean",
    native_language => "\N{U+d55c}\N{U+ad6d}\N{U+c5b4}",
    native_name => "\N{U+d55c}\N{U+ad6d}\N{U+c5b4}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "1\N{U+bd84}\N{U+ae30}",
      "2\N{U+bd84}\N{U+ae30}",
      "3\N{U+bd84}\N{U+ae30}",
      "4\N{U+bd84}\N{U+ae30}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+c81c} 1/4\N{U+bd84}\N{U+ae30}",
      "\N{U+c81c} 2/4\N{U+bd84}\N{U+ae30}",
      "\N{U+c81c} 3/4\N{U+bd84}\N{U+ae30}",
      "\N{U+c81c} 4/4\N{U+bd84}\N{U+ae30}"
    ],
    quarter_stand_alone_abbreviated => [
      "1\N{U+bd84}\N{U+ae30}",
      "2\N{U+bd84}\N{U+ae30}",
      "3\N{U+bd84}\N{U+ae30}",
      "4\N{U+bd84}\N{U+ae30}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+c81c} 1/4\N{U+bd84}\N{U+ae30}",
      "\N{U+c81c} 2/4\N{U+bd84}\N{U+ae30}",
      "\N{U+c81c} 3/4\N{U+bd84}\N{U+ae30}",
      "\N{U+c81c} 4/4\N{U+bd84}\N{U+ae30}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "a h\N{U+c2dc} m\N{U+bd84} s\N{U+cd08} zzzz",
    time_format_long => "a h\N{U+c2dc} m\N{U+bd84} s\N{U+cd08} z",
    time_format_medium => "a h:mm:ss",
    time_format_short => "a h:mm",
    variant => undef,
    version => 28
  }
  __[ ko-KP ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EEEEd => "d\N{U+c77c} EEEE",
      EHm => "(E) HH:mm",
      EHms => "(E) HH:mm:ss",
      Ed => "d\N{U+c77c} (E)",
      Ehm => "(E) a h:mm",
      Ehms => "(E) a h:mm:ss",
      Gy => "G y\N{U+b144}",
      GyMMM => "G y\N{U+b144} MMM",
      GyMMMEEEEd => "G y\N{U+b144} MMM d\N{U+c77c} EEEE",
      GyMMMEd => "G y\N{U+b144} MMM d\N{U+c77c} (E)",
      GyMMMd => "G y\N{U+b144} MMM d\N{U+c77c}",
      H => "H\N{U+c2dc}",
      HHmmss => "HH:mm:ss",
      Hm => "HH:mm",
      Hms => "H\N{U+c2dc} m\N{U+bd84} s\N{U+cd08}",
      Hmsv => "H\N{U+c2dc} m\N{U+bd84} s\N{U+cd08} v",
      Hmv => "HH:mm v",
      M => "M\N{U+c6d4}",
      MEEEEd => "M. d. EEEE",
      MEd => "M. d. (E)",
      MMM => "LLL",
      MMMEEEEd => "MMM d\N{U+c77c} EEEE",
      MMMEd => "MMM d\N{U+c77c} (E)",
      MMMMd => "MMMM d\N{U+c77c}",
      MMMd => "MMM d\N{U+c77c}",
      Md => "M. d.",
      d => "d\N{U+c77c}",
      h => "a h\N{U+c2dc}",
      hm => "a h:mm",
      hms => "a h:mm:ss",
      hmsv => "a h:mm:ss v",
      hmv => "a h:mm v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y\N{U+b144}",
      yM => "y. M.",
      yMEEEEd => "y. M. d. EEEE",
      yMEd => "y. M. d. (E)",
      yMM => "y. M.",
      yMMM => "y\N{U+b144} MMM",
      yMMMEEEEd => "y\N{U+b144} MMM d\N{U+c77c} EEEE",
      yMMMEd => "y\N{U+b144} MMM d\N{U+c77c} (E)",
      yMMMM => "y\N{U+b144} MMMM",
      yMMMd => "y\N{U+b144} MMM d\N{U+c77c}",
      yMd => "y. M. d.",
      yQQQ => "y\N{U+b144} QQQ",
      yQQQQ => "y\N{U+b144} QQQQ"
    },
    code => "ko-KP",
    date_format_full => "y\N{U+b144} M\N{U+c6d4} d\N{U+c77c} EEEE",
    date_format_long => "y\N{U+b144} M\N{U+c6d4} d\N{U+c77c}",
    date_format_medium => "y. M. d.",
    date_format_short => "yy. M. d.",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+c6d4}",
      "\N{U+d654}",
      "\N{U+c218}",
      "\N{U+baa9}",
      "\N{U+ae08}",
      "\N{U+d1a0}",
      "\N{U+c77c}"
    ],
    day_format_narrow => [
      "\N{U+c6d4}",
      "\N{U+d654}",
      "\N{U+c218}",
      "\N{U+baa9}",
      "\N{U+ae08}",
      "\N{U+d1a0}",
      "\N{U+c77c}"
    ],
    day_format_wide => [
      "\N{U+c6d4}\N{U+c694}\N{U+c77c}",
      "\N{U+d654}\N{U+c694}\N{U+c77c}",
      "\N{U+c218}\N{U+c694}\N{U+c77c}",
      "\N{U+baa9}\N{U+c694}\N{U+c77c}",
      "\N{U+ae08}\N{U+c694}\N{U+c77c}",
      "\N{U+d1a0}\N{U+c694}\N{U+c77c}",
      "\N{U+c77c}\N{U+c694}\N{U+c77c}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+c6d4}",
      "\N{U+d654}",
      "\N{U+c218}",
      "\N{U+baa9}",
      "\N{U+ae08}",
      "\N{U+d1a0}",
      "\N{U+c77c}"
    ],
    day_stand_alone_narrow => [
      "\N{U+c6d4}",
      "\N{U+d654}",
      "\N{U+c218}",
      "\N{U+baa9}",
      "\N{U+ae08}",
      "\N{U+d1a0}",
      "\N{U+c77c}"
    ],
    day_stand_alone_wide => [
      "\N{U+c6d4}\N{U+c694}\N{U+c77c}",
      "\N{U+d654}\N{U+c694}\N{U+c77c}",
      "\N{U+c218}\N{U+c694}\N{U+c77c}",
      "\N{U+baa9}\N{U+c694}\N{U+c77c}",
      "\N{U+ae08}\N{U+c694}\N{U+c77c}",
      "\N{U+d1a0}\N{U+c694}\N{U+c77c}",
      "\N{U+c77c}\N{U+c694}\N{U+c77c}"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "\N{U+ae30}\N{U+c6d0}\N{U+c804}",
      "\N{U+c11c}\N{U+ae30}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Korean",
    month_format_abbreviated => [
      "1\N{U+c6d4}",
      "2\N{U+c6d4}",
      "3\N{U+c6d4}",
      "4\N{U+c6d4}",
      "5\N{U+c6d4}",
      "6\N{U+c6d4}",
      "7\N{U+c6d4}",
      "8\N{U+c6d4}",
      "9\N{U+c6d4}",
      "10\N{U+c6d4}",
      "11\N{U+c6d4}",
      "12\N{U+c6d4}"
    ],
    month_format_narrow => [
      "1\N{U+c6d4}",
      "2\N{U+c6d4}",
      "3\N{U+c6d4}",
      "4\N{U+c6d4}",
      "5\N{U+c6d4}",
      "6\N{U+c6d4}",
      "7\N{U+c6d4}",
      "8\N{U+c6d4}",
      "9\N{U+c6d4}",
      "10\N{U+c6d4}",
      "11\N{U+c6d4}",
      "12\N{U+c6d4}"
    ],
    month_format_wide => [
      "1\N{U+c6d4}",
      "2\N{U+c6d4}",
      "3\N{U+c6d4}",
      "4\N{U+c6d4}",
      "5\N{U+c6d4}",
      "6\N{U+c6d4}",
      "7\N{U+c6d4}",
      "8\N{U+c6d4}",
      "9\N{U+c6d4}",
      "10\N{U+c6d4}",
      "11\N{U+c6d4}",
      "12\N{U+c6d4}"
    ],
    month_stand_alone_abbreviated => [
      "1\N{U+c6d4}",
      "2\N{U+c6d4}",
      "3\N{U+c6d4}",
      "4\N{U+c6d4}",
      "5\N{U+c6d4}",
      "6\N{U+c6d4}",
      "7\N{U+c6d4}",
      "8\N{U+c6d4}",
      "9\N{U+c6d4}",
      "10\N{U+c6d4}",
      "11\N{U+c6d4}",
      "12\N{U+c6d4}"
    ],
    month_stand_alone_narrow => [
      "1\N{U+c6d4}",
      "2\N{U+c6d4}",
      "3\N{U+c6d4}",
      "4\N{U+c6d4}",
      "5\N{U+c6d4}",
      "6\N{U+c6d4}",
      "7\N{U+c6d4}",
      "8\N{U+c6d4}",
      "9\N{U+c6d4}",
      "10\N{U+c6d4}",
      "11\N{U+c6d4}",
      "12\N{U+c6d4}"
    ],
    month_stand_alone_wide => [
      "1\N{U+c6d4}",
      "2\N{U+c6d4}",
      "3\N{U+c6d4}",
      "4\N{U+c6d4}",
      "5\N{U+c6d4}",
      "6\N{U+c6d4}",
      "7\N{U+c6d4}",
      "8\N{U+c6d4}",
      "9\N{U+c6d4}",
      "10\N{U+c6d4}",
      "11\N{U+c6d4}",
      "12\N{U+c6d4}"
    ],
    name => "Korean North Korea",
    native_language => "\N{U+d55c}\N{U+ad6d}\N{U+c5b4}",
    native_name => "\N{U+d55c}\N{U+ad6d}\N{U+c5b4} \N{U+c870}\N{U+c120}\N{U+bbfc}\N{U+c8fc}\N{U+c8fc}\N{U+c758}\N{U+c778}\N{U+bbfc}\N{U+acf5}\N{U+d654}\N{U+ad6d}",
    native_script => undef,
    native_territory => "\N{U+c870}\N{U+c120}\N{U+bbfc}\N{U+c8fc}\N{U+c8fc}\N{U+c758}\N{U+c778}\N{U+bbfc}\N{U+acf5}\N{U+d654}\N{U+ad6d}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1\N{U+bd84}\N{U+ae30}",
      "2\N{U+bd84}\N{U+ae30}",
      "3\N{U+bd84}\N{U+ae30}",
      "4\N{U+bd84}\N{U+ae30}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+c81c} 1/4\N{U+bd84}\N{U+ae30}",
      "\N{U+c81c} 2/4\N{U+bd84}\N{U+ae30}",
      "\N{U+c81c} 3/4\N{U+bd84}\N{U+ae30}",
      "\N{U+c81c} 4/4\N{U+bd84}\N{U+ae30}"
    ],
    quarter_stand_alone_abbreviated => [
      "1\N{U+bd84}\N{U+ae30}",
      "2\N{U+bd84}\N{U+ae30}",
      "3\N{U+bd84}\N{U+ae30}",
      "4\N{U+bd84}\N{U+ae30}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+c81c} 1/4\N{U+bd84}\N{U+ae30}",
      "\N{U+c81c} 2/4\N{U+bd84}\N{U+ae30}",
      "\N{U+c81c} 3/4\N{U+bd84}\N{U+ae30}",
      "\N{U+c81c} 4/4\N{U+bd84}\N{U+ae30}"
    ],
    script => undef,
    territory => "North Korea",
    time_format_full => "a h\N{U+c2dc} m\N{U+bd84} s\N{U+cd08} zzzz",
    time_format_long => "a h\N{U+c2dc} m\N{U+bd84} s\N{U+cd08} z",
    time_format_medium => "a h:mm:ss",
    time_format_short => "a h:mm",
    variant => undef,
    version => 28
  }
  __[ ko-KR ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EEEEd => "d\N{U+c77c} EEEE",
      EHm => "(E) HH:mm",
      EHms => "(E) HH:mm:ss",
      Ed => "d\N{U+c77c} (E)",
      Ehm => "(E) a h:mm",
      Ehms => "(E) a h:mm:ss",
      Gy => "G y\N{U+b144}",
      GyMMM => "G y\N{U+b144} MMM",
      GyMMMEEEEd => "G y\N{U+b144} MMM d\N{U+c77c} EEEE",
      GyMMMEd => "G y\N{U+b144} MMM d\N{U+c77c} (E)",
      GyMMMd => "G y\N{U+b144} MMM d\N{U+c77c}",
      H => "H\N{U+c2dc}",
      HHmmss => "HH:mm:ss",
      Hm => "HH:mm",
      Hms => "H\N{U+c2dc} m\N{U+bd84} s\N{U+cd08}",
      Hmsv => "H\N{U+c2dc} m\N{U+bd84} s\N{U+cd08} v",
      Hmv => "HH:mm v",
      M => "M\N{U+c6d4}",
      MEEEEd => "M. d. EEEE",
      MEd => "M. d. (E)",
      MMM => "LLL",
      MMMEEEEd => "MMM d\N{U+c77c} EEEE",
      MMMEd => "MMM d\N{U+c77c} (E)",
      MMMMd => "MMMM d\N{U+c77c}",
      MMMd => "MMM d\N{U+c77c}",
      Md => "M. d.",
      d => "d\N{U+c77c}",
      h => "a h\N{U+c2dc}",
      hm => "a h:mm",
      hms => "a h:mm:ss",
      hmsv => "a h:mm:ss v",
      hmv => "a h:mm v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y\N{U+b144}",
      yM => "y. M.",
      yMEEEEd => "y. M. d. EEEE",
      yMEd => "y. M. d. (E)",
      yMM => "y. M.",
      yMMM => "y\N{U+b144} MMM",
      yMMMEEEEd => "y\N{U+b144} MMM d\N{U+c77c} EEEE",
      yMMMEd => "y\N{U+b144} MMM d\N{U+c77c} (E)",
      yMMMM => "y\N{U+b144} MMMM",
      yMMMd => "y\N{U+b144} MMM d\N{U+c77c}",
      yMd => "y. M. d.",
      yQQQ => "y\N{U+b144} QQQ",
      yQQQQ => "y\N{U+b144} QQQQ"
    },
    code => "ko-KR",
    date_format_full => "y\N{U+b144} M\N{U+c6d4} d\N{U+c77c} EEEE",
    date_format_long => "y\N{U+b144} M\N{U+c6d4} d\N{U+c77c}",
    date_format_medium => "y. M. d.",
    date_format_short => "yy. M. d.",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+c6d4}",
      "\N{U+d654}",
      "\N{U+c218}",
      "\N{U+baa9}",
      "\N{U+ae08}",
      "\N{U+d1a0}",
      "\N{U+c77c}"
    ],
    day_format_narrow => [
      "\N{U+c6d4}",
      "\N{U+d654}",
      "\N{U+c218}",
      "\N{U+baa9}",
      "\N{U+ae08}",
      "\N{U+d1a0}",
      "\N{U+c77c}"
    ],
    day_format_wide => [
      "\N{U+c6d4}\N{U+c694}\N{U+c77c}",
      "\N{U+d654}\N{U+c694}\N{U+c77c}",
      "\N{U+c218}\N{U+c694}\N{U+c77c}",
      "\N{U+baa9}\N{U+c694}\N{U+c77c}",
      "\N{U+ae08}\N{U+c694}\N{U+c77c}",
      "\N{U+d1a0}\N{U+c694}\N{U+c77c}",
      "\N{U+c77c}\N{U+c694}\N{U+c77c}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+c6d4}",
      "\N{U+d654}",
      "\N{U+c218}",
      "\N{U+baa9}",
      "\N{U+ae08}",
      "\N{U+d1a0}",
      "\N{U+c77c}"
    ],
    day_stand_alone_narrow => [
      "\N{U+c6d4}",
      "\N{U+d654}",
      "\N{U+c218}",
      "\N{U+baa9}",
      "\N{U+ae08}",
      "\N{U+d1a0}",
      "\N{U+c77c}"
    ],
    day_stand_alone_wide => [
      "\N{U+c6d4}\N{U+c694}\N{U+c77c}",
      "\N{U+d654}\N{U+c694}\N{U+c77c}",
      "\N{U+c218}\N{U+c694}\N{U+c77c}",
      "\N{U+baa9}\N{U+c694}\N{U+c77c}",
      "\N{U+ae08}\N{U+c694}\N{U+c77c}",
      "\N{U+d1a0}\N{U+c694}\N{U+c77c}",
      "\N{U+c77c}\N{U+c694}\N{U+c77c}"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "\N{U+ae30}\N{U+c6d0}\N{U+c804}",
      "\N{U+c11c}\N{U+ae30}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%x (%a) %r",
    glibc_time_12_format => "%p %I\N{U+c2dc} %M\N{U+bd84} %S\N{U+cd08}",
    glibc_time_format => "%H\N{U+c2dc} %M\N{U+bd84} %S\N{U+cd08}",
    language => "Korean",
    month_format_abbreviated => [
      "1\N{U+c6d4}",
      "2\N{U+c6d4}",
      "3\N{U+c6d4}",
      "4\N{U+c6d4}",
      "5\N{U+c6d4}",
      "6\N{U+c6d4}",
      "7\N{U+c6d4}",
      "8\N{U+c6d4}",
      "9\N{U+c6d4}",
      "10\N{U+c6d4}",
      "11\N{U+c6d4}",
      "12\N{U+c6d4}"
    ],
    month_format_narrow => [
      "1\N{U+c6d4}",
      "2\N{U+c6d4}",
      "3\N{U+c6d4}",
      "4\N{U+c6d4}",
      "5\N{U+c6d4}",
      "6\N{U+c6d4}",
      "7\N{U+c6d4}",
      "8\N{U+c6d4}",
      "9\N{U+c6d4}",
      "10\N{U+c6d4}",
      "11\N{U+c6d4}",
      "12\N{U+c6d4}"
    ],
    month_format_wide => [
      "1\N{U+c6d4}",
      "2\N{U+c6d4}",
      "3\N{U+c6d4}",
      "4\N{U+c6d4}",
      "5\N{U+c6d4}",
      "6\N{U+c6d4}",
      "7\N{U+c6d4}",
      "8\N{U+c6d4}",
      "9\N{U+c6d4}",
      "10\N{U+c6d4}",
      "11\N{U+c6d4}",
      "12\N{U+c6d4}"
    ],
    month_stand_alone_abbreviated => [
      "1\N{U+c6d4}",
      "2\N{U+c6d4}",
      "3\N{U+c6d4}",
      "4\N{U+c6d4}",
      "5\N{U+c6d4}",
      "6\N{U+c6d4}",
      "7\N{U+c6d4}",
      "8\N{U+c6d4}",
      "9\N{U+c6d4}",
      "10\N{U+c6d4}",
      "11\N{U+c6d4}",
      "12\N{U+c6d4}"
    ],
    month_stand_alone_narrow => [
      "1\N{U+c6d4}",
      "2\N{U+c6d4}",
      "3\N{U+c6d4}",
      "4\N{U+c6d4}",
      "5\N{U+c6d4}",
      "6\N{U+c6d4}",
      "7\N{U+c6d4}",
      "8\N{U+c6d4}",
      "9\N{U+c6d4}",
      "10\N{U+c6d4}",
      "11\N{U+c6d4}",
      "12\N{U+c6d4}"
    ],
    month_stand_alone_wide => [
      "1\N{U+c6d4}",
      "2\N{U+c6d4}",
      "3\N{U+c6d4}",
      "4\N{U+c6d4}",
      "5\N{U+c6d4}",
      "6\N{U+c6d4}",
      "7\N{U+c6d4}",
      "8\N{U+c6d4}",
      "9\N{U+c6d4}",
      "10\N{U+c6d4}",
      "11\N{U+c6d4}",
      "12\N{U+c6d4}"
    ],
    name => "Korean South Korea",
    native_language => "\N{U+d55c}\N{U+ad6d}\N{U+c5b4}",
    native_name => "\N{U+d55c}\N{U+ad6d}\N{U+c5b4} \N{U+b300}\N{U+d55c}\N{U+bbfc}\N{U+ad6d}",
    native_script => undef,
    native_territory => "\N{U+b300}\N{U+d55c}\N{U+bbfc}\N{U+ad6d}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1\N{U+bd84}\N{U+ae30}",
      "2\N{U+bd84}\N{U+ae30}",
      "3\N{U+bd84}\N{U+ae30}",
      "4\N{U+bd84}\N{U+ae30}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+c81c} 1/4\N{U+bd84}\N{U+ae30}",
      "\N{U+c81c} 2/4\N{U+bd84}\N{U+ae30}",
      "\N{U+c81c} 3/4\N{U+bd84}\N{U+ae30}",
      "\N{U+c81c} 4/4\N{U+bd84}\N{U+ae30}"
    ],
    quarter_stand_alone_abbreviated => [
      "1\N{U+bd84}\N{U+ae30}",
      "2\N{U+bd84}\N{U+ae30}",
      "3\N{U+bd84}\N{U+ae30}",
      "4\N{U+bd84}\N{U+ae30}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+c81c} 1/4\N{U+bd84}\N{U+ae30}",
      "\N{U+c81c} 2/4\N{U+bd84}\N{U+ae30}",
      "\N{U+c81c} 3/4\N{U+bd84}\N{U+ae30}",
      "\N{U+c81c} 4/4\N{U+bd84}\N{U+ae30}"
    ],
    script => undef,
    territory => "South Korea",
    time_format_full => "a h\N{U+c2dc} m\N{U+bd84} s\N{U+cd08} zzzz",
    time_format_long => "a h\N{U+c2dc} m\N{U+bd84} s\N{U+cd08} z",
    time_format_medium => "a h:mm:ss",
    time_format_short => "a h:mm",
    variant => undef,
    version => 28
  }
  __[ kok ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "kok",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0938}\N{U+094b}\N{U+092e}",
      "\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0933}",
      "\N{U+092c}\N{U+0941}\N{U+0927}",
      "\N{U+0917}\N{U+0941}\N{U+0930}\N{U+0941}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}",
      "\N{U+0930}\N{U+0935}\N{U+093f}"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "\N{U+0938}\N{U+094b}\N{U+092e}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0933}\N{U+093e}\N{U+0930}",
      "\N{U+092c}\N{U+0941}\N{U+0927}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0917}\N{U+0941}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0906}\N{U+0926}\N{U+093f}\N{U+0924}\N{U+094d}\N{U+092f}\N{U+0935}\N{U+093e}\N{U+0930}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0938}\N{U+094b}\N{U+092e}",
      "\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0933}",
      "\N{U+092c}\N{U+0941}\N{U+0927}",
      "\N{U+0917}\N{U+0941}\N{U+0930}\N{U+0941}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}",
      "\N{U+0930}\N{U+0935}\N{U+093f}"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "\N{U+0938}\N{U+094b}\N{U+092e}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0933}\N{U+093e}\N{U+0930}",
      "\N{U+092c}\N{U+0941}\N{U+0927}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0917}\N{U+0941}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0906}\N{U+0926}\N{U+093f}\N{U+0924}\N{U+094d}\N{U+092f}\N{U+0935}\N{U+093e}\N{U+0930}"
    ],
    era_abbreviated => [
      "\N{U+0915}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0938}\N{U+094d}\N{U+0924}\N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}",
      "\N{U+0915}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0938}\N{U+094d}\N{U+0924}\N{U+0936}\N{U+0916}\N{U+093e}"
    ],
    era_narrow => [
      "\N{U+0915}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0938}\N{U+094d}\N{U+0924}\N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}",
      "\N{U+0915}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0938}\N{U+094d}\N{U+0924}\N{U+0936}\N{U+0916}\N{U+093e}"
    ],
    era_wide => [
      "\N{U+0915}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0938}\N{U+094d}\N{U+0924}\N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}",
      "\N{U+0915}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0938}\N{U+094d}\N{U+0924}\N{U+0936}\N{U+0916}\N{U+093e}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Konkani",
    month_format_abbreviated => [
      "\N{U+091c}\N{U+093e}\N{U+0928}\N{U+0947}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+090f}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0942}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+0948}",
      "\N{U+0913}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+091f}",
      "\N{U+0938}\N{U+0947}\N{U+092a}\N{U+094d}\N{U+091f}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}",
      "\N{U+0913}\N{U+0915}\N{U+094d}\N{U+091f}\N{U+094b}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+094b}\N{U+0935}\N{U+094d}\N{U+0939}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}",
      "\N{U+0921}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+091c}\N{U+093e}\N{U+0928}\N{U+0947}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+090f}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0942}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+0948}",
      "\N{U+0913}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+091f}",
      "\N{U+0938}\N{U+0947}\N{U+092a}\N{U+094d}\N{U+091f}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}",
      "\N{U+0913}\N{U+0915}\N{U+094d}\N{U+091f}\N{U+094b}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+094b}\N{U+0935}\N{U+094d}\N{U+0939}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}",
      "\N{U+0921}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+091c}\N{U+093e}\N{U+0928}\N{U+0947}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+090f}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0942}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+0948}",
      "\N{U+0913}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+091f}",
      "\N{U+0938}\N{U+0947}\N{U+092a}\N{U+094d}\N{U+091f}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}",
      "\N{U+0913}\N{U+0915}\N{U+094d}\N{U+091f}\N{U+094b}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+094b}\N{U+0935}\N{U+094d}\N{U+0939}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}",
      "\N{U+0921}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+091c}\N{U+093e}\N{U+0928}\N{U+0947}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+090f}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0942}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+0948}",
      "\N{U+0913}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+091f}",
      "\N{U+0938}\N{U+0947}\N{U+092a}\N{U+094d}\N{U+091f}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}",
      "\N{U+0913}\N{U+0915}\N{U+094d}\N{U+091f}\N{U+094b}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+094b}\N{U+0935}\N{U+094d}\N{U+0939}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}",
      "\N{U+0921}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}"
    ],
    name => "Konkani",
    native_language => "\N{U+0915}\N{U+094b}\N{U+0902}\N{U+0915}\N{U+0923}\N{U+0940}",
    native_name => "\N{U+0915}\N{U+094b}\N{U+0902}\N{U+0915}\N{U+0923}\N{U+0940}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ kok-IN ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "kok-IN",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0938}\N{U+094b}\N{U+092e}",
      "\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0933}",
      "\N{U+092c}\N{U+0941}\N{U+0927}",
      "\N{U+0917}\N{U+0941}\N{U+0930}\N{U+0941}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}",
      "\N{U+0930}\N{U+0935}\N{U+093f}"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "\N{U+0938}\N{U+094b}\N{U+092e}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0933}\N{U+093e}\N{U+0930}",
      "\N{U+092c}\N{U+0941}\N{U+0927}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0917}\N{U+0941}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0906}\N{U+0926}\N{U+093f}\N{U+0924}\N{U+094d}\N{U+092f}\N{U+0935}\N{U+093e}\N{U+0930}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0938}\N{U+094b}\N{U+092e}",
      "\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0933}",
      "\N{U+092c}\N{U+0941}\N{U+0927}",
      "\N{U+0917}\N{U+0941}\N{U+0930}\N{U+0941}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}",
      "\N{U+0930}\N{U+0935}\N{U+093f}"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "\N{U+0938}\N{U+094b}\N{U+092e}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0933}\N{U+093e}\N{U+0930}",
      "\N{U+092c}\N{U+0941}\N{U+0927}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0917}\N{U+0941}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0906}\N{U+0926}\N{U+093f}\N{U+0924}\N{U+094d}\N{U+092f}\N{U+0935}\N{U+093e}\N{U+0930}"
    ],
    era_abbreviated => [
      "\N{U+0915}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0938}\N{U+094d}\N{U+0924}\N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}",
      "\N{U+0915}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0938}\N{U+094d}\N{U+0924}\N{U+0936}\N{U+0916}\N{U+093e}"
    ],
    era_narrow => [
      "\N{U+0915}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0938}\N{U+094d}\N{U+0924}\N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}",
      "\N{U+0915}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0938}\N{U+094d}\N{U+0924}\N{U+0936}\N{U+0916}\N{U+093e}"
    ],
    era_wide => [
      "\N{U+0915}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0938}\N{U+094d}\N{U+0924}\N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}",
      "\N{U+0915}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0938}\N{U+094d}\N{U+0924}\N{U+0936}\N{U+0916}\N{U+093e}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%A %d %b %Y",
    glibc_datetime_format => "%A %d %b %Y %I:%M:%S %p %Z",
    glibc_time_12_format => "%I:%M:%S %p %Z",
    glibc_time_format => "%I:%M:%S  %Z",
    language => "Konkani",
    month_format_abbreviated => [
      "\N{U+091c}\N{U+093e}\N{U+0928}\N{U+0947}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+090f}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0942}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+0948}",
      "\N{U+0913}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+091f}",
      "\N{U+0938}\N{U+0947}\N{U+092a}\N{U+094d}\N{U+091f}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}",
      "\N{U+0913}\N{U+0915}\N{U+094d}\N{U+091f}\N{U+094b}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+094b}\N{U+0935}\N{U+094d}\N{U+0939}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}",
      "\N{U+0921}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+091c}\N{U+093e}\N{U+0928}\N{U+0947}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+090f}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0942}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+0948}",
      "\N{U+0913}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+091f}",
      "\N{U+0938}\N{U+0947}\N{U+092a}\N{U+094d}\N{U+091f}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}",
      "\N{U+0913}\N{U+0915}\N{U+094d}\N{U+091f}\N{U+094b}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+094b}\N{U+0935}\N{U+094d}\N{U+0939}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}",
      "\N{U+0921}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+091c}\N{U+093e}\N{U+0928}\N{U+0947}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+090f}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0942}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+0948}",
      "\N{U+0913}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+091f}",
      "\N{U+0938}\N{U+0947}\N{U+092a}\N{U+094d}\N{U+091f}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}",
      "\N{U+0913}\N{U+0915}\N{U+094d}\N{U+091f}\N{U+094b}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+094b}\N{U+0935}\N{U+094d}\N{U+0939}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}",
      "\N{U+0921}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+091c}\N{U+093e}\N{U+0928}\N{U+0947}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+090f}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0942}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+0948}",
      "\N{U+0913}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+091f}",
      "\N{U+0938}\N{U+0947}\N{U+092a}\N{U+094d}\N{U+091f}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}",
      "\N{U+0913}\N{U+0915}\N{U+094d}\N{U+091f}\N{U+094b}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+094b}\N{U+0935}\N{U+094d}\N{U+0939}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}",
      "\N{U+0921}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}"
    ],
    name => "Konkani India",
    native_language => "\N{U+0915}\N{U+094b}\N{U+0902}\N{U+0915}\N{U+0923}\N{U+0940}",
    native_name => "\N{U+0915}\N{U+094b}\N{U+0902}\N{U+0915}\N{U+0923}\N{U+0940} \N{U+092d}\N{U+093e}\N{U+0930}\N{U+0924}",
    native_script => undef,
    native_territory => "\N{U+092d}\N{U+093e}\N{U+0930}\N{U+0924}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "India",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ks ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "Gy",
      GyMMM => "MMM Gy",
      GyMMMEd => "EEE, MMM d, Gy",
      GyMMMd => "MMM d, Gy",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "d-MMM",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "EEE, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "EEE, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ks",
    date_format_full => "EEEE, MMMM d, y",
    date_format_long => "MMMM d, y",
    date_format_medium => "MMM d, y",
    date_format_short => "M/d/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0698}\N{U+0654}\N{U+0646}\N{U+065b}\N{U+062f}\N{U+0655}\N{U+0631}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0628}\N{U+0648}\N{U+065a}\N{U+0645}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0628}\N{U+0648}\N{U+062f}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0628}\N{U+0631}\N{U+065b}\N{U+066e}\N{U+06ea}\N{U+0633}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+062c}\N{U+064f}\N{U+0645}\N{U+06c1}",
      "\N{U+0628}\N{U+0679}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0622}\N{U+062a}\N{U+06be}\N{U+0648}\N{U+0627}\N{U+0631}"
    ],
    day_format_narrow => [
      "\N{U+0698}",
      "\N{U+0628}",
      "\N{U+0628}",
      "\N{U+0628}",
      "\N{U+062c}",
      "\N{U+0628}",
      "\N{U+0627}"
    ],
    day_format_wide => [
      "\N{U+0698}\N{U+0654}\N{U+0646}\N{U+065b}\N{U+062f}\N{U+0631}\N{U+0655}\N{U+0631}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0628}\N{U+0648}\N{U+065a}\N{U+0645}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0628}\N{U+0648}\N{U+062f}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0628}\N{U+0631}\N{U+065b}\N{U+066e}\N{U+06ea}\N{U+0633}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+062c}\N{U+064f}\N{U+0645}\N{U+06c1}",
      "\N{U+0628}\N{U+0679}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0627}\N{U+064e}\N{U+062a}\N{U+06be}\N{U+0648}\N{U+0627}\N{U+0631}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0698}\N{U+0654}\N{U+0646}\N{U+065b}\N{U+062f}\N{U+0655}\N{U+0631}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0628}\N{U+0648}\N{U+065a}\N{U+0645}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0628}\N{U+0648}\N{U+062f}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0628}\N{U+0631}\N{U+065b}\N{U+066e}\N{U+06ea}\N{U+0633}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+062c}\N{U+064f}\N{U+0645}\N{U+06c1}",
      "\N{U+0628}\N{U+0679}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0622}\N{U+062a}\N{U+06be}\N{U+0648}\N{U+0627}\N{U+0631}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0698}",
      "\N{U+0628}",
      "\N{U+0628}",
      "\N{U+0628}",
      "\N{U+062c}",
      "\N{U+0628}",
      "\N{U+0627}"
    ],
    day_stand_alone_wide => [
      "\N{U+0698}\N{U+0654}\N{U+0646}\N{U+065b}\N{U+062f}\N{U+0631}\N{U+0655}\N{U+0631}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0628}\N{U+0648}\N{U+065a}\N{U+0645}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0628}\N{U+0648}\N{U+062f}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0628}\N{U+0631}\N{U+065b}\N{U+066e}\N{U+06ea}\N{U+0633}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+062c}\N{U+064f}\N{U+0645}\N{U+06c1}",
      "\N{U+0628}\N{U+0679}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0627}\N{U+064e}\N{U+062a}\N{U+06be}\N{U+0648}\N{U+0627}\N{U+0631}"
    ],
    era_abbreviated => [
      "\N{U+0628}\N{U+06cc} \N{U+0633}\N{U+06cc}",
      "\N{U+0627}\N{U+06d2} \N{U+0688}\N{U+06cc}"
    ],
    era_narrow => [
      "\N{U+0628}\N{U+06cc} \N{U+0633}\N{U+06cc}",
      "\N{U+0627}\N{U+06d2} \N{U+0688}\N{U+06cc}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0655}\N{U+0644} \N{U+0645}\N{U+0633}\N{U+06cc}\N{U+0656}\N{U+062d}",
      "\N{U+0639}\N{U+06cc}\N{U+0656}\N{U+0633}\N{U+0648}\N{U+06cc} \N{U+0633}\N{U+0646}\N{U+06c1}\N{U+0655}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Kashmiri",
    month_format_abbreviated => [
      "\N{U+062c}\N{U+0646}\N{U+0624}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0631}\N{U+0624}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0655}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+06cc}\N{U+0654}",
      "\N{U+062c}\N{U+0648}\N{U+0657}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0657}\N{U+0644}\N{U+0627}\N{U+06cc}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0657}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      "\N{U+062c}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0627}",
      "\N{U+0645}",
      "\N{U+062c}",
      "\N{U+062c}",
      "\N{U+0627}",
      "\N{U+0633}",
      "\N{U+0633}",
      "\N{U+0627}",
      "\N{U+0646}"
    ],
    month_format_wide => [
      "\N{U+062c}\N{U+0646}\N{U+0624}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0631}\N{U+0624}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0655}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+06cc}\N{U+0654}",
      "\N{U+062c}\N{U+0648}\N{U+0657}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0657}\N{U+0644}\N{U+0627}\N{U+06cc}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0657}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+062c}\N{U+0646}\N{U+0624}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0631}\N{U+0624}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0655}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+06cc}\N{U+0654}",
      "\N{U+062c}\N{U+0648}\N{U+0657}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0657}\N{U+0644}\N{U+0627}\N{U+06cc}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0657}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "\N{U+062c}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0627}",
      "\N{U+0645}",
      "\N{U+062c}",
      "\N{U+062c}",
      "\N{U+0627}",
      "\N{U+0633}",
      "\N{U+0633}",
      "\N{U+0627}",
      "\N{U+0646}"
    ],
    month_stand_alone_wide => [
      "\N{U+062c}\N{U+0646}\N{U+0624}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0631}\N{U+0624}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0655}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+06cc}\N{U+0654}",
      "\N{U+062c}\N{U+0648}\N{U+0657}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0657}\N{U+0644}\N{U+0627}\N{U+06cc}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0657}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Kashmiri",
    native_language => "\N{U+06a9}\N{U+0672}\N{U+0634}\N{U+064f}\N{U+0631}",
    native_name => "\N{U+06a9}\N{U+0672}\N{U+0634}\N{U+064f}\N{U+0631}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}",
      "\N{U+062f}\N{U+0648}\N{U+065a}\N{U+06cc}\N{U+0650}\N{U+0645} \N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}",
      "\N{U+062a}\N{U+0631}\N{U+065b}\N{U+06cc}\N{U+0650}\N{U+0645} \N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}",
      "\N{U+0698}\N{U+0648}\N{U+0657}\N{U+0631}\N{U+0650}\N{U+0645} \N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+06af}\N{U+06c4}\N{U+0691}\N{U+0646}\N{U+06cc}\N{U+064f}\N{U+06a9} \N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}",
      "\N{U+062f}\N{U+0648}\N{U+065a}\N{U+06cc}\N{U+0650}\N{U+0645} \N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}",
      "\N{U+062a}\N{U+0631}\N{U+065b}\N{U+06cc}\N{U+0650}\N{U+0645} \N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}",
      "\N{U+0698}\N{U+0648}\N{U+0657}\N{U+0631}\N{U+0650}\N{U+0645} \N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}",
      "\N{U+062f}\N{U+0648}\N{U+065a}\N{U+06cc}\N{U+0650}\N{U+0645} \N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}",
      "\N{U+062a}\N{U+0631}\N{U+065b}\N{U+06cc}\N{U+0650}\N{U+0645} \N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}",
      "\N{U+0698}\N{U+0648}\N{U+0657}\N{U+0631}\N{U+0650}\N{U+0645} \N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+06af}\N{U+06c4}\N{U+0691}\N{U+0646}\N{U+06cc}\N{U+064f}\N{U+06a9} \N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}",
      "\N{U+062f}\N{U+0648}\N{U+065a}\N{U+06cc}\N{U+0650}\N{U+0645} \N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}",
      "\N{U+062a}\N{U+0631}\N{U+065b}\N{U+06cc}\N{U+0650}\N{U+0645} \N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}",
      "\N{U+0698}\N{U+0648}\N{U+0657}\N{U+0631}\N{U+0650}\N{U+0645} \N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ks-IN ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "Gy",
      GyMMM => "MMM Gy",
      GyMMMEd => "EEE, MMM d, Gy",
      GyMMMd => "MMM d, Gy",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "d-MMM",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "EEE, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "EEE, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ks-IN",
    date_format_full => "EEEE, MMMM d, y",
    date_format_long => "MMMM d, y",
    date_format_medium => "MMM d, y",
    date_format_short => "M/d/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0698}\N{U+0654}\N{U+0646}\N{U+065b}\N{U+062f}\N{U+0655}\N{U+0631}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0628}\N{U+0648}\N{U+065a}\N{U+0645}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0628}\N{U+0648}\N{U+062f}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0628}\N{U+0631}\N{U+065b}\N{U+066e}\N{U+06ea}\N{U+0633}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+062c}\N{U+064f}\N{U+0645}\N{U+06c1}",
      "\N{U+0628}\N{U+0679}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0622}\N{U+062a}\N{U+06be}\N{U+0648}\N{U+0627}\N{U+0631}"
    ],
    day_format_narrow => [
      "\N{U+0698}",
      "\N{U+0628}",
      "\N{U+0628}",
      "\N{U+0628}",
      "\N{U+062c}",
      "\N{U+0628}",
      "\N{U+0627}"
    ],
    day_format_wide => [
      "\N{U+0698}\N{U+0654}\N{U+0646}\N{U+065b}\N{U+062f}\N{U+0631}\N{U+0655}\N{U+0631}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0628}\N{U+0648}\N{U+065a}\N{U+0645}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0628}\N{U+0648}\N{U+062f}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0628}\N{U+0631}\N{U+065b}\N{U+066e}\N{U+06ea}\N{U+0633}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+062c}\N{U+064f}\N{U+0645}\N{U+06c1}",
      "\N{U+0628}\N{U+0679}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0627}\N{U+064e}\N{U+062a}\N{U+06be}\N{U+0648}\N{U+0627}\N{U+0631}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0698}\N{U+0654}\N{U+0646}\N{U+065b}\N{U+062f}\N{U+0655}\N{U+0631}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0628}\N{U+0648}\N{U+065a}\N{U+0645}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0628}\N{U+0648}\N{U+062f}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0628}\N{U+0631}\N{U+065b}\N{U+066e}\N{U+06ea}\N{U+0633}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+062c}\N{U+064f}\N{U+0645}\N{U+06c1}",
      "\N{U+0628}\N{U+0679}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0622}\N{U+062a}\N{U+06be}\N{U+0648}\N{U+0627}\N{U+0631}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0698}",
      "\N{U+0628}",
      "\N{U+0628}",
      "\N{U+0628}",
      "\N{U+062c}",
      "\N{U+0628}",
      "\N{U+0627}"
    ],
    day_stand_alone_wide => [
      "\N{U+0698}\N{U+0654}\N{U+0646}\N{U+065b}\N{U+062f}\N{U+0631}\N{U+0655}\N{U+0631}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0628}\N{U+0648}\N{U+065a}\N{U+0645}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0628}\N{U+0648}\N{U+062f}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0628}\N{U+0631}\N{U+065b}\N{U+066e}\N{U+06ea}\N{U+0633}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+062c}\N{U+064f}\N{U+0645}\N{U+06c1}",
      "\N{U+0628}\N{U+0679}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0627}\N{U+064e}\N{U+062a}\N{U+06be}\N{U+0648}\N{U+0627}\N{U+0631}"
    ],
    era_abbreviated => [
      "\N{U+0628}\N{U+06cc} \N{U+0633}\N{U+06cc}",
      "\N{U+0627}\N{U+06d2} \N{U+0688}\N{U+06cc}"
    ],
    era_narrow => [
      "\N{U+0628}\N{U+06cc} \N{U+0633}\N{U+06cc}",
      "\N{U+0627}\N{U+06d2} \N{U+0688}\N{U+06cc}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0655}\N{U+0644} \N{U+0645}\N{U+0633}\N{U+06cc}\N{U+0656}\N{U+062d}",
      "\N{U+0639}\N{U+06cc}\N{U+0656}\N{U+0633}\N{U+0648}\N{U+06cc} \N{U+0633}\N{U+0646}\N{U+06c1}\N{U+0655}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%A %d %b %Y",
    glibc_datetime_format => "%A %d %b %Y %I:%M:%S %p %Z",
    glibc_time_12_format => "%I:%M:%S %p %Z",
    glibc_time_format => "%I:%M:%S  %Z",
    language => "Kashmiri",
    month_format_abbreviated => [
      "\N{U+062c}\N{U+0646}\N{U+0624}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0631}\N{U+0624}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0655}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+06cc}\N{U+0654}",
      "\N{U+062c}\N{U+0648}\N{U+0657}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0657}\N{U+0644}\N{U+0627}\N{U+06cc}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0657}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      "\N{U+062c}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0627}",
      "\N{U+0645}",
      "\N{U+062c}",
      "\N{U+062c}",
      "\N{U+0627}",
      "\N{U+0633}",
      "\N{U+0633}",
      "\N{U+0627}",
      "\N{U+0646}"
    ],
    month_format_wide => [
      "\N{U+062c}\N{U+0646}\N{U+0624}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0631}\N{U+0624}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0655}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+06cc}\N{U+0654}",
      "\N{U+062c}\N{U+0648}\N{U+0657}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0657}\N{U+0644}\N{U+0627}\N{U+06cc}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0657}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+062c}\N{U+0646}\N{U+0624}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0631}\N{U+0624}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0655}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+06cc}\N{U+0654}",
      "\N{U+062c}\N{U+0648}\N{U+0657}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0657}\N{U+0644}\N{U+0627}\N{U+06cc}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0657}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "\N{U+062c}",
      "\N{U+0641}",
      "\N{U+0645}",
      "\N{U+0627}",
      "\N{U+0645}",
      "\N{U+062c}",
      "\N{U+062c}",
      "\N{U+0627}",
      "\N{U+0633}",
      "\N{U+0633}",
      "\N{U+0627}",
      "\N{U+0646}"
    ],
    month_stand_alone_wide => [
      "\N{U+062c}\N{U+0646}\N{U+0624}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0631}\N{U+0624}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0655}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+06cc}\N{U+0654}",
      "\N{U+062c}\N{U+0648}\N{U+0657}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0657}\N{U+0644}\N{U+0627}\N{U+06cc}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0657}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Kashmiri India",
    native_language => "\N{U+06a9}\N{U+0672}\N{U+0634}\N{U+064f}\N{U+0631}",
    native_name => "\N{U+06a9}\N{U+0672}\N{U+0634}\N{U+064f}\N{U+0631} \N{U+06c1}\N{U+0650}\N{U+0646}\N{U+065b}\N{U+062f}\N{U+0648}\N{U+0633}\N{U+062a}\N{U+0627}\N{U+0646}",
    native_script => undef,
    native_territory => "\N{U+06c1}\N{U+0650}\N{U+0646}\N{U+065b}\N{U+062f}\N{U+0648}\N{U+0633}\N{U+062a}\N{U+0627}\N{U+0646}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}",
      "\N{U+062f}\N{U+0648}\N{U+065a}\N{U+06cc}\N{U+0650}\N{U+0645} \N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}",
      "\N{U+062a}\N{U+0631}\N{U+065b}\N{U+06cc}\N{U+0650}\N{U+0645} \N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}",
      "\N{U+0698}\N{U+0648}\N{U+0657}\N{U+0631}\N{U+0650}\N{U+0645} \N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+06af}\N{U+06c4}\N{U+0691}\N{U+0646}\N{U+06cc}\N{U+064f}\N{U+06a9} \N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}",
      "\N{U+062f}\N{U+0648}\N{U+065a}\N{U+06cc}\N{U+0650}\N{U+0645} \N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}",
      "\N{U+062a}\N{U+0631}\N{U+065b}\N{U+06cc}\N{U+0650}\N{U+0645} \N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}",
      "\N{U+0698}\N{U+0648}\N{U+0657}\N{U+0631}\N{U+0650}\N{U+0645} \N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}",
      "\N{U+062f}\N{U+0648}\N{U+065a}\N{U+06cc}\N{U+0650}\N{U+0645} \N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}",
      "\N{U+062a}\N{U+0631}\N{U+065b}\N{U+06cc}\N{U+0650}\N{U+0645} \N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}",
      "\N{U+0698}\N{U+0648}\N{U+0657}\N{U+0631}\N{U+0650}\N{U+0645} \N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+06af}\N{U+06c4}\N{U+0691}\N{U+0646}\N{U+06cc}\N{U+064f}\N{U+06a9} \N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}",
      "\N{U+062f}\N{U+0648}\N{U+065a}\N{U+06cc}\N{U+0650}\N{U+0645} \N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}",
      "\N{U+062a}\N{U+0631}\N{U+065b}\N{U+06cc}\N{U+0650}\N{U+0645} \N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}",
      "\N{U+0698}\N{U+0648}\N{U+0657}\N{U+0631}\N{U+0650}\N{U+0645} \N{U+0698}\N{U+06c4}\N{U+0628}\N{U+0627}\N{U+06af}"
    ],
    script => undef,
    territory => "India",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ksb ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ksb",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Jtt",
      "Jmn",
      "Jtn",
      "Alh",
      "Iju",
      "Jmo",
      "Jpi"
    ],
    day_format_narrow => [
      3,
      4,
      5,
      "A",
      "I",
      1,
      2
    ],
    day_format_wide => [
      "Jumaatatu",
      "Jumaane",
      "Jumaatano",
      "Alhamisi",
      "Ijumaa",
      "Jumaamosi",
      "Jumaapii"
    ],
    day_stand_alone_abbreviated => [
      "Jtt",
      "Jmn",
      "Jtn",
      "Alh",
      "Iju",
      "Jmo",
      "Jpi"
    ],
    day_stand_alone_narrow => [
      3,
      4,
      5,
      "A",
      "I",
      1,
      2
    ],
    day_stand_alone_wide => [
      "Jumaatatu",
      "Jumaane",
      "Jumaatano",
      "Alhamisi",
      "Ijumaa",
      "Jumaamosi",
      "Jumaapii"
    ],
    era_abbreviated => [
      "KK",
      "BK"
    ],
    era_narrow => [
      "KK",
      "BK"
    ],
    era_wide => [
      "Kabla ya Klisto",
      "Baada ya Klisto"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Shambala",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januali",
      "Febluali",
      "Machi",
      "Aplili",
      "Mei",
      "Juni",
      "Julai",
      "Agosti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januali",
      "Febluali",
      "Machi",
      "Aplili",
      "Mei",
      "Juni",
      "Julai",
      "Agosti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    name => "Shambala",
    native_language => "Kishambaa",
    native_name => "Kishambaa",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "L1",
      "L2",
      "L3",
      "L4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Lobo ya bosi",
      "Lobo ya mbii",
      "Lobo ya nnd\N{U+2019}atu",
      "Lobo ya nne"
    ],
    quarter_stand_alone_abbreviated => [
      "L1",
      "L2",
      "L3",
      "L4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Lobo ya bosi",
      "Lobo ya mbii",
      "Lobo ya nnd\N{U+2019}atu",
      "Lobo ya nne"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ksb-TZ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ksb-TZ",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Jtt",
      "Jmn",
      "Jtn",
      "Alh",
      "Iju",
      "Jmo",
      "Jpi"
    ],
    day_format_narrow => [
      3,
      4,
      5,
      "A",
      "I",
      1,
      2
    ],
    day_format_wide => [
      "Jumaatatu",
      "Jumaane",
      "Jumaatano",
      "Alhamisi",
      "Ijumaa",
      "Jumaamosi",
      "Jumaapii"
    ],
    day_stand_alone_abbreviated => [
      "Jtt",
      "Jmn",
      "Jtn",
      "Alh",
      "Iju",
      "Jmo",
      "Jpi"
    ],
    day_stand_alone_narrow => [
      3,
      4,
      5,
      "A",
      "I",
      1,
      2
    ],
    day_stand_alone_wide => [
      "Jumaatatu",
      "Jumaane",
      "Jumaatano",
      "Alhamisi",
      "Ijumaa",
      "Jumaamosi",
      "Jumaapii"
    ],
    era_abbreviated => [
      "KK",
      "BK"
    ],
    era_narrow => [
      "KK",
      "BK"
    ],
    era_wide => [
      "Kabla ya Klisto",
      "Baada ya Klisto"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Shambala",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januali",
      "Febluali",
      "Machi",
      "Aplili",
      "Mei",
      "Juni",
      "Julai",
      "Agosti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januali",
      "Febluali",
      "Machi",
      "Aplili",
      "Mei",
      "Juni",
      "Julai",
      "Agosti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    name => "Shambala Tanzania",
    native_language => "Kishambaa",
    native_name => "Kishambaa Tanzania",
    native_script => undef,
    native_territory => "Tanzania",
    native_variant => undef,
    quarter_format_abbreviated => [
      "L1",
      "L2",
      "L3",
      "L4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Lobo ya bosi",
      "Lobo ya mbii",
      "Lobo ya nnd\N{U+2019}atu",
      "Lobo ya nne"
    ],
    quarter_stand_alone_abbreviated => [
      "L1",
      "L2",
      "L3",
      "L4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Lobo ya bosi",
      "Lobo ya mbii",
      "Lobo ya nnd\N{U+2019}atu",
      "Lobo ya nne"
    ],
    script => undef,
    territory => "Tanzania",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ksf ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ksf",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "l\N{U+01dd}n",
      "maa",
      "m\N{U+025b}k",
      "j\N{U+01dd}\N{U+01dd}",
      "j\N{U+00fa}m",
      "sam",
      "s\N{U+0254}\N{U+0301}n"
    ],
    day_format_narrow => [
      "l",
      "m",
      "m",
      "j",
      "j",
      "s",
      "s"
    ],
    day_format_wide => [
      "l\N{U+01dd}nd\N{U+00ed}",
      "maad\N{U+00ed}",
      "m\N{U+025b}kr\N{U+025b}d\N{U+00ed}",
      "j\N{U+01dd}\N{U+01dd}d\N{U+00ed}",
      "j\N{U+00fa}mb\N{U+00e1}",
      "samd\N{U+00ed}",
      "s\N{U+0254}\N{U+0301}nd\N{U+01dd}"
    ],
    day_stand_alone_abbreviated => [
      "l\N{U+01dd}n",
      "maa",
      "m\N{U+025b}k",
      "j\N{U+01dd}\N{U+01dd}",
      "j\N{U+00fa}m",
      "sam",
      "s\N{U+0254}\N{U+0301}n"
    ],
    day_stand_alone_narrow => [
      "l",
      "m",
      "m",
      "j",
      "j",
      "s",
      "s"
    ],
    day_stand_alone_wide => [
      "l\N{U+01dd}nd\N{U+00ed}",
      "maad\N{U+00ed}",
      "m\N{U+025b}kr\N{U+025b}d\N{U+00ed}",
      "j\N{U+01dd}\N{U+01dd}d\N{U+00ed}",
      "j\N{U+00fa}mb\N{U+00e1}",
      "samd\N{U+00ed}",
      "s\N{U+0254}\N{U+0301}nd\N{U+01dd}"
    ],
    era_abbreviated => [
      "d.Y.",
      "k.Y."
    ],
    era_narrow => [
      "d.Y.",
      "k.Y."
    ],
    era_wide => [
      "di Y\N{U+025b}\N{U+0301}sus ak\N{U+00e1} y\N{U+00e1}l\N{U+025b}",
      "c\N{U+00e1}m\N{U+025b}\N{U+025b}n k\N{U+01dd} k\N{U+01dd}b\N{U+0254}pka Y"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Bafia",
    month_format_abbreviated => [
      "\N{U+014b}1",
      "\N{U+014b}2",
      "\N{U+014b}3",
      "\N{U+014b}4",
      "\N{U+014b}5",
      "\N{U+014b}6",
      "\N{U+014b}7",
      "\N{U+014b}8",
      "\N{U+014b}9",
      "\N{U+014b}10",
      "\N{U+014b}11",
      "\N{U+014b}12"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} a nt\N{U+0254}\N{U+0301}nt\N{U+0254}",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} b\N{U+025b}\N{U+0301}\N{U+025b}",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} r\N{U+00e1}\N{U+00e1}",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} nin",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} t\N{U+00e1}an",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} t\N{U+00e1}af\N{U+0254}k",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} t\N{U+00e1}ab\N{U+025b}\N{U+025b}",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} t\N{U+00e1}araa",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} t\N{U+00e1}anin",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} nt\N{U+025b}k",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} nt\N{U+025b}k di b\N{U+0254}\N{U+0301}k",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} nt\N{U+025b}k di b\N{U+025b}\N{U+0301}\N{U+025b}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+014b}1",
      "\N{U+014b}2",
      "\N{U+014b}3",
      "\N{U+014b}4",
      "\N{U+014b}5",
      "\N{U+014b}6",
      "\N{U+014b}7",
      "\N{U+014b}8",
      "\N{U+014b}9",
      "\N{U+014b}10",
      "\N{U+014b}11",
      "\N{U+014b}12"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} a nt\N{U+0254}\N{U+0301}nt\N{U+0254}",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} b\N{U+025b}\N{U+0301}\N{U+025b}",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} r\N{U+00e1}\N{U+00e1}",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} nin",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} t\N{U+00e1}an",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} t\N{U+00e1}af\N{U+0254}k",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} t\N{U+00e1}ab\N{U+025b}\N{U+025b}",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} t\N{U+00e1}araa",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} t\N{U+00e1}anin",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} nt\N{U+025b}k",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} nt\N{U+025b}k di b\N{U+0254}\N{U+0301}k",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} nt\N{U+025b}k di b\N{U+025b}\N{U+0301}\N{U+025b}"
    ],
    name => "Bafia",
    native_language => "rikpa",
    native_name => "rikpa",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "i1",
      "i2",
      "i3",
      "i4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "id\N{U+0301}\N{U+025b}\N{U+0301}n k\N{U+01dd}b\N{U+01dd}k k\N{U+01dd} nt\N{U+0254}\N{U+0301}nt\N{U+0254}\N{U+0301}",
      "id\N{U+025b}\N{U+0301}n k\N{U+01dd}b\N{U+01dd}k k\N{U+01dd} k\N{U+01dd}b\N{U+025b}\N{U+0301}\N{U+025b}",
      "id\N{U+025b}\N{U+0301}n k\N{U+01dd}b\N{U+01dd}k k\N{U+01dd} k\N{U+01dd}r\N{U+00e1}\N{U+00e1}",
      "id\N{U+025b}\N{U+0301}n k\N{U+01dd}b\N{U+01dd}k k\N{U+01dd} k\N{U+01dd}nin"
    ],
    quarter_stand_alone_abbreviated => [
      "i1",
      "i2",
      "i3",
      "i4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "id\N{U+0301}\N{U+025b}\N{U+0301}n k\N{U+01dd}b\N{U+01dd}k k\N{U+01dd} nt\N{U+0254}\N{U+0301}nt\N{U+0254}\N{U+0301}",
      "id\N{U+025b}\N{U+0301}n k\N{U+01dd}b\N{U+01dd}k k\N{U+01dd} k\N{U+01dd}b\N{U+025b}\N{U+0301}\N{U+025b}",
      "id\N{U+025b}\N{U+0301}n k\N{U+01dd}b\N{U+01dd}k k\N{U+01dd} k\N{U+01dd}r\N{U+00e1}\N{U+00e1}",
      "id\N{U+025b}\N{U+0301}n k\N{U+01dd}b\N{U+01dd}k k\N{U+01dd} k\N{U+01dd}nin"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ksf-CM ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ksf-CM",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "l\N{U+01dd}n",
      "maa",
      "m\N{U+025b}k",
      "j\N{U+01dd}\N{U+01dd}",
      "j\N{U+00fa}m",
      "sam",
      "s\N{U+0254}\N{U+0301}n"
    ],
    day_format_narrow => [
      "l",
      "m",
      "m",
      "j",
      "j",
      "s",
      "s"
    ],
    day_format_wide => [
      "l\N{U+01dd}nd\N{U+00ed}",
      "maad\N{U+00ed}",
      "m\N{U+025b}kr\N{U+025b}d\N{U+00ed}",
      "j\N{U+01dd}\N{U+01dd}d\N{U+00ed}",
      "j\N{U+00fa}mb\N{U+00e1}",
      "samd\N{U+00ed}",
      "s\N{U+0254}\N{U+0301}nd\N{U+01dd}"
    ],
    day_stand_alone_abbreviated => [
      "l\N{U+01dd}n",
      "maa",
      "m\N{U+025b}k",
      "j\N{U+01dd}\N{U+01dd}",
      "j\N{U+00fa}m",
      "sam",
      "s\N{U+0254}\N{U+0301}n"
    ],
    day_stand_alone_narrow => [
      "l",
      "m",
      "m",
      "j",
      "j",
      "s",
      "s"
    ],
    day_stand_alone_wide => [
      "l\N{U+01dd}nd\N{U+00ed}",
      "maad\N{U+00ed}",
      "m\N{U+025b}kr\N{U+025b}d\N{U+00ed}",
      "j\N{U+01dd}\N{U+01dd}d\N{U+00ed}",
      "j\N{U+00fa}mb\N{U+00e1}",
      "samd\N{U+00ed}",
      "s\N{U+0254}\N{U+0301}nd\N{U+01dd}"
    ],
    era_abbreviated => [
      "d.Y.",
      "k.Y."
    ],
    era_narrow => [
      "d.Y.",
      "k.Y."
    ],
    era_wide => [
      "di Y\N{U+025b}\N{U+0301}sus ak\N{U+00e1} y\N{U+00e1}l\N{U+025b}",
      "c\N{U+00e1}m\N{U+025b}\N{U+025b}n k\N{U+01dd} k\N{U+01dd}b\N{U+0254}pka Y"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Bafia",
    month_format_abbreviated => [
      "\N{U+014b}1",
      "\N{U+014b}2",
      "\N{U+014b}3",
      "\N{U+014b}4",
      "\N{U+014b}5",
      "\N{U+014b}6",
      "\N{U+014b}7",
      "\N{U+014b}8",
      "\N{U+014b}9",
      "\N{U+014b}10",
      "\N{U+014b}11",
      "\N{U+014b}12"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} a nt\N{U+0254}\N{U+0301}nt\N{U+0254}",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} b\N{U+025b}\N{U+0301}\N{U+025b}",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} r\N{U+00e1}\N{U+00e1}",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} nin",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} t\N{U+00e1}an",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} t\N{U+00e1}af\N{U+0254}k",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} t\N{U+00e1}ab\N{U+025b}\N{U+025b}",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} t\N{U+00e1}araa",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} t\N{U+00e1}anin",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} nt\N{U+025b}k",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} nt\N{U+025b}k di b\N{U+0254}\N{U+0301}k",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} nt\N{U+025b}k di b\N{U+025b}\N{U+0301}\N{U+025b}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+014b}1",
      "\N{U+014b}2",
      "\N{U+014b}3",
      "\N{U+014b}4",
      "\N{U+014b}5",
      "\N{U+014b}6",
      "\N{U+014b}7",
      "\N{U+014b}8",
      "\N{U+014b}9",
      "\N{U+014b}10",
      "\N{U+014b}11",
      "\N{U+014b}12"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} a nt\N{U+0254}\N{U+0301}nt\N{U+0254}",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} b\N{U+025b}\N{U+0301}\N{U+025b}",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} r\N{U+00e1}\N{U+00e1}",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} nin",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} t\N{U+00e1}an",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} t\N{U+00e1}af\N{U+0254}k",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} t\N{U+00e1}ab\N{U+025b}\N{U+025b}",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} t\N{U+00e1}araa",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} t\N{U+00e1}anin",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} nt\N{U+025b}k",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} nt\N{U+025b}k di b\N{U+0254}\N{U+0301}k",
      "\N{U+014b}w\N{U+00ed}\N{U+00ed} ak\N{U+01dd} nt\N{U+025b}k di b\N{U+025b}\N{U+0301}\N{U+025b}"
    ],
    name => "Bafia Cameroon",
    native_language => "rikpa",
    native_name => "rikpa kam\N{U+025b}r\N{U+00fa}n",
    native_script => undef,
    native_territory => "kam\N{U+025b}r\N{U+00fa}n",
    native_variant => undef,
    quarter_format_abbreviated => [
      "i1",
      "i2",
      "i3",
      "i4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "id\N{U+0301}\N{U+025b}\N{U+0301}n k\N{U+01dd}b\N{U+01dd}k k\N{U+01dd} nt\N{U+0254}\N{U+0301}nt\N{U+0254}\N{U+0301}",
      "id\N{U+025b}\N{U+0301}n k\N{U+01dd}b\N{U+01dd}k k\N{U+01dd} k\N{U+01dd}b\N{U+025b}\N{U+0301}\N{U+025b}",
      "id\N{U+025b}\N{U+0301}n k\N{U+01dd}b\N{U+01dd}k k\N{U+01dd} k\N{U+01dd}r\N{U+00e1}\N{U+00e1}",
      "id\N{U+025b}\N{U+0301}n k\N{U+01dd}b\N{U+01dd}k k\N{U+01dd} k\N{U+01dd}nin"
    ],
    quarter_stand_alone_abbreviated => [
      "i1",
      "i2",
      "i3",
      "i4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "id\N{U+0301}\N{U+025b}\N{U+0301}n k\N{U+01dd}b\N{U+01dd}k k\N{U+01dd} nt\N{U+0254}\N{U+0301}nt\N{U+0254}\N{U+0301}",
      "id\N{U+025b}\N{U+0301}n k\N{U+01dd}b\N{U+01dd}k k\N{U+01dd} k\N{U+01dd}b\N{U+025b}\N{U+0301}\N{U+025b}",
      "id\N{U+025b}\N{U+0301}n k\N{U+01dd}b\N{U+01dd}k k\N{U+01dd} k\N{U+01dd}r\N{U+00e1}\N{U+00e1}",
      "id\N{U+025b}\N{U+0301}n k\N{U+01dd}b\N{U+01dd}k k\N{U+01dd} k\N{U+01dd}nin"
    ],
    script => undef,
    territory => "Cameroon",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ksh ]__
  {
    am_pm_abbreviated => [
      "v.m.",
      "n.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E 'd\N{U+00e4}' d.",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d. M.",
      MMM => "LLL",
      MMMEd => "E d. MMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "Y-MM",
      yMEd => "E y-MM-dd",
      yMMM => "MMM y",
      yMMMEd => "E d. MMM. y",
      yMMMM => "MMMM y",
      yMMMd => "d. MMM. y",
      yMd => "y-MM-dd",
      yQQQ => "QQQy",
      yQQQQ => "QQQQ y"
    },
    code => "ksh",
    date_format_full => "EEEE, 'd\N{U+00e4}' d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "d. MMM. y",
    date_format_short => "d. M. y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Mo.",
      "Di.",
      "Me.",
      "Du.",
      "Fr.",
      "Sa.",
      "Su."
    ],
    day_format_narrow => [
      "M",
      "D",
      "M",
      "D",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Moondaach",
      "Dinnsdaach",
      "Metwoch",
      "Dunnersdaach",
      "Friidaach",
      "Samsdaach",
      "Sunndaach"
    ],
    day_stand_alone_abbreviated => [
      "Mo.",
      "Di.",
      "Me.",
      "Du.",
      "Fr.",
      "Sa.",
      "Su."
    ],
    day_stand_alone_narrow => [
      "M",
      "D",
      "M",
      "D",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Moondaach",
      "Dinnsdaach",
      "Metwoch",
      "Dunnersdaach",
      "Friidaach",
      "Samsdaach",
      "Sunndaach"
    ],
    era_abbreviated => [
      "v. Chr.",
      "n. Chr."
    ],
    era_narrow => [
      "vC",
      "nC"
    ],
    era_wide => [
      "v\N{U+00fc}r Chrestus",
      "noh Chrestus"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Colognian",
    month_format_abbreviated => [
      "Jan",
      "F\N{U+00e4}b",
      "M\N{U+00e4}z",
      "Apr",
      "M\N{U+00e4}i",
      "Jun",
      "Jul",
      "Ouj",
      "S\N{U+00e4}p",
      "Okt",
      "Nov",
      "Dez"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Jannewa",
      "F\N{U+00e4}browa",
      "M\N{U+00e4}\N{U+00e4}z",
      "Aprell",
      "M\N{U+00e4}i",
      "Juuni",
      "Juuli",
      "Oujo\N{U+00df}",
      "Sept\N{U+00e4}mber",
      "Oktoober",
      "Nov\N{U+00e4}mber",
      "Dez\N{U+00e4}mber"
    ],
    month_stand_alone_abbreviated => [
      "Jan.",
      "F\N{U+00e4}b.",
      "M\N{U+00e4}z.",
      "Apr.",
      "M\N{U+00e4}i",
      "Jun.",
      "Jul.",
      "Ouj.",
      "S\N{U+00e4}p.",
      "Okt.",
      "Nov.",
      "Dez."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Jannewa",
      "F\N{U+00e4}browa",
      "M\N{U+00e4}\N{U+00e4}z",
      "Aprell",
      "M\N{U+00e4}i",
      "Juuni",
      "Juuli",
      "Oujo\N{U+00df}",
      "Sept\N{U+00e4}mber",
      "Oktoober",
      "Nov\N{U+00e4}mber",
      "Dez\N{U+00e4}mber"
    ],
    name => "Colognian",
    native_language => "K\N{U+00f6}lsch",
    native_name => "K\N{U+00f6}lsch",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "1.Q.",
      "2.Q.",
      "3.Q.",
      "4.Q."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. Quattaal",
      "2. Quattaal",
      "3. Quattaal",
      "4. Quattaal"
    ],
    quarter_stand_alone_abbreviated => [
      "1.Q.",
      "2.Q.",
      "3.Q.",
      "4.Q."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. Quattaal",
      "2. Quattaal",
      "3. Quattaal",
      "4. Quattaal"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ksh-DE ]__
  {
    am_pm_abbreviated => [
      "v.m.",
      "n.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E 'd\N{U+00e4}' d.",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d. M.",
      MMM => "LLL",
      MMMEd => "E d. MMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "Y-MM",
      yMEd => "E y-MM-dd",
      yMMM => "MMM y",
      yMMMEd => "E d. MMM. y",
      yMMMM => "MMMM y",
      yMMMd => "d. MMM. y",
      yMd => "y-MM-dd",
      yQQQ => "QQQy",
      yQQQQ => "QQQQ y"
    },
    code => "ksh-DE",
    date_format_full => "EEEE, 'd\N{U+00e4}' d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "d. MMM. y",
    date_format_short => "d. M. y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Mo.",
      "Di.",
      "Me.",
      "Du.",
      "Fr.",
      "Sa.",
      "Su."
    ],
    day_format_narrow => [
      "M",
      "D",
      "M",
      "D",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Moondaach",
      "Dinnsdaach",
      "Metwoch",
      "Dunnersdaach",
      "Friidaach",
      "Samsdaach",
      "Sunndaach"
    ],
    day_stand_alone_abbreviated => [
      "Mo.",
      "Di.",
      "Me.",
      "Du.",
      "Fr.",
      "Sa.",
      "Su."
    ],
    day_stand_alone_narrow => [
      "M",
      "D",
      "M",
      "D",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Moondaach",
      "Dinnsdaach",
      "Metwoch",
      "Dunnersdaach",
      "Friidaach",
      "Samsdaach",
      "Sunndaach"
    ],
    era_abbreviated => [
      "v. Chr.",
      "n. Chr."
    ],
    era_narrow => [
      "vC",
      "nC"
    ],
    era_wide => [
      "v\N{U+00fc}r Chrestus",
      "noh Chrestus"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Colognian",
    month_format_abbreviated => [
      "Jan",
      "F\N{U+00e4}b",
      "M\N{U+00e4}z",
      "Apr",
      "M\N{U+00e4}i",
      "Jun",
      "Jul",
      "Ouj",
      "S\N{U+00e4}p",
      "Okt",
      "Nov",
      "Dez"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Jannewa",
      "F\N{U+00e4}browa",
      "M\N{U+00e4}\N{U+00e4}z",
      "Aprell",
      "M\N{U+00e4}i",
      "Juuni",
      "Juuli",
      "Oujo\N{U+00df}",
      "Sept\N{U+00e4}mber",
      "Oktoober",
      "Nov\N{U+00e4}mber",
      "Dez\N{U+00e4}mber"
    ],
    month_stand_alone_abbreviated => [
      "Jan.",
      "F\N{U+00e4}b.",
      "M\N{U+00e4}z.",
      "Apr.",
      "M\N{U+00e4}i",
      "Jun.",
      "Jul.",
      "Ouj.",
      "S\N{U+00e4}p.",
      "Okt.",
      "Nov.",
      "Dez."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Jannewa",
      "F\N{U+00e4}browa",
      "M\N{U+00e4}\N{U+00e4}z",
      "Aprell",
      "M\N{U+00e4}i",
      "Juuni",
      "Juuli",
      "Oujo\N{U+00df}",
      "Sept\N{U+00e4}mber",
      "Oktoober",
      "Nov\N{U+00e4}mber",
      "Dez\N{U+00e4}mber"
    ],
    name => "Colognian Germany",
    native_language => "K\N{U+00f6}lsch",
    native_name => "K\N{U+00f6}lsch Do\N{U+00fc}tschland",
    native_script => undef,
    native_territory => "Do\N{U+00fc}tschland",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1.Q.",
      "2.Q.",
      "3.Q.",
      "4.Q."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. Quattaal",
      "2. Quattaal",
      "3. Quattaal",
      "4. Quattaal"
    ],
    quarter_stand_alone_abbreviated => [
      "1.Q.",
      "2.Q.",
      "3.Q.",
      "4.Q."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. Quattaal",
      "2. Quattaal",
      "3. Quattaal",
      "4. Quattaal"
    ],
    script => undef,
    territory => "Germany",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ kw ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "kw",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Lun",
      "Mth",
      "Mhr",
      "Yow",
      "Gwe",
      "Sad",
      "Sul"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "dy Lun",
      "dy Meurth",
      "dy Merher",
      "dy Yow",
      "dy Gwener",
      "dy Sadorn",
      "dy Sul"
    ],
    day_stand_alone_abbreviated => [
      "Lun",
      "Mth",
      "Mhr",
      "Yow",
      "Gwe",
      "Sad",
      "Sul"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "dy Lun",
      "dy Meurth",
      "dy Merher",
      "dy Yow",
      "dy Gwener",
      "dy Sadorn",
      "dy Sul"
    ],
    era_abbreviated => [
      "RC",
      "AD"
    ],
    era_narrow => [
      "RC",
      "AD"
    ],
    era_wide => [
      "RC",
      "AD"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Cornish",
    month_format_abbreviated => [
      "Gen",
      "Hwe",
      "Meu",
      "Ebr",
      "Me",
      "Met",
      "Gor",
      "Est",
      "Gwn",
      "Hed",
      "Du",
      "Kev"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "mis Genver",
      "mis Hwevrer",
      "mis Meurth",
      "mis Ebrel",
      "mis Me",
      "mis Metheven",
      "mis Gortheren",
      "mis Est",
      "mis Gwynngala",
      "mis Hedra",
      "mis Du",
      "mis Kevardhu"
    ],
    month_stand_alone_abbreviated => [
      "Gen",
      "Hwe",
      "Meu",
      "Ebr",
      "Me",
      "Met",
      "Gor",
      "Est",
      "Gwn",
      "Hed",
      "Du",
      "Kev"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "mis Genver",
      "mis Hwevrer",
      "mis Meurth",
      "mis Ebrel",
      "mis Me",
      "mis Metheven",
      "mis Gortheren",
      "mis Est",
      "mis Gwynngala",
      "mis Hedra",
      "mis Du",
      "mis Kevardhu"
    ],
    name => "Cornish",
    native_language => "kernewek",
    native_name => "kernewek",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ kw-GB ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "kw-GB",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Lun",
      "Mth",
      "Mhr",
      "Yow",
      "Gwe",
      "Sad",
      "Sul"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "dy Lun",
      "dy Meurth",
      "dy Merher",
      "dy Yow",
      "dy Gwener",
      "dy Sadorn",
      "dy Sul"
    ],
    day_stand_alone_abbreviated => [
      "Lun",
      "Mth",
      "Mhr",
      "Yow",
      "Gwe",
      "Sad",
      "Sul"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "dy Lun",
      "dy Meurth",
      "dy Merher",
      "dy Yow",
      "dy Gwener",
      "dy Sadorn",
      "dy Sul"
    ],
    era_abbreviated => [
      "RC",
      "AD"
    ],
    era_narrow => [
      "RC",
      "AD"
    ],
    era_wide => [
      "RC",
      "AD"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Cornish",
    month_format_abbreviated => [
      "Gen",
      "Hwe",
      "Meu",
      "Ebr",
      "Me",
      "Met",
      "Gor",
      "Est",
      "Gwn",
      "Hed",
      "Du",
      "Kev"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "mis Genver",
      "mis Hwevrer",
      "mis Meurth",
      "mis Ebrel",
      "mis Me",
      "mis Metheven",
      "mis Gortheren",
      "mis Est",
      "mis Gwynngala",
      "mis Hedra",
      "mis Du",
      "mis Kevardhu"
    ],
    month_stand_alone_abbreviated => [
      "Gen",
      "Hwe",
      "Meu",
      "Ebr",
      "Me",
      "Met",
      "Gor",
      "Est",
      "Gwn",
      "Hed",
      "Du",
      "Kev"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "mis Genver",
      "mis Hwevrer",
      "mis Meurth",
      "mis Ebrel",
      "mis Me",
      "mis Metheven",
      "mis Gortheren",
      "mis Est",
      "mis Gwynngala",
      "mis Hedra",
      "mis Du",
      "mis Kevardhu"
    ],
    name => "Cornish United Kingdom",
    native_language => "kernewek",
    native_name => "kernewek Rywvaneth Unys",
    native_script => undef,
    native_territory => "Rywvaneth Unys",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "United Kingdom",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ky ]__
  {
    am_pm_abbreviated => [
      "\N{U+0442}\N{U+04a3}",
      "\N{U+0442}\N{U+043a}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y-'\N{U+0436}'.",
      GyMMM => "G y-'\N{U+0436}'. MMM",
      GyMMMEd => "G y-'\N{U+0436}'. d-MMM, E",
      GyMMMd => "G y-'\N{U+0436}'. d-MMM",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "dd-MM, E",
      MMM => "LLL",
      MMMEd => "d-MMM, E",
      MMMMd => "MMMM d",
      MMMd => "d-MMM",
      Md => "dd-MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y-'\N{U+0436}'. MMM",
      yMMMEd => "y-'\N{U+0436}'. d-MMM, E",
      yMMMM => "y MMMM",
      yMMMd => "y-'\N{U+0436}'. d-MMM",
      yMd => "y-MM-dd",
      yQQQ => "y-'\N{U+0436}'., QQQ",
      yQQQQ => "y-'\N{U+0436}'., QQQQ"
    },
    code => "ky",
    date_format_full => "EEEE, d-MMMM, y-'\N{U+0436}'.",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0434}\N{U+04af}\N{U+0439}.",
      "\N{U+0448}\N{U+0435}\N{U+0439}\N{U+0448}.",
      "\N{U+0448}\N{U+0430}\N{U+0440}\N{U+0448}.",
      "\N{U+0431}\N{U+0435}\N{U+0439}\N{U+0448}.",
      "\N{U+0436}\N{U+0443}\N{U+043c}\N{U+0430}",
      "\N{U+0438}\N{U+0448}\N{U+043c}.",
      "\N{U+0436}\N{U+0435}\N{U+043a}."
    ],
    day_format_narrow => [
      "\N{U+0414}",
      "\N{U+0428}",
      "\N{U+0428}",
      "\N{U+0411}",
      "\N{U+0416}",
      "\N{U+0418}",
      "\N{U+0416}"
    ],
    day_format_wide => [
      "\N{U+0434}\N{U+04af}\N{U+0439}\N{U+0448}\N{U+04e9}\N{U+043c}\N{U+0431}\N{U+04af}",
      "\N{U+0448}\N{U+0435}\N{U+0439}\N{U+0448}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0438}",
      "\N{U+0448}\N{U+0430}\N{U+0440}\N{U+0448}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0438}",
      "\N{U+0431}\N{U+0435}\N{U+0439}\N{U+0448}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0438}",
      "\N{U+0436}\N{U+0443}\N{U+043c}\N{U+0430}",
      "\N{U+0438}\N{U+0448}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0438}",
      "\N{U+0436}\N{U+0435}\N{U+043a}\N{U+0448}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0438}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0434}\N{U+04af}\N{U+0439}.",
      "\N{U+0448}\N{U+0435}\N{U+0439}\N{U+0448}.",
      "\N{U+0448}\N{U+0430}\N{U+0440}\N{U+0448}.",
      "\N{U+0431}\N{U+0435}\N{U+0439}\N{U+0448}.",
      "\N{U+0436}\N{U+0443}\N{U+043c}\N{U+0430}",
      "\N{U+0438}\N{U+0448}\N{U+043c}.",
      "\N{U+0436}\N{U+0435}\N{U+043a}."
    ],
    day_stand_alone_narrow => [
      "\N{U+0414}",
      "\N{U+0428}",
      "\N{U+0428}",
      "\N{U+0411}",
      "\N{U+0416}",
      "\N{U+0418}",
      "\N{U+0416}"
    ],
    day_stand_alone_wide => [
      "\N{U+0434}\N{U+04af}\N{U+0439}\N{U+0448}\N{U+04e9}\N{U+043c}\N{U+0431}\N{U+04af}",
      "\N{U+0448}\N{U+0435}\N{U+0439}\N{U+0448}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0438}",
      "\N{U+0448}\N{U+0430}\N{U+0440}\N{U+0448}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0438}",
      "\N{U+0431}\N{U+0435}\N{U+0439}\N{U+0448}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0438}",
      "\N{U+0436}\N{U+0443}\N{U+043c}\N{U+0430}",
      "\N{U+0438}\N{U+0448}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0438}",
      "\N{U+0436}\N{U+0435}\N{U+043a}\N{U+0448}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0438}"
    ],
    era_abbreviated => [
      "\N{U+0431}.\N{U+0437}.\N{U+0447}.",
      "\N{U+0431}.\N{U+0437}."
    ],
    era_narrow => [
      "\N{U+0431}.\N{U+0437}.\N{U+0447}.",
      "\N{U+0431}.\N{U+0437}."
    ],
    era_wide => [
      "\N{U+0431}\N{U+0438}\N{U+0437}\N{U+0434}\N{U+0438}\N{U+043d} \N{U+0437}\N{U+0430}\N{U+043c}\N{U+0430}\N{U+043d}\N{U+0433}\N{U+0430} \N{U+0447}\N{U+0435}\N{U+0439}\N{U+0438}\N{U+043d}",
      "\N{U+0431}\N{U+0438}\N{U+0437}\N{U+0434}\N{U+0438}\N{U+043d} \N{U+0437}\N{U+0430}\N{U+043c}\N{U+0430}\N{U+043d}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Kyrgyz",
    month_format_abbreviated => [
      "\N{U+044f}\N{U+043d}\N{U+0432}.",
      "\N{U+0444}\N{U+0435}\N{U+0432}.",
      "\N{U+043c}\N{U+0430}\N{U+0440}.",
      "\N{U+0430}\N{U+043f}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+044e}\N{U+043d}.",
      "\N{U+0438}\N{U+044e}\N{U+043b}.",
      "\N{U+0430}\N{U+0432}\N{U+0433}.",
      "\N{U+0441}\N{U+0435}\N{U+043d}.",
      "\N{U+043e}\N{U+043a}\N{U+0442}.",
      "\N{U+043d}\N{U+043e}\N{U+044f}.",
      "\N{U+0434}\N{U+0435}\N{U+043a}."
    ],
    month_format_narrow => [
      "\N{U+042f}",
      "\N{U+0424}",
      "\N{U+041c}",
      "\N{U+0410}",
      "\N{U+041c}",
      "\N{U+0418}",
      "\N{U+0418}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+041e}",
      "\N{U+041d}",
      "\N{U+0414}"
    ],
    month_format_wide => [
      "\N{U+044f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+044c}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}\N{U+044c}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}\N{U+044c}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044c}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044c}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}\N{U+044c}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+042f}\N{U+043d}\N{U+0432}",
      "\N{U+0424}\N{U+0435}\N{U+0432}",
      "\N{U+041c}\N{U+0430}\N{U+0440}",
      "\N{U+0410}\N{U+043f}\N{U+0440}",
      "\N{U+041c}\N{U+0430}\N{U+0439}",
      "\N{U+0418}\N{U+044e}\N{U+043d}",
      "\N{U+0418}\N{U+044e}\N{U+043b}",
      "\N{U+0410}\N{U+0432}\N{U+0433}",
      "\N{U+0421}\N{U+0435}\N{U+043d}",
      "\N{U+041e}\N{U+043a}\N{U+0442}",
      "\N{U+041d}\N{U+043e}\N{U+044f}",
      "\N{U+0414}\N{U+0435}\N{U+043a}"
    ],
    month_stand_alone_narrow => [
      "\N{U+042f}",
      "\N{U+0424}",
      "\N{U+041c}",
      "\N{U+0410}",
      "\N{U+041c}",
      "\N{U+0418}",
      "\N{U+0418}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+041e}",
      "\N{U+041d}",
      "\N{U+0414}"
    ],
    month_stand_alone_wide => [
      "\N{U+042f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+044c}",
      "\N{U+0424}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}\N{U+044c}",
      "\N{U+041c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0410}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}\N{U+044c}",
      "\N{U+041c}\N{U+0430}\N{U+0439}",
      "\N{U+0418}\N{U+044e}\N{U+043d}\N{U+044c}",
      "\N{U+0418}\N{U+044e}\N{U+043b}\N{U+044c}",
      "\N{U+0410}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0421}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+041e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+041d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+0414}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}\N{U+044c}"
    ],
    name => "Kyrgyz",
    native_language => "\N{U+043a}\N{U+044b}\N{U+0440}\N{U+0433}\N{U+044b}\N{U+0437}\N{U+0447}\N{U+0430}",
    native_name => "\N{U+043a}\N{U+044b}\N{U+0440}\N{U+0433}\N{U+044b}\N{U+0437}\N{U+0447}\N{U+0430}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "1-\N{U+0447}\N{U+0435}\N{U+0439}.",
      "2-\N{U+0447}\N{U+0435}\N{U+0439}.",
      "3-\N{U+0447}\N{U+0435}\N{U+0439}.",
      "4-\N{U+0447}\N{U+0435}\N{U+0439}."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1-\N{U+0447}\N{U+0435}\N{U+0439}\N{U+0440}\N{U+0435}\N{U+043a}",
      "2-\N{U+0447}\N{U+0435}\N{U+0439}\N{U+0440}\N{U+0435}\N{U+043a}",
      "3-\N{U+0447}\N{U+0435}\N{U+0439}\N{U+0440}\N{U+0435}\N{U+043a}",
      "4-\N{U+0447}\N{U+0435}\N{U+0439}\N{U+0440}\N{U+0435}\N{U+043a}"
    ],
    quarter_stand_alone_abbreviated => [
      "1-\N{U+0447}.",
      "2-\N{U+0447}.",
      "3-\N{U+0447}.",
      "4-\N{U+0447}."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-\N{U+0447}\N{U+0435}\N{U+0439}\N{U+0440}\N{U+0435}\N{U+043a}",
      "2-\N{U+0447}\N{U+0435}\N{U+0439}\N{U+0440}\N{U+0435}\N{U+043a}",
      "3-\N{U+0447}\N{U+0435}\N{U+0439}\N{U+0440}\N{U+0435}\N{U+043a}",
      "4-\N{U+0447}\N{U+0435}\N{U+0439}\N{U+0440}\N{U+0435}\N{U+043a}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ky-KG ]__
  {
    am_pm_abbreviated => [
      "\N{U+0442}\N{U+04a3}",
      "\N{U+0442}\N{U+043a}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y-'\N{U+0436}'.",
      GyMMM => "G y-'\N{U+0436}'. MMM",
      GyMMMEd => "G y-'\N{U+0436}'. d-MMM, E",
      GyMMMd => "G y-'\N{U+0436}'. d-MMM",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "dd-MM, E",
      MMM => "LLL",
      MMMEd => "d-MMM, E",
      MMMMd => "MMMM d",
      MMMd => "d-MMM",
      Md => "dd-MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y-'\N{U+0436}'. MMM",
      yMMMEd => "y-'\N{U+0436}'. d-MMM, E",
      yMMMM => "y MMMM",
      yMMMd => "y-'\N{U+0436}'. d-MMM",
      yMd => "y-MM-dd",
      yQQQ => "y-'\N{U+0436}'., QQQ",
      yQQQQ => "y-'\N{U+0436}'., QQQQ"
    },
    code => "ky-KG",
    date_format_full => "EEEE, d-MMMM, y-'\N{U+0436}'.",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0434}\N{U+04af}\N{U+0439}.",
      "\N{U+0448}\N{U+0435}\N{U+0439}\N{U+0448}.",
      "\N{U+0448}\N{U+0430}\N{U+0440}\N{U+0448}.",
      "\N{U+0431}\N{U+0435}\N{U+0439}\N{U+0448}.",
      "\N{U+0436}\N{U+0443}\N{U+043c}\N{U+0430}",
      "\N{U+0438}\N{U+0448}\N{U+043c}.",
      "\N{U+0436}\N{U+0435}\N{U+043a}."
    ],
    day_format_narrow => [
      "\N{U+0414}",
      "\N{U+0428}",
      "\N{U+0428}",
      "\N{U+0411}",
      "\N{U+0416}",
      "\N{U+0418}",
      "\N{U+0416}"
    ],
    day_format_wide => [
      "\N{U+0434}\N{U+04af}\N{U+0439}\N{U+0448}\N{U+04e9}\N{U+043c}\N{U+0431}\N{U+04af}",
      "\N{U+0448}\N{U+0435}\N{U+0439}\N{U+0448}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0438}",
      "\N{U+0448}\N{U+0430}\N{U+0440}\N{U+0448}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0438}",
      "\N{U+0431}\N{U+0435}\N{U+0439}\N{U+0448}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0438}",
      "\N{U+0436}\N{U+0443}\N{U+043c}\N{U+0430}",
      "\N{U+0438}\N{U+0448}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0438}",
      "\N{U+0436}\N{U+0435}\N{U+043a}\N{U+0448}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0438}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0434}\N{U+04af}\N{U+0439}.",
      "\N{U+0448}\N{U+0435}\N{U+0439}\N{U+0448}.",
      "\N{U+0448}\N{U+0430}\N{U+0440}\N{U+0448}.",
      "\N{U+0431}\N{U+0435}\N{U+0439}\N{U+0448}.",
      "\N{U+0436}\N{U+0443}\N{U+043c}\N{U+0430}",
      "\N{U+0438}\N{U+0448}\N{U+043c}.",
      "\N{U+0436}\N{U+0435}\N{U+043a}."
    ],
    day_stand_alone_narrow => [
      "\N{U+0414}",
      "\N{U+0428}",
      "\N{U+0428}",
      "\N{U+0411}",
      "\N{U+0416}",
      "\N{U+0418}",
      "\N{U+0416}"
    ],
    day_stand_alone_wide => [
      "\N{U+0434}\N{U+04af}\N{U+0439}\N{U+0448}\N{U+04e9}\N{U+043c}\N{U+0431}\N{U+04af}",
      "\N{U+0448}\N{U+0435}\N{U+0439}\N{U+0448}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0438}",
      "\N{U+0448}\N{U+0430}\N{U+0440}\N{U+0448}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0438}",
      "\N{U+0431}\N{U+0435}\N{U+0439}\N{U+0448}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0438}",
      "\N{U+0436}\N{U+0443}\N{U+043c}\N{U+0430}",
      "\N{U+0438}\N{U+0448}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0438}",
      "\N{U+0436}\N{U+0435}\N{U+043a}\N{U+0448}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0438}"
    ],
    era_abbreviated => [
      "\N{U+0431}.\N{U+0437}.\N{U+0447}.",
      "\N{U+0431}.\N{U+0437}."
    ],
    era_narrow => [
      "\N{U+0431}.\N{U+0437}.\N{U+0447}.",
      "\N{U+0431}.\N{U+0437}."
    ],
    era_wide => [
      "\N{U+0431}\N{U+0438}\N{U+0437}\N{U+0434}\N{U+0438}\N{U+043d} \N{U+0437}\N{U+0430}\N{U+043c}\N{U+0430}\N{U+043d}\N{U+0433}\N{U+0430} \N{U+0447}\N{U+0435}\N{U+0439}\N{U+0438}\N{U+043d}",
      "\N{U+0431}\N{U+0438}\N{U+0437}\N{U+0434}\N{U+0438}\N{U+043d} \N{U+0437}\N{U+0430}\N{U+043c}\N{U+0430}\N{U+043d}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a, %e-%b %Y \N{U+0436}, %H:%M:%S %Z",
    glibc_date_format => "%d.%m.%Y",
    glibc_datetime_format => "%a %d %b %Y %T",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Kyrgyz",
    month_format_abbreviated => [
      "\N{U+044f}\N{U+043d}\N{U+0432}.",
      "\N{U+0444}\N{U+0435}\N{U+0432}.",
      "\N{U+043c}\N{U+0430}\N{U+0440}.",
      "\N{U+0430}\N{U+043f}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+044e}\N{U+043d}.",
      "\N{U+0438}\N{U+044e}\N{U+043b}.",
      "\N{U+0430}\N{U+0432}\N{U+0433}.",
      "\N{U+0441}\N{U+0435}\N{U+043d}.",
      "\N{U+043e}\N{U+043a}\N{U+0442}.",
      "\N{U+043d}\N{U+043e}\N{U+044f}.",
      "\N{U+0434}\N{U+0435}\N{U+043a}."
    ],
    month_format_narrow => [
      "\N{U+042f}",
      "\N{U+0424}",
      "\N{U+041c}",
      "\N{U+0410}",
      "\N{U+041c}",
      "\N{U+0418}",
      "\N{U+0418}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+041e}",
      "\N{U+041d}",
      "\N{U+0414}"
    ],
    month_format_wide => [
      "\N{U+044f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+044c}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}\N{U+044c}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}\N{U+044c}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044c}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044c}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}\N{U+044c}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+042f}\N{U+043d}\N{U+0432}",
      "\N{U+0424}\N{U+0435}\N{U+0432}",
      "\N{U+041c}\N{U+0430}\N{U+0440}",
      "\N{U+0410}\N{U+043f}\N{U+0440}",
      "\N{U+041c}\N{U+0430}\N{U+0439}",
      "\N{U+0418}\N{U+044e}\N{U+043d}",
      "\N{U+0418}\N{U+044e}\N{U+043b}",
      "\N{U+0410}\N{U+0432}\N{U+0433}",
      "\N{U+0421}\N{U+0435}\N{U+043d}",
      "\N{U+041e}\N{U+043a}\N{U+0442}",
      "\N{U+041d}\N{U+043e}\N{U+044f}",
      "\N{U+0414}\N{U+0435}\N{U+043a}"
    ],
    month_stand_alone_narrow => [
      "\N{U+042f}",
      "\N{U+0424}",
      "\N{U+041c}",
      "\N{U+0410}",
      "\N{U+041c}",
      "\N{U+0418}",
      "\N{U+0418}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+041e}",
      "\N{U+041d}",
      "\N{U+0414}"
    ],
    month_stand_alone_wide => [
      "\N{U+042f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+044c}",
      "\N{U+0424}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}\N{U+044c}",
      "\N{U+041c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0410}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}\N{U+044c}",
      "\N{U+041c}\N{U+0430}\N{U+0439}",
      "\N{U+0418}\N{U+044e}\N{U+043d}\N{U+044c}",
      "\N{U+0418}\N{U+044e}\N{U+043b}\N{U+044c}",
      "\N{U+0410}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0421}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+041e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+041d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+0414}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}\N{U+044c}"
    ],
    name => "Kyrgyz Kyrgyzstan",
    native_language => "\N{U+043a}\N{U+044b}\N{U+0440}\N{U+0433}\N{U+044b}\N{U+0437}\N{U+0447}\N{U+0430}",
    native_name => "\N{U+043a}\N{U+044b}\N{U+0440}\N{U+0433}\N{U+044b}\N{U+0437}\N{U+0447}\N{U+0430} \N{U+041a}\N{U+044b}\N{U+0440}\N{U+0433}\N{U+044b}\N{U+0437}\N{U+0441}\N{U+0442}\N{U+0430}\N{U+043d}",
    native_script => undef,
    native_territory => "\N{U+041a}\N{U+044b}\N{U+0440}\N{U+0433}\N{U+044b}\N{U+0437}\N{U+0441}\N{U+0442}\N{U+0430}\N{U+043d}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1-\N{U+0447}\N{U+0435}\N{U+0439}.",
      "2-\N{U+0447}\N{U+0435}\N{U+0439}.",
      "3-\N{U+0447}\N{U+0435}\N{U+0439}.",
      "4-\N{U+0447}\N{U+0435}\N{U+0439}."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1-\N{U+0447}\N{U+0435}\N{U+0439}\N{U+0440}\N{U+0435}\N{U+043a}",
      "2-\N{U+0447}\N{U+0435}\N{U+0439}\N{U+0440}\N{U+0435}\N{U+043a}",
      "3-\N{U+0447}\N{U+0435}\N{U+0439}\N{U+0440}\N{U+0435}\N{U+043a}",
      "4-\N{U+0447}\N{U+0435}\N{U+0439}\N{U+0440}\N{U+0435}\N{U+043a}"
    ],
    quarter_stand_alone_abbreviated => [
      "1-\N{U+0447}.",
      "2-\N{U+0447}.",
      "3-\N{U+0447}.",
      "4-\N{U+0447}."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-\N{U+0447}\N{U+0435}\N{U+0439}\N{U+0440}\N{U+0435}\N{U+043a}",
      "2-\N{U+0447}\N{U+0435}\N{U+0439}\N{U+0440}\N{U+0435}\N{U+043a}",
      "3-\N{U+0447}\N{U+0435}\N{U+0439}\N{U+0440}\N{U+0435}\N{U+043a}",
      "4-\N{U+0447}\N{U+0435}\N{U+0439}\N{U+0440}\N{U+0435}\N{U+043a}"
    ],
    script => undef,
    territory => "Kyrgyzstan",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ lag ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "lag",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "T\N{U+00e1}atu",
      "\N{U+00cd}ne",
      "T\N{U+00e1}ano",
      "Alh",
      "Ijm",
      "M\N{U+00f3}osi",
      "P\N{U+00ed}ili"
    ],
    day_format_narrow => [
      "T",
      "E",
      "O",
      "A",
      "I",
      "M",
      "P"
    ],
    day_format_wide => [
      "Jumat\N{U+00e1}tu",
      "Juma\N{U+00ed}ne",
      "Jumat\N{U+00e1}ano",
      "Alam\N{U+00ed}isi",
      "Ijum\N{U+00e1}a",
      "Jumam\N{U+00f3}osi",
      "Jumap\N{U+00ed}iri"
    ],
    day_stand_alone_abbreviated => [
      "T\N{U+00e1}atu",
      "\N{U+00cd}ne",
      "T\N{U+00e1}ano",
      "Alh",
      "Ijm",
      "M\N{U+00f3}osi",
      "P\N{U+00ed}ili"
    ],
    day_stand_alone_narrow => [
      "T",
      "E",
      "O",
      "A",
      "I",
      "M",
      "P"
    ],
    day_stand_alone_wide => [
      "Jumat\N{U+00e1}tu",
      "Juma\N{U+00ed}ne",
      "Jumat\N{U+00e1}ano",
      "Alam\N{U+00ed}isi",
      "Ijum\N{U+00e1}a",
      "Jumam\N{U+00f3}osi",
      "Jumap\N{U+00ed}iri"
    ],
    era_abbreviated => [
      "KSA",
      "KA"
    ],
    era_narrow => [
      "KSA",
      "KA"
    ],
    era_wide => [
      "K\N{U+0268}r\N{U+0268}sit\N{U+0289} s\N{U+0268} anavyaal",
      "K\N{U+0268}r\N{U+0268}sit\N{U+0289} akavyaalwe"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Langi",
    month_format_abbreviated => [
      "F\N{U+00fa}ngat\N{U+0268}",
      "Naan\N{U+0268}",
      "Keenda",
      "Ik\N{U+00fa}mi",
      "Inyambala",
      "Idwaata",
      "M\N{U+0289}\N{U+0289}nch\N{U+0268}",
      "V\N{U+0268}\N{U+0268}r\N{U+0268}",
      "Saat\N{U+0289}",
      "Inyi",
      "Saano",
      "Sasat\N{U+0289}"
    ],
    month_format_narrow => [
      "F",
      "N",
      "K",
      "I",
      "I",
      "I",
      "M",
      "V",
      "S",
      "I",
      "S",
      "S"
    ],
    month_format_wide => [
      "K\N{U+0289}f\N{U+00fa}ngat\N{U+0268}",
      "K\N{U+0289}naan\N{U+0268}",
      "K\N{U+0289}keenda",
      "Kwiikumi",
      "Kwiinyamb\N{U+00e1}la",
      "Kwiidwaata",
      "K\N{U+0289}m\N{U+0289}\N{U+0289}nch\N{U+0268}",
      "K\N{U+0289}v\N{U+0268}\N{U+0268}r\N{U+0268}",
      "K\N{U+0289}saat\N{U+0289}",
      "Kwiinyi",
      "K\N{U+0289}saano",
      "K\N{U+0289}sasat\N{U+0289}"
    ],
    month_stand_alone_abbreviated => [
      "F\N{U+00fa}ngat\N{U+0268}",
      "Naan\N{U+0268}",
      "Keenda",
      "Ik\N{U+00fa}mi",
      "Inyambala",
      "Idwaata",
      "M\N{U+0289}\N{U+0289}nch\N{U+0268}",
      "V\N{U+0268}\N{U+0268}r\N{U+0268}",
      "Saat\N{U+0289}",
      "Inyi",
      "Saano",
      "Sasat\N{U+0289}"
    ],
    month_stand_alone_narrow => [
      "F",
      "N",
      "K",
      "I",
      "I",
      "I",
      "M",
      "V",
      "S",
      "I",
      "S",
      "S"
    ],
    month_stand_alone_wide => [
      "K\N{U+0289}f\N{U+00fa}ngat\N{U+0268}",
      "K\N{U+0289}naan\N{U+0268}",
      "K\N{U+0289}keenda",
      "Kwiikumi",
      "Kwiinyamb\N{U+00e1}la",
      "Kwiidwaata",
      "K\N{U+0289}m\N{U+0289}\N{U+0289}nch\N{U+0268}",
      "K\N{U+0289}v\N{U+0268}\N{U+0268}r\N{U+0268}",
      "K\N{U+0289}saat\N{U+0289}",
      "Kwiinyi",
      "K\N{U+0289}saano",
      "K\N{U+0289}sasat\N{U+0289}"
    ],
    name => "Langi",
    native_language => "K\N{U+0268}laangi",
    native_name => "K\N{U+0268}laangi",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Ncho 1",
      "Ncho 2",
      "Ncho 3",
      "Ncho 4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Ncholo ya 1",
      "Ncholo ya 2",
      "Ncholo ya 3",
      "Ncholo ya 4"
    ],
    quarter_stand_alone_abbreviated => [
      "Ncho 1",
      "Ncho 2",
      "Ncho 3",
      "Ncho 4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Ncholo ya 1",
      "Ncholo ya 2",
      "Ncholo ya 3",
      "Ncholo ya 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ lag-TZ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "lag-TZ",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "T\N{U+00e1}atu",
      "\N{U+00cd}ne",
      "T\N{U+00e1}ano",
      "Alh",
      "Ijm",
      "M\N{U+00f3}osi",
      "P\N{U+00ed}ili"
    ],
    day_format_narrow => [
      "T",
      "E",
      "O",
      "A",
      "I",
      "M",
      "P"
    ],
    day_format_wide => [
      "Jumat\N{U+00e1}tu",
      "Juma\N{U+00ed}ne",
      "Jumat\N{U+00e1}ano",
      "Alam\N{U+00ed}isi",
      "Ijum\N{U+00e1}a",
      "Jumam\N{U+00f3}osi",
      "Jumap\N{U+00ed}iri"
    ],
    day_stand_alone_abbreviated => [
      "T\N{U+00e1}atu",
      "\N{U+00cd}ne",
      "T\N{U+00e1}ano",
      "Alh",
      "Ijm",
      "M\N{U+00f3}osi",
      "P\N{U+00ed}ili"
    ],
    day_stand_alone_narrow => [
      "T",
      "E",
      "O",
      "A",
      "I",
      "M",
      "P"
    ],
    day_stand_alone_wide => [
      "Jumat\N{U+00e1}tu",
      "Juma\N{U+00ed}ne",
      "Jumat\N{U+00e1}ano",
      "Alam\N{U+00ed}isi",
      "Ijum\N{U+00e1}a",
      "Jumam\N{U+00f3}osi",
      "Jumap\N{U+00ed}iri"
    ],
    era_abbreviated => [
      "KSA",
      "KA"
    ],
    era_narrow => [
      "KSA",
      "KA"
    ],
    era_wide => [
      "K\N{U+0268}r\N{U+0268}sit\N{U+0289} s\N{U+0268} anavyaal",
      "K\N{U+0268}r\N{U+0268}sit\N{U+0289} akavyaalwe"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Langi",
    month_format_abbreviated => [
      "F\N{U+00fa}ngat\N{U+0268}",
      "Naan\N{U+0268}",
      "Keenda",
      "Ik\N{U+00fa}mi",
      "Inyambala",
      "Idwaata",
      "M\N{U+0289}\N{U+0289}nch\N{U+0268}",
      "V\N{U+0268}\N{U+0268}r\N{U+0268}",
      "Saat\N{U+0289}",
      "Inyi",
      "Saano",
      "Sasat\N{U+0289}"
    ],
    month_format_narrow => [
      "F",
      "N",
      "K",
      "I",
      "I",
      "I",
      "M",
      "V",
      "S",
      "I",
      "S",
      "S"
    ],
    month_format_wide => [
      "K\N{U+0289}f\N{U+00fa}ngat\N{U+0268}",
      "K\N{U+0289}naan\N{U+0268}",
      "K\N{U+0289}keenda",
      "Kwiikumi",
      "Kwiinyamb\N{U+00e1}la",
      "Kwiidwaata",
      "K\N{U+0289}m\N{U+0289}\N{U+0289}nch\N{U+0268}",
      "K\N{U+0289}v\N{U+0268}\N{U+0268}r\N{U+0268}",
      "K\N{U+0289}saat\N{U+0289}",
      "Kwiinyi",
      "K\N{U+0289}saano",
      "K\N{U+0289}sasat\N{U+0289}"
    ],
    month_stand_alone_abbreviated => [
      "F\N{U+00fa}ngat\N{U+0268}",
      "Naan\N{U+0268}",
      "Keenda",
      "Ik\N{U+00fa}mi",
      "Inyambala",
      "Idwaata",
      "M\N{U+0289}\N{U+0289}nch\N{U+0268}",
      "V\N{U+0268}\N{U+0268}r\N{U+0268}",
      "Saat\N{U+0289}",
      "Inyi",
      "Saano",
      "Sasat\N{U+0289}"
    ],
    month_stand_alone_narrow => [
      "F",
      "N",
      "K",
      "I",
      "I",
      "I",
      "M",
      "V",
      "S",
      "I",
      "S",
      "S"
    ],
    month_stand_alone_wide => [
      "K\N{U+0289}f\N{U+00fa}ngat\N{U+0268}",
      "K\N{U+0289}naan\N{U+0268}",
      "K\N{U+0289}keenda",
      "Kwiikumi",
      "Kwiinyamb\N{U+00e1}la",
      "Kwiidwaata",
      "K\N{U+0289}m\N{U+0289}\N{U+0289}nch\N{U+0268}",
      "K\N{U+0289}v\N{U+0268}\N{U+0268}r\N{U+0268}",
      "K\N{U+0289}saat\N{U+0289}",
      "Kwiinyi",
      "K\N{U+0289}saano",
      "K\N{U+0289}sasat\N{U+0289}"
    ],
    name => "Langi Tanzania",
    native_language => "K\N{U+0268}laangi",
    native_name => "K\N{U+0268}laangi Taansan\N{U+00ed}a",
    native_script => undef,
    native_territory => "Taansan\N{U+00ed}a",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Ncho 1",
      "Ncho 2",
      "Ncho 3",
      "Ncho 4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Ncholo ya 1",
      "Ncholo ya 2",
      "Ncholo ya 3",
      "Ncholo ya 4"
    ],
    quarter_stand_alone_abbreviated => [
      "Ncho 1",
      "Ncho 2",
      "Ncho 3",
      "Ncho 4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Ncholo ya 1",
      "Ncholo ya 2",
      "Ncholo ya 3",
      "Ncholo ya 4"
    ],
    script => undef,
    territory => "Tanzania",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ lb ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d.",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d. MMM y G",
      GyMMMd => "d. MMM y G",
      H => "HH 'Auer'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E, d. MMM",
      MMMMd => "MMMM d",
      MMMd => "d. MMM",
      Md => "d.M.",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M.y",
      yMEd => "E, d.M.y",
      yMMM => "MMM y",
      yMMMEd => "E, d. MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d. MMM y",
      yMd => "d.M.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "lb",
    date_format_full => "EEEE, d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "d. MMM y",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "M\N{U+00e9}i.",
      "D\N{U+00eb}n.",
      "M\N{U+00eb}t.",
      "Don.",
      "Fre.",
      "Sam.",
      "Son."
    ],
    day_format_narrow => [
      "M",
      "D",
      "M",
      "D",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "M\N{U+00e9}indeg",
      "D\N{U+00eb}nschdeg",
      "M\N{U+00eb}ttwoch",
      "Donneschdeg",
      "Freideg",
      "Samschdeg",
      "Sonndeg"
    ],
    day_stand_alone_abbreviated => [
      "M\N{U+00e9}i",
      "D\N{U+00eb}n",
      "M\N{U+00eb}t",
      "Don",
      "Fre",
      "Sam",
      "Son"
    ],
    day_stand_alone_narrow => [
      "M",
      "D",
      "M",
      "D",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "M\N{U+00e9}indeg",
      "D\N{U+00eb}nschdeg",
      "M\N{U+00eb}ttwoch",
      "Donneschdeg",
      "Freideg",
      "Samschdeg",
      "Sonndeg"
    ],
    era_abbreviated => [
      "v. Chr.",
      "n. Chr."
    ],
    era_narrow => [
      "v. Chr.",
      "n. Chr."
    ],
    era_wide => [
      "v. Chr.",
      "n. Chr."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Luxembourgish",
    month_format_abbreviated => [
      "Jan.",
      "Feb.",
      "M\N{U+00e4}e.",
      "Abr.",
      "Mee",
      "Juni",
      "Juli",
      "Aug.",
      "Sep.",
      "Okt.",
      "Nov.",
      "Dez."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januar",
      "Februar",
      "M\N{U+00e4}erz",
      "Abr\N{U+00eb}ll",
      "Mee",
      "Juni",
      "Juli",
      "August",
      "September",
      "Oktober",
      "November",
      "Dezember"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "M\N{U+00e4}e",
      "Abr",
      "Mee",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Okt",
      "Nov",
      "Dez"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januar",
      "Februar",
      "M\N{U+00e4}erz",
      "Abr\N{U+00eb}ll",
      "Mee",
      "Juni",
      "Juli",
      "August",
      "September",
      "Oktober",
      "November",
      "Dezember"
    ],
    name => "Luxembourgish",
    native_language => "L\N{U+00eb}tzebuergesch",
    native_name => "L\N{U+00eb}tzebuergesch",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. Quartal",
      "2. Quartal",
      "3. Quartal",
      "4. Quartal"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. Quartal",
      "2. Quartal",
      "3. Quartal",
      "4. Quartal"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ lb-LU ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d.",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d. MMM y G",
      GyMMMd => "d. MMM y G",
      H => "HH 'Auer'",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E, d. MMM",
      MMMMd => "MMMM d",
      MMMd => "d. MMM",
      Md => "d.M.",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M.y",
      yMEd => "E, d.M.y",
      yMMM => "MMM y",
      yMMMEd => "E, d. MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d. MMM y",
      yMd => "d.M.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "lb-LU",
    date_format_full => "EEEE, d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "d. MMM y",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "M\N{U+00e9}i.",
      "D\N{U+00eb}n.",
      "M\N{U+00eb}t.",
      "Don.",
      "Fre.",
      "Sam.",
      "Son."
    ],
    day_format_narrow => [
      "M",
      "D",
      "M",
      "D",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "M\N{U+00e9}indeg",
      "D\N{U+00eb}nschdeg",
      "M\N{U+00eb}ttwoch",
      "Donneschdeg",
      "Freideg",
      "Samschdeg",
      "Sonndeg"
    ],
    day_stand_alone_abbreviated => [
      "M\N{U+00e9}i",
      "D\N{U+00eb}n",
      "M\N{U+00eb}t",
      "Don",
      "Fre",
      "Sam",
      "Son"
    ],
    day_stand_alone_narrow => [
      "M",
      "D",
      "M",
      "D",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "M\N{U+00e9}indeg",
      "D\N{U+00eb}nschdeg",
      "M\N{U+00eb}ttwoch",
      "Donneschdeg",
      "Freideg",
      "Samschdeg",
      "Sonndeg"
    ],
    era_abbreviated => [
      "v. Chr.",
      "n. Chr."
    ],
    era_narrow => [
      "v. Chr.",
      "n. Chr."
    ],
    era_wide => [
      "v. Chr.",
      "n. Chr."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %-d. %b %H:%M:%S %Z %Y",
    glibc_date_format => "%d.%m.%Y",
    glibc_datetime_format => "%a %d. %b %Y %T",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Luxembourgish",
    month_format_abbreviated => [
      "Jan.",
      "Feb.",
      "M\N{U+00e4}e.",
      "Abr.",
      "Mee",
      "Juni",
      "Juli",
      "Aug.",
      "Sep.",
      "Okt.",
      "Nov.",
      "Dez."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januar",
      "Februar",
      "M\N{U+00e4}erz",
      "Abr\N{U+00eb}ll",
      "Mee",
      "Juni",
      "Juli",
      "August",
      "September",
      "Oktober",
      "November",
      "Dezember"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "M\N{U+00e4}e",
      "Abr",
      "Mee",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Okt",
      "Nov",
      "Dez"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januar",
      "Februar",
      "M\N{U+00e4}erz",
      "Abr\N{U+00eb}ll",
      "Mee",
      "Juni",
      "Juli",
      "August",
      "September",
      "Oktober",
      "November",
      "Dezember"
    ],
    name => "Luxembourgish Luxembourg",
    native_language => "L\N{U+00eb}tzebuergesch",
    native_name => "L\N{U+00eb}tzebuergesch L\N{U+00eb}tzebuerg",
    native_script => undef,
    native_territory => "L\N{U+00eb}tzebuerg",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. Quartal",
      "2. Quartal",
      "3. Quartal",
      "4. Quartal"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. Quartal",
      "2. Quartal",
      "3. Quartal",
      "4. Quartal"
    ],
    script => undef,
    territory => "Luxembourg",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ lg ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "lg",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Bal",
      "Lw2",
      "Lw3",
      "Lw4",
      "Lw5",
      "Lw6",
      "Sab"
    ],
    day_format_narrow => [
      "B",
      "L",
      "L",
      "L",
      "L",
      "L",
      "S"
    ],
    day_format_wide => [
      "Balaza",
      "Lwakubiri",
      "Lwakusatu",
      "Lwakuna",
      "Lwakutaano",
      "Lwamukaaga",
      "Sabbiiti"
    ],
    day_stand_alone_abbreviated => [
      "Bal",
      "Lw2",
      "Lw3",
      "Lw4",
      "Lw5",
      "Lw6",
      "Sab"
    ],
    day_stand_alone_narrow => [
      "B",
      "L",
      "L",
      "L",
      "L",
      "L",
      "S"
    ],
    day_stand_alone_wide => [
      "Balaza",
      "Lwakubiri",
      "Lwakusatu",
      "Lwakuna",
      "Lwakutaano",
      "Lwamukaaga",
      "Sabbiiti"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "Kulisito nga tannaza",
      "Bukya Kulisito Azaal"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Ganda",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apu",
      "Maa",
      "Juu",
      "Jul",
      "Agu",
      "Seb",
      "Oki",
      "Nov",
      "Des"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Janwaliyo",
      "Febwaliyo",
      "Marisi",
      "Apuli",
      "Maayi",
      "Juuni",
      "Julaayi",
      "Agusito",
      "Sebuttemba",
      "Okitobba",
      "Novemba",
      "Desemba"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apu",
      "Maa",
      "Juu",
      "Jul",
      "Agu",
      "Seb",
      "Oki",
      "Nov",
      "Des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Janwaliyo",
      "Febwaliyo",
      "Marisi",
      "Apuli",
      "Maayi",
      "Juuni",
      "Julaayi",
      "Agusito",
      "Sebuttemba",
      "Okitobba",
      "Novemba",
      "Desemba"
    ],
    name => "Ganda",
    native_language => "Luganda",
    native_name => "Luganda",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Kya1",
      "Kya2",
      "Kya3",
      "Kya4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Kyakuna 1",
      "Kyakuna 2",
      "Kyakuna 3",
      "Kyakuna 4"
    ],
    quarter_stand_alone_abbreviated => [
      "Kya1",
      "Kya2",
      "Kya3",
      "Kya4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Kyakuna 1",
      "Kyakuna 2",
      "Kyakuna 3",
      "Kyakuna 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ lg-UG ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "lg-UG",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Bal",
      "Lw2",
      "Lw3",
      "Lw4",
      "Lw5",
      "Lw6",
      "Sab"
    ],
    day_format_narrow => [
      "B",
      "L",
      "L",
      "L",
      "L",
      "L",
      "S"
    ],
    day_format_wide => [
      "Balaza",
      "Lwakubiri",
      "Lwakusatu",
      "Lwakuna",
      "Lwakutaano",
      "Lwamukaaga",
      "Sabbiiti"
    ],
    day_stand_alone_abbreviated => [
      "Bal",
      "Lw2",
      "Lw3",
      "Lw4",
      "Lw5",
      "Lw6",
      "Sab"
    ],
    day_stand_alone_narrow => [
      "B",
      "L",
      "L",
      "L",
      "L",
      "L",
      "S"
    ],
    day_stand_alone_wide => [
      "Balaza",
      "Lwakubiri",
      "Lwakusatu",
      "Lwakuna",
      "Lwakutaano",
      "Lwamukaaga",
      "Sabbiiti"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "Kulisito nga tannaza",
      "Bukya Kulisito Azaal"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Ganda",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apu",
      "Maa",
      "Juu",
      "Jul",
      "Agu",
      "Seb",
      "Oki",
      "Nov",
      "Des"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Janwaliyo",
      "Febwaliyo",
      "Marisi",
      "Apuli",
      "Maayi",
      "Juuni",
      "Julaayi",
      "Agusito",
      "Sebuttemba",
      "Okitobba",
      "Novemba",
      "Desemba"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apu",
      "Maa",
      "Juu",
      "Jul",
      "Agu",
      "Seb",
      "Oki",
      "Nov",
      "Des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Janwaliyo",
      "Febwaliyo",
      "Marisi",
      "Apuli",
      "Maayi",
      "Juuni",
      "Julaayi",
      "Agusito",
      "Sebuttemba",
      "Okitobba",
      "Novemba",
      "Desemba"
    ],
    name => "Ganda Uganda",
    native_language => "Luganda",
    native_name => "Luganda Yuganda",
    native_script => undef,
    native_territory => "Yuganda",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Kya1",
      "Kya2",
      "Kya3",
      "Kya4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Kyakuna 1",
      "Kyakuna 2",
      "Kyakuna 3",
      "Kyakuna 4"
    ],
    quarter_stand_alone_abbreviated => [
      "Kya1",
      "Kya2",
      "Kya3",
      "Kya4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Kyakuna 1",
      "Kyakuna 2",
      "Kyakuna 3",
      "Kyakuna 4"
    ],
    script => undef,
    territory => "Uganda",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ lkt ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "lkt",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "A\N{U+014b}p\N{U+00e9}tuwa\N{U+014b}\N{U+017e}i",
      "A\N{U+014b}p\N{U+00e9}tunu\N{U+014b}pa",
      "A\N{U+014b}p\N{U+00e9}tuyamni",
      "A\N{U+014b}p\N{U+00e9}tutopa",
      "A\N{U+014b}p\N{U+00e9}tuzapta\N{U+014b}",
      "Ow\N{U+00e1}\N{U+014b}gyu\N{U+017e}a\N{U+017e}api",
      "A\N{U+014b}p\N{U+00e9}tuwak\N{U+021f}a\N{U+014b}"
    ],
    day_format_narrow => [
      "W",
      "N",
      "Y",
      "T",
      "Z",
      "O",
      "A"
    ],
    day_format_wide => [
      "A\N{U+014b}p\N{U+00e9}tuwa\N{U+014b}\N{U+017e}i",
      "A\N{U+014b}p\N{U+00e9}tunu\N{U+014b}pa",
      "A\N{U+014b}p\N{U+00e9}tuyamni",
      "A\N{U+014b}p\N{U+00e9}tutopa",
      "A\N{U+014b}p\N{U+00e9}tuzapta\N{U+014b}",
      "Ow\N{U+00e1}\N{U+014b}gyu\N{U+017e}a\N{U+017e}api",
      "A\N{U+014b}p\N{U+00e9}tuwak\N{U+021f}a\N{U+014b}"
    ],
    day_stand_alone_abbreviated => [
      "A\N{U+014b}p\N{U+00e9}tuwa\N{U+014b}\N{U+017e}i",
      "A\N{U+014b}p\N{U+00e9}tunu\N{U+014b}pa",
      "A\N{U+014b}p\N{U+00e9}tuyamni",
      "A\N{U+014b}p\N{U+00e9}tutopa",
      "A\N{U+014b}p\N{U+00e9}tuzapta\N{U+014b}",
      "Ow\N{U+00e1}\N{U+014b}gyu\N{U+017e}a\N{U+017e}api",
      "A\N{U+014b}p\N{U+00e9}tuwak\N{U+021f}a\N{U+014b}"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "A\N{U+014b}p\N{U+00e9}tuwa\N{U+014b}\N{U+017e}i",
      "A\N{U+014b}p\N{U+00e9}tunu\N{U+014b}pa",
      "A\N{U+014b}p\N{U+00e9}tuyamni",
      "A\N{U+014b}p\N{U+00e9}tutopa",
      "A\N{U+014b}p\N{U+00e9}tuzapta\N{U+014b}",
      "Ow\N{U+00e1}\N{U+014b}gyu\N{U+017e}a\N{U+017e}api",
      "A\N{U+014b}p\N{U+00e9}tuwak\N{U+021f}a\N{U+014b}"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Lakota",
    month_format_abbreviated => [
      "Wi\N{U+00f3}the\N{U+021f}ika W\N{U+00ed}",
      "Thiy\N{U+00f3}\N{U+021f}eyu\N{U+014b}ka W\N{U+00ed}",
      "I\N{U+0161}t\N{U+00e1}wi\N{U+010d}hayaza\N{U+014b} W\N{U+00ed}",
      "P\N{U+021f}e\N{U+017e}\N{U+00ed}t\N{U+021f}o W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}w\N{U+00e1}pet\N{U+021f}o W\N{U+00ed}",
      "W\N{U+00ed}pazuk\N{U+021f}a-wa\N{U+0161}t\N{U+00e9} W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}p\N{U+021f}\N{U+00e1}sapa W\N{U+00ed}",
      "Was\N{U+00fa}t\N{U+021f}u\N{U+014b} W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}w\N{U+00e1}pe\N{U+01e7}i W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}w\N{U+00e1}pe-kasn\N{U+00e1} W\N{U+00ed}",
      "Wan\N{U+00ed}yetu W\N{U+00ed}",
      "T\N{U+021f}ah\N{U+00e9}kap\N{U+0161}u\N{U+014b} W\N{U+00ed}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Wi\N{U+00f3}the\N{U+021f}ika W\N{U+00ed}",
      "Thiy\N{U+00f3}\N{U+021f}eyu\N{U+014b}ka W\N{U+00ed}",
      "I\N{U+0161}t\N{U+00e1}wi\N{U+010d}hayaza\N{U+014b} W\N{U+00ed}",
      "P\N{U+021f}e\N{U+017e}\N{U+00ed}t\N{U+021f}o W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}w\N{U+00e1}pet\N{U+021f}o W\N{U+00ed}",
      "W\N{U+00ed}pazuk\N{U+021f}a-wa\N{U+0161}t\N{U+00e9} W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}p\N{U+021f}\N{U+00e1}sapa W\N{U+00ed}",
      "Was\N{U+00fa}t\N{U+021f}u\N{U+014b} W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}w\N{U+00e1}pe\N{U+01e7}i W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}w\N{U+00e1}pe-kasn\N{U+00e1} W\N{U+00ed}",
      "Wan\N{U+00ed}yetu W\N{U+00ed}",
      "T\N{U+021f}ah\N{U+00e9}kap\N{U+0161}u\N{U+014b} W\N{U+00ed}"
    ],
    month_stand_alone_abbreviated => [
      "Wi\N{U+00f3}the\N{U+021f}ika W\N{U+00ed}",
      "Thiy\N{U+00f3}\N{U+021f}eyu\N{U+014b}ka W\N{U+00ed}",
      "I\N{U+0161}t\N{U+00e1}wi\N{U+010d}hayaza\N{U+014b} W\N{U+00ed}",
      "P\N{U+021f}e\N{U+017e}\N{U+00ed}t\N{U+021f}o W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}w\N{U+00e1}pet\N{U+021f}o W\N{U+00ed}",
      "W\N{U+00ed}pazuk\N{U+021f}a-wa\N{U+0161}t\N{U+00e9} W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}p\N{U+021f}\N{U+00e1}sapa W\N{U+00ed}",
      "Was\N{U+00fa}t\N{U+021f}u\N{U+014b} W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}w\N{U+00e1}pe\N{U+01e7}i W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}w\N{U+00e1}pe-kasn\N{U+00e1} W\N{U+00ed}",
      "Wan\N{U+00ed}yetu W\N{U+00ed}",
      "T\N{U+021f}ah\N{U+00e9}kap\N{U+0161}u\N{U+014b} W\N{U+00ed}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Wi\N{U+00f3}the\N{U+021f}ika W\N{U+00ed}",
      "Thiy\N{U+00f3}\N{U+021f}eyu\N{U+014b}ka W\N{U+00ed}",
      "I\N{U+0161}t\N{U+00e1}wi\N{U+010d}hayaza\N{U+014b} W\N{U+00ed}",
      "P\N{U+021f}e\N{U+017e}\N{U+00ed}t\N{U+021f}o W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}w\N{U+00e1}pet\N{U+021f}o W\N{U+00ed}",
      "W\N{U+00ed}pazuk\N{U+021f}a-wa\N{U+0161}t\N{U+00e9} W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}p\N{U+021f}\N{U+00e1}sapa W\N{U+00ed}",
      "Was\N{U+00fa}t\N{U+021f}u\N{U+014b} W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}w\N{U+00e1}pe\N{U+01e7}i W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}w\N{U+00e1}pe-kasn\N{U+00e1} W\N{U+00ed}",
      "Wan\N{U+00ed}yetu W\N{U+00ed}",
      "T\N{U+021f}ah\N{U+00e9}kap\N{U+0161}u\N{U+014b} W\N{U+00ed}"
    ],
    name => "Lakota",
    native_language => "Lak\N{U+021f}\N{U+00f3}l\N{U+02bc}iyapi",
    native_name => "Lak\N{U+021f}\N{U+00f3}l\N{U+02bc}iyapi",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ lkt-US ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "lkt-US",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "A\N{U+014b}p\N{U+00e9}tuwa\N{U+014b}\N{U+017e}i",
      "A\N{U+014b}p\N{U+00e9}tunu\N{U+014b}pa",
      "A\N{U+014b}p\N{U+00e9}tuyamni",
      "A\N{U+014b}p\N{U+00e9}tutopa",
      "A\N{U+014b}p\N{U+00e9}tuzapta\N{U+014b}",
      "Ow\N{U+00e1}\N{U+014b}gyu\N{U+017e}a\N{U+017e}api",
      "A\N{U+014b}p\N{U+00e9}tuwak\N{U+021f}a\N{U+014b}"
    ],
    day_format_narrow => [
      "W",
      "N",
      "Y",
      "T",
      "Z",
      "O",
      "A"
    ],
    day_format_wide => [
      "A\N{U+014b}p\N{U+00e9}tuwa\N{U+014b}\N{U+017e}i",
      "A\N{U+014b}p\N{U+00e9}tunu\N{U+014b}pa",
      "A\N{U+014b}p\N{U+00e9}tuyamni",
      "A\N{U+014b}p\N{U+00e9}tutopa",
      "A\N{U+014b}p\N{U+00e9}tuzapta\N{U+014b}",
      "Ow\N{U+00e1}\N{U+014b}gyu\N{U+017e}a\N{U+017e}api",
      "A\N{U+014b}p\N{U+00e9}tuwak\N{U+021f}a\N{U+014b}"
    ],
    day_stand_alone_abbreviated => [
      "A\N{U+014b}p\N{U+00e9}tuwa\N{U+014b}\N{U+017e}i",
      "A\N{U+014b}p\N{U+00e9}tunu\N{U+014b}pa",
      "A\N{U+014b}p\N{U+00e9}tuyamni",
      "A\N{U+014b}p\N{U+00e9}tutopa",
      "A\N{U+014b}p\N{U+00e9}tuzapta\N{U+014b}",
      "Ow\N{U+00e1}\N{U+014b}gyu\N{U+017e}a\N{U+017e}api",
      "A\N{U+014b}p\N{U+00e9}tuwak\N{U+021f}a\N{U+014b}"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "A\N{U+014b}p\N{U+00e9}tuwa\N{U+014b}\N{U+017e}i",
      "A\N{U+014b}p\N{U+00e9}tunu\N{U+014b}pa",
      "A\N{U+014b}p\N{U+00e9}tuyamni",
      "A\N{U+014b}p\N{U+00e9}tutopa",
      "A\N{U+014b}p\N{U+00e9}tuzapta\N{U+014b}",
      "Ow\N{U+00e1}\N{U+014b}gyu\N{U+017e}a\N{U+017e}api",
      "A\N{U+014b}p\N{U+00e9}tuwak\N{U+021f}a\N{U+014b}"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Lakota",
    month_format_abbreviated => [
      "Wi\N{U+00f3}the\N{U+021f}ika W\N{U+00ed}",
      "Thiy\N{U+00f3}\N{U+021f}eyu\N{U+014b}ka W\N{U+00ed}",
      "I\N{U+0161}t\N{U+00e1}wi\N{U+010d}hayaza\N{U+014b} W\N{U+00ed}",
      "P\N{U+021f}e\N{U+017e}\N{U+00ed}t\N{U+021f}o W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}w\N{U+00e1}pet\N{U+021f}o W\N{U+00ed}",
      "W\N{U+00ed}pazuk\N{U+021f}a-wa\N{U+0161}t\N{U+00e9} W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}p\N{U+021f}\N{U+00e1}sapa W\N{U+00ed}",
      "Was\N{U+00fa}t\N{U+021f}u\N{U+014b} W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}w\N{U+00e1}pe\N{U+01e7}i W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}w\N{U+00e1}pe-kasn\N{U+00e1} W\N{U+00ed}",
      "Wan\N{U+00ed}yetu W\N{U+00ed}",
      "T\N{U+021f}ah\N{U+00e9}kap\N{U+0161}u\N{U+014b} W\N{U+00ed}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Wi\N{U+00f3}the\N{U+021f}ika W\N{U+00ed}",
      "Thiy\N{U+00f3}\N{U+021f}eyu\N{U+014b}ka W\N{U+00ed}",
      "I\N{U+0161}t\N{U+00e1}wi\N{U+010d}hayaza\N{U+014b} W\N{U+00ed}",
      "P\N{U+021f}e\N{U+017e}\N{U+00ed}t\N{U+021f}o W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}w\N{U+00e1}pet\N{U+021f}o W\N{U+00ed}",
      "W\N{U+00ed}pazuk\N{U+021f}a-wa\N{U+0161}t\N{U+00e9} W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}p\N{U+021f}\N{U+00e1}sapa W\N{U+00ed}",
      "Was\N{U+00fa}t\N{U+021f}u\N{U+014b} W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}w\N{U+00e1}pe\N{U+01e7}i W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}w\N{U+00e1}pe-kasn\N{U+00e1} W\N{U+00ed}",
      "Wan\N{U+00ed}yetu W\N{U+00ed}",
      "T\N{U+021f}ah\N{U+00e9}kap\N{U+0161}u\N{U+014b} W\N{U+00ed}"
    ],
    month_stand_alone_abbreviated => [
      "Wi\N{U+00f3}the\N{U+021f}ika W\N{U+00ed}",
      "Thiy\N{U+00f3}\N{U+021f}eyu\N{U+014b}ka W\N{U+00ed}",
      "I\N{U+0161}t\N{U+00e1}wi\N{U+010d}hayaza\N{U+014b} W\N{U+00ed}",
      "P\N{U+021f}e\N{U+017e}\N{U+00ed}t\N{U+021f}o W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}w\N{U+00e1}pet\N{U+021f}o W\N{U+00ed}",
      "W\N{U+00ed}pazuk\N{U+021f}a-wa\N{U+0161}t\N{U+00e9} W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}p\N{U+021f}\N{U+00e1}sapa W\N{U+00ed}",
      "Was\N{U+00fa}t\N{U+021f}u\N{U+014b} W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}w\N{U+00e1}pe\N{U+01e7}i W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}w\N{U+00e1}pe-kasn\N{U+00e1} W\N{U+00ed}",
      "Wan\N{U+00ed}yetu W\N{U+00ed}",
      "T\N{U+021f}ah\N{U+00e9}kap\N{U+0161}u\N{U+014b} W\N{U+00ed}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Wi\N{U+00f3}the\N{U+021f}ika W\N{U+00ed}",
      "Thiy\N{U+00f3}\N{U+021f}eyu\N{U+014b}ka W\N{U+00ed}",
      "I\N{U+0161}t\N{U+00e1}wi\N{U+010d}hayaza\N{U+014b} W\N{U+00ed}",
      "P\N{U+021f}e\N{U+017e}\N{U+00ed}t\N{U+021f}o W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}w\N{U+00e1}pet\N{U+021f}o W\N{U+00ed}",
      "W\N{U+00ed}pazuk\N{U+021f}a-wa\N{U+0161}t\N{U+00e9} W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}p\N{U+021f}\N{U+00e1}sapa W\N{U+00ed}",
      "Was\N{U+00fa}t\N{U+021f}u\N{U+014b} W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}w\N{U+00e1}pe\N{U+01e7}i W\N{U+00ed}",
      "\N{U+010c}ha\N{U+014b}w\N{U+00e1}pe-kasn\N{U+00e1} W\N{U+00ed}",
      "Wan\N{U+00ed}yetu W\N{U+00ed}",
      "T\N{U+021f}ah\N{U+00e9}kap\N{U+0161}u\N{U+014b} W\N{U+00ed}"
    ],
    name => "Lakota United States",
    native_language => "Lak\N{U+021f}\N{U+00f3}l\N{U+02bc}iyapi",
    native_name => "Lak\N{U+021f}\N{U+00f3}l\N{U+02bc}iyapi M\N{U+00ed}laha\N{U+014b}ska T\N{U+021f}am\N{U+00e1}k\N{U+021f}o\N{U+010d}he",
    native_script => undef,
    native_territory => "M\N{U+00ed}laha\N{U+014b}ska T\N{U+021f}am\N{U+00e1}k\N{U+021f}o\N{U+010d}he",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "United States",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ln ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ln",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "ybo",
      "mbl",
      "mst",
      "min",
      "mtn",
      "mps",
      "eye"
    ],
    day_format_narrow => [
      "y",
      "m",
      "m",
      "m",
      "m",
      "p",
      "e"
    ],
    day_format_wide => [
      "mok\N{U+0254}l\N{U+0254} mwa yambo",
      "mok\N{U+0254}l\N{U+0254} mwa m\N{U+00ed}bal\N{U+00e9}",
      "mok\N{U+0254}l\N{U+0254} mwa m\N{U+00ed}s\N{U+00e1}to",
      "mok\N{U+0254}l\N{U+0254} ya m\N{U+00ed}n\N{U+00e9}i",
      "mok\N{U+0254}l\N{U+0254} ya m\N{U+00ed}t\N{U+00e1}no",
      "mp\N{U+0254}\N{U+0301}s\N{U+0254}",
      "eyenga"
    ],
    day_stand_alone_abbreviated => [
      "ybo",
      "mbl",
      "mst",
      "min",
      "mtn",
      "mps",
      "eye"
    ],
    day_stand_alone_narrow => [
      "y",
      "m",
      "m",
      "m",
      "m",
      "p",
      "e"
    ],
    day_stand_alone_wide => [
      "mok\N{U+0254}l\N{U+0254} mwa yambo",
      "mok\N{U+0254}l\N{U+0254} mwa m\N{U+00ed}bal\N{U+00e9}",
      "mok\N{U+0254}l\N{U+0254} mwa m\N{U+00ed}s\N{U+00e1}to",
      "mok\N{U+0254}l\N{U+0254} ya m\N{U+00ed}n\N{U+00e9}i",
      "mok\N{U+0254}l\N{U+0254} ya m\N{U+00ed}t\N{U+00e1}no",
      "mp\N{U+0254}\N{U+0301}s\N{U+0254}",
      "eyenga"
    ],
    era_abbreviated => [
      "lib\N{U+00f3}so ya",
      "nsima ya Y"
    ],
    era_narrow => [
      "lib\N{U+00f3}so ya",
      "nsima ya Y"
    ],
    era_wide => [
      "Yambo ya Y\N{U+00e9}zu Kr\N{U+00ed}s",
      "Nsima ya Y\N{U+00e9}zu Kr\N{U+00ed}s"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Lingala",
    month_format_abbreviated => [
      "yan",
      "fbl",
      "msi",
      "apl",
      "mai",
      "yun",
      "yul",
      "agt",
      "stb",
      "\N{U+0254}tb",
      "nvb",
      "dsb"
    ],
    month_format_narrow => [
      "y",
      "f",
      "m",
      "a",
      "m",
      "y",
      "y",
      "a",
      "s",
      "\N{U+0254}",
      "n",
      "d"
    ],
    month_format_wide => [
      "s\N{U+00e1}nz\N{U+00e1} ya yambo",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}bal\N{U+00e9}",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}s\N{U+00e1}to",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}nei",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}t\N{U+00e1}no",
      "s\N{U+00e1}nz\N{U+00e1} ya mot\N{U+00f3}b\N{U+00e1}",
      "s\N{U+00e1}nz\N{U+00e1} ya nsambo",
      "s\N{U+00e1}nz\N{U+00e1} ya mwambe",
      "s\N{U+00e1}nz\N{U+00e1} ya libwa",
      "s\N{U+00e1}nz\N{U+00e1} ya z\N{U+00f3}mi",
      "s\N{U+00e1}nz\N{U+00e1} ya z\N{U+00f3}mi na m\N{U+0254}\N{U+030c}k\N{U+0254}\N{U+0301}",
      "s\N{U+00e1}nz\N{U+00e1} ya z\N{U+00f3}mi na m\N{U+00ed}bal\N{U+00e9}"
    ],
    month_stand_alone_abbreviated => [
      "yan",
      "fbl",
      "msi",
      "apl",
      "mai",
      "yun",
      "yul",
      "agt",
      "stb",
      "\N{U+0254}tb",
      "nvb",
      "dsb"
    ],
    month_stand_alone_narrow => [
      "y",
      "f",
      "m",
      "a",
      "m",
      "y",
      "y",
      "a",
      "s",
      "\N{U+0254}",
      "n",
      "d"
    ],
    month_stand_alone_wide => [
      "s\N{U+00e1}nz\N{U+00e1} ya yambo",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}bal\N{U+00e9}",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}s\N{U+00e1}to",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}nei",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}t\N{U+00e1}no",
      "s\N{U+00e1}nz\N{U+00e1} ya mot\N{U+00f3}b\N{U+00e1}",
      "s\N{U+00e1}nz\N{U+00e1} ya nsambo",
      "s\N{U+00e1}nz\N{U+00e1} ya mwambe",
      "s\N{U+00e1}nz\N{U+00e1} ya libwa",
      "s\N{U+00e1}nz\N{U+00e1} ya z\N{U+00f3}mi",
      "s\N{U+00e1}nz\N{U+00e1} ya z\N{U+00f3}mi na m\N{U+0254}\N{U+030c}k\N{U+0254}\N{U+0301}",
      "s\N{U+00e1}nz\N{U+00e1} ya z\N{U+00f3}mi na m\N{U+00ed}bal\N{U+00e9}"
    ],
    name => "Lingala",
    native_language => "ling\N{U+00e1}la",
    native_name => "ling\N{U+00e1}la",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "SM1",
      "SM2",
      "SM3",
      "SM4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya yambo",
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya m\N{U+00ed}bal\N{U+00e9}",
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya m\N{U+00ed}s\N{U+00e1}to",
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya m\N{U+00ed}nei"
    ],
    quarter_stand_alone_abbreviated => [
      "SM1",
      "SM2",
      "SM3",
      "SM4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya yambo",
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya m\N{U+00ed}bal\N{U+00e9}",
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya m\N{U+00ed}s\N{U+00e1}to",
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya m\N{U+00ed}nei"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ln-AO ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ln-AO",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "ybo",
      "mbl",
      "mst",
      "min",
      "mtn",
      "mps",
      "eye"
    ],
    day_format_narrow => [
      "y",
      "m",
      "m",
      "m",
      "m",
      "p",
      "e"
    ],
    day_format_wide => [
      "mok\N{U+0254}l\N{U+0254} mwa yambo",
      "mok\N{U+0254}l\N{U+0254} mwa m\N{U+00ed}bal\N{U+00e9}",
      "mok\N{U+0254}l\N{U+0254} mwa m\N{U+00ed}s\N{U+00e1}to",
      "mok\N{U+0254}l\N{U+0254} ya m\N{U+00ed}n\N{U+00e9}i",
      "mok\N{U+0254}l\N{U+0254} ya m\N{U+00ed}t\N{U+00e1}no",
      "mp\N{U+0254}\N{U+0301}s\N{U+0254}",
      "eyenga"
    ],
    day_stand_alone_abbreviated => [
      "ybo",
      "mbl",
      "mst",
      "min",
      "mtn",
      "mps",
      "eye"
    ],
    day_stand_alone_narrow => [
      "y",
      "m",
      "m",
      "m",
      "m",
      "p",
      "e"
    ],
    day_stand_alone_wide => [
      "mok\N{U+0254}l\N{U+0254} mwa yambo",
      "mok\N{U+0254}l\N{U+0254} mwa m\N{U+00ed}bal\N{U+00e9}",
      "mok\N{U+0254}l\N{U+0254} mwa m\N{U+00ed}s\N{U+00e1}to",
      "mok\N{U+0254}l\N{U+0254} ya m\N{U+00ed}n\N{U+00e9}i",
      "mok\N{U+0254}l\N{U+0254} ya m\N{U+00ed}t\N{U+00e1}no",
      "mp\N{U+0254}\N{U+0301}s\N{U+0254}",
      "eyenga"
    ],
    era_abbreviated => [
      "lib\N{U+00f3}so ya",
      "nsima ya Y"
    ],
    era_narrow => [
      "lib\N{U+00f3}so ya",
      "nsima ya Y"
    ],
    era_wide => [
      "Yambo ya Y\N{U+00e9}zu Kr\N{U+00ed}s",
      "Nsima ya Y\N{U+00e9}zu Kr\N{U+00ed}s"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Lingala",
    month_format_abbreviated => [
      "yan",
      "fbl",
      "msi",
      "apl",
      "mai",
      "yun",
      "yul",
      "agt",
      "stb",
      "\N{U+0254}tb",
      "nvb",
      "dsb"
    ],
    month_format_narrow => [
      "y",
      "f",
      "m",
      "a",
      "m",
      "y",
      "y",
      "a",
      "s",
      "\N{U+0254}",
      "n",
      "d"
    ],
    month_format_wide => [
      "s\N{U+00e1}nz\N{U+00e1} ya yambo",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}bal\N{U+00e9}",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}s\N{U+00e1}to",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}nei",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}t\N{U+00e1}no",
      "s\N{U+00e1}nz\N{U+00e1} ya mot\N{U+00f3}b\N{U+00e1}",
      "s\N{U+00e1}nz\N{U+00e1} ya nsambo",
      "s\N{U+00e1}nz\N{U+00e1} ya mwambe",
      "s\N{U+00e1}nz\N{U+00e1} ya libwa",
      "s\N{U+00e1}nz\N{U+00e1} ya z\N{U+00f3}mi",
      "s\N{U+00e1}nz\N{U+00e1} ya z\N{U+00f3}mi na m\N{U+0254}\N{U+030c}k\N{U+0254}\N{U+0301}",
      "s\N{U+00e1}nz\N{U+00e1} ya z\N{U+00f3}mi na m\N{U+00ed}bal\N{U+00e9}"
    ],
    month_stand_alone_abbreviated => [
      "yan",
      "fbl",
      "msi",
      "apl",
      "mai",
      "yun",
      "yul",
      "agt",
      "stb",
      "\N{U+0254}tb",
      "nvb",
      "dsb"
    ],
    month_stand_alone_narrow => [
      "y",
      "f",
      "m",
      "a",
      "m",
      "y",
      "y",
      "a",
      "s",
      "\N{U+0254}",
      "n",
      "d"
    ],
    month_stand_alone_wide => [
      "s\N{U+00e1}nz\N{U+00e1} ya yambo",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}bal\N{U+00e9}",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}s\N{U+00e1}to",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}nei",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}t\N{U+00e1}no",
      "s\N{U+00e1}nz\N{U+00e1} ya mot\N{U+00f3}b\N{U+00e1}",
      "s\N{U+00e1}nz\N{U+00e1} ya nsambo",
      "s\N{U+00e1}nz\N{U+00e1} ya mwambe",
      "s\N{U+00e1}nz\N{U+00e1} ya libwa",
      "s\N{U+00e1}nz\N{U+00e1} ya z\N{U+00f3}mi",
      "s\N{U+00e1}nz\N{U+00e1} ya z\N{U+00f3}mi na m\N{U+0254}\N{U+030c}k\N{U+0254}\N{U+0301}",
      "s\N{U+00e1}nz\N{U+00e1} ya z\N{U+00f3}mi na m\N{U+00ed}bal\N{U+00e9}"
    ],
    name => "Lingala Angola",
    native_language => "ling\N{U+00e1}la",
    native_name => "ling\N{U+00e1}la Ang\N{U+00f3}la",
    native_script => undef,
    native_territory => "Ang\N{U+00f3}la",
    native_variant => undef,
    quarter_format_abbreviated => [
      "SM1",
      "SM2",
      "SM3",
      "SM4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya yambo",
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya m\N{U+00ed}bal\N{U+00e9}",
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya m\N{U+00ed}s\N{U+00e1}to",
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya m\N{U+00ed}nei"
    ],
    quarter_stand_alone_abbreviated => [
      "SM1",
      "SM2",
      "SM3",
      "SM4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya yambo",
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya m\N{U+00ed}bal\N{U+00e9}",
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya m\N{U+00ed}s\N{U+00e1}to",
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya m\N{U+00ed}nei"
    ],
    script => undef,
    territory => "Angola",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ln-CD ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ln-CD",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "ybo",
      "mbl",
      "mst",
      "min",
      "mtn",
      "mps",
      "eye"
    ],
    day_format_narrow => [
      "y",
      "m",
      "m",
      "m",
      "m",
      "p",
      "e"
    ],
    day_format_wide => [
      "mok\N{U+0254}l\N{U+0254} mwa yambo",
      "mok\N{U+0254}l\N{U+0254} mwa m\N{U+00ed}bal\N{U+00e9}",
      "mok\N{U+0254}l\N{U+0254} mwa m\N{U+00ed}s\N{U+00e1}to",
      "mok\N{U+0254}l\N{U+0254} ya m\N{U+00ed}n\N{U+00e9}i",
      "mok\N{U+0254}l\N{U+0254} ya m\N{U+00ed}t\N{U+00e1}no",
      "mp\N{U+0254}\N{U+0301}s\N{U+0254}",
      "eyenga"
    ],
    day_stand_alone_abbreviated => [
      "ybo",
      "mbl",
      "mst",
      "min",
      "mtn",
      "mps",
      "eye"
    ],
    day_stand_alone_narrow => [
      "y",
      "m",
      "m",
      "m",
      "m",
      "p",
      "e"
    ],
    day_stand_alone_wide => [
      "mok\N{U+0254}l\N{U+0254} mwa yambo",
      "mok\N{U+0254}l\N{U+0254} mwa m\N{U+00ed}bal\N{U+00e9}",
      "mok\N{U+0254}l\N{U+0254} mwa m\N{U+00ed}s\N{U+00e1}to",
      "mok\N{U+0254}l\N{U+0254} ya m\N{U+00ed}n\N{U+00e9}i",
      "mok\N{U+0254}l\N{U+0254} ya m\N{U+00ed}t\N{U+00e1}no",
      "mp\N{U+0254}\N{U+0301}s\N{U+0254}",
      "eyenga"
    ],
    era_abbreviated => [
      "lib\N{U+00f3}so ya",
      "nsima ya Y"
    ],
    era_narrow => [
      "lib\N{U+00f3}so ya",
      "nsima ya Y"
    ],
    era_wide => [
      "Yambo ya Y\N{U+00e9}zu Kr\N{U+00ed}s",
      "Nsima ya Y\N{U+00e9}zu Kr\N{U+00ed}s"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Lingala",
    month_format_abbreviated => [
      "yan",
      "fbl",
      "msi",
      "apl",
      "mai",
      "yun",
      "yul",
      "agt",
      "stb",
      "\N{U+0254}tb",
      "nvb",
      "dsb"
    ],
    month_format_narrow => [
      "y",
      "f",
      "m",
      "a",
      "m",
      "y",
      "y",
      "a",
      "s",
      "\N{U+0254}",
      "n",
      "d"
    ],
    month_format_wide => [
      "s\N{U+00e1}nz\N{U+00e1} ya yambo",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}bal\N{U+00e9}",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}s\N{U+00e1}to",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}nei",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}t\N{U+00e1}no",
      "s\N{U+00e1}nz\N{U+00e1} ya mot\N{U+00f3}b\N{U+00e1}",
      "s\N{U+00e1}nz\N{U+00e1} ya nsambo",
      "s\N{U+00e1}nz\N{U+00e1} ya mwambe",
      "s\N{U+00e1}nz\N{U+00e1} ya libwa",
      "s\N{U+00e1}nz\N{U+00e1} ya z\N{U+00f3}mi",
      "s\N{U+00e1}nz\N{U+00e1} ya z\N{U+00f3}mi na m\N{U+0254}\N{U+030c}k\N{U+0254}\N{U+0301}",
      "s\N{U+00e1}nz\N{U+00e1} ya z\N{U+00f3}mi na m\N{U+00ed}bal\N{U+00e9}"
    ],
    month_stand_alone_abbreviated => [
      "yan",
      "fbl",
      "msi",
      "apl",
      "mai",
      "yun",
      "yul",
      "agt",
      "stb",
      "\N{U+0254}tb",
      "nvb",
      "dsb"
    ],
    month_stand_alone_narrow => [
      "y",
      "f",
      "m",
      "a",
      "m",
      "y",
      "y",
      "a",
      "s",
      "\N{U+0254}",
      "n",
      "d"
    ],
    month_stand_alone_wide => [
      "s\N{U+00e1}nz\N{U+00e1} ya yambo",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}bal\N{U+00e9}",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}s\N{U+00e1}to",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}nei",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}t\N{U+00e1}no",
      "s\N{U+00e1}nz\N{U+00e1} ya mot\N{U+00f3}b\N{U+00e1}",
      "s\N{U+00e1}nz\N{U+00e1} ya nsambo",
      "s\N{U+00e1}nz\N{U+00e1} ya mwambe",
      "s\N{U+00e1}nz\N{U+00e1} ya libwa",
      "s\N{U+00e1}nz\N{U+00e1} ya z\N{U+00f3}mi",
      "s\N{U+00e1}nz\N{U+00e1} ya z\N{U+00f3}mi na m\N{U+0254}\N{U+030c}k\N{U+0254}\N{U+0301}",
      "s\N{U+00e1}nz\N{U+00e1} ya z\N{U+00f3}mi na m\N{U+00ed}bal\N{U+00e9}"
    ],
    name => "Lingala Congo - Kinshasa",
    native_language => "ling\N{U+00e1}la",
    native_name => "ling\N{U+00e1}la Repibiki demokratiki ya Kong\N{U+00f3}",
    native_script => undef,
    native_territory => "Repibiki demokratiki ya Kong\N{U+00f3}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "SM1",
      "SM2",
      "SM3",
      "SM4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya yambo",
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya m\N{U+00ed}bal\N{U+00e9}",
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya m\N{U+00ed}s\N{U+00e1}to",
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya m\N{U+00ed}nei"
    ],
    quarter_stand_alone_abbreviated => [
      "SM1",
      "SM2",
      "SM3",
      "SM4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya yambo",
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya m\N{U+00ed}bal\N{U+00e9}",
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya m\N{U+00ed}s\N{U+00e1}to",
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya m\N{U+00ed}nei"
    ],
    script => undef,
    territory => "Congo - Kinshasa",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ln-CF ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ln-CF",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "ybo",
      "mbl",
      "mst",
      "min",
      "mtn",
      "mps",
      "eye"
    ],
    day_format_narrow => [
      "y",
      "m",
      "m",
      "m",
      "m",
      "p",
      "e"
    ],
    day_format_wide => [
      "mok\N{U+0254}l\N{U+0254} mwa yambo",
      "mok\N{U+0254}l\N{U+0254} mwa m\N{U+00ed}bal\N{U+00e9}",
      "mok\N{U+0254}l\N{U+0254} mwa m\N{U+00ed}s\N{U+00e1}to",
      "mok\N{U+0254}l\N{U+0254} ya m\N{U+00ed}n\N{U+00e9}i",
      "mok\N{U+0254}l\N{U+0254} ya m\N{U+00ed}t\N{U+00e1}no",
      "mp\N{U+0254}\N{U+0301}s\N{U+0254}",
      "eyenga"
    ],
    day_stand_alone_abbreviated => [
      "ybo",
      "mbl",
      "mst",
      "min",
      "mtn",
      "mps",
      "eye"
    ],
    day_stand_alone_narrow => [
      "y",
      "m",
      "m",
      "m",
      "m",
      "p",
      "e"
    ],
    day_stand_alone_wide => [
      "mok\N{U+0254}l\N{U+0254} mwa yambo",
      "mok\N{U+0254}l\N{U+0254} mwa m\N{U+00ed}bal\N{U+00e9}",
      "mok\N{U+0254}l\N{U+0254} mwa m\N{U+00ed}s\N{U+00e1}to",
      "mok\N{U+0254}l\N{U+0254} ya m\N{U+00ed}n\N{U+00e9}i",
      "mok\N{U+0254}l\N{U+0254} ya m\N{U+00ed}t\N{U+00e1}no",
      "mp\N{U+0254}\N{U+0301}s\N{U+0254}",
      "eyenga"
    ],
    era_abbreviated => [
      "lib\N{U+00f3}so ya",
      "nsima ya Y"
    ],
    era_narrow => [
      "lib\N{U+00f3}so ya",
      "nsima ya Y"
    ],
    era_wide => [
      "Yambo ya Y\N{U+00e9}zu Kr\N{U+00ed}s",
      "Nsima ya Y\N{U+00e9}zu Kr\N{U+00ed}s"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Lingala",
    month_format_abbreviated => [
      "yan",
      "fbl",
      "msi",
      "apl",
      "mai",
      "yun",
      "yul",
      "agt",
      "stb",
      "\N{U+0254}tb",
      "nvb",
      "dsb"
    ],
    month_format_narrow => [
      "y",
      "f",
      "m",
      "a",
      "m",
      "y",
      "y",
      "a",
      "s",
      "\N{U+0254}",
      "n",
      "d"
    ],
    month_format_wide => [
      "s\N{U+00e1}nz\N{U+00e1} ya yambo",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}bal\N{U+00e9}",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}s\N{U+00e1}to",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}nei",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}t\N{U+00e1}no",
      "s\N{U+00e1}nz\N{U+00e1} ya mot\N{U+00f3}b\N{U+00e1}",
      "s\N{U+00e1}nz\N{U+00e1} ya nsambo",
      "s\N{U+00e1}nz\N{U+00e1} ya mwambe",
      "s\N{U+00e1}nz\N{U+00e1} ya libwa",
      "s\N{U+00e1}nz\N{U+00e1} ya z\N{U+00f3}mi",
      "s\N{U+00e1}nz\N{U+00e1} ya z\N{U+00f3}mi na m\N{U+0254}\N{U+030c}k\N{U+0254}\N{U+0301}",
      "s\N{U+00e1}nz\N{U+00e1} ya z\N{U+00f3}mi na m\N{U+00ed}bal\N{U+00e9}"
    ],
    month_stand_alone_abbreviated => [
      "yan",
      "fbl",
      "msi",
      "apl",
      "mai",
      "yun",
      "yul",
      "agt",
      "stb",
      "\N{U+0254}tb",
      "nvb",
      "dsb"
    ],
    month_stand_alone_narrow => [
      "y",
      "f",
      "m",
      "a",
      "m",
      "y",
      "y",
      "a",
      "s",
      "\N{U+0254}",
      "n",
      "d"
    ],
    month_stand_alone_wide => [
      "s\N{U+00e1}nz\N{U+00e1} ya yambo",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}bal\N{U+00e9}",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}s\N{U+00e1}to",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}nei",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}t\N{U+00e1}no",
      "s\N{U+00e1}nz\N{U+00e1} ya mot\N{U+00f3}b\N{U+00e1}",
      "s\N{U+00e1}nz\N{U+00e1} ya nsambo",
      "s\N{U+00e1}nz\N{U+00e1} ya mwambe",
      "s\N{U+00e1}nz\N{U+00e1} ya libwa",
      "s\N{U+00e1}nz\N{U+00e1} ya z\N{U+00f3}mi",
      "s\N{U+00e1}nz\N{U+00e1} ya z\N{U+00f3}mi na m\N{U+0254}\N{U+030c}k\N{U+0254}\N{U+0301}",
      "s\N{U+00e1}nz\N{U+00e1} ya z\N{U+00f3}mi na m\N{U+00ed}bal\N{U+00e9}"
    ],
    name => "Lingala Central African Republic",
    native_language => "ling\N{U+00e1}la",
    native_name => "ling\N{U+00e1}la Repibiki ya Afr\N{U+00ed}ka ya K\N{U+00e1}ti",
    native_script => undef,
    native_territory => "Repibiki ya Afr\N{U+00ed}ka ya K\N{U+00e1}ti",
    native_variant => undef,
    quarter_format_abbreviated => [
      "SM1",
      "SM2",
      "SM3",
      "SM4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya yambo",
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya m\N{U+00ed}bal\N{U+00e9}",
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya m\N{U+00ed}s\N{U+00e1}to",
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya m\N{U+00ed}nei"
    ],
    quarter_stand_alone_abbreviated => [
      "SM1",
      "SM2",
      "SM3",
      "SM4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya yambo",
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya m\N{U+00ed}bal\N{U+00e9}",
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya m\N{U+00ed}s\N{U+00e1}to",
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya m\N{U+00ed}nei"
    ],
    script => undef,
    territory => "Central African Republic",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ln-CG ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ln-CG",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "ybo",
      "mbl",
      "mst",
      "min",
      "mtn",
      "mps",
      "eye"
    ],
    day_format_narrow => [
      "y",
      "m",
      "m",
      "m",
      "m",
      "p",
      "e"
    ],
    day_format_wide => [
      "mok\N{U+0254}l\N{U+0254} mwa yambo",
      "mok\N{U+0254}l\N{U+0254} mwa m\N{U+00ed}bal\N{U+00e9}",
      "mok\N{U+0254}l\N{U+0254} mwa m\N{U+00ed}s\N{U+00e1}to",
      "mok\N{U+0254}l\N{U+0254} ya m\N{U+00ed}n\N{U+00e9}i",
      "mok\N{U+0254}l\N{U+0254} ya m\N{U+00ed}t\N{U+00e1}no",
      "mp\N{U+0254}\N{U+0301}s\N{U+0254}",
      "eyenga"
    ],
    day_stand_alone_abbreviated => [
      "ybo",
      "mbl",
      "mst",
      "min",
      "mtn",
      "mps",
      "eye"
    ],
    day_stand_alone_narrow => [
      "y",
      "m",
      "m",
      "m",
      "m",
      "p",
      "e"
    ],
    day_stand_alone_wide => [
      "mok\N{U+0254}l\N{U+0254} mwa yambo",
      "mok\N{U+0254}l\N{U+0254} mwa m\N{U+00ed}bal\N{U+00e9}",
      "mok\N{U+0254}l\N{U+0254} mwa m\N{U+00ed}s\N{U+00e1}to",
      "mok\N{U+0254}l\N{U+0254} ya m\N{U+00ed}n\N{U+00e9}i",
      "mok\N{U+0254}l\N{U+0254} ya m\N{U+00ed}t\N{U+00e1}no",
      "mp\N{U+0254}\N{U+0301}s\N{U+0254}",
      "eyenga"
    ],
    era_abbreviated => [
      "lib\N{U+00f3}so ya",
      "nsima ya Y"
    ],
    era_narrow => [
      "lib\N{U+00f3}so ya",
      "nsima ya Y"
    ],
    era_wide => [
      "Yambo ya Y\N{U+00e9}zu Kr\N{U+00ed}s",
      "Nsima ya Y\N{U+00e9}zu Kr\N{U+00ed}s"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Lingala",
    month_format_abbreviated => [
      "yan",
      "fbl",
      "msi",
      "apl",
      "mai",
      "yun",
      "yul",
      "agt",
      "stb",
      "\N{U+0254}tb",
      "nvb",
      "dsb"
    ],
    month_format_narrow => [
      "y",
      "f",
      "m",
      "a",
      "m",
      "y",
      "y",
      "a",
      "s",
      "\N{U+0254}",
      "n",
      "d"
    ],
    month_format_wide => [
      "s\N{U+00e1}nz\N{U+00e1} ya yambo",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}bal\N{U+00e9}",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}s\N{U+00e1}to",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}nei",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}t\N{U+00e1}no",
      "s\N{U+00e1}nz\N{U+00e1} ya mot\N{U+00f3}b\N{U+00e1}",
      "s\N{U+00e1}nz\N{U+00e1} ya nsambo",
      "s\N{U+00e1}nz\N{U+00e1} ya mwambe",
      "s\N{U+00e1}nz\N{U+00e1} ya libwa",
      "s\N{U+00e1}nz\N{U+00e1} ya z\N{U+00f3}mi",
      "s\N{U+00e1}nz\N{U+00e1} ya z\N{U+00f3}mi na m\N{U+0254}\N{U+030c}k\N{U+0254}\N{U+0301}",
      "s\N{U+00e1}nz\N{U+00e1} ya z\N{U+00f3}mi na m\N{U+00ed}bal\N{U+00e9}"
    ],
    month_stand_alone_abbreviated => [
      "yan",
      "fbl",
      "msi",
      "apl",
      "mai",
      "yun",
      "yul",
      "agt",
      "stb",
      "\N{U+0254}tb",
      "nvb",
      "dsb"
    ],
    month_stand_alone_narrow => [
      "y",
      "f",
      "m",
      "a",
      "m",
      "y",
      "y",
      "a",
      "s",
      "\N{U+0254}",
      "n",
      "d"
    ],
    month_stand_alone_wide => [
      "s\N{U+00e1}nz\N{U+00e1} ya yambo",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}bal\N{U+00e9}",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}s\N{U+00e1}to",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}nei",
      "s\N{U+00e1}nz\N{U+00e1} ya m\N{U+00ed}t\N{U+00e1}no",
      "s\N{U+00e1}nz\N{U+00e1} ya mot\N{U+00f3}b\N{U+00e1}",
      "s\N{U+00e1}nz\N{U+00e1} ya nsambo",
      "s\N{U+00e1}nz\N{U+00e1} ya mwambe",
      "s\N{U+00e1}nz\N{U+00e1} ya libwa",
      "s\N{U+00e1}nz\N{U+00e1} ya z\N{U+00f3}mi",
      "s\N{U+00e1}nz\N{U+00e1} ya z\N{U+00f3}mi na m\N{U+0254}\N{U+030c}k\N{U+0254}\N{U+0301}",
      "s\N{U+00e1}nz\N{U+00e1} ya z\N{U+00f3}mi na m\N{U+00ed}bal\N{U+00e9}"
    ],
    name => "Lingala Congo - Brazzaville",
    native_language => "ling\N{U+00e1}la",
    native_name => "ling\N{U+00e1}la Kongo",
    native_script => undef,
    native_territory => "Kongo",
    native_variant => undef,
    quarter_format_abbreviated => [
      "SM1",
      "SM2",
      "SM3",
      "SM4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya yambo",
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya m\N{U+00ed}bal\N{U+00e9}",
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya m\N{U+00ed}s\N{U+00e1}to",
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya m\N{U+00ed}nei"
    ],
    quarter_stand_alone_abbreviated => [
      "SM1",
      "SM2",
      "SM3",
      "SM4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya yambo",
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya m\N{U+00ed}bal\N{U+00e9}",
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya m\N{U+00ed}s\N{U+00e1}to",
      "s\N{U+00e1}nz\N{U+00e1} m\N{U+00ed}s\N{U+00e1}to ya m\N{U+00ed}nei"
    ],
    script => undef,
    territory => "Congo - Brazzaville",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ lo ]__
  {
    am_pm_abbreviated => [
      "\N{U+0e81}\N{U+0ec8}\N{U+0ead}\N{U+0e99}\N{U+0e97}\N{U+0ec8}\N{U+0ebd}\N{U+0e87}",
      "\N{U+0eab}\N{U+0ebc}\N{U+0eb1}\N{U+0e87}\N{U+0e97}\N{U+0ec8}\N{U+0ebd}\N{U+0e87}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E, d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "MMM, G y",
      GyMMMEd => "E d MMMM, G y",
      GyMMMd => "d MMMM, G y",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h \N{U+0ec2}\N{U+0ea1}\N{U+0e87}a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "lo",
    date_format_full => "EEEE \N{U+0e97}\N{U+0eb5} d MMMM G y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0e88}\N{U+0eb1}\N{U+0e99}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0ead}\N{U+0eb1}\N{U+0e87}\N{U+0e84}\N{U+0eb2}\N{U+0e99}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0e9e}\N{U+0eb8}\N{U+0e94}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0e9e}\N{U+0eb0}\N{U+0eab}\N{U+0eb1}\N{U+0e94}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0eaa}\N{U+0eb8}\N{U+0e81}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0ec0}\N{U+0eaa}\N{U+0ebb}\N{U+0eb2}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0ead}\N{U+0eb2}\N{U+0e97}\N{U+0eb4}\N{U+0e94}"
    ],
    day_format_narrow => [
      2,
      3,
      4,
      5,
      6,
      7,
      1
    ],
    day_format_wide => [
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0e88}\N{U+0eb1}\N{U+0e99}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0ead}\N{U+0eb1}\N{U+0e87}\N{U+0e84}\N{U+0eb2}\N{U+0e99}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0e9e}\N{U+0eb8}\N{U+0e94}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0e9e}\N{U+0eb0}\N{U+0eab}\N{U+0eb1}\N{U+0e94}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0eaa}\N{U+0eb8}\N{U+0e81}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0ec0}\N{U+0eaa}\N{U+0ebb}\N{U+0eb2}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0ead}\N{U+0eb2}\N{U+0e97}\N{U+0eb4}\N{U+0e94}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0e88}\N{U+0eb1}\N{U+0e99}",
      "\N{U+0ead}\N{U+0eb1}\N{U+0e87}\N{U+0e84}\N{U+0eb2}\N{U+0e99}",
      "\N{U+0e9e}\N{U+0eb8}\N{U+0e94}",
      "\N{U+0e9e}\N{U+0eb0}\N{U+0eab}\N{U+0eb1}\N{U+0e94}",
      "\N{U+0eaa}\N{U+0eb8}\N{U+0e81}",
      "\N{U+0ec0}\N{U+0eaa}\N{U+0ebb}\N{U+0eb2}",
      "\N{U+0ead}\N{U+0eb2}\N{U+0e97}\N{U+0eb4}\N{U+0e94}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0e88}",
      "\N{U+0ead}",
      "\N{U+0e9e}",
      "\N{U+0e9e}\N{U+0eab}",
      "\N{U+0eaa}\N{U+0eb8}",
      "\N{U+0eaa}",
      "\N{U+0ead}"
    ],
    day_stand_alone_wide => [
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0e88}\N{U+0eb1}\N{U+0e99}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0ead}\N{U+0eb1}\N{U+0e87}\N{U+0e84}\N{U+0eb2}\N{U+0e99}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0e9e}\N{U+0eb8}\N{U+0e94}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0e9e}\N{U+0eb0}\N{U+0eab}\N{U+0eb1}\N{U+0e94}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0eaa}\N{U+0eb8}\N{U+0e81}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0ec0}\N{U+0eaa}\N{U+0ebb}\N{U+0eb2}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0ead}\N{U+0eb2}\N{U+0e97}\N{U+0eb4}\N{U+0e94}"
    ],
    era_abbreviated => [
      "\N{U+0e81}\N{U+0ec8}\N{U+0ead}\N{U+0e99} \N{U+0e84}.\N{U+0eaa}.",
      "\N{U+0e84}.\N{U+0eaa}."
    ],
    era_narrow => [
      "\N{U+0e81}\N{U+0ec8}\N{U+0ead}\N{U+0e99} \N{U+0e84}.\N{U+0eaa}.",
      "\N{U+0e84}.\N{U+0eaa}."
    ],
    era_wide => [
      "\N{U+0e81}\N{U+0ec8}\N{U+0ead}\N{U+0e99}\N{U+0e84}\N{U+0ea3}\N{U+0eb4}\N{U+0e94}\N{U+0eaa}\N{U+0eb1}\N{U+0e81}\N{U+0e81}\N{U+0eb0}\N{U+0ea5}\N{U+0eb2}\N{U+0e94}",
      "\N{U+0e84}\N{U+0ea3}\N{U+0eb4}\N{U+0e94}\N{U+0eaa}\N{U+0eb1}\N{U+0e81}\N{U+0e81}\N{U+0eb0}\N{U+0ea5}\N{U+0eb2}\N{U+0e94}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Lao",
    month_format_abbreviated => [
      "\N{U+0ea1}.\N{U+0e81}.",
      "\N{U+0e81}.\N{U+0e9e}.",
      "\N{U+0ea1}.\N{U+0e99}.",
      "\N{U+0ea1}.\N{U+0eaa}.",
      "\N{U+0e9e}.\N{U+0e9e}.",
      "\N{U+0ea1}\N{U+0eb4}.\N{U+0e96}.",
      "\N{U+0e81}.\N{U+0ea5}.",
      "\N{U+0eaa}.\N{U+0eab}.",
      "\N{U+0e81}.\N{U+0e8d}.",
      "\N{U+0e95}.\N{U+0ea5}.",
      "\N{U+0e9e}.\N{U+0e88}.",
      "\N{U+0e97}.\N{U+0ea7}."
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+0ea1}\N{U+0eb1}\N{U+0e87}\N{U+0e81}\N{U+0ead}\N{U+0e99}",
      "\N{U+0e81}\N{U+0eb8}\N{U+0ea1}\N{U+0e9e}\N{U+0eb2}",
      "\N{U+0ea1}\N{U+0eb5}\N{U+0e99}\N{U+0eb2}",
      "\N{U+0ec0}\N{U+0ea1}\N{U+0eaa}\N{U+0eb2}",
      "\N{U+0e9e}\N{U+0eb6}\N{U+0e94}\N{U+0eaa}\N{U+0eb0}\N{U+0e9e}\N{U+0eb2}",
      "\N{U+0ea1}\N{U+0eb4}\N{U+0e96}\N{U+0eb8}\N{U+0e99}\N{U+0eb2}",
      "\N{U+0e81}\N{U+0ecd}\N{U+0ea5}\N{U+0eb0}\N{U+0e81}\N{U+0ebb}\N{U+0e94}",
      "\N{U+0eaa}\N{U+0eb4}\N{U+0e87}\N{U+0eab}\N{U+0eb2}",
      "\N{U+0e81}\N{U+0eb1}\N{U+0e99}\N{U+0e8d}\N{U+0eb2}",
      "\N{U+0e95}\N{U+0eb8}\N{U+0ea5}\N{U+0eb2}",
      "\N{U+0e9e}\N{U+0eb0}\N{U+0e88}\N{U+0eb4}\N{U+0e81}",
      "\N{U+0e97}\N{U+0eb1}\N{U+0e99}\N{U+0ea7}\N{U+0eb2}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0ea1}.\N{U+0e81}.",
      "\N{U+0e81}.\N{U+0e9e}.",
      "\N{U+0ea1}.\N{U+0e99}.",
      "\N{U+0ea1}.\N{U+0eaa}.",
      "\N{U+0e9e}.\N{U+0e9e}.",
      "\N{U+0ea1}\N{U+0eb4}.\N{U+0e96}.",
      "\N{U+0e81}.\N{U+0ea5}.",
      "\N{U+0eaa}.\N{U+0eab}.",
      "\N{U+0e81}.\N{U+0e8d}.",
      "\N{U+0e95}.\N{U+0ea5}.",
      "\N{U+0e9e}.\N{U+0e88}.",
      "\N{U+0e97}.\N{U+0ea7}."
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+0ea1}\N{U+0eb1}\N{U+0e87}\N{U+0e81}\N{U+0ead}\N{U+0e99}",
      "\N{U+0e81}\N{U+0eb8}\N{U+0ea1}\N{U+0e9e}\N{U+0eb2}",
      "\N{U+0ea1}\N{U+0eb5}\N{U+0e99}\N{U+0eb2}",
      "\N{U+0ec0}\N{U+0ea1}\N{U+0eaa}\N{U+0eb2}",
      "\N{U+0e9e}\N{U+0eb6}\N{U+0e94}\N{U+0eaa}\N{U+0eb0}\N{U+0e9e}\N{U+0eb2}",
      "\N{U+0ea1}\N{U+0eb4}\N{U+0e96}\N{U+0eb8}\N{U+0e99}\N{U+0eb2}",
      "\N{U+0e81}\N{U+0ecd}\N{U+0ea5}\N{U+0eb0}\N{U+0e81}\N{U+0ebb}\N{U+0e94}",
      "\N{U+0eaa}\N{U+0eb4}\N{U+0e87}\N{U+0eab}\N{U+0eb2}",
      "\N{U+0e81}\N{U+0eb1}\N{U+0e99}\N{U+0e8d}\N{U+0eb2}",
      "\N{U+0e95}\N{U+0eb8}\N{U+0ea5}\N{U+0eb2}",
      "\N{U+0e9e}\N{U+0eb0}\N{U+0e88}\N{U+0eb4}\N{U+0e81}",
      "\N{U+0e97}\N{U+0eb1}\N{U+0e99}\N{U+0ea7}\N{U+0eb2}"
    ],
    name => "Lao",
    native_language => "\N{U+0ea5}\N{U+0eb2}\N{U+0ea7}",
    native_name => "\N{U+0ea5}\N{U+0eb2}\N{U+0ea7}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0e95}\N{U+0ea1}1",
      "\N{U+0e95}\N{U+0ea1}2",
      "\N{U+0e95}\N{U+0ea1}3",
      "\N{U+0e95}\N{U+0ea1}4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+0ec4}\N{U+0e95}\N{U+0ea3}\N{U+0ea1}\N{U+0eb2}\N{U+0e94} 1",
      "\N{U+0ec4}\N{U+0e95}\N{U+0ea3}\N{U+0ea1}\N{U+0eb2}\N{U+0e94} 2",
      "\N{U+0ec4}\N{U+0e95}\N{U+0ea3}\N{U+0ea1}\N{U+0eb2}\N{U+0e94} 3",
      "\N{U+0ec4}\N{U+0e95}\N{U+0ea3}\N{U+0ea1}\N{U+0eb2}\N{U+0e94} 4"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0e95}1",
      "\N{U+0e95}2",
      "\N{U+0e95}3",
      "\N{U+0e95}4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+0ec4}\N{U+0e95}\N{U+0ea3}\N{U+0ea1}\N{U+0eb2}\N{U+0e94} 1",
      "\N{U+0ec4}\N{U+0e95}\N{U+0ea3}\N{U+0ea1}\N{U+0eb2}\N{U+0e94} 2",
      "\N{U+0ec4}\N{U+0e95}\N{U+0ea3}\N{U+0ea1}\N{U+0eb2}\N{U+0e94} 3",
      "\N{U+0ec4}\N{U+0e95}\N{U+0ea3}\N{U+0ea1}\N{U+0eb2}\N{U+0e94} 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "H \N{U+0ec2}\N{U+0ea1}\N{U+0e87} m \N{U+0e99}\N{U+0eb2}\N{U+0e97}\N{U+0eb5} ss \N{U+0ea7}\N{U+0eb4}\N{U+0e99}\N{U+0eb2}\N{U+0e97}\N{U+0eb5} zzzz",
    time_format_long => "H \N{U+0ec2}\N{U+0ea1}\N{U+0e87} m \N{U+0e99}\N{U+0eb2}\N{U+0e97}\N{U+0eb5} ss \N{U+0ea7}\N{U+0eb4}\N{U+0e99}\N{U+0eb2}\N{U+0e97}\N{U+0eb5} z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ lo-LA ]__
  {
    am_pm_abbreviated => [
      "\N{U+0e81}\N{U+0ec8}\N{U+0ead}\N{U+0e99}\N{U+0e97}\N{U+0ec8}\N{U+0ebd}\N{U+0e87}",
      "\N{U+0eab}\N{U+0ebc}\N{U+0eb1}\N{U+0e87}\N{U+0e97}\N{U+0ec8}\N{U+0ebd}\N{U+0e87}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E, d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "MMM, G y",
      GyMMMEd => "E d MMMM, G y",
      GyMMMd => "d MMMM, G y",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h \N{U+0ec2}\N{U+0ea1}\N{U+0e87}a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "lo-LA",
    date_format_full => "EEEE \N{U+0e97}\N{U+0eb5} d MMMM G y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0e88}\N{U+0eb1}\N{U+0e99}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0ead}\N{U+0eb1}\N{U+0e87}\N{U+0e84}\N{U+0eb2}\N{U+0e99}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0e9e}\N{U+0eb8}\N{U+0e94}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0e9e}\N{U+0eb0}\N{U+0eab}\N{U+0eb1}\N{U+0e94}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0eaa}\N{U+0eb8}\N{U+0e81}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0ec0}\N{U+0eaa}\N{U+0ebb}\N{U+0eb2}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0ead}\N{U+0eb2}\N{U+0e97}\N{U+0eb4}\N{U+0e94}"
    ],
    day_format_narrow => [
      2,
      3,
      4,
      5,
      6,
      7,
      1
    ],
    day_format_wide => [
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0e88}\N{U+0eb1}\N{U+0e99}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0ead}\N{U+0eb1}\N{U+0e87}\N{U+0e84}\N{U+0eb2}\N{U+0e99}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0e9e}\N{U+0eb8}\N{U+0e94}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0e9e}\N{U+0eb0}\N{U+0eab}\N{U+0eb1}\N{U+0e94}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0eaa}\N{U+0eb8}\N{U+0e81}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0ec0}\N{U+0eaa}\N{U+0ebb}\N{U+0eb2}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0ead}\N{U+0eb2}\N{U+0e97}\N{U+0eb4}\N{U+0e94}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0e88}\N{U+0eb1}\N{U+0e99}",
      "\N{U+0ead}\N{U+0eb1}\N{U+0e87}\N{U+0e84}\N{U+0eb2}\N{U+0e99}",
      "\N{U+0e9e}\N{U+0eb8}\N{U+0e94}",
      "\N{U+0e9e}\N{U+0eb0}\N{U+0eab}\N{U+0eb1}\N{U+0e94}",
      "\N{U+0eaa}\N{U+0eb8}\N{U+0e81}",
      "\N{U+0ec0}\N{U+0eaa}\N{U+0ebb}\N{U+0eb2}",
      "\N{U+0ead}\N{U+0eb2}\N{U+0e97}\N{U+0eb4}\N{U+0e94}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0e88}",
      "\N{U+0ead}",
      "\N{U+0e9e}",
      "\N{U+0e9e}\N{U+0eab}",
      "\N{U+0eaa}\N{U+0eb8}",
      "\N{U+0eaa}",
      "\N{U+0ead}"
    ],
    day_stand_alone_wide => [
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0e88}\N{U+0eb1}\N{U+0e99}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0ead}\N{U+0eb1}\N{U+0e87}\N{U+0e84}\N{U+0eb2}\N{U+0e99}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0e9e}\N{U+0eb8}\N{U+0e94}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0e9e}\N{U+0eb0}\N{U+0eab}\N{U+0eb1}\N{U+0e94}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0eaa}\N{U+0eb8}\N{U+0e81}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0ec0}\N{U+0eaa}\N{U+0ebb}\N{U+0eb2}",
      "\N{U+0ea7}\N{U+0eb1}\N{U+0e99}\N{U+0ead}\N{U+0eb2}\N{U+0e97}\N{U+0eb4}\N{U+0e94}"
    ],
    era_abbreviated => [
      "\N{U+0e81}\N{U+0ec8}\N{U+0ead}\N{U+0e99} \N{U+0e84}.\N{U+0eaa}.",
      "\N{U+0e84}.\N{U+0eaa}."
    ],
    era_narrow => [
      "\N{U+0e81}\N{U+0ec8}\N{U+0ead}\N{U+0e99} \N{U+0e84}.\N{U+0eaa}.",
      "\N{U+0e84}.\N{U+0eaa}."
    ],
    era_wide => [
      "\N{U+0e81}\N{U+0ec8}\N{U+0ead}\N{U+0e99}\N{U+0e84}\N{U+0ea3}\N{U+0eb4}\N{U+0e94}\N{U+0eaa}\N{U+0eb1}\N{U+0e81}\N{U+0e81}\N{U+0eb0}\N{U+0ea5}\N{U+0eb2}\N{U+0e94}",
      "\N{U+0e84}\N{U+0ea3}\N{U+0eb4}\N{U+0e94}\N{U+0eaa}\N{U+0eb1}\N{U+0e81}\N{U+0e81}\N{U+0eb0}\N{U+0ea5}\N{U+0eb2}\N{U+0e94}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %e %b %Ey %H:%M:%S %Z",
    glibc_date_format => "%d/%m/%Ey",
    glibc_datetime_format => "%a %e %b %Ey, %H:%M:%S",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Lao",
    month_format_abbreviated => [
      "\N{U+0ea1}.\N{U+0e81}.",
      "\N{U+0e81}.\N{U+0e9e}.",
      "\N{U+0ea1}.\N{U+0e99}.",
      "\N{U+0ea1}.\N{U+0eaa}.",
      "\N{U+0e9e}.\N{U+0e9e}.",
      "\N{U+0ea1}\N{U+0eb4}.\N{U+0e96}.",
      "\N{U+0e81}.\N{U+0ea5}.",
      "\N{U+0eaa}.\N{U+0eab}.",
      "\N{U+0e81}.\N{U+0e8d}.",
      "\N{U+0e95}.\N{U+0ea5}.",
      "\N{U+0e9e}.\N{U+0e88}.",
      "\N{U+0e97}.\N{U+0ea7}."
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+0ea1}\N{U+0eb1}\N{U+0e87}\N{U+0e81}\N{U+0ead}\N{U+0e99}",
      "\N{U+0e81}\N{U+0eb8}\N{U+0ea1}\N{U+0e9e}\N{U+0eb2}",
      "\N{U+0ea1}\N{U+0eb5}\N{U+0e99}\N{U+0eb2}",
      "\N{U+0ec0}\N{U+0ea1}\N{U+0eaa}\N{U+0eb2}",
      "\N{U+0e9e}\N{U+0eb6}\N{U+0e94}\N{U+0eaa}\N{U+0eb0}\N{U+0e9e}\N{U+0eb2}",
      "\N{U+0ea1}\N{U+0eb4}\N{U+0e96}\N{U+0eb8}\N{U+0e99}\N{U+0eb2}",
      "\N{U+0e81}\N{U+0ecd}\N{U+0ea5}\N{U+0eb0}\N{U+0e81}\N{U+0ebb}\N{U+0e94}",
      "\N{U+0eaa}\N{U+0eb4}\N{U+0e87}\N{U+0eab}\N{U+0eb2}",
      "\N{U+0e81}\N{U+0eb1}\N{U+0e99}\N{U+0e8d}\N{U+0eb2}",
      "\N{U+0e95}\N{U+0eb8}\N{U+0ea5}\N{U+0eb2}",
      "\N{U+0e9e}\N{U+0eb0}\N{U+0e88}\N{U+0eb4}\N{U+0e81}",
      "\N{U+0e97}\N{U+0eb1}\N{U+0e99}\N{U+0ea7}\N{U+0eb2}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0ea1}.\N{U+0e81}.",
      "\N{U+0e81}.\N{U+0e9e}.",
      "\N{U+0ea1}.\N{U+0e99}.",
      "\N{U+0ea1}.\N{U+0eaa}.",
      "\N{U+0e9e}.\N{U+0e9e}.",
      "\N{U+0ea1}\N{U+0eb4}.\N{U+0e96}.",
      "\N{U+0e81}.\N{U+0ea5}.",
      "\N{U+0eaa}.\N{U+0eab}.",
      "\N{U+0e81}.\N{U+0e8d}.",
      "\N{U+0e95}.\N{U+0ea5}.",
      "\N{U+0e9e}.\N{U+0e88}.",
      "\N{U+0e97}.\N{U+0ea7}."
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+0ea1}\N{U+0eb1}\N{U+0e87}\N{U+0e81}\N{U+0ead}\N{U+0e99}",
      "\N{U+0e81}\N{U+0eb8}\N{U+0ea1}\N{U+0e9e}\N{U+0eb2}",
      "\N{U+0ea1}\N{U+0eb5}\N{U+0e99}\N{U+0eb2}",
      "\N{U+0ec0}\N{U+0ea1}\N{U+0eaa}\N{U+0eb2}",
      "\N{U+0e9e}\N{U+0eb6}\N{U+0e94}\N{U+0eaa}\N{U+0eb0}\N{U+0e9e}\N{U+0eb2}",
      "\N{U+0ea1}\N{U+0eb4}\N{U+0e96}\N{U+0eb8}\N{U+0e99}\N{U+0eb2}",
      "\N{U+0e81}\N{U+0ecd}\N{U+0ea5}\N{U+0eb0}\N{U+0e81}\N{U+0ebb}\N{U+0e94}",
      "\N{U+0eaa}\N{U+0eb4}\N{U+0e87}\N{U+0eab}\N{U+0eb2}",
      "\N{U+0e81}\N{U+0eb1}\N{U+0e99}\N{U+0e8d}\N{U+0eb2}",
      "\N{U+0e95}\N{U+0eb8}\N{U+0ea5}\N{U+0eb2}",
      "\N{U+0e9e}\N{U+0eb0}\N{U+0e88}\N{U+0eb4}\N{U+0e81}",
      "\N{U+0e97}\N{U+0eb1}\N{U+0e99}\N{U+0ea7}\N{U+0eb2}"
    ],
    name => "Lao Laos",
    native_language => "\N{U+0ea5}\N{U+0eb2}\N{U+0ea7}",
    native_name => "\N{U+0ea5}\N{U+0eb2}\N{U+0ea7} \N{U+0ea5}\N{U+0eb2}\N{U+0ea7}",
    native_script => undef,
    native_territory => "\N{U+0ea5}\N{U+0eb2}\N{U+0ea7}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0e95}\N{U+0ea1}1",
      "\N{U+0e95}\N{U+0ea1}2",
      "\N{U+0e95}\N{U+0ea1}3",
      "\N{U+0e95}\N{U+0ea1}4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+0ec4}\N{U+0e95}\N{U+0ea3}\N{U+0ea1}\N{U+0eb2}\N{U+0e94} 1",
      "\N{U+0ec4}\N{U+0e95}\N{U+0ea3}\N{U+0ea1}\N{U+0eb2}\N{U+0e94} 2",
      "\N{U+0ec4}\N{U+0e95}\N{U+0ea3}\N{U+0ea1}\N{U+0eb2}\N{U+0e94} 3",
      "\N{U+0ec4}\N{U+0e95}\N{U+0ea3}\N{U+0ea1}\N{U+0eb2}\N{U+0e94} 4"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0e95}1",
      "\N{U+0e95}2",
      "\N{U+0e95}3",
      "\N{U+0e95}4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+0ec4}\N{U+0e95}\N{U+0ea3}\N{U+0ea1}\N{U+0eb2}\N{U+0e94} 1",
      "\N{U+0ec4}\N{U+0e95}\N{U+0ea3}\N{U+0ea1}\N{U+0eb2}\N{U+0e94} 2",
      "\N{U+0ec4}\N{U+0e95}\N{U+0ea3}\N{U+0ea1}\N{U+0eb2}\N{U+0e94} 3",
      "\N{U+0ec4}\N{U+0e95}\N{U+0ea3}\N{U+0ea1}\N{U+0eb2}\N{U+0e94} 4"
    ],
    script => undef,
    territory => "Laos",
    time_format_full => "H \N{U+0ec2}\N{U+0ea1}\N{U+0e87} m \N{U+0e99}\N{U+0eb2}\N{U+0e97}\N{U+0eb5} ss \N{U+0ea7}\N{U+0eb4}\N{U+0e99}\N{U+0eb2}\N{U+0e97}\N{U+0eb5} zzzz",
    time_format_long => "H \N{U+0ec2}\N{U+0ea1}\N{U+0e87} m \N{U+0e99}\N{U+0eb2}\N{U+0e97}\N{U+0eb5} ss \N{U+0ea7}\N{U+0eb4}\N{U+0e99}\N{U+0eb2}\N{U+0e97}\N{U+0eb5} z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ lrc ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "lrc",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Northern Luri",
    month_format_abbreviated => [
      "\N{U+062c}\N{U+0627}\N{U+0646}\N{U+06a4}\N{U+06cc}\N{U+06d5}",
      "\N{U+0641}\N{U+0626}\N{U+06a4}\N{U+0631}\N{U+06cc}\N{U+06d5}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+06a4}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0659}\N{U+0623}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0659}\N{U+0644}\N{U+0627}",
      "\N{U+0622}\N{U+06af}\N{U+0648}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+0626}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0631}",
      "\N{U+0626}\N{U+0648}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+06a4}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+06a4}\N{U+0627}\N{U+0645}\N{U+0631}",
      "\N{U+062f}\N{U+0626}\N{U+0633}\N{U+0627}\N{U+0645}\N{U+0631}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+062c}\N{U+0627}\N{U+0646}\N{U+06a4}\N{U+06cc}\N{U+06d5}",
      "\N{U+0641}\N{U+0626}\N{U+06a4}\N{U+0631}\N{U+06cc}\N{U+06d5}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+06a4}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0659}\N{U+0623}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0659}\N{U+0644}\N{U+0627}",
      "\N{U+0622}\N{U+06af}\N{U+0648}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+0626}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0631}",
      "\N{U+0626}\N{U+0648}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+06a4}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+06a4}\N{U+0627}\N{U+0645}\N{U+0631}",
      "\N{U+062f}\N{U+0626}\N{U+0633}\N{U+0627}\N{U+0645}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+062c}\N{U+0627}\N{U+0646}\N{U+06a4}\N{U+06cc}\N{U+06d5}",
      "\N{U+0641}\N{U+0626}\N{U+06a4}\N{U+0631}\N{U+06cc}\N{U+06d5}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+06a4}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0659}\N{U+0623}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0659}\N{U+0644}\N{U+0627}",
      "\N{U+0622}\N{U+06af}\N{U+0648}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+0626}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0631}",
      "\N{U+0626}\N{U+0648}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+06a4}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+06a4}\N{U+0627}\N{U+0645}\N{U+0631}",
      "\N{U+062f}\N{U+0626}\N{U+0633}\N{U+0627}\N{U+0645}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+062c}\N{U+0627}\N{U+0646}\N{U+06a4}\N{U+06cc}\N{U+06d5}",
      "\N{U+0641}\N{U+0626}\N{U+06a4}\N{U+0631}\N{U+06cc}\N{U+06d5}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+06a4}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0659}\N{U+0623}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0659}\N{U+0644}\N{U+0627}",
      "\N{U+0622}\N{U+06af}\N{U+0648}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+0626}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0631}",
      "\N{U+0626}\N{U+0648}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+06a4}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+06a4}\N{U+0627}\N{U+0645}\N{U+0631}",
      "\N{U+062f}\N{U+0626}\N{U+0633}\N{U+0627}\N{U+0645}\N{U+0631}"
    ],
    name => "Northern Luri",
    native_language => "\N{U+0644}\N{U+06ca}\N{U+0631}\N{U+06cc} \N{U+0634}\N{U+0648}\N{U+0645}\N{U+0627}\N{U+0644}\N{U+06cc}",
    native_name => "\N{U+0644}\N{U+06ca}\N{U+0631}\N{U+06cc} \N{U+0634}\N{U+0648}\N{U+0645}\N{U+0627}\N{U+0644}\N{U+06cc}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0686}\N{U+0627}\N{U+0631}\N{U+0623}\N{U+06a9} \N{U+0623}\N{U+06a4}\N{U+0623}\N{U+0644}",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+0686}\N{U+0627}\N{U+0631}\N{U+0623}\N{U+06a9} \N{U+0623}\N{U+06a4}\N{U+0623}\N{U+0644}",
      "\N{U+0686}\N{U+0627}\N{U+0631}\N{U+0623}\N{U+06a9} \N{U+062f}\N{U+0648}\N{U+06cc}\N{U+0648}\N{U+0645}",
      "\N{U+0686}\N{U+0627}\N{U+0631}\N{U+0623}\N{U+06a9} \N{U+0633}\N{U+0626}\N{U+06cc}\N{U+0648}\N{U+0645}",
      "\N{U+0686}\N{U+0627}\N{U+0631}\N{U+0623}\N{U+06a9} \N{U+0686}\N{U+0627}\N{U+0631}\N{U+0648}\N{U+0645}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ lrc-IQ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "lrc-IQ",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Northern Luri",
    month_format_abbreviated => [
      "\N{U+062c}\N{U+0627}\N{U+0646}\N{U+06a4}\N{U+06cc}\N{U+06d5}",
      "\N{U+0641}\N{U+0626}\N{U+06a4}\N{U+0631}\N{U+06cc}\N{U+06d5}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+06a4}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0659}\N{U+0623}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0659}\N{U+0644}\N{U+0627}",
      "\N{U+0622}\N{U+06af}\N{U+0648}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+0626}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0631}",
      "\N{U+0626}\N{U+0648}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+06a4}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+06a4}\N{U+0627}\N{U+0645}\N{U+0631}",
      "\N{U+062f}\N{U+0626}\N{U+0633}\N{U+0627}\N{U+0645}\N{U+0631}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+062c}\N{U+0627}\N{U+0646}\N{U+06a4}\N{U+06cc}\N{U+06d5}",
      "\N{U+0641}\N{U+0626}\N{U+06a4}\N{U+0631}\N{U+06cc}\N{U+06d5}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+06a4}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0659}\N{U+0623}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0659}\N{U+0644}\N{U+0627}",
      "\N{U+0622}\N{U+06af}\N{U+0648}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+0626}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0631}",
      "\N{U+0626}\N{U+0648}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+06a4}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+06a4}\N{U+0627}\N{U+0645}\N{U+0631}",
      "\N{U+062f}\N{U+0626}\N{U+0633}\N{U+0627}\N{U+0645}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+062c}\N{U+0627}\N{U+0646}\N{U+06a4}\N{U+06cc}\N{U+06d5}",
      "\N{U+0641}\N{U+0626}\N{U+06a4}\N{U+0631}\N{U+06cc}\N{U+06d5}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+06a4}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0659}\N{U+0623}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0659}\N{U+0644}\N{U+0627}",
      "\N{U+0622}\N{U+06af}\N{U+0648}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+0626}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0631}",
      "\N{U+0626}\N{U+0648}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+06a4}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+06a4}\N{U+0627}\N{U+0645}\N{U+0631}",
      "\N{U+062f}\N{U+0626}\N{U+0633}\N{U+0627}\N{U+0645}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+062c}\N{U+0627}\N{U+0646}\N{U+06a4}\N{U+06cc}\N{U+06d5}",
      "\N{U+0641}\N{U+0626}\N{U+06a4}\N{U+0631}\N{U+06cc}\N{U+06d5}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+06a4}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0659}\N{U+0623}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0659}\N{U+0644}\N{U+0627}",
      "\N{U+0622}\N{U+06af}\N{U+0648}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+0626}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0631}",
      "\N{U+0626}\N{U+0648}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+06a4}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+06a4}\N{U+0627}\N{U+0645}\N{U+0631}",
      "\N{U+062f}\N{U+0626}\N{U+0633}\N{U+0627}\N{U+0645}\N{U+0631}"
    ],
    name => "Northern Luri Iraq",
    native_language => "\N{U+0644}\N{U+06ca}\N{U+0631}\N{U+06cc} \N{U+0634}\N{U+0648}\N{U+0645}\N{U+0627}\N{U+0644}\N{U+06cc}",
    native_name => "\N{U+0644}\N{U+06ca}\N{U+0631}\N{U+06cc} \N{U+0634}\N{U+0648}\N{U+0645}\N{U+0627}\N{U+0644}\N{U+06cc} IQ",
    native_script => undef,
    native_territory => "IQ",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0686}\N{U+0627}\N{U+0631}\N{U+0623}\N{U+06a9} \N{U+0623}\N{U+06a4}\N{U+0623}\N{U+0644}",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+0686}\N{U+0627}\N{U+0631}\N{U+0623}\N{U+06a9} \N{U+0623}\N{U+06a4}\N{U+0623}\N{U+0644}",
      "\N{U+0686}\N{U+0627}\N{U+0631}\N{U+0623}\N{U+06a9} \N{U+062f}\N{U+0648}\N{U+06cc}\N{U+0648}\N{U+0645}",
      "\N{U+0686}\N{U+0627}\N{U+0631}\N{U+0623}\N{U+06a9} \N{U+0633}\N{U+0626}\N{U+06cc}\N{U+0648}\N{U+0645}",
      "\N{U+0686}\N{U+0627}\N{U+0631}\N{U+0623}\N{U+06a9} \N{U+0686}\N{U+0627}\N{U+0631}\N{U+0648}\N{U+0645}"
    ],
    script => undef,
    territory => "Iraq",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ lrc-IR ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "lrc-IR",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Northern Luri",
    month_format_abbreviated => [
      "\N{U+062c}\N{U+0627}\N{U+0646}\N{U+06a4}\N{U+06cc}\N{U+06d5}",
      "\N{U+0641}\N{U+0626}\N{U+06a4}\N{U+0631}\N{U+06cc}\N{U+06d5}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+06a4}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0659}\N{U+0623}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0659}\N{U+0644}\N{U+0627}",
      "\N{U+0622}\N{U+06af}\N{U+0648}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+0626}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0631}",
      "\N{U+0626}\N{U+0648}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+06a4}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+06a4}\N{U+0627}\N{U+0645}\N{U+0631}",
      "\N{U+062f}\N{U+0626}\N{U+0633}\N{U+0627}\N{U+0645}\N{U+0631}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+062c}\N{U+0627}\N{U+0646}\N{U+06a4}\N{U+06cc}\N{U+06d5}",
      "\N{U+0641}\N{U+0626}\N{U+06a4}\N{U+0631}\N{U+06cc}\N{U+06d5}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+06a4}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0659}\N{U+0623}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0659}\N{U+0644}\N{U+0627}",
      "\N{U+0622}\N{U+06af}\N{U+0648}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+0626}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0631}",
      "\N{U+0626}\N{U+0648}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+06a4}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+06a4}\N{U+0627}\N{U+0645}\N{U+0631}",
      "\N{U+062f}\N{U+0626}\N{U+0633}\N{U+0627}\N{U+0645}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+062c}\N{U+0627}\N{U+0646}\N{U+06a4}\N{U+06cc}\N{U+06d5}",
      "\N{U+0641}\N{U+0626}\N{U+06a4}\N{U+0631}\N{U+06cc}\N{U+06d5}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+06a4}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0659}\N{U+0623}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0659}\N{U+0644}\N{U+0627}",
      "\N{U+0622}\N{U+06af}\N{U+0648}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+0626}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0631}",
      "\N{U+0626}\N{U+0648}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+06a4}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+06a4}\N{U+0627}\N{U+0645}\N{U+0631}",
      "\N{U+062f}\N{U+0626}\N{U+0633}\N{U+0627}\N{U+0645}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+062c}\N{U+0627}\N{U+0646}\N{U+06a4}\N{U+06cc}\N{U+06d5}",
      "\N{U+0641}\N{U+0626}\N{U+06a4}\N{U+0631}\N{U+06cc}\N{U+06d5}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+06a4}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0659}\N{U+0623}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0659}\N{U+0644}\N{U+0627}",
      "\N{U+0622}\N{U+06af}\N{U+0648}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+0626}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0631}",
      "\N{U+0626}\N{U+0648}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+06a4}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+06a4}\N{U+0627}\N{U+0645}\N{U+0631}",
      "\N{U+062f}\N{U+0626}\N{U+0633}\N{U+0627}\N{U+0645}\N{U+0631}"
    ],
    name => "Northern Luri Iran",
    native_language => "\N{U+0644}\N{U+06ca}\N{U+0631}\N{U+06cc} \N{U+0634}\N{U+0648}\N{U+0645}\N{U+0627}\N{U+0644}\N{U+06cc}",
    native_name => "\N{U+0644}\N{U+06ca}\N{U+0631}\N{U+06cc} \N{U+0634}\N{U+0648}\N{U+0645}\N{U+0627}\N{U+0644}\N{U+06cc} IR",
    native_script => undef,
    native_territory => "IR",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0686}\N{U+0627}\N{U+0631}\N{U+0623}\N{U+06a9} \N{U+0623}\N{U+06a4}\N{U+0623}\N{U+0644}",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+0686}\N{U+0627}\N{U+0631}\N{U+0623}\N{U+06a9} \N{U+0623}\N{U+06a4}\N{U+0623}\N{U+0644}",
      "\N{U+0686}\N{U+0627}\N{U+0631}\N{U+0623}\N{U+06a9} \N{U+062f}\N{U+0648}\N{U+06cc}\N{U+0648}\N{U+0645}",
      "\N{U+0686}\N{U+0627}\N{U+0631}\N{U+0623}\N{U+06a9} \N{U+0633}\N{U+0626}\N{U+06cc}\N{U+0648}\N{U+0645}",
      "\N{U+0686}\N{U+0627}\N{U+0631}\N{U+0623}\N{U+06a9} \N{U+0686}\N{U+0627}\N{U+0631}\N{U+0648}\N{U+0645}"
    ],
    script => undef,
    territory => "Iran",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ lt ]__
  {
    am_pm_abbreviated => [
      "prie\N{U+0161}piet",
      "popiet"
    ],
    available_formats => {
      E => "ccc",
      EHm => "HH:mm, E",
      EHms => "HH:mm:ss, E",
      Ed => "d, E",
      Ehm => "hh:mm a, E",
      Ehms => "hh:mm:ss a, E",
      Gy => "y 'm'. G",
      GyMMM => "y-MM G",
      GyMMMEd => "y-MM-dd G, E",
      GyMMMM => "y 'm'. G, LLLL",
      GyMMMMEd => "y 'm'. G MMMM d 'd'., E",
      GyMMMMd => "y 'm'. G MMMM d 'd'.",
      GyMMMd => "y-MM-dd G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss; v",
      Hmv => "HH:mm; v",
      M => "MM",
      MEd => "MM-dd, E",
      MMM => "MM",
      MMMEd => "MM-dd, E",
      MMMM => "LLLL",
      MMMMEd => "MMMM d 'd'., E",
      MMMMd => "MMMM d 'd'.",
      MMMd => "MM-dd",
      MMdd => "MM-dd",
      Md => "MM-d",
      d => "dd",
      h => "hh a",
      hm => "hh:mm a",
      hms => "hh:mm:ss a",
      hmsv => "hh:mm:ss a; v",
      hmv => "hh:mm a; v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y-MM",
      yMMMEd => "y-MM-dd, E",
      yMMMM => "y 'm'. LLLL",
      yMMMMEd => "y 'm'. MMMM d 'd'., E",
      yMMMMd => "y 'm'. MMMM d 'd'.",
      yMMMd => "y-MM-dd",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "lt",
    date_format_full => "y 'm'. MMMM d 'd'., EEEE",
    date_format_long => "y 'm'. MMMM d 'd'.",
    date_format_medium => "y-MM-dd",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "pr",
      "an",
      "tr",
      "kt",
      "pn",
      "\N{U+0161}t",
      "sk"
    ],
    day_format_narrow => [
      "P",
      "A",
      "T",
      "K",
      "P",
      "\N{U+0160}",
      "S"
    ],
    day_format_wide => [
      "pirmadienis",
      "antradienis",
      "tre\N{U+010d}iadienis",
      "ketvirtadienis",
      "penktadienis",
      "\N{U+0161}e\N{U+0161}tadienis",
      "sekmadienis"
    ],
    day_stand_alone_abbreviated => [
      "pr",
      "an",
      "tr",
      "kt",
      "pn",
      "\N{U+0161}t",
      "sk"
    ],
    day_stand_alone_narrow => [
      "P",
      "A",
      "T",
      "K",
      "P",
      "\N{U+0160}",
      "S"
    ],
    day_stand_alone_wide => [
      "pirmadienis",
      "antradienis",
      "tre\N{U+010d}iadienis",
      "ketvirtadienis",
      "penktadienis",
      "\N{U+0161}e\N{U+0161}tadienis",
      "sekmadienis"
    ],
    era_abbreviated => [
      "pr. Kr.",
      "po Kr."
    ],
    era_narrow => [
      "pr. Kr.",
      "po Kr."
    ],
    era_wide => [
      "prie\N{U+0161} Krist\N{U+0173}",
      "po Kristaus"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Lithuanian",
    month_format_abbreviated => [
      "saus.",
      "vas.",
      "kov.",
      "bal.",
      "geg.",
      "bir\N{U+017e}.",
      "liep.",
      "rugp.",
      "rugs.",
      "spal.",
      "lapkr.",
      "gruod."
    ],
    month_format_narrow => [
      "S",
      "V",
      "K",
      "B",
      "G",
      "B",
      "L",
      "R",
      "R",
      "S",
      "L",
      "G"
    ],
    month_format_wide => [
      "sausio",
      "vasario",
      "kovo",
      "baland\N{U+017e}io",
      "gegu\N{U+017e}\N{U+0117}s",
      "bir\N{U+017e}elio",
      "liepos",
      "rugpj\N{U+016b}\N{U+010d}io",
      "rugs\N{U+0117}jo",
      "spalio",
      "lapkri\N{U+010d}io",
      "gruod\N{U+017e}io"
    ],
    month_stand_alone_abbreviated => [
      "saus.",
      "vas.",
      "kov.",
      "bal.",
      "geg.",
      "bir\N{U+017e}.",
      "liep.",
      "rugp.",
      "rugs.",
      "spal.",
      "lapkr.",
      "gruod."
    ],
    month_stand_alone_narrow => [
      "S",
      "V",
      "K",
      "B",
      "G",
      "B",
      "L",
      "R",
      "R",
      "S",
      "L",
      "G"
    ],
    month_stand_alone_wide => [
      "sausis",
      "vasaris",
      "kovas",
      "balandis",
      "gegu\N{U+017e}\N{U+0117}",
      "bir\N{U+017e}elis",
      "liepa",
      "rugpj\N{U+016b}tis",
      "rugs\N{U+0117}jis",
      "spalis",
      "lapkritis",
      "gruodis"
    ],
    name => "Lithuanian",
    native_language => "lietuvi\N{U+0173}",
    native_name => "lietuvi\N{U+0173}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "I k.",
      "II k.",
      "III k.",
      "IV k."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "I ketvirtis",
      "II ketvirtis",
      "III ketvirtis",
      "IV ketvirtis"
    ],
    quarter_stand_alone_abbreviated => [
      "I ketv.",
      "II ketv.",
      "III ketv.",
      "IV ketv."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "I ketvirtis",
      "II ketvirtis",
      "III ketvirtis",
      "IV ketvirtis"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ lt-LT ]__
  {
    am_pm_abbreviated => [
      "prie\N{U+0161}piet",
      "popiet"
    ],
    available_formats => {
      E => "ccc",
      EHm => "HH:mm, E",
      EHms => "HH:mm:ss, E",
      Ed => "d, E",
      Ehm => "hh:mm a, E",
      Ehms => "hh:mm:ss a, E",
      Gy => "y 'm'. G",
      GyMMM => "y-MM G",
      GyMMMEd => "y-MM-dd G, E",
      GyMMMM => "y 'm'. G, LLLL",
      GyMMMMEd => "y 'm'. G MMMM d 'd'., E",
      GyMMMMd => "y 'm'. G MMMM d 'd'.",
      GyMMMd => "y-MM-dd G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss; v",
      Hmv => "HH:mm; v",
      M => "MM",
      MEd => "MM-dd, E",
      MMM => "MM",
      MMMEd => "MM-dd, E",
      MMMM => "LLLL",
      MMMMEd => "MMMM d 'd'., E",
      MMMMd => "MMMM d 'd'.",
      MMMd => "MM-dd",
      MMdd => "MM-dd",
      Md => "MM-d",
      d => "dd",
      h => "hh a",
      hm => "hh:mm a",
      hms => "hh:mm:ss a",
      hmsv => "hh:mm:ss a; v",
      hmv => "hh:mm a; v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y-MM",
      yMMMEd => "y-MM-dd, E",
      yMMMM => "y 'm'. LLLL",
      yMMMMEd => "y 'm'. MMMM d 'd'., E",
      yMMMMd => "y 'm'. MMMM d 'd'.",
      yMMMd => "y-MM-dd",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "lt-LT",
    date_format_full => "y 'm'. MMMM d 'd'., EEEE",
    date_format_long => "y 'm'. MMMM d 'd'.",
    date_format_medium => "y-MM-dd",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "pr",
      "an",
      "tr",
      "kt",
      "pn",
      "\N{U+0161}t",
      "sk"
    ],
    day_format_narrow => [
      "P",
      "A",
      "T",
      "K",
      "P",
      "\N{U+0160}",
      "S"
    ],
    day_format_wide => [
      "pirmadienis",
      "antradienis",
      "tre\N{U+010d}iadienis",
      "ketvirtadienis",
      "penktadienis",
      "\N{U+0161}e\N{U+0161}tadienis",
      "sekmadienis"
    ],
    day_stand_alone_abbreviated => [
      "pr",
      "an",
      "tr",
      "kt",
      "pn",
      "\N{U+0161}t",
      "sk"
    ],
    day_stand_alone_narrow => [
      "P",
      "A",
      "T",
      "K",
      "P",
      "\N{U+0160}",
      "S"
    ],
    day_stand_alone_wide => [
      "pirmadienis",
      "antradienis",
      "tre\N{U+010d}iadienis",
      "ketvirtadienis",
      "penktadienis",
      "\N{U+0161}e\N{U+0161}tadienis",
      "sekmadienis"
    ],
    era_abbreviated => [
      "pr. Kr.",
      "po Kr."
    ],
    era_narrow => [
      "pr. Kr.",
      "po Kr."
    ],
    era_wide => [
      "prie\N{U+0161} Krist\N{U+0173}",
      "po Kristaus"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%Y.%m.%d",
    glibc_datetime_format => "%Y m. %B %d d. %T",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Lithuanian",
    month_format_abbreviated => [
      "saus.",
      "vas.",
      "kov.",
      "bal.",
      "geg.",
      "bir\N{U+017e}.",
      "liep.",
      "rugp.",
      "rugs.",
      "spal.",
      "lapkr.",
      "gruod."
    ],
    month_format_narrow => [
      "S",
      "V",
      "K",
      "B",
      "G",
      "B",
      "L",
      "R",
      "R",
      "S",
      "L",
      "G"
    ],
    month_format_wide => [
      "sausio",
      "vasario",
      "kovo",
      "baland\N{U+017e}io",
      "gegu\N{U+017e}\N{U+0117}s",
      "bir\N{U+017e}elio",
      "liepos",
      "rugpj\N{U+016b}\N{U+010d}io",
      "rugs\N{U+0117}jo",
      "spalio",
      "lapkri\N{U+010d}io",
      "gruod\N{U+017e}io"
    ],
    month_stand_alone_abbreviated => [
      "saus.",
      "vas.",
      "kov.",
      "bal.",
      "geg.",
      "bir\N{U+017e}.",
      "liep.",
      "rugp.",
      "rugs.",
      "spal.",
      "lapkr.",
      "gruod."
    ],
    month_stand_alone_narrow => [
      "S",
      "V",
      "K",
      "B",
      "G",
      "B",
      "L",
      "R",
      "R",
      "S",
      "L",
      "G"
    ],
    month_stand_alone_wide => [
      "sausis",
      "vasaris",
      "kovas",
      "balandis",
      "gegu\N{U+017e}\N{U+0117}",
      "bir\N{U+017e}elis",
      "liepa",
      "rugpj\N{U+016b}tis",
      "rugs\N{U+0117}jis",
      "spalis",
      "lapkritis",
      "gruodis"
    ],
    name => "Lithuanian Lithuania",
    native_language => "lietuvi\N{U+0173}",
    native_name => "lietuvi\N{U+0173} Lietuva",
    native_script => undef,
    native_territory => "Lietuva",
    native_variant => undef,
    quarter_format_abbreviated => [
      "I k.",
      "II k.",
      "III k.",
      "IV k."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "I ketvirtis",
      "II ketvirtis",
      "III ketvirtis",
      "IV ketvirtis"
    ],
    quarter_stand_alone_abbreviated => [
      "I ketv.",
      "II ketv.",
      "III ketv.",
      "IV ketv."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "I ketvirtis",
      "II ketvirtis",
      "III ketvirtis",
      "IV ketvirtis"
    ],
    script => undef,
    territory => "Lithuania",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ lu ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "lu",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Nko",
      "Ndy",
      "Ndg",
      "Njw",
      "Ngv",
      "Lub",
      "Lum"
    ],
    day_format_narrow => [
      "N",
      "N",
      "N",
      "N",
      "N",
      "L",
      "L"
    ],
    day_format_wide => [
      "Nkodya",
      "Nd\N{U+00e0}ay\N{U+00e0}",
      "Ndang\N{U+00f9}",
      "Nj\N{U+00f2}wa",
      "Ng\N{U+00f2}vya",
      "Lubingu",
      "Lumingu"
    ],
    day_stand_alone_abbreviated => [
      "Nko",
      "Ndy",
      "Ndg",
      "Njw",
      "Ngv",
      "Lub",
      "Lum"
    ],
    day_stand_alone_narrow => [
      "N",
      "N",
      "N",
      "N",
      "N",
      "L",
      "L"
    ],
    day_stand_alone_wide => [
      "Nkodya",
      "Nd\N{U+00e0}ay\N{U+00e0}",
      "Ndang\N{U+00f9}",
      "Nj\N{U+00f2}wa",
      "Ng\N{U+00f2}vya",
      "Lubingu",
      "Lumingu"
    ],
    era_abbreviated => [
      "kmp. Y.K.",
      "kny. Y. K."
    ],
    era_narrow => [
      "kmp. Y.K.",
      "kny. Y. K."
    ],
    era_wide => [
      "Kumpala kwa Yezu Kli",
      "Kunyima kwa Yezu Kli"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Luba-Katanga",
    month_format_abbreviated => [
      "Cio",
      "Lui",
      "Lus",
      "Muu",
      "Lum",
      "Luf",
      "Kab",
      "Lush",
      "Lut",
      "Lun",
      "Kas",
      "Cis"
    ],
    month_format_narrow => [
      "C",
      "L",
      "L",
      "M",
      "L",
      "L",
      "K",
      "L",
      "L",
      "L",
      "K",
      "C"
    ],
    month_format_wide => [
      "Ciongo",
      "L\N{U+00f9}ishi",
      "Lus\N{U+00f2}lo",
      "M\N{U+00f9}uy\N{U+00e0}",
      "Lum\N{U+00f9}ng\N{U+00f9}l\N{U+00f9}",
      "Lufuimi",
      "Kab\N{U+00e0}l\N{U+00e0}sh\N{U+00ec}p\N{U+00f9}",
      "L\N{U+00f9}sh\N{U+00ec}k\N{U+00e0}",
      "Lutongolo",
      "Lung\N{U+00f9}di",
      "Kasw\N{U+00e8}k\N{U+00e8}s\N{U+00e8}",
      "Cisw\N{U+00e0}"
    ],
    month_stand_alone_abbreviated => [
      "Cio",
      "Lui",
      "Lus",
      "Muu",
      "Lum",
      "Luf",
      "Kab",
      "Lush",
      "Lut",
      "Lun",
      "Kas",
      "Cis"
    ],
    month_stand_alone_narrow => [
      "C",
      "L",
      "L",
      "M",
      "L",
      "L",
      "K",
      "L",
      "L",
      "L",
      "K",
      "C"
    ],
    month_stand_alone_wide => [
      "Ciongo",
      "L\N{U+00f9}ishi",
      "Lus\N{U+00f2}lo",
      "M\N{U+00f9}uy\N{U+00e0}",
      "Lum\N{U+00f9}ng\N{U+00f9}l\N{U+00f9}",
      "Lufuimi",
      "Kab\N{U+00e0}l\N{U+00e0}sh\N{U+00ec}p\N{U+00f9}",
      "L\N{U+00f9}sh\N{U+00ec}k\N{U+00e0}",
      "Lutongolo",
      "Lung\N{U+00f9}di",
      "Kasw\N{U+00e8}k\N{U+00e8}s\N{U+00e8}",
      "Cisw\N{U+00e0}"
    ],
    name => "Luba-Katanga",
    native_language => "Tshiluba",
    native_name => "Tshiluba",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "M1",
      "M2",
      "M3",
      "M4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Mueji 1",
      "Mueji 2",
      "Mueji 3",
      "Mueji 4"
    ],
    quarter_stand_alone_abbreviated => [
      "M1",
      "M2",
      "M3",
      "M4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Mueji 1",
      "Mueji 2",
      "Mueji 3",
      "Mueji 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ lu-CD ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "lu-CD",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Nko",
      "Ndy",
      "Ndg",
      "Njw",
      "Ngv",
      "Lub",
      "Lum"
    ],
    day_format_narrow => [
      "N",
      "N",
      "N",
      "N",
      "N",
      "L",
      "L"
    ],
    day_format_wide => [
      "Nkodya",
      "Nd\N{U+00e0}ay\N{U+00e0}",
      "Ndang\N{U+00f9}",
      "Nj\N{U+00f2}wa",
      "Ng\N{U+00f2}vya",
      "Lubingu",
      "Lumingu"
    ],
    day_stand_alone_abbreviated => [
      "Nko",
      "Ndy",
      "Ndg",
      "Njw",
      "Ngv",
      "Lub",
      "Lum"
    ],
    day_stand_alone_narrow => [
      "N",
      "N",
      "N",
      "N",
      "N",
      "L",
      "L"
    ],
    day_stand_alone_wide => [
      "Nkodya",
      "Nd\N{U+00e0}ay\N{U+00e0}",
      "Ndang\N{U+00f9}",
      "Nj\N{U+00f2}wa",
      "Ng\N{U+00f2}vya",
      "Lubingu",
      "Lumingu"
    ],
    era_abbreviated => [
      "kmp. Y.K.",
      "kny. Y. K."
    ],
    era_narrow => [
      "kmp. Y.K.",
      "kny. Y. K."
    ],
    era_wide => [
      "Kumpala kwa Yezu Kli",
      "Kunyima kwa Yezu Kli"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Luba-Katanga",
    month_format_abbreviated => [
      "Cio",
      "Lui",
      "Lus",
      "Muu",
      "Lum",
      "Luf",
      "Kab",
      "Lush",
      "Lut",
      "Lun",
      "Kas",
      "Cis"
    ],
    month_format_narrow => [
      "C",
      "L",
      "L",
      "M",
      "L",
      "L",
      "K",
      "L",
      "L",
      "L",
      "K",
      "C"
    ],
    month_format_wide => [
      "Ciongo",
      "L\N{U+00f9}ishi",
      "Lus\N{U+00f2}lo",
      "M\N{U+00f9}uy\N{U+00e0}",
      "Lum\N{U+00f9}ng\N{U+00f9}l\N{U+00f9}",
      "Lufuimi",
      "Kab\N{U+00e0}l\N{U+00e0}sh\N{U+00ec}p\N{U+00f9}",
      "L\N{U+00f9}sh\N{U+00ec}k\N{U+00e0}",
      "Lutongolo",
      "Lung\N{U+00f9}di",
      "Kasw\N{U+00e8}k\N{U+00e8}s\N{U+00e8}",
      "Cisw\N{U+00e0}"
    ],
    month_stand_alone_abbreviated => [
      "Cio",
      "Lui",
      "Lus",
      "Muu",
      "Lum",
      "Luf",
      "Kab",
      "Lush",
      "Lut",
      "Lun",
      "Kas",
      "Cis"
    ],
    month_stand_alone_narrow => [
      "C",
      "L",
      "L",
      "M",
      "L",
      "L",
      "K",
      "L",
      "L",
      "L",
      "K",
      "C"
    ],
    month_stand_alone_wide => [
      "Ciongo",
      "L\N{U+00f9}ishi",
      "Lus\N{U+00f2}lo",
      "M\N{U+00f9}uy\N{U+00e0}",
      "Lum\N{U+00f9}ng\N{U+00f9}l\N{U+00f9}",
      "Lufuimi",
      "Kab\N{U+00e0}l\N{U+00e0}sh\N{U+00ec}p\N{U+00f9}",
      "L\N{U+00f9}sh\N{U+00ec}k\N{U+00e0}",
      "Lutongolo",
      "Lung\N{U+00f9}di",
      "Kasw\N{U+00e8}k\N{U+00e8}s\N{U+00e8}",
      "Cisw\N{U+00e0}"
    ],
    name => "Luba-Katanga Congo - Kinshasa",
    native_language => "Tshiluba",
    native_name => "Tshiluba Ditunga wa Kongu",
    native_script => undef,
    native_territory => "Ditunga wa Kongu",
    native_variant => undef,
    quarter_format_abbreviated => [
      "M1",
      "M2",
      "M3",
      "M4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Mueji 1",
      "Mueji 2",
      "Mueji 3",
      "Mueji 4"
    ],
    quarter_stand_alone_abbreviated => [
      "M1",
      "M2",
      "M3",
      "M4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Mueji 1",
      "Mueji 2",
      "Mueji 3",
      "Mueji 4"
    ],
    script => undef,
    territory => "Congo - Kinshasa",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ luo ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "luo",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "WUT",
      "TAR",
      "TAD",
      "TAN",
      "TAB",
      "NGS",
      "JMP"
    ],
    day_format_narrow => [
      "W",
      "T",
      "T",
      "T",
      "T",
      "N",
      "J"
    ],
    day_format_wide => [
      "Wuok Tich",
      "Tich Ariyo",
      "Tich Adek",
      "Tich Ang\N{U+2019}wen",
      "Tich Abich",
      "Ngeso",
      "Jumapil"
    ],
    day_stand_alone_abbreviated => [
      "WUT",
      "TAR",
      "TAD",
      "TAN",
      "TAB",
      "NGS",
      "JMP"
    ],
    day_stand_alone_narrow => [
      "W",
      "T",
      "T",
      "T",
      "T",
      "N",
      "J"
    ],
    day_stand_alone_wide => [
      "Wuok Tich",
      "Tich Ariyo",
      "Tich Adek",
      "Tich Ang\N{U+2019}wen",
      "Tich Abich",
      "Ngeso",
      "Jumapil"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "Kapok Kristo obiro",
      "Ka Kristo osebiro"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Luo",
    month_format_abbreviated => [
      "DAC",
      "DAR",
      "DAD",
      "DAN",
      "DAH",
      "DAU",
      "DAO",
      "DAB",
      "DOC",
      "DAP",
      "DGI",
      "DAG"
    ],
    month_format_narrow => [
      "C",
      "R",
      "D",
      "N",
      "B",
      "U",
      "B",
      "B",
      "C",
      "P",
      "C",
      "P"
    ],
    month_format_wide => [
      "Dwe mar Achiel",
      "Dwe mar Ariyo",
      "Dwe mar Adek",
      "Dwe mar Ang\N{U+2019}wen",
      "Dwe mar Abich",
      "Dwe mar Auchiel",
      "Dwe mar Abiriyo",
      "Dwe mar Aboro",
      "Dwe mar Ochiko",
      "Dwe mar Apar",
      "Dwe mar gi achiel",
      "Dwe mar Apar gi ariyo"
    ],
    month_stand_alone_abbreviated => [
      "DAC",
      "DAR",
      "DAD",
      "DAN",
      "DAH",
      "DAU",
      "DAO",
      "DAB",
      "DOC",
      "DAP",
      "DGI",
      "DAG"
    ],
    month_stand_alone_narrow => [
      "C",
      "R",
      "D",
      "N",
      "B",
      "U",
      "B",
      "B",
      "C",
      "P",
      "C",
      "P"
    ],
    month_stand_alone_wide => [
      "Dwe mar Achiel",
      "Dwe mar Ariyo",
      "Dwe mar Adek",
      "Dwe mar Ang\N{U+2019}wen",
      "Dwe mar Abich",
      "Dwe mar Auchiel",
      "Dwe mar Abiriyo",
      "Dwe mar Aboro",
      "Dwe mar Ochiko",
      "Dwe mar Apar",
      "Dwe mar gi achiel",
      "Dwe mar Apar gi ariyo"
    ],
    name => "Luo",
    native_language => "Dholuo",
    native_name => "Dholuo",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "NMN1",
      "NMN2",
      "NMN3",
      "NMN4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "nus mar nus 1",
      "nus mar nus 2",
      "nus mar nus 3",
      "nus mar nus 4"
    ],
    quarter_stand_alone_abbreviated => [
      "NMN1",
      "NMN2",
      "NMN3",
      "NMN4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "nus mar nus 1",
      "nus mar nus 2",
      "nus mar nus 3",
      "nus mar nus 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ luo-KE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "luo-KE",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "WUT",
      "TAR",
      "TAD",
      "TAN",
      "TAB",
      "NGS",
      "JMP"
    ],
    day_format_narrow => [
      "W",
      "T",
      "T",
      "T",
      "T",
      "N",
      "J"
    ],
    day_format_wide => [
      "Wuok Tich",
      "Tich Ariyo",
      "Tich Adek",
      "Tich Ang\N{U+2019}wen",
      "Tich Abich",
      "Ngeso",
      "Jumapil"
    ],
    day_stand_alone_abbreviated => [
      "WUT",
      "TAR",
      "TAD",
      "TAN",
      "TAB",
      "NGS",
      "JMP"
    ],
    day_stand_alone_narrow => [
      "W",
      "T",
      "T",
      "T",
      "T",
      "N",
      "J"
    ],
    day_stand_alone_wide => [
      "Wuok Tich",
      "Tich Ariyo",
      "Tich Adek",
      "Tich Ang\N{U+2019}wen",
      "Tich Abich",
      "Ngeso",
      "Jumapil"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "Kapok Kristo obiro",
      "Ka Kristo osebiro"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Luo",
    month_format_abbreviated => [
      "DAC",
      "DAR",
      "DAD",
      "DAN",
      "DAH",
      "DAU",
      "DAO",
      "DAB",
      "DOC",
      "DAP",
      "DGI",
      "DAG"
    ],
    month_format_narrow => [
      "C",
      "R",
      "D",
      "N",
      "B",
      "U",
      "B",
      "B",
      "C",
      "P",
      "C",
      "P"
    ],
    month_format_wide => [
      "Dwe mar Achiel",
      "Dwe mar Ariyo",
      "Dwe mar Adek",
      "Dwe mar Ang\N{U+2019}wen",
      "Dwe mar Abich",
      "Dwe mar Auchiel",
      "Dwe mar Abiriyo",
      "Dwe mar Aboro",
      "Dwe mar Ochiko",
      "Dwe mar Apar",
      "Dwe mar gi achiel",
      "Dwe mar Apar gi ariyo"
    ],
    month_stand_alone_abbreviated => [
      "DAC",
      "DAR",
      "DAD",
      "DAN",
      "DAH",
      "DAU",
      "DAO",
      "DAB",
      "DOC",
      "DAP",
      "DGI",
      "DAG"
    ],
    month_stand_alone_narrow => [
      "C",
      "R",
      "D",
      "N",
      "B",
      "U",
      "B",
      "B",
      "C",
      "P",
      "C",
      "P"
    ],
    month_stand_alone_wide => [
      "Dwe mar Achiel",
      "Dwe mar Ariyo",
      "Dwe mar Adek",
      "Dwe mar Ang\N{U+2019}wen",
      "Dwe mar Abich",
      "Dwe mar Auchiel",
      "Dwe mar Abiriyo",
      "Dwe mar Aboro",
      "Dwe mar Ochiko",
      "Dwe mar Apar",
      "Dwe mar gi achiel",
      "Dwe mar Apar gi ariyo"
    ],
    name => "Luo Kenya",
    native_language => "Dholuo",
    native_name => "Dholuo Kenya",
    native_script => undef,
    native_territory => "Kenya",
    native_variant => undef,
    quarter_format_abbreviated => [
      "NMN1",
      "NMN2",
      "NMN3",
      "NMN4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "nus mar nus 1",
      "nus mar nus 2",
      "nus mar nus 3",
      "nus mar nus 4"
    ],
    quarter_stand_alone_abbreviated => [
      "NMN1",
      "NMN2",
      "NMN3",
      "NMN4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "nus mar nus 1",
      "nus mar nus 2",
      "nus mar nus 3",
      "nus mar nus 4"
    ],
    script => undef,
    territory => "Kenya",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ luy ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "luy",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "J3",
      "J4",
      "J5",
      "Al",
      "Ij",
      "J1",
      "J2"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Murwa wa Kanne",
      "Murwa wa Katano",
      "Jumamosi",
      "Jumapiri"
    ],
    day_stand_alone_abbreviated => [
      "J3",
      "J4",
      "J5",
      "Al",
      "Ij",
      "J1",
      "J2"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Murwa wa Kanne",
      "Murwa wa Katano",
      "Jumamosi",
      "Jumapiri"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "Imberi ya Kuuza Kwa",
      "Muhiga Kuvita Kuuza"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Luyia",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Aprili",
      "Mei",
      "Juni",
      "Julai",
      "Agosti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Aprili",
      "Mei",
      "Juni",
      "Julai",
      "Agosti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    name => "Luyia",
    native_language => "Luluhia",
    native_name => "Luluhia",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Robo ya Kala",
      "Robo ya Kaviri",
      "Robo ya Kavaga",
      "Robo ya Kanne"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Robo ya Kala",
      "Robo ya Kaviri",
      "Robo ya Kavaga",
      "Robo ya Kanne"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ luy-KE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "luy-KE",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "J3",
      "J4",
      "J5",
      "Al",
      "Ij",
      "J1",
      "J2"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Murwa wa Kanne",
      "Murwa wa Katano",
      "Jumamosi",
      "Jumapiri"
    ],
    day_stand_alone_abbreviated => [
      "J3",
      "J4",
      "J5",
      "Al",
      "Ij",
      "J1",
      "J2"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Murwa wa Kanne",
      "Murwa wa Katano",
      "Jumamosi",
      "Jumapiri"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "Imberi ya Kuuza Kwa",
      "Muhiga Kuvita Kuuza"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Luyia",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Aprili",
      "Mei",
      "Juni",
      "Julai",
      "Agosti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Aprili",
      "Mei",
      "Juni",
      "Julai",
      "Agosti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    name => "Luyia Kenya",
    native_language => "Luluhia",
    native_name => "Luluhia Kenya",
    native_script => undef,
    native_territory => "Kenya",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Robo ya Kala",
      "Robo ya Kaviri",
      "Robo ya Kavaga",
      "Robo ya Kanne"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Robo ya Kala",
      "Robo ya Kaviri",
      "Robo ya Kavaga",
      "Robo ya Kanne"
    ],
    script => undef,
    territory => "Kenya",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ lv ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d.",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "G y. 'g'.",
      GyMMM => "G y. 'g'. MMM",
      GyMMMEd => "E, G y. 'g'. d. MMM",
      GyMMMd => "G y. 'g'. d. MMM",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd.MM.",
      MMM => "LLL",
      MMMEd => "E, d. MMM",
      MMMMEd => "E, d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      Md => "dd.MM.",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y. 'g'.",
      yM => "MM.y.",
      yMEd => "E, d.M.y.",
      yMMM => "y. 'g'. MMM",
      yMMMEd => "E, y. 'g'. d. MMM",
      yMMMM => "y. 'g'. MMMM",
      yMMMd => "y. 'g'. d. MMM",
      yMd => "d.M.y.",
      yQQQ => "y. 'g'. QQQ",
      yQQQQ => "y. 'g'. QQQQ"
    },
    code => "lv",
    date_format_full => "EEEE, y. 'gada' d. MMMM",
    date_format_long => "y. 'gada' d. MMMM",
    date_format_medium => "y. 'gada' d. MMM",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Pr",
      "Ot",
      "Tr",
      "Ce",
      "Pk",
      "Se",
      "Sv"
    ],
    day_format_narrow => [
      "P",
      "O",
      "T",
      "C",
      "P",
      "S",
      "S"
    ],
    day_format_wide => [
      "pirmdiena",
      "otrdiena",
      "tre\N{U+0161}diena",
      "ceturtdiena",
      "piektdiena",
      "sestdiena",
      "sv\N{U+0113}tdiena"
    ],
    day_stand_alone_abbreviated => [
      "Pr",
      "Ot",
      "Tr",
      "Ce",
      "Pk",
      "Se",
      "Sv"
    ],
    day_stand_alone_narrow => [
      "P",
      "O",
      "T",
      "C",
      "P",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Pirmdiena",
      "Otrdiena",
      "Tre\N{U+0161}diena",
      "Ceturtdiena",
      "Piektdiena",
      "Sestdiena",
      "Sv\N{U+0113}tdiena"
    ],
    era_abbreviated => [
      "p.m.\N{U+0113}.",
      "m.\N{U+0113}."
    ],
    era_narrow => [
      "p.m.\N{U+0113}.",
      "m.\N{U+0113}."
    ],
    era_wide => [
      "pirms m\N{U+016b}su \N{U+0113}ras",
      "m\N{U+016b}su \N{U+0113}r\N{U+0101}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Latvian",
    month_format_abbreviated => [
      "janv.",
      "febr.",
      "marts",
      "apr.",
      "maijs",
      "j\N{U+016b}n.",
      "j\N{U+016b}l.",
      "aug.",
      "sept.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janv\N{U+0101}ris",
      "febru\N{U+0101}ris",
      "marts",
      "apr\N{U+012b}lis",
      "maijs",
      "j\N{U+016b}nijs",
      "j\N{U+016b}lijs",
      "augusts",
      "septembris",
      "oktobris",
      "novembris",
      "decembris"
    ],
    month_stand_alone_abbreviated => [
      "Janv.",
      "Febr.",
      "Marts",
      "Apr.",
      "Maijs",
      "J\N{U+016b}n.",
      "J\N{U+016b}l.",
      "Aug.",
      "Sept.",
      "Okt.",
      "Nov.",
      "Dec."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Janv\N{U+0101}ris",
      "Febru\N{U+0101}ris",
      "Marts",
      "Apr\N{U+012b}lis",
      "Maijs",
      "J\N{U+016b}nijs",
      "J\N{U+016b}lijs",
      "Augusts",
      "Septembris",
      "Oktobris",
      "Novembris",
      "Decembris"
    ],
    name => "Latvian",
    native_language => "latvie\N{U+0161}u",
    native_name => "latvie\N{U+0161}u",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "1.\N{U+00a0}cet.",
      "2.\N{U+00a0}cet.",
      "3.\N{U+00a0}cet.",
      "4.\N{U+00a0}cet."
    ],
    quarter_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_format_wide => [
      "1. ceturksnis",
      "2. ceturksnis",
      "3. ceturksnis",
      "4. ceturksnis"
    ],
    quarter_stand_alone_abbreviated => [
      "1.\N{U+00a0}cet.",
      "2.\N{U+00a0}cet.",
      "3.\N{U+00a0}cet.",
      "4.\N{U+00a0}cet."
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "1. ceturksnis",
      "2. ceturksnis",
      "3. ceturksnis",
      "4. ceturksnis"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ lv-LV ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d.",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "G y. 'g'.",
      GyMMM => "G y. 'g'. MMM",
      GyMMMEd => "E, G y. 'g'. d. MMM",
      GyMMMd => "G y. 'g'. d. MMM",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd.MM.",
      MMM => "LLL",
      MMMEd => "E, d. MMM",
      MMMMEd => "E, d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      Md => "dd.MM.",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y. 'g'.",
      yM => "MM.y.",
      yMEd => "E, d.M.y.",
      yMMM => "y. 'g'. MMM",
      yMMMEd => "E, y. 'g'. d. MMM",
      yMMMM => "y. 'g'. MMMM",
      yMMMd => "y. 'g'. d. MMM",
      yMd => "d.M.y.",
      yQQQ => "y. 'g'. QQQ",
      yQQQQ => "y. 'g'. QQQQ"
    },
    code => "lv-LV",
    date_format_full => "EEEE, y. 'gada' d. MMMM",
    date_format_long => "y. 'gada' d. MMMM",
    date_format_medium => "y. 'gada' d. MMM",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Pr",
      "Ot",
      "Tr",
      "Ce",
      "Pk",
      "Se",
      "Sv"
    ],
    day_format_narrow => [
      "P",
      "O",
      "T",
      "C",
      "P",
      "S",
      "S"
    ],
    day_format_wide => [
      "pirmdiena",
      "otrdiena",
      "tre\N{U+0161}diena",
      "ceturtdiena",
      "piektdiena",
      "sestdiena",
      "sv\N{U+0113}tdiena"
    ],
    day_stand_alone_abbreviated => [
      "Pr",
      "Ot",
      "Tr",
      "Ce",
      "Pk",
      "Se",
      "Sv"
    ],
    day_stand_alone_narrow => [
      "P",
      "O",
      "T",
      "C",
      "P",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Pirmdiena",
      "Otrdiena",
      "Tre\N{U+0161}diena",
      "Ceturtdiena",
      "Piektdiena",
      "Sestdiena",
      "Sv\N{U+0113}tdiena"
    ],
    era_abbreviated => [
      "p.m.\N{U+0113}.",
      "m.\N{U+0113}."
    ],
    era_narrow => [
      "p.m.\N{U+0113}.",
      "m.\N{U+0113}."
    ],
    era_wide => [
      "pirms m\N{U+016b}su \N{U+0113}ras",
      "m\N{U+016b}su \N{U+0113}r\N{U+0101}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%Y.%m.%d.",
    glibc_datetime_format => "%A, %Y. gada %e. %B, plkst. %H un %M",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Latvian",
    month_format_abbreviated => [
      "janv.",
      "febr.",
      "marts",
      "apr.",
      "maijs",
      "j\N{U+016b}n.",
      "j\N{U+016b}l.",
      "aug.",
      "sept.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janv\N{U+0101}ris",
      "febru\N{U+0101}ris",
      "marts",
      "apr\N{U+012b}lis",
      "maijs",
      "j\N{U+016b}nijs",
      "j\N{U+016b}lijs",
      "augusts",
      "septembris",
      "oktobris",
      "novembris",
      "decembris"
    ],
    month_stand_alone_abbreviated => [
      "Janv.",
      "Febr.",
      "Marts",
      "Apr.",
      "Maijs",
      "J\N{U+016b}n.",
      "J\N{U+016b}l.",
      "Aug.",
      "Sept.",
      "Okt.",
      "Nov.",
      "Dec."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Janv\N{U+0101}ris",
      "Febru\N{U+0101}ris",
      "Marts",
      "Apr\N{U+012b}lis",
      "Maijs",
      "J\N{U+016b}nijs",
      "J\N{U+016b}lijs",
      "Augusts",
      "Septembris",
      "Oktobris",
      "Novembris",
      "Decembris"
    ],
    name => "Latvian Latvia",
    native_language => "latvie\N{U+0161}u",
    native_name => "latvie\N{U+0161}u Latvija",
    native_script => undef,
    native_territory => "Latvija",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1.\N{U+00a0}cet.",
      "2.\N{U+00a0}cet.",
      "3.\N{U+00a0}cet.",
      "4.\N{U+00a0}cet."
    ],
    quarter_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_format_wide => [
      "1. ceturksnis",
      "2. ceturksnis",
      "3. ceturksnis",
      "4. ceturksnis"
    ],
    quarter_stand_alone_abbreviated => [
      "1.\N{U+00a0}cet.",
      "2.\N{U+00a0}cet.",
      "3.\N{U+00a0}cet.",
      "4.\N{U+00a0}cet."
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "1. ceturksnis",
      "2. ceturksnis",
      "3. ceturksnis",
      "4. ceturksnis"
    ],
    script => undef,
    territory => "Latvia",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ mas ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "mas",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Jtt",
      "Jnn",
      "Jtn",
      "Alh",
      "Iju",
      "Jmo",
      "Jpi"
    ],
    day_format_narrow => [
      3,
      4,
      5,
      6,
      7,
      1,
      2
    ],
    day_format_wide => [
      "Jumat\N{U+00e1}tu",
      "Jumane",
      "Jumat\N{U+00e1}n\N{U+0254}",
      "Ala\N{U+00e1}misi",
      "Jum\N{U+00e1}a",
      "Jumam\N{U+00f3}si",
      "Jumap\N{U+00ed}l\N{U+00ed}"
    ],
    day_stand_alone_abbreviated => [
      "Jtt",
      "Jnn",
      "Jtn",
      "Alh",
      "Iju",
      "Jmo",
      "Jpi"
    ],
    day_stand_alone_narrow => [
      3,
      4,
      5,
      6,
      7,
      1,
      2
    ],
    day_stand_alone_wide => [
      "Jumat\N{U+00e1}tu",
      "Jumane",
      "Jumat\N{U+00e1}n\N{U+0254}",
      "Ala\N{U+00e1}misi",
      "Jum\N{U+00e1}a",
      "Jumam\N{U+00f3}si",
      "Jumap\N{U+00ed}l\N{U+00ed}"
    ],
    era_abbreviated => [
      "MY",
      "EY"
    ],
    era_narrow => [
      "MY",
      "EY"
    ],
    era_wide => [
      "Me\N{U+00ed}n\N{U+014d} Y\N{U+025b}\N{U+0301}s\N{U+0289}",
      "E\N{U+00ed}n\N{U+014d} Y\N{U+025b}\N{U+0301}s\N{U+0289}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Masai",
    month_format_abbreviated => [
      "Dal",
      "Ar\N{U+00e1}",
      "\N{U+0186}\N{U+025b}n",
      "Doy",
      "L\N{U+00e9}p",
      "Rok",
      "S\N{U+00e1}s",
      "B\N{U+0254}\N{U+0301}r",
      "K\N{U+00fa}s",
      "G\N{U+00ed}s",
      "Sh\N{U+0289}\N{U+0301}",
      "Nt\N{U+0289}\N{U+0301}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Oladal\N{U+0289}\N{U+0301}",
      "Ar\N{U+00e1}t",
      "\N{U+0186}\N{U+025b}n\N{U+0268}\N{U+0301}\N{U+0254}\N{U+0268}\N{U+014b}\N{U+0254}k",
      "Olodoy\N{U+00ed}\N{U+00f3}r\N{U+00ed}\N{U+00ea} ink\N{U+00f3}k\N{U+00fa}\N{U+00e2}",
      "Oloil\N{U+00e9}p\N{U+016b}ny\N{U+012b}\N{U+0113} ink\N{U+00f3}k\N{U+00fa}\N{U+00e2}",
      "K\N{U+00fa}j\N{U+00fa}\N{U+0254}r\N{U+0254}k",
      "M\N{U+00f3}rus\N{U+00e1}sin",
      "\N{U+0186}l\N{U+0254}\N{U+0301}\N{U+0268}\N{U+0301}b\N{U+0254}\N{U+0301}r\N{U+00e1}r\N{U+025b}",
      "K\N{U+00fa}sh\N{U+00ee}n",
      "Olg\N{U+00ed}san",
      "P\N{U+0289}sh\N{U+0289}\N{U+0301}ka",
      "Nt\N{U+0289}\N{U+0301}\N{U+014b}\N{U+0289}\N{U+0301}s"
    ],
    month_stand_alone_abbreviated => [
      "Dal",
      "Ar\N{U+00e1}",
      "\N{U+0186}\N{U+025b}n",
      "Doy",
      "L\N{U+00e9}p",
      "Rok",
      "S\N{U+00e1}s",
      "B\N{U+0254}\N{U+0301}r",
      "K\N{U+00fa}s",
      "G\N{U+00ed}s",
      "Sh\N{U+0289}\N{U+0301}",
      "Nt\N{U+0289}\N{U+0301}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Oladal\N{U+0289}\N{U+0301}",
      "Ar\N{U+00e1}t",
      "\N{U+0186}\N{U+025b}n\N{U+0268}\N{U+0301}\N{U+0254}\N{U+0268}\N{U+014b}\N{U+0254}k",
      "Olodoy\N{U+00ed}\N{U+00f3}r\N{U+00ed}\N{U+00ea} ink\N{U+00f3}k\N{U+00fa}\N{U+00e2}",
      "Oloil\N{U+00e9}p\N{U+016b}ny\N{U+012b}\N{U+0113} ink\N{U+00f3}k\N{U+00fa}\N{U+00e2}",
      "K\N{U+00fa}j\N{U+00fa}\N{U+0254}r\N{U+0254}k",
      "M\N{U+00f3}rus\N{U+00e1}sin",
      "\N{U+0186}l\N{U+0254}\N{U+0301}\N{U+0268}\N{U+0301}b\N{U+0254}\N{U+0301}r\N{U+00e1}r\N{U+025b}",
      "K\N{U+00fa}sh\N{U+00ee}n",
      "Olg\N{U+00ed}san",
      "P\N{U+0289}sh\N{U+0289}\N{U+0301}ka",
      "Nt\N{U+0289}\N{U+0301}\N{U+014b}\N{U+0289}\N{U+0301}s"
    ],
    name => "Masai",
    native_language => "Maa",
    native_name => "Maa",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "E1",
      "E2",
      "E3",
      "E4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Erobo 1",
      "Erobo 2",
      "Erobo 3",
      "Erobo 4"
    ],
    quarter_stand_alone_abbreviated => [
      "E1",
      "E2",
      "E3",
      "E4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Erobo 1",
      "Erobo 2",
      "Erobo 3",
      "Erobo 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ mas-KE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "mas-KE",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Jtt",
      "Jnn",
      "Jtn",
      "Alh",
      "Iju",
      "Jmo",
      "Jpi"
    ],
    day_format_narrow => [
      3,
      4,
      5,
      6,
      7,
      1,
      2
    ],
    day_format_wide => [
      "Jumat\N{U+00e1}tu",
      "Jumane",
      "Jumat\N{U+00e1}n\N{U+0254}",
      "Ala\N{U+00e1}misi",
      "Jum\N{U+00e1}a",
      "Jumam\N{U+00f3}si",
      "Jumap\N{U+00ed}l\N{U+00ed}"
    ],
    day_stand_alone_abbreviated => [
      "Jtt",
      "Jnn",
      "Jtn",
      "Alh",
      "Iju",
      "Jmo",
      "Jpi"
    ],
    day_stand_alone_narrow => [
      3,
      4,
      5,
      6,
      7,
      1,
      2
    ],
    day_stand_alone_wide => [
      "Jumat\N{U+00e1}tu",
      "Jumane",
      "Jumat\N{U+00e1}n\N{U+0254}",
      "Ala\N{U+00e1}misi",
      "Jum\N{U+00e1}a",
      "Jumam\N{U+00f3}si",
      "Jumap\N{U+00ed}l\N{U+00ed}"
    ],
    era_abbreviated => [
      "MY",
      "EY"
    ],
    era_narrow => [
      "MY",
      "EY"
    ],
    era_wide => [
      "Me\N{U+00ed}n\N{U+014d} Y\N{U+025b}\N{U+0301}s\N{U+0289}",
      "E\N{U+00ed}n\N{U+014d} Y\N{U+025b}\N{U+0301}s\N{U+0289}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Masai",
    month_format_abbreviated => [
      "Dal",
      "Ar\N{U+00e1}",
      "\N{U+0186}\N{U+025b}n",
      "Doy",
      "L\N{U+00e9}p",
      "Rok",
      "S\N{U+00e1}s",
      "B\N{U+0254}\N{U+0301}r",
      "K\N{U+00fa}s",
      "G\N{U+00ed}s",
      "Sh\N{U+0289}\N{U+0301}",
      "Nt\N{U+0289}\N{U+0301}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Oladal\N{U+0289}\N{U+0301}",
      "Ar\N{U+00e1}t",
      "\N{U+0186}\N{U+025b}n\N{U+0268}\N{U+0301}\N{U+0254}\N{U+0268}\N{U+014b}\N{U+0254}k",
      "Olodoy\N{U+00ed}\N{U+00f3}r\N{U+00ed}\N{U+00ea} ink\N{U+00f3}k\N{U+00fa}\N{U+00e2}",
      "Oloil\N{U+00e9}p\N{U+016b}ny\N{U+012b}\N{U+0113} ink\N{U+00f3}k\N{U+00fa}\N{U+00e2}",
      "K\N{U+00fa}j\N{U+00fa}\N{U+0254}r\N{U+0254}k",
      "M\N{U+00f3}rus\N{U+00e1}sin",
      "\N{U+0186}l\N{U+0254}\N{U+0301}\N{U+0268}\N{U+0301}b\N{U+0254}\N{U+0301}r\N{U+00e1}r\N{U+025b}",
      "K\N{U+00fa}sh\N{U+00ee}n",
      "Olg\N{U+00ed}san",
      "P\N{U+0289}sh\N{U+0289}\N{U+0301}ka",
      "Nt\N{U+0289}\N{U+0301}\N{U+014b}\N{U+0289}\N{U+0301}s"
    ],
    month_stand_alone_abbreviated => [
      "Dal",
      "Ar\N{U+00e1}",
      "\N{U+0186}\N{U+025b}n",
      "Doy",
      "L\N{U+00e9}p",
      "Rok",
      "S\N{U+00e1}s",
      "B\N{U+0254}\N{U+0301}r",
      "K\N{U+00fa}s",
      "G\N{U+00ed}s",
      "Sh\N{U+0289}\N{U+0301}",
      "Nt\N{U+0289}\N{U+0301}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Oladal\N{U+0289}\N{U+0301}",
      "Ar\N{U+00e1}t",
      "\N{U+0186}\N{U+025b}n\N{U+0268}\N{U+0301}\N{U+0254}\N{U+0268}\N{U+014b}\N{U+0254}k",
      "Olodoy\N{U+00ed}\N{U+00f3}r\N{U+00ed}\N{U+00ea} ink\N{U+00f3}k\N{U+00fa}\N{U+00e2}",
      "Oloil\N{U+00e9}p\N{U+016b}ny\N{U+012b}\N{U+0113} ink\N{U+00f3}k\N{U+00fa}\N{U+00e2}",
      "K\N{U+00fa}j\N{U+00fa}\N{U+0254}r\N{U+0254}k",
      "M\N{U+00f3}rus\N{U+00e1}sin",
      "\N{U+0186}l\N{U+0254}\N{U+0301}\N{U+0268}\N{U+0301}b\N{U+0254}\N{U+0301}r\N{U+00e1}r\N{U+025b}",
      "K\N{U+00fa}sh\N{U+00ee}n",
      "Olg\N{U+00ed}san",
      "P\N{U+0289}sh\N{U+0289}\N{U+0301}ka",
      "Nt\N{U+0289}\N{U+0301}\N{U+014b}\N{U+0289}\N{U+0301}s"
    ],
    name => "Masai Kenya",
    native_language => "Maa",
    native_name => "Maa Kenya",
    native_script => undef,
    native_territory => "Kenya",
    native_variant => undef,
    quarter_format_abbreviated => [
      "E1",
      "E2",
      "E3",
      "E4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Erobo 1",
      "Erobo 2",
      "Erobo 3",
      "Erobo 4"
    ],
    quarter_stand_alone_abbreviated => [
      "E1",
      "E2",
      "E3",
      "E4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Erobo 1",
      "Erobo 2",
      "Erobo 3",
      "Erobo 4"
    ],
    script => undef,
    territory => "Kenya",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ mas-TZ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "mas-TZ",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Jtt",
      "Jnn",
      "Jtn",
      "Alh",
      "Iju",
      "Jmo",
      "Jpi"
    ],
    day_format_narrow => [
      3,
      4,
      5,
      6,
      7,
      1,
      2
    ],
    day_format_wide => [
      "Jumat\N{U+00e1}tu",
      "Jumane",
      "Jumat\N{U+00e1}n\N{U+0254}",
      "Ala\N{U+00e1}misi",
      "Jum\N{U+00e1}a",
      "Jumam\N{U+00f3}si",
      "Jumap\N{U+00ed}l\N{U+00ed}"
    ],
    day_stand_alone_abbreviated => [
      "Jtt",
      "Jnn",
      "Jtn",
      "Alh",
      "Iju",
      "Jmo",
      "Jpi"
    ],
    day_stand_alone_narrow => [
      3,
      4,
      5,
      6,
      7,
      1,
      2
    ],
    day_stand_alone_wide => [
      "Jumat\N{U+00e1}tu",
      "Jumane",
      "Jumat\N{U+00e1}n\N{U+0254}",
      "Ala\N{U+00e1}misi",
      "Jum\N{U+00e1}a",
      "Jumam\N{U+00f3}si",
      "Jumap\N{U+00ed}l\N{U+00ed}"
    ],
    era_abbreviated => [
      "MY",
      "EY"
    ],
    era_narrow => [
      "MY",
      "EY"
    ],
    era_wide => [
      "Me\N{U+00ed}n\N{U+014d} Y\N{U+025b}\N{U+0301}s\N{U+0289}",
      "E\N{U+00ed}n\N{U+014d} Y\N{U+025b}\N{U+0301}s\N{U+0289}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Masai",
    month_format_abbreviated => [
      "Dal",
      "Ar\N{U+00e1}",
      "\N{U+0186}\N{U+025b}n",
      "Doy",
      "L\N{U+00e9}p",
      "Rok",
      "S\N{U+00e1}s",
      "B\N{U+0254}\N{U+0301}r",
      "K\N{U+00fa}s",
      "G\N{U+00ed}s",
      "Sh\N{U+0289}\N{U+0301}",
      "Nt\N{U+0289}\N{U+0301}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Oladal\N{U+0289}\N{U+0301}",
      "Ar\N{U+00e1}t",
      "\N{U+0186}\N{U+025b}n\N{U+0268}\N{U+0301}\N{U+0254}\N{U+0268}\N{U+014b}\N{U+0254}k",
      "Olodoy\N{U+00ed}\N{U+00f3}r\N{U+00ed}\N{U+00ea} ink\N{U+00f3}k\N{U+00fa}\N{U+00e2}",
      "Oloil\N{U+00e9}p\N{U+016b}ny\N{U+012b}\N{U+0113} ink\N{U+00f3}k\N{U+00fa}\N{U+00e2}",
      "K\N{U+00fa}j\N{U+00fa}\N{U+0254}r\N{U+0254}k",
      "M\N{U+00f3}rus\N{U+00e1}sin",
      "\N{U+0186}l\N{U+0254}\N{U+0301}\N{U+0268}\N{U+0301}b\N{U+0254}\N{U+0301}r\N{U+00e1}r\N{U+025b}",
      "K\N{U+00fa}sh\N{U+00ee}n",
      "Olg\N{U+00ed}san",
      "P\N{U+0289}sh\N{U+0289}\N{U+0301}ka",
      "Nt\N{U+0289}\N{U+0301}\N{U+014b}\N{U+0289}\N{U+0301}s"
    ],
    month_stand_alone_abbreviated => [
      "Dal",
      "Ar\N{U+00e1}",
      "\N{U+0186}\N{U+025b}n",
      "Doy",
      "L\N{U+00e9}p",
      "Rok",
      "S\N{U+00e1}s",
      "B\N{U+0254}\N{U+0301}r",
      "K\N{U+00fa}s",
      "G\N{U+00ed}s",
      "Sh\N{U+0289}\N{U+0301}",
      "Nt\N{U+0289}\N{U+0301}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Oladal\N{U+0289}\N{U+0301}",
      "Ar\N{U+00e1}t",
      "\N{U+0186}\N{U+025b}n\N{U+0268}\N{U+0301}\N{U+0254}\N{U+0268}\N{U+014b}\N{U+0254}k",
      "Olodoy\N{U+00ed}\N{U+00f3}r\N{U+00ed}\N{U+00ea} ink\N{U+00f3}k\N{U+00fa}\N{U+00e2}",
      "Oloil\N{U+00e9}p\N{U+016b}ny\N{U+012b}\N{U+0113} ink\N{U+00f3}k\N{U+00fa}\N{U+00e2}",
      "K\N{U+00fa}j\N{U+00fa}\N{U+0254}r\N{U+0254}k",
      "M\N{U+00f3}rus\N{U+00e1}sin",
      "\N{U+0186}l\N{U+0254}\N{U+0301}\N{U+0268}\N{U+0301}b\N{U+0254}\N{U+0301}r\N{U+00e1}r\N{U+025b}",
      "K\N{U+00fa}sh\N{U+00ee}n",
      "Olg\N{U+00ed}san",
      "P\N{U+0289}sh\N{U+0289}\N{U+0301}ka",
      "Nt\N{U+0289}\N{U+0301}\N{U+014b}\N{U+0289}\N{U+0301}s"
    ],
    name => "Masai Tanzania",
    native_language => "Maa",
    native_name => "Maa Tansania",
    native_script => undef,
    native_territory => "Tansania",
    native_variant => undef,
    quarter_format_abbreviated => [
      "E1",
      "E2",
      "E3",
      "E4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Erobo 1",
      "Erobo 2",
      "Erobo 3",
      "Erobo 4"
    ],
    quarter_stand_alone_abbreviated => [
      "E1",
      "E2",
      "E3",
      "E4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Erobo 1",
      "Erobo 2",
      "Erobo 3",
      "Erobo 4"
    ],
    script => undef,
    territory => "Tanzania",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ mer ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "mer",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "MRA",
      "WAI",
      "WET",
      "WEN",
      "WTN",
      "JUM",
      "KIU"
    ],
    day_format_narrow => [
      "M",
      "W",
      "W",
      "W",
      "W",
      "J",
      "K"
    ],
    day_format_wide => [
      "Muramuko",
      "Wairi",
      "Wethatu",
      "Wena",
      "Wetano",
      "Jumamosi",
      "Kiumia"
    ],
    day_stand_alone_abbreviated => [
      "MRA",
      "WAI",
      "WET",
      "WEN",
      "WTN",
      "JUM",
      "KIU"
    ],
    day_stand_alone_narrow => [
      "M",
      "W",
      "W",
      "W",
      "W",
      "J",
      "K"
    ],
    day_stand_alone_wide => [
      "Muramuko",
      "Wairi",
      "Wethatu",
      "Wena",
      "Wetano",
      "Jumamosi",
      "Kiumia"
    ],
    era_abbreviated => [
      "MK",
      "NK"
    ],
    era_narrow => [
      "MK",
      "NK"
    ],
    era_wide => [
      "Mbere ya Krist\N{U+0169}",
      "Nyuma ya Krist\N{U+0169}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Meru",
    month_format_abbreviated => [
      "JAN",
      "FEB",
      "MAC",
      "\N{U+0128}PU",
      "M\N{U+0128}\N{U+0128}",
      "NJU",
      "NJR",
      "AGA",
      "SPT",
      "OKT",
      "NOV",
      "DEC"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "\N{U+0128}",
      "M",
      "N",
      "N",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januar\N{U+0129}",
      "Feburuar\N{U+0129}",
      "Machi",
      "\N{U+0128}pur\N{U+0169}",
      "M\N{U+0129}\N{U+0129}",
      "Njuni",
      "Njura\N{U+0129}",
      "Agasti",
      "Septemba",
      "Okt\N{U+0169}ba",
      "Novemba",
      "Dicemba"
    ],
    month_stand_alone_abbreviated => [
      "JAN",
      "FEB",
      "MAC",
      "\N{U+0128}PU",
      "M\N{U+0128}\N{U+0128}",
      "NJU",
      "NJR",
      "AGA",
      "SPT",
      "OKT",
      "NOV",
      "DEC"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "\N{U+0128}",
      "M",
      "N",
      "N",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januar\N{U+0129}",
      "Feburuar\N{U+0129}",
      "Machi",
      "\N{U+0128}pur\N{U+0169}",
      "M\N{U+0129}\N{U+0129}",
      "Njuni",
      "Njura\N{U+0129}",
      "Agasti",
      "Septemba",
      "Okt\N{U+0169}ba",
      "Novemba",
      "Dicemba"
    ],
    name => "Meru",
    native_language => "K\N{U+0129}m\N{U+0129}r\N{U+0169}",
    native_name => "K\N{U+0129}m\N{U+0129}r\N{U+0169}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0128}mwe k\N{U+0129}r\N{U+0129} inya",
      "Ij\N{U+0129}r\N{U+0129} k\N{U+0129}r\N{U+0129} inya",
      "Ithat\N{U+0169} k\N{U+0129}r\N{U+0129} inya",
      "Inya k\N{U+0129}r\N{U+0129} inya"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+0128}mwe k\N{U+0129}r\N{U+0129} inya",
      "Ij\N{U+0129}r\N{U+0129} k\N{U+0129}r\N{U+0129} inya",
      "Ithat\N{U+0169} k\N{U+0129}r\N{U+0129} inya",
      "Inya k\N{U+0129}r\N{U+0129} inya"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0128}mwe k\N{U+0129}r\N{U+0129} inya",
      "Ij\N{U+0129}r\N{U+0129} k\N{U+0129}r\N{U+0129} inya",
      "Ithat\N{U+0169} k\N{U+0129}r\N{U+0129} inya",
      "Inya k\N{U+0129}r\N{U+0129} inya"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+0128}mwe k\N{U+0129}r\N{U+0129} inya",
      "Ij\N{U+0129}r\N{U+0129} k\N{U+0129}r\N{U+0129} inya",
      "Ithat\N{U+0169} k\N{U+0129}r\N{U+0129} inya",
      "Inya k\N{U+0129}r\N{U+0129} inya"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ mer-KE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "mer-KE",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "MRA",
      "WAI",
      "WET",
      "WEN",
      "WTN",
      "JUM",
      "KIU"
    ],
    day_format_narrow => [
      "M",
      "W",
      "W",
      "W",
      "W",
      "J",
      "K"
    ],
    day_format_wide => [
      "Muramuko",
      "Wairi",
      "Wethatu",
      "Wena",
      "Wetano",
      "Jumamosi",
      "Kiumia"
    ],
    day_stand_alone_abbreviated => [
      "MRA",
      "WAI",
      "WET",
      "WEN",
      "WTN",
      "JUM",
      "KIU"
    ],
    day_stand_alone_narrow => [
      "M",
      "W",
      "W",
      "W",
      "W",
      "J",
      "K"
    ],
    day_stand_alone_wide => [
      "Muramuko",
      "Wairi",
      "Wethatu",
      "Wena",
      "Wetano",
      "Jumamosi",
      "Kiumia"
    ],
    era_abbreviated => [
      "MK",
      "NK"
    ],
    era_narrow => [
      "MK",
      "NK"
    ],
    era_wide => [
      "Mbere ya Krist\N{U+0169}",
      "Nyuma ya Krist\N{U+0169}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Meru",
    month_format_abbreviated => [
      "JAN",
      "FEB",
      "MAC",
      "\N{U+0128}PU",
      "M\N{U+0128}\N{U+0128}",
      "NJU",
      "NJR",
      "AGA",
      "SPT",
      "OKT",
      "NOV",
      "DEC"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "\N{U+0128}",
      "M",
      "N",
      "N",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januar\N{U+0129}",
      "Feburuar\N{U+0129}",
      "Machi",
      "\N{U+0128}pur\N{U+0169}",
      "M\N{U+0129}\N{U+0129}",
      "Njuni",
      "Njura\N{U+0129}",
      "Agasti",
      "Septemba",
      "Okt\N{U+0169}ba",
      "Novemba",
      "Dicemba"
    ],
    month_stand_alone_abbreviated => [
      "JAN",
      "FEB",
      "MAC",
      "\N{U+0128}PU",
      "M\N{U+0128}\N{U+0128}",
      "NJU",
      "NJR",
      "AGA",
      "SPT",
      "OKT",
      "NOV",
      "DEC"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "\N{U+0128}",
      "M",
      "N",
      "N",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januar\N{U+0129}",
      "Feburuar\N{U+0129}",
      "Machi",
      "\N{U+0128}pur\N{U+0169}",
      "M\N{U+0129}\N{U+0129}",
      "Njuni",
      "Njura\N{U+0129}",
      "Agasti",
      "Septemba",
      "Okt\N{U+0169}ba",
      "Novemba",
      "Dicemba"
    ],
    name => "Meru Kenya",
    native_language => "K\N{U+0129}m\N{U+0129}r\N{U+0169}",
    native_name => "K\N{U+0129}m\N{U+0129}r\N{U+0169} Kenya",
    native_script => undef,
    native_territory => "Kenya",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0128}mwe k\N{U+0129}r\N{U+0129} inya",
      "Ij\N{U+0129}r\N{U+0129} k\N{U+0129}r\N{U+0129} inya",
      "Ithat\N{U+0169} k\N{U+0129}r\N{U+0129} inya",
      "Inya k\N{U+0129}r\N{U+0129} inya"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+0128}mwe k\N{U+0129}r\N{U+0129} inya",
      "Ij\N{U+0129}r\N{U+0129} k\N{U+0129}r\N{U+0129} inya",
      "Ithat\N{U+0169} k\N{U+0129}r\N{U+0129} inya",
      "Inya k\N{U+0129}r\N{U+0129} inya"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0128}mwe k\N{U+0129}r\N{U+0129} inya",
      "Ij\N{U+0129}r\N{U+0129} k\N{U+0129}r\N{U+0129} inya",
      "Ithat\N{U+0169} k\N{U+0129}r\N{U+0129} inya",
      "Inya k\N{U+0129}r\N{U+0129} inya"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+0128}mwe k\N{U+0129}r\N{U+0129} inya",
      "Ij\N{U+0129}r\N{U+0129} k\N{U+0129}r\N{U+0129} inya",
      "Ithat\N{U+0169} k\N{U+0129}r\N{U+0129} inya",
      "Inya k\N{U+0129}r\N{U+0129} inya"
    ],
    script => undef,
    territory => "Kenya",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ mfe ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "M",
      MEd => "MM-dd, E",
      MMM => "MMM",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMd => "d/MM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "mfe",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lin",
      "mar",
      "mer",
      "ze",
      "van",
      "sam",
      "dim"
    ],
    day_format_narrow => [
      "l",
      "m",
      "m",
      "z",
      "v",
      "s",
      "d"
    ],
    day_format_wide => [
      "lindi",
      "mardi",
      "merkredi",
      "zedi",
      "vandredi",
      "samdi",
      "dimans"
    ],
    day_stand_alone_abbreviated => [
      "lin",
      "mar",
      "mer",
      "ze",
      "van",
      "sam",
      "dim"
    ],
    day_stand_alone_narrow => [
      "l",
      "m",
      "m",
      "z",
      "v",
      "s",
      "d"
    ],
    day_stand_alone_wide => [
      "lindi",
      "mardi",
      "merkredi",
      "zedi",
      "vandredi",
      "samdi",
      "dimans"
    ],
    era_abbreviated => [
      "av. Z-K",
      "ap. Z-K"
    ],
    era_narrow => [
      "av. Z-K",
      "ap. Z-K"
    ],
    era_wide => [
      "avan Zezi-Krist",
      "apre Zezi-Krist"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Morisyen",
    month_format_abbreviated => [
      "zan",
      "fev",
      "mar",
      "avr",
      "me",
      "zin",
      "zil",
      "out",
      "sep",
      "okt",
      "nov",
      "des"
    ],
    month_format_narrow => [
      "z",
      "f",
      "m",
      "a",
      "m",
      "z",
      "z",
      "o",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "zanvie",
      "fevriye",
      "mars",
      "avril",
      "me",
      "zin",
      "zilye",
      "out",
      "septam",
      "oktob",
      "novam",
      "desam"
    ],
    month_stand_alone_abbreviated => [
      "zan",
      "fev",
      "mar",
      "avr",
      "me",
      "zin",
      "zil",
      "out",
      "sep",
      "okt",
      "nov",
      "des"
    ],
    month_stand_alone_narrow => [
      "z",
      "f",
      "m",
      "a",
      "m",
      "z",
      "z",
      "o",
      "s",
      "o",
      "n",
      "d"
    ],
    month_stand_alone_wide => [
      "zanvie",
      "fevriye",
      "mars",
      "avril",
      "me",
      "zin",
      "zilye",
      "out",
      "septam",
      "oktob",
      "novam",
      "desam"
    ],
    name => "Morisyen",
    native_language => "kreol morisien",
    native_name => "kreol morisien",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1e trimes",
      "2em trimes",
      "3em trimes",
      "4em trimes"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1e trimes",
      "2em trimes",
      "3em trimes",
      "4em trimes"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ mfe-MU ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "M",
      MEd => "MM-dd, E",
      MMM => "MMM",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMd => "d/MM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "mfe-MU",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "lin",
      "mar",
      "mer",
      "ze",
      "van",
      "sam",
      "dim"
    ],
    day_format_narrow => [
      "l",
      "m",
      "m",
      "z",
      "v",
      "s",
      "d"
    ],
    day_format_wide => [
      "lindi",
      "mardi",
      "merkredi",
      "zedi",
      "vandredi",
      "samdi",
      "dimans"
    ],
    day_stand_alone_abbreviated => [
      "lin",
      "mar",
      "mer",
      "ze",
      "van",
      "sam",
      "dim"
    ],
    day_stand_alone_narrow => [
      "l",
      "m",
      "m",
      "z",
      "v",
      "s",
      "d"
    ],
    day_stand_alone_wide => [
      "lindi",
      "mardi",
      "merkredi",
      "zedi",
      "vandredi",
      "samdi",
      "dimans"
    ],
    era_abbreviated => [
      "av. Z-K",
      "ap. Z-K"
    ],
    era_narrow => [
      "av. Z-K",
      "ap. Z-K"
    ],
    era_wide => [
      "avan Zezi-Krist",
      "apre Zezi-Krist"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Morisyen",
    month_format_abbreviated => [
      "zan",
      "fev",
      "mar",
      "avr",
      "me",
      "zin",
      "zil",
      "out",
      "sep",
      "okt",
      "nov",
      "des"
    ],
    month_format_narrow => [
      "z",
      "f",
      "m",
      "a",
      "m",
      "z",
      "z",
      "o",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "zanvie",
      "fevriye",
      "mars",
      "avril",
      "me",
      "zin",
      "zilye",
      "out",
      "septam",
      "oktob",
      "novam",
      "desam"
    ],
    month_stand_alone_abbreviated => [
      "zan",
      "fev",
      "mar",
      "avr",
      "me",
      "zin",
      "zil",
      "out",
      "sep",
      "okt",
      "nov",
      "des"
    ],
    month_stand_alone_narrow => [
      "z",
      "f",
      "m",
      "a",
      "m",
      "z",
      "z",
      "o",
      "s",
      "o",
      "n",
      "d"
    ],
    month_stand_alone_wide => [
      "zanvie",
      "fevriye",
      "mars",
      "avril",
      "me",
      "zin",
      "zilye",
      "out",
      "septam",
      "oktob",
      "novam",
      "desam"
    ],
    name => "Morisyen Mauritius",
    native_language => "kreol morisien",
    native_name => "kreol morisien Moris",
    native_script => undef,
    native_territory => "Moris",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1e trimes",
      "2em trimes",
      "3em trimes",
      "4em trimes"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1e trimes",
      "2em trimes",
      "3em trimes",
      "4em trimes"
    ],
    script => undef,
    territory => "Mauritius",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ mg ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "M",
      MEd => "E d/M",
      MMM => "MMM",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMd => "d/MM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "mg",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Alats",
      "Tal",
      "Alar",
      "Alak",
      "Zom",
      "Asab",
      "Alah"
    ],
    day_format_narrow => [
      "A",
      "T",
      "A",
      "A",
      "Z",
      "A",
      "A"
    ],
    day_format_wide => [
      "Alatsinainy",
      "Talata",
      "Alarobia",
      "Alakamisy",
      "Zoma",
      "Asabotsy",
      "Alahady"
    ],
    day_stand_alone_abbreviated => [
      "Alats",
      "Tal",
      "Alar",
      "Alak",
      "Zom",
      "Asab",
      "Alah"
    ],
    day_stand_alone_narrow => [
      "A",
      "T",
      "A",
      "A",
      "Z",
      "A",
      "A"
    ],
    day_stand_alone_wide => [
      "Alatsinainy",
      "Talata",
      "Alarobia",
      "Alakamisy",
      "Zoma",
      "Asabotsy",
      "Alahady"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "Alohan\N{U+2019}i JK",
      "Aorian\N{U+2019}i JK"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Malagasy",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "Mey",
      "Jon",
      "Jol",
      "Aog",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Janoary",
      "Febroary",
      "Martsa",
      "Aprily",
      "Mey",
      "Jona",
      "Jolay",
      "Aogositra",
      "Septambra",
      "Oktobra",
      "Novambra",
      "Desambra"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "Mey",
      "Jon",
      "Jol",
      "Aog",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Janoary",
      "Febroary",
      "Martsa",
      "Aprily",
      "Mey",
      "Jona",
      "Jolay",
      "Aogositra",
      "Septambra",
      "Oktobra",
      "Novambra",
      "Desambra"
    ],
    name => "Malagasy",
    native_language => "Malagasy",
    native_name => "Malagasy",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Telovolana voalohany",
      "Telovolana faharoa",
      "Telovolana fahatelo",
      "Telovolana fahefatra"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Telovolana voalohany",
      "Telovolana faharoa",
      "Telovolana fahatelo",
      "Telovolana fahefatra"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ mg-MG ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "M",
      MEd => "E d/M",
      MMM => "MMM",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMd => "d/MM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "mg-MG",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Alats",
      "Tal",
      "Alar",
      "Alak",
      "Zom",
      "Asab",
      "Alah"
    ],
    day_format_narrow => [
      "A",
      "T",
      "A",
      "A",
      "Z",
      "A",
      "A"
    ],
    day_format_wide => [
      "Alatsinainy",
      "Talata",
      "Alarobia",
      "Alakamisy",
      "Zoma",
      "Asabotsy",
      "Alahady"
    ],
    day_stand_alone_abbreviated => [
      "Alats",
      "Tal",
      "Alar",
      "Alak",
      "Zom",
      "Asab",
      "Alah"
    ],
    day_stand_alone_narrow => [
      "A",
      "T",
      "A",
      "A",
      "Z",
      "A",
      "A"
    ],
    day_stand_alone_wide => [
      "Alatsinainy",
      "Talata",
      "Alarobia",
      "Alakamisy",
      "Zoma",
      "Asabotsy",
      "Alahady"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "Alohan\N{U+2019}i JK",
      "Aorian\N{U+2019}i JK"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d.%m.%Y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Malagasy",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "Mey",
      "Jon",
      "Jol",
      "Aog",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Janoary",
      "Febroary",
      "Martsa",
      "Aprily",
      "Mey",
      "Jona",
      "Jolay",
      "Aogositra",
      "Septambra",
      "Oktobra",
      "Novambra",
      "Desambra"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "Mey",
      "Jon",
      "Jol",
      "Aog",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Janoary",
      "Febroary",
      "Martsa",
      "Aprily",
      "Mey",
      "Jona",
      "Jolay",
      "Aogositra",
      "Septambra",
      "Oktobra",
      "Novambra",
      "Desambra"
    ],
    name => "Malagasy Madagascar",
    native_language => "Malagasy",
    native_name => "Malagasy Madagasikara",
    native_script => undef,
    native_territory => "Madagasikara",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Telovolana voalohany",
      "Telovolana faharoa",
      "Telovolana fahatelo",
      "Telovolana fahefatra"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Telovolana voalohany",
      "Telovolana faharoa",
      "Telovolana fahatelo",
      "Telovolana fahefatra"
    ],
    script => undef,
    territory => "Madagascar",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ mgh ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "y MMMM",
      yMMMd => "MMM d, y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "mgh",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Jtt",
      "Jnn",
      "Jtn",
      "Ara",
      "Iju",
      "Jmo",
      "Sab"
    ],
    day_format_narrow => [
      "J",
      "J",
      "J",
      "A",
      "I",
      "J",
      "S"
    ],
    day_format_wide => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Arahamisi",
      "Ijumaa",
      "Jumamosi",
      "Sabato"
    ],
    day_stand_alone_abbreviated => [
      "Jtt",
      "Jnn",
      "Jtn",
      "Ara",
      "Iju",
      "Jmo",
      "Sab"
    ],
    day_stand_alone_narrow => [
      "J",
      "J",
      "J",
      "A",
      "I",
      "J",
      "S"
    ],
    day_stand_alone_wide => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Arahamisi",
      "Ijumaa",
      "Jumamosi",
      "Sabato"
    ],
    era_abbreviated => [
      "HY",
      "YY"
    ],
    era_narrow => [
      "HY",
      "YY"
    ],
    era_wide => [
      "Hinapiya yesu",
      "Yopia yesu"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Makhuwa-Meetto",
    month_format_abbreviated => [
      "Kwa",
      "Una",
      "Rar",
      "Che",
      "Tha",
      "Moc",
      "Sab",
      "Nan",
      "Tis",
      "Kum",
      "Moj",
      "Yel"
    ],
    month_format_narrow => [
      "K",
      "U",
      "R",
      "C",
      "T",
      "M",
      "S",
      "N",
      "T",
      "K",
      "M",
      "Y"
    ],
    month_format_wide => [
      "Mweri wo kwanza",
      "Mweri wo unayeli",
      "Mweri wo uneraru",
      "Mweri wo unecheshe",
      "Mweri wo unethanu",
      "Mweri wo thanu na mocha",
      "Mweri wo saba",
      "Mweri wo nane",
      "Mweri wo tisa",
      "Mweri wo kumi",
      "Mweri wo kumi na moja",
      "Mweri wo kumi na yel\N{U+2019}li"
    ],
    month_stand_alone_abbreviated => [
      "Kwa",
      "Una",
      "Rar",
      "Che",
      "Tha",
      "Moc",
      "Sab",
      "Nan",
      "Tis",
      "Kum",
      "Moj",
      "Yel"
    ],
    month_stand_alone_narrow => [
      "K",
      "U",
      "R",
      "C",
      "T",
      "M",
      "S",
      "N",
      "T",
      "K",
      "M",
      "Y"
    ],
    month_stand_alone_wide => [
      "Mweri wo kwanza",
      "Mweri wo unayeli",
      "Mweri wo uneraru",
      "Mweri wo unecheshe",
      "Mweri wo unethanu",
      "Mweri wo thanu na mocha",
      "Mweri wo saba",
      "Mweri wo nane",
      "Mweri wo tisa",
      "Mweri wo kumi",
      "Mweri wo kumi na moja",
      "Mweri wo kumi na yel\N{U+2019}li"
    ],
    name => "Makhuwa-Meetto",
    native_language => "Makua",
    native_name => "Makua",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ mgh-MZ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "y MMMM",
      yMMMd => "MMM d, y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "mgh-MZ",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Jtt",
      "Jnn",
      "Jtn",
      "Ara",
      "Iju",
      "Jmo",
      "Sab"
    ],
    day_format_narrow => [
      "J",
      "J",
      "J",
      "A",
      "I",
      "J",
      "S"
    ],
    day_format_wide => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Arahamisi",
      "Ijumaa",
      "Jumamosi",
      "Sabato"
    ],
    day_stand_alone_abbreviated => [
      "Jtt",
      "Jnn",
      "Jtn",
      "Ara",
      "Iju",
      "Jmo",
      "Sab"
    ],
    day_stand_alone_narrow => [
      "J",
      "J",
      "J",
      "A",
      "I",
      "J",
      "S"
    ],
    day_stand_alone_wide => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Arahamisi",
      "Ijumaa",
      "Jumamosi",
      "Sabato"
    ],
    era_abbreviated => [
      "HY",
      "YY"
    ],
    era_narrow => [
      "HY",
      "YY"
    ],
    era_wide => [
      "Hinapiya yesu",
      "Yopia yesu"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Makhuwa-Meetto",
    month_format_abbreviated => [
      "Kwa",
      "Una",
      "Rar",
      "Che",
      "Tha",
      "Moc",
      "Sab",
      "Nan",
      "Tis",
      "Kum",
      "Moj",
      "Yel"
    ],
    month_format_narrow => [
      "K",
      "U",
      "R",
      "C",
      "T",
      "M",
      "S",
      "N",
      "T",
      "K",
      "M",
      "Y"
    ],
    month_format_wide => [
      "Mweri wo kwanza",
      "Mweri wo unayeli",
      "Mweri wo uneraru",
      "Mweri wo unecheshe",
      "Mweri wo unethanu",
      "Mweri wo thanu na mocha",
      "Mweri wo saba",
      "Mweri wo nane",
      "Mweri wo tisa",
      "Mweri wo kumi",
      "Mweri wo kumi na moja",
      "Mweri wo kumi na yel\N{U+2019}li"
    ],
    month_stand_alone_abbreviated => [
      "Kwa",
      "Una",
      "Rar",
      "Che",
      "Tha",
      "Moc",
      "Sab",
      "Nan",
      "Tis",
      "Kum",
      "Moj",
      "Yel"
    ],
    month_stand_alone_narrow => [
      "K",
      "U",
      "R",
      "C",
      "T",
      "M",
      "S",
      "N",
      "T",
      "K",
      "M",
      "Y"
    ],
    month_stand_alone_wide => [
      "Mweri wo kwanza",
      "Mweri wo unayeli",
      "Mweri wo uneraru",
      "Mweri wo unecheshe",
      "Mweri wo unethanu",
      "Mweri wo thanu na mocha",
      "Mweri wo saba",
      "Mweri wo nane",
      "Mweri wo tisa",
      "Mweri wo kumi",
      "Mweri wo kumi na moja",
      "Mweri wo kumi na yel\N{U+2019}li"
    ],
    name => "Makhuwa-Meetto Mozambique",
    native_language => "Makua",
    native_name => "Makua Umozambiki",
    native_script => undef,
    native_territory => "Umozambiki",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "Mozambique",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ mgo ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "mgo",
    date_format_full => "EEEE, y MMMM dd",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Aneg 2",
      "Aneg 3",
      "Aneg 4",
      "Aneg 5",
      "Aneg 6",
      "Aneg 7",
      "Aneg 1"
    ],
    day_format_narrow => [
      "A2",
      "A3",
      "A4",
      "A5",
      "A6",
      "A7",
      "A1"
    ],
    day_format_wide => [
      "Aneg 2",
      "Aneg 3",
      "Aneg 4",
      "Aneg 5",
      "Aneg 6",
      "Aneg 7",
      "Aneg 1"
    ],
    day_stand_alone_abbreviated => [
      "Aneg 2",
      "Aneg 3",
      "Aneg 4",
      "Aneg 5",
      "Aneg 6",
      "Aneg 7",
      "Aneg 1"
    ],
    day_stand_alone_narrow => [
      "A2",
      "A3",
      "A4",
      "A5",
      "A6",
      "A7",
      "A1"
    ],
    day_stand_alone_wide => [
      "Aneg 2",
      "Aneg 3",
      "Aneg 4",
      "Aneg 5",
      "Aneg 6",
      "Aneg 7",
      "Aneg 1"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Meta\N{U+02bc}",
    month_format_abbreviated => [
      "mbegtug",
      "imeg \N{U+00e0}b\N{U+00f9}b\N{U+00ec}",
      "imeg mb\N{U+0259}\N{U+014b}chubi",
      "im\N{U+0259}g ngw\N{U+0259}\N{U+0300}t",
      "im\N{U+0259}g fog",
      "im\N{U+0259}g ichiib\N{U+0254}d",
      "im\N{U+0259}g \N{U+00e0}d\N{U+00f9}mb\N{U+0259}\N{U+0300}\N{U+014b}",
      "im\N{U+0259}g ichika",
      "im\N{U+0259}g kud",
      "im\N{U+0259}g t\N{U+00e8}si\N{U+02bc}e",
      "im\N{U+0259}g z\N{U+00f2}",
      "im\N{U+0259}g krizmed"
    ],
    month_format_narrow => [
      "M1",
      "A2",
      "M3",
      "N4",
      "F5",
      "I6",
      "A7",
      "I8",
      "K9",
      10,
      11,
      12
    ],
    month_format_wide => [
      "im\N{U+0259}g mbegtug",
      "imeg \N{U+00e0}b\N{U+00f9}b\N{U+00ec}",
      "imeg mb\N{U+0259}\N{U+014b}chubi",
      "im\N{U+0259}g ngw\N{U+0259}\N{U+0300}t",
      "im\N{U+0259}g fog",
      "im\N{U+0259}g ichiib\N{U+0254}d",
      "im\N{U+0259}g \N{U+00e0}d\N{U+00f9}mb\N{U+0259}\N{U+0300}\N{U+014b}",
      "im\N{U+0259}g ichika",
      "im\N{U+0259}g kud",
      "im\N{U+0259}g t\N{U+00e8}si\N{U+02bc}e",
      "im\N{U+0259}g z\N{U+00f2}",
      "im\N{U+0259}g krizmed"
    ],
    month_stand_alone_abbreviated => [
      "mbegtug",
      "imeg \N{U+00e0}b\N{U+00f9}b\N{U+00ec}",
      "imeg mb\N{U+0259}\N{U+014b}chubi",
      "im\N{U+0259}g ngw\N{U+0259}\N{U+0300}t",
      "im\N{U+0259}g fog",
      "im\N{U+0259}g ichiib\N{U+0254}d",
      "im\N{U+0259}g \N{U+00e0}d\N{U+00f9}mb\N{U+0259}\N{U+0300}\N{U+014b}",
      "im\N{U+0259}g ichika",
      "im\N{U+0259}g kud",
      "im\N{U+0259}g t\N{U+00e8}si\N{U+02bc}e",
      "im\N{U+0259}g z\N{U+00f2}",
      "im\N{U+0259}g krizmed"
    ],
    month_stand_alone_narrow => [
      "M1",
      "A2",
      "M3",
      "N4",
      "F5",
      "I6",
      "A7",
      "I8",
      "K9",
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "im\N{U+0259}g mbegtug",
      "imeg \N{U+00e0}b\N{U+00f9}b\N{U+00ec}",
      "imeg mb\N{U+0259}\N{U+014b}chubi",
      "im\N{U+0259}g ngw\N{U+0259}\N{U+0300}t",
      "im\N{U+0259}g fog",
      "im\N{U+0259}g ichiib\N{U+0254}d",
      "im\N{U+0259}g \N{U+00e0}d\N{U+00f9}mb\N{U+0259}\N{U+0300}\N{U+014b}",
      "im\N{U+0259}g ichika",
      "im\N{U+0259}g kud",
      "im\N{U+0259}g t\N{U+00e8}si\N{U+02bc}e",
      "im\N{U+0259}g z\N{U+00f2}",
      "im\N{U+0259}g krizmed"
    ],
    name => "Meta\N{U+02bc}",
    native_language => "meta\N{U+02bc}",
    native_name => "meta\N{U+02bc}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ mgo-CM ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "mgo-CM",
    date_format_full => "EEEE, y MMMM dd",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Aneg 2",
      "Aneg 3",
      "Aneg 4",
      "Aneg 5",
      "Aneg 6",
      "Aneg 7",
      "Aneg 1"
    ],
    day_format_narrow => [
      "A2",
      "A3",
      "A4",
      "A5",
      "A6",
      "A7",
      "A1"
    ],
    day_format_wide => [
      "Aneg 2",
      "Aneg 3",
      "Aneg 4",
      "Aneg 5",
      "Aneg 6",
      "Aneg 7",
      "Aneg 1"
    ],
    day_stand_alone_abbreviated => [
      "Aneg 2",
      "Aneg 3",
      "Aneg 4",
      "Aneg 5",
      "Aneg 6",
      "Aneg 7",
      "Aneg 1"
    ],
    day_stand_alone_narrow => [
      "A2",
      "A3",
      "A4",
      "A5",
      "A6",
      "A7",
      "A1"
    ],
    day_stand_alone_wide => [
      "Aneg 2",
      "Aneg 3",
      "Aneg 4",
      "Aneg 5",
      "Aneg 6",
      "Aneg 7",
      "Aneg 1"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Meta\N{U+02bc}",
    month_format_abbreviated => [
      "mbegtug",
      "imeg \N{U+00e0}b\N{U+00f9}b\N{U+00ec}",
      "imeg mb\N{U+0259}\N{U+014b}chubi",
      "im\N{U+0259}g ngw\N{U+0259}\N{U+0300}t",
      "im\N{U+0259}g fog",
      "im\N{U+0259}g ichiib\N{U+0254}d",
      "im\N{U+0259}g \N{U+00e0}d\N{U+00f9}mb\N{U+0259}\N{U+0300}\N{U+014b}",
      "im\N{U+0259}g ichika",
      "im\N{U+0259}g kud",
      "im\N{U+0259}g t\N{U+00e8}si\N{U+02bc}e",
      "im\N{U+0259}g z\N{U+00f2}",
      "im\N{U+0259}g krizmed"
    ],
    month_format_narrow => [
      "M1",
      "A2",
      "M3",
      "N4",
      "F5",
      "I6",
      "A7",
      "I8",
      "K9",
      10,
      11,
      12
    ],
    month_format_wide => [
      "im\N{U+0259}g mbegtug",
      "imeg \N{U+00e0}b\N{U+00f9}b\N{U+00ec}",
      "imeg mb\N{U+0259}\N{U+014b}chubi",
      "im\N{U+0259}g ngw\N{U+0259}\N{U+0300}t",
      "im\N{U+0259}g fog",
      "im\N{U+0259}g ichiib\N{U+0254}d",
      "im\N{U+0259}g \N{U+00e0}d\N{U+00f9}mb\N{U+0259}\N{U+0300}\N{U+014b}",
      "im\N{U+0259}g ichika",
      "im\N{U+0259}g kud",
      "im\N{U+0259}g t\N{U+00e8}si\N{U+02bc}e",
      "im\N{U+0259}g z\N{U+00f2}",
      "im\N{U+0259}g krizmed"
    ],
    month_stand_alone_abbreviated => [
      "mbegtug",
      "imeg \N{U+00e0}b\N{U+00f9}b\N{U+00ec}",
      "imeg mb\N{U+0259}\N{U+014b}chubi",
      "im\N{U+0259}g ngw\N{U+0259}\N{U+0300}t",
      "im\N{U+0259}g fog",
      "im\N{U+0259}g ichiib\N{U+0254}d",
      "im\N{U+0259}g \N{U+00e0}d\N{U+00f9}mb\N{U+0259}\N{U+0300}\N{U+014b}",
      "im\N{U+0259}g ichika",
      "im\N{U+0259}g kud",
      "im\N{U+0259}g t\N{U+00e8}si\N{U+02bc}e",
      "im\N{U+0259}g z\N{U+00f2}",
      "im\N{U+0259}g krizmed"
    ],
    month_stand_alone_narrow => [
      "M1",
      "A2",
      "M3",
      "N4",
      "F5",
      "I6",
      "A7",
      "I8",
      "K9",
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "im\N{U+0259}g mbegtug",
      "imeg \N{U+00e0}b\N{U+00f9}b\N{U+00ec}",
      "imeg mb\N{U+0259}\N{U+014b}chubi",
      "im\N{U+0259}g ngw\N{U+0259}\N{U+0300}t",
      "im\N{U+0259}g fog",
      "im\N{U+0259}g ichiib\N{U+0254}d",
      "im\N{U+0259}g \N{U+00e0}d\N{U+00f9}mb\N{U+0259}\N{U+0300}\N{U+014b}",
      "im\N{U+0259}g ichika",
      "im\N{U+0259}g kud",
      "im\N{U+0259}g t\N{U+00e8}si\N{U+02bc}e",
      "im\N{U+0259}g z\N{U+00f2}",
      "im\N{U+0259}g krizmed"
    ],
    name => "Meta\N{U+02bc} Cameroon",
    native_language => "meta\N{U+02bc}",
    native_name => "meta\N{U+02bc} Kamalun",
    native_script => undef,
    native_territory => "Kamalun",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "Cameroon",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ mk ]__
  {
    am_pm_abbreviated => [
      "\N{U+043f}\N{U+0440}\N{U+0435}\N{U+0442}\N{U+043f}\N{U+043b}\N{U+0430}\N{U+0434}\N{U+043d}\N{U+0435}",
      "\N{U+043f}\N{U+043e}\N{U+043f}\N{U+043b}\N{U+0430}\N{U+0434}\N{U+043d}\N{U+0435}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, dd MMM y G",
      GyMMMd => "dd MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d.M",
      Mdd => "dd.M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M.y",
      yMEd => "E, d.M.y",
      yMMM => "MMM y '\N{U+0433}'.",
      yMMMEd => "E, d MMM y '\N{U+0433}'.",
      yMMMM => "MMMM y '\N{U+0433}'.",
      yMMMd => "d MMM y '\N{U+0433}'.",
      yMd => "d.M.y",
      yQQQ => "QQQ y '\N{U+0433}'.",
      yQQQQ => "QQQQ y '\N{U+0433}'."
    },
    code => "mk",
    date_format_full => "EEEE, dd MMMM y",
    date_format_long => "dd MMMM y",
    date_format_medium => "dd.M.y",
    date_format_short => "dd.M.yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+043f}\N{U+043e}\N{U+043d}.",
      "\N{U+0432}\N{U+0442}.",
      "\N{U+0441}\N{U+0440}\N{U+0435}.",
      "\N{U+0447}\N{U+0435}\N{U+0442}.",
      "\N{U+043f}\N{U+0435}\N{U+0442}.",
      "\N{U+0441}\N{U+0430}\N{U+0431}.",
      "\N{U+043d}\N{U+0435}\N{U+0434}."
    ],
    day_format_narrow => [
      "\N{U+043f}",
      "\N{U+0432}",
      "\N{U+0441}",
      "\N{U+0447}",
      "\N{U+043f}",
      "\N{U+0441}",
      "\N{U+043d}"
    ],
    day_format_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+043b}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0432}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+043e}\N{U+043a}",
      "\N{U+043f}\N{U+0435}\N{U+0442}\N{U+043e}\N{U+043a}",
      "\N{U+0441}\N{U+0430}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+043b}\N{U+0430}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+043f}\N{U+043e}\N{U+043d}.",
      "\N{U+0432}\N{U+0442}.",
      "\N{U+0441}\N{U+0440}\N{U+0435}.",
      "\N{U+0447}\N{U+0435}\N{U+0442}.",
      "\N{U+043f}\N{U+0435}\N{U+0442}.",
      "\N{U+0441}\N{U+0430}\N{U+0431}.",
      "\N{U+043d}\N{U+0435}\N{U+0434}."
    ],
    day_stand_alone_narrow => [
      "\N{U+043f}",
      "\N{U+0432}",
      "\N{U+0441}",
      "\N{U+0447}",
      "\N{U+043f}",
      "\N{U+0441}",
      "\N{U+043d}"
    ],
    day_stand_alone_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+043b}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0432}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+043e}\N{U+043a}",
      "\N{U+043f}\N{U+0435}\N{U+0442}\N{U+043e}\N{U+043a}",
      "\N{U+0441}\N{U+0430}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+043b}\N{U+0430}"
    ],
    era_abbreviated => [
      "\N{U+043f}\N{U+0440}.\N{U+043d}.\N{U+0435}.",
      "\N{U+043d}.\N{U+0435}."
    ],
    era_narrow => [
      "\N{U+043f}\N{U+0440}.\N{U+043d}.\N{U+0435}.",
      "\N{U+043d}.\N{U+0435}."
    ],
    era_wide => [
      "\N{U+043f}\N{U+0440}\N{U+0435}\N{U+0434} \N{U+043d}\N{U+0430}\N{U+0448}\N{U+0430}\N{U+0442}\N{U+0430} \N{U+0435}\N{U+0440}\N{U+0430}",
      "\N{U+043e}\N{U+0434} \N{U+043d}\N{U+0430}\N{U+0448}\N{U+0430}\N{U+0442}\N{U+0430} \N{U+0435}\N{U+0440}\N{U+0430}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Macedonian",
    month_format_abbreviated => [
      "\N{U+0458}\N{U+0430}\N{U+043d}.",
      "\N{U+0444}\N{U+0435}\N{U+0432}.",
      "\N{U+043c}\N{U+0430}\N{U+0440}.",
      "\N{U+0430}\N{U+043f}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}.",
      "\N{U+0458}\N{U+0443}\N{U+043b}.",
      "\N{U+0430}\N{U+0432}\N{U+0433}.",
      "\N{U+0441}\N{U+0435}\N{U+043f}\N{U+0442}.",
      "\N{U+043e}\N{U+043a}\N{U+0442}.",
      "\N{U+043d}\N{U+043e}\N{U+0435}\N{U+043c}.",
      "\N{U+0434}\N{U+0435}\N{U+043a}."
    ],
    month_format_narrow => [
      "\N{U+0458}",
      "\N{U+0444}",
      "\N{U+043c}",
      "\N{U+0430}",
      "\N{U+043c}",
      "\N{U+0458}",
      "\N{U+0458}",
      "\N{U+0430}",
      "\N{U+0441}",
      "\N{U+043e}",
      "\N{U+043d}",
      "\N{U+0434}"
    ],
    month_format_wide => [
      "\N{U+0458}\N{U+0430}\N{U+043d}\N{U+0443}\N{U+0430}\N{U+0440}\N{U+0438}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0443}\N{U+0430}\N{U+0440}\N{U+0438}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0438}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}\N{U+0438}",
      "\N{U+0458}\N{U+0443}\N{U+043b}\N{U+0438}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043f}\N{U+0442}\N{U+0435}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+043e}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}",
      "\N{U+043d}\N{U+043e}\N{U+0435}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0435}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0458}\N{U+0430}\N{U+043d}.",
      "\N{U+0444}\N{U+0435}\N{U+0432}.",
      "\N{U+043c}\N{U+0430}\N{U+0440}.",
      "\N{U+0430}\N{U+043f}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}.",
      "\N{U+0458}\N{U+0443}\N{U+043b}.",
      "\N{U+0430}\N{U+0432}\N{U+0433}.",
      "\N{U+0441}\N{U+0435}\N{U+043f}\N{U+0442}.",
      "\N{U+043e}\N{U+043a}\N{U+0442}.",
      "\N{U+043d}\N{U+043e}\N{U+0435}\N{U+043c}.",
      "\N{U+0434}\N{U+0435}\N{U+043a}."
    ],
    month_stand_alone_narrow => [
      "\N{U+0458}",
      "\N{U+0444}",
      "\N{U+043c}",
      "\N{U+0430}",
      "\N{U+043c}",
      "\N{U+0458}",
      "\N{U+0458}",
      "\N{U+0430}",
      "\N{U+0441}",
      "\N{U+043e}",
      "\N{U+043d}",
      "\N{U+0434}"
    ],
    month_stand_alone_wide => [
      "\N{U+0458}\N{U+0430}\N{U+043d}\N{U+0443}\N{U+0430}\N{U+0440}\N{U+0438}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0443}\N{U+0430}\N{U+0440}\N{U+0438}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0438}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}\N{U+0438}",
      "\N{U+0458}\N{U+0443}\N{U+043b}\N{U+0438}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043f}\N{U+0442}\N{U+0435}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+043e}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}",
      "\N{U+043d}\N{U+043e}\N{U+0435}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0435}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}"
    ],
    name => "Macedonian",
    native_language => "\N{U+043c}\N{U+0430}\N{U+043a}\N{U+0435}\N{U+0434}\N{U+043e}\N{U+043d}\N{U+0441}\N{U+043a}\N{U+0438}",
    native_name => "\N{U+043c}\N{U+0430}\N{U+043a}\N{U+0435}\N{U+0434}\N{U+043e}\N{U+043d}\N{U+0441}\N{U+043a}\N{U+0438}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0458}\N{U+0430}\N{U+043d}-\N{U+043c}\N{U+0430}\N{U+0440}",
      "\N{U+0430}\N{U+043f}\N{U+0440}-\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}-\N{U+0441}\N{U+0435}\N{U+043f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}-\N{U+0434}\N{U+0435}\N{U+043a}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+043f}\N{U+0440}\N{U+0432}\N{U+043e} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}",
      "\N{U+0432}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+043e} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}",
      "\N{U+0442}\N{U+0440}\N{U+0435}\N{U+0442}\N{U+043e} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+043e} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0458}\N{U+0430}\N{U+043d}-\N{U+043c}\N{U+0430}\N{U+0440}",
      "\N{U+0430}\N{U+043f}\N{U+0440}-\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}-\N{U+0441}\N{U+0435}\N{U+043f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}-\N{U+0434}\N{U+0435}\N{U+043a}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+043f}\N{U+0440}\N{U+0432}\N{U+043e} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}",
      "\N{U+0432}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+043e} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}",
      "\N{U+0442}\N{U+0440}\N{U+0435}\N{U+0442}\N{U+043e} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+043e} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ mk-MK ]__
  {
    am_pm_abbreviated => [
      "\N{U+043f}\N{U+0440}\N{U+0435}\N{U+0442}\N{U+043f}\N{U+043b}\N{U+0430}\N{U+0434}\N{U+043d}\N{U+0435}",
      "\N{U+043f}\N{U+043e}\N{U+043f}\N{U+043b}\N{U+0430}\N{U+0434}\N{U+043d}\N{U+0435}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, dd MMM y G",
      GyMMMd => "dd MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d.M",
      Mdd => "dd.M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M.y",
      yMEd => "E, d.M.y",
      yMMM => "MMM y '\N{U+0433}'.",
      yMMMEd => "E, d MMM y '\N{U+0433}'.",
      yMMMM => "MMMM y '\N{U+0433}'.",
      yMMMd => "d MMM y '\N{U+0433}'.",
      yMd => "d.M.y",
      yQQQ => "QQQ y '\N{U+0433}'.",
      yQQQQ => "QQQQ y '\N{U+0433}'."
    },
    code => "mk-MK",
    date_format_full => "EEEE, dd MMMM y",
    date_format_long => "dd MMMM y",
    date_format_medium => "dd.M.y",
    date_format_short => "dd.M.yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+043f}\N{U+043e}\N{U+043d}.",
      "\N{U+0432}\N{U+0442}.",
      "\N{U+0441}\N{U+0440}\N{U+0435}.",
      "\N{U+0447}\N{U+0435}\N{U+0442}.",
      "\N{U+043f}\N{U+0435}\N{U+0442}.",
      "\N{U+0441}\N{U+0430}\N{U+0431}.",
      "\N{U+043d}\N{U+0435}\N{U+0434}."
    ],
    day_format_narrow => [
      "\N{U+043f}",
      "\N{U+0432}",
      "\N{U+0441}",
      "\N{U+0447}",
      "\N{U+043f}",
      "\N{U+0441}",
      "\N{U+043d}"
    ],
    day_format_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+043b}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0432}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+043e}\N{U+043a}",
      "\N{U+043f}\N{U+0435}\N{U+0442}\N{U+043e}\N{U+043a}",
      "\N{U+0441}\N{U+0430}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+043b}\N{U+0430}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+043f}\N{U+043e}\N{U+043d}.",
      "\N{U+0432}\N{U+0442}.",
      "\N{U+0441}\N{U+0440}\N{U+0435}.",
      "\N{U+0447}\N{U+0435}\N{U+0442}.",
      "\N{U+043f}\N{U+0435}\N{U+0442}.",
      "\N{U+0441}\N{U+0430}\N{U+0431}.",
      "\N{U+043d}\N{U+0435}\N{U+0434}."
    ],
    day_stand_alone_narrow => [
      "\N{U+043f}",
      "\N{U+0432}",
      "\N{U+0441}",
      "\N{U+0447}",
      "\N{U+043f}",
      "\N{U+0441}",
      "\N{U+043d}"
    ],
    day_stand_alone_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+043b}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0432}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+043e}\N{U+043a}",
      "\N{U+043f}\N{U+0435}\N{U+0442}\N{U+043e}\N{U+043a}",
      "\N{U+0441}\N{U+0430}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+043b}\N{U+0430}"
    ],
    era_abbreviated => [
      "\N{U+043f}\N{U+0440}.\N{U+043d}.\N{U+0435}.",
      "\N{U+043d}.\N{U+0435}."
    ],
    era_narrow => [
      "\N{U+043f}\N{U+0440}.\N{U+043d}.\N{U+0435}.",
      "\N{U+043d}.\N{U+0435}."
    ],
    era_wide => [
      "\N{U+043f}\N{U+0440}\N{U+0435}\N{U+0434} \N{U+043d}\N{U+0430}\N{U+0448}\N{U+0430}\N{U+0442}\N{U+0430} \N{U+0435}\N{U+0440}\N{U+0430}",
      "\N{U+043e}\N{U+0434} \N{U+043d}\N{U+0430}\N{U+0448}\N{U+0430}\N{U+0442}\N{U+0430} \N{U+0435}\N{U+0440}\N{U+0430}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a, %d %b %H:%M:%S %Z %Y",
    glibc_date_format => "%d.%m.%Y",
    glibc_datetime_format => "%a, %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Macedonian",
    month_format_abbreviated => [
      "\N{U+0458}\N{U+0430}\N{U+043d}.",
      "\N{U+0444}\N{U+0435}\N{U+0432}.",
      "\N{U+043c}\N{U+0430}\N{U+0440}.",
      "\N{U+0430}\N{U+043f}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}.",
      "\N{U+0458}\N{U+0443}\N{U+043b}.",
      "\N{U+0430}\N{U+0432}\N{U+0433}.",
      "\N{U+0441}\N{U+0435}\N{U+043f}\N{U+0442}.",
      "\N{U+043e}\N{U+043a}\N{U+0442}.",
      "\N{U+043d}\N{U+043e}\N{U+0435}\N{U+043c}.",
      "\N{U+0434}\N{U+0435}\N{U+043a}."
    ],
    month_format_narrow => [
      "\N{U+0458}",
      "\N{U+0444}",
      "\N{U+043c}",
      "\N{U+0430}",
      "\N{U+043c}",
      "\N{U+0458}",
      "\N{U+0458}",
      "\N{U+0430}",
      "\N{U+0441}",
      "\N{U+043e}",
      "\N{U+043d}",
      "\N{U+0434}"
    ],
    month_format_wide => [
      "\N{U+0458}\N{U+0430}\N{U+043d}\N{U+0443}\N{U+0430}\N{U+0440}\N{U+0438}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0443}\N{U+0430}\N{U+0440}\N{U+0438}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0438}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}\N{U+0438}",
      "\N{U+0458}\N{U+0443}\N{U+043b}\N{U+0438}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043f}\N{U+0442}\N{U+0435}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+043e}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}",
      "\N{U+043d}\N{U+043e}\N{U+0435}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0435}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0458}\N{U+0430}\N{U+043d}.",
      "\N{U+0444}\N{U+0435}\N{U+0432}.",
      "\N{U+043c}\N{U+0430}\N{U+0440}.",
      "\N{U+0430}\N{U+043f}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}.",
      "\N{U+0458}\N{U+0443}\N{U+043b}.",
      "\N{U+0430}\N{U+0432}\N{U+0433}.",
      "\N{U+0441}\N{U+0435}\N{U+043f}\N{U+0442}.",
      "\N{U+043e}\N{U+043a}\N{U+0442}.",
      "\N{U+043d}\N{U+043e}\N{U+0435}\N{U+043c}.",
      "\N{U+0434}\N{U+0435}\N{U+043a}."
    ],
    month_stand_alone_narrow => [
      "\N{U+0458}",
      "\N{U+0444}",
      "\N{U+043c}",
      "\N{U+0430}",
      "\N{U+043c}",
      "\N{U+0458}",
      "\N{U+0458}",
      "\N{U+0430}",
      "\N{U+0441}",
      "\N{U+043e}",
      "\N{U+043d}",
      "\N{U+0434}"
    ],
    month_stand_alone_wide => [
      "\N{U+0458}\N{U+0430}\N{U+043d}\N{U+0443}\N{U+0430}\N{U+0440}\N{U+0438}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0443}\N{U+0430}\N{U+0440}\N{U+0438}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0438}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}\N{U+0438}",
      "\N{U+0458}\N{U+0443}\N{U+043b}\N{U+0438}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043f}\N{U+0442}\N{U+0435}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+043e}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}",
      "\N{U+043d}\N{U+043e}\N{U+0435}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0435}\N{U+043c}\N{U+0432}\N{U+0440}\N{U+0438}"
    ],
    name => "Macedonian Macedonia",
    native_language => "\N{U+043c}\N{U+0430}\N{U+043a}\N{U+0435}\N{U+0434}\N{U+043e}\N{U+043d}\N{U+0441}\N{U+043a}\N{U+0438}",
    native_name => "\N{U+043c}\N{U+0430}\N{U+043a}\N{U+0435}\N{U+0434}\N{U+043e}\N{U+043d}\N{U+0441}\N{U+043a}\N{U+0438} \N{U+041c}\N{U+0430}\N{U+043a}\N{U+0435}\N{U+0434}\N{U+043e}\N{U+043d}\N{U+0438}\N{U+0458}\N{U+0430}",
    native_script => undef,
    native_territory => "\N{U+041c}\N{U+0430}\N{U+043a}\N{U+0435}\N{U+0434}\N{U+043e}\N{U+043d}\N{U+0438}\N{U+0458}\N{U+0430}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0458}\N{U+0430}\N{U+043d}-\N{U+043c}\N{U+0430}\N{U+0440}",
      "\N{U+0430}\N{U+043f}\N{U+0440}-\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}-\N{U+0441}\N{U+0435}\N{U+043f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}-\N{U+0434}\N{U+0435}\N{U+043a}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+043f}\N{U+0440}\N{U+0432}\N{U+043e} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}",
      "\N{U+0432}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+043e} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}",
      "\N{U+0442}\N{U+0440}\N{U+0435}\N{U+0442}\N{U+043e} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+043e} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0458}\N{U+0430}\N{U+043d}-\N{U+043c}\N{U+0430}\N{U+0440}",
      "\N{U+0430}\N{U+043f}\N{U+0440}-\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}-\N{U+0441}\N{U+0435}\N{U+043f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}-\N{U+0434}\N{U+0435}\N{U+043a}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+043f}\N{U+0440}\N{U+0432}\N{U+043e} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}",
      "\N{U+0432}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+043e} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}",
      "\N{U+0442}\N{U+0440}\N{U+0435}\N{U+0442}\N{U+043e} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+043e} \N{U+0442}\N{U+0440}\N{U+043e}\N{U+043c}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+0447}\N{U+0458}\N{U+0435}"
    ],
    script => undef,
    territory => "Macedonia",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ml ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "d/M, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMEd => "MMMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M-y",
      yMEd => "d-M-y, E",
      yMM => "MM-y",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "d/M/y",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "ml",
    date_format_full => "y, MMMM d, EEEE",
    date_format_long => "y, MMMM d",
    date_format_medium => "y, MMM d",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0d24}\N{U+0d3f}\N{U+0d19}\N{U+0d4d}\N{U+0d15}\N{U+0d7e}",
      "\N{U+0d1a}\N{U+0d4a}\N{U+0d35}\N{U+0d4d}\N{U+0d35}",
      "\N{U+0d2c}\N{U+0d41}\N{U+0d27}\N{U+0d7b}",
      "\N{U+0d35}\N{U+0d4d}\N{U+0d2f}\N{U+0d3e}\N{U+0d34}\N{U+0d02}",
      "\N{U+0d35}\N{U+0d46}\N{U+0d33}\N{U+0d4d}\N{U+0d33}\N{U+0d3f}",
      "\N{U+0d36}\N{U+0d28}\N{U+0d3f}",
      "\N{U+0d1e}\N{U+0d3e}\N{U+0d2f}\N{U+0d7c}"
    ],
    day_format_narrow => [
      "\N{U+0d24}\N{U+0d3f}",
      "\N{U+0d1a}\N{U+0d4a}",
      "\N{U+0d2c}\N{U+0d41}",
      "\N{U+0d35}\N{U+0d4d}\N{U+0d2f}\N{U+0d3e}",
      "\N{U+0d35}\N{U+0d46}",
      "\N{U+0d36}",
      "\N{U+0d1e}"
    ],
    day_format_wide => [
      "\N{U+0d24}\N{U+0d3f}\N{U+0d19}\N{U+0d4d}\N{U+0d15}\N{U+0d33}\N{U+0d3e}\N{U+0d34}\N{U+0d4d}\N{U+200c}\N{U+0d1a}",
      "\N{U+0d1a}\N{U+0d4a}\N{U+0d35}\N{U+0d4d}\N{U+0d35}\N{U+0d3e}\N{U+0d34}\N{U+0d4d}\N{U+0d1a}",
      "\N{U+0d2c}\N{U+0d41}\N{U+0d27}\N{U+0d28}\N{U+0d3e}\N{U+0d34}\N{U+0d4d}\N{U+200c}\N{U+0d1a}",
      "\N{U+0d35}\N{U+0d4d}\N{U+0d2f}\N{U+0d3e}\N{U+0d34}\N{U+0d3e}\N{U+0d34}\N{U+0d4d}\N{U+200c}\N{U+0d1a}",
      "\N{U+0d35}\N{U+0d46}\N{U+0d33}\N{U+0d4d}\N{U+0d33}\N{U+0d3f}\N{U+0d2f}\N{U+0d3e}\N{U+0d34}\N{U+0d4d}\N{U+200c}\N{U+0d1a}",
      "\N{U+0d36}\N{U+0d28}\N{U+0d3f}\N{U+0d2f}\N{U+0d3e}\N{U+0d34}\N{U+0d4d}\N{U+200c}\N{U+0d1a}",
      "\N{U+0d1e}\N{U+0d3e}\N{U+0d2f}\N{U+0d31}\N{U+0d3e}\N{U+0d34}\N{U+0d4d}\N{U+200c}\N{U+0d1a}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0d24}\N{U+0d3f}\N{U+0d19}\N{U+0d4d}\N{U+0d15}\N{U+0d7e}",
      "\N{U+0d1a}\N{U+0d4a}\N{U+0d35}\N{U+0d4d}\N{U+0d35}",
      "\N{U+0d2c}\N{U+0d41}\N{U+0d27}\N{U+0d7b}",
      "\N{U+0d35}\N{U+0d4d}\N{U+0d2f}\N{U+0d3e}\N{U+0d34}\N{U+0d02}",
      "\N{U+0d35}\N{U+0d46}\N{U+0d33}\N{U+0d4d}\N{U+0d33}\N{U+0d3f}",
      "\N{U+0d36}\N{U+0d28}\N{U+0d3f}",
      "\N{U+0d1e}\N{U+0d3e}\N{U+0d2f}\N{U+0d7c}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0d24}\N{U+0d3f}",
      "\N{U+0d1a}\N{U+0d4a}",
      "\N{U+0d2c}\N{U+0d41}",
      "\N{U+0d35}\N{U+0d4d}\N{U+0d2f}\N{U+0d3e}",
      "\N{U+0d35}\N{U+0d46}",
      "\N{U+0d36}",
      "\N{U+0d1e}\N{U+0d3e}"
    ],
    day_stand_alone_wide => [
      "\N{U+0d24}\N{U+0d3f}\N{U+0d19}\N{U+0d4d}\N{U+0d15}\N{U+0d33}\N{U+0d3e}\N{U+0d34}\N{U+0d4d}\N{U+200c}\N{U+0d1a}",
      "\N{U+0d1a}\N{U+0d4a}\N{U+0d35}\N{U+0d4d}\N{U+0d35}\N{U+0d3e}\N{U+0d34}\N{U+0d4d}\N{U+200c}\N{U+0d1a}",
      "\N{U+0d2c}\N{U+0d41}\N{U+0d27}\N{U+0d28}\N{U+0d3e}\N{U+0d34}\N{U+0d4d}\N{U+200c}\N{U+0d1a}",
      "\N{U+0d35}\N{U+0d4d}\N{U+0d2f}\N{U+0d3e}\N{U+0d34}\N{U+0d3e}\N{U+0d34}\N{U+0d4d}\N{U+200c}\N{U+0d1a}",
      "\N{U+0d35}\N{U+0d46}\N{U+0d33}\N{U+0d4d}\N{U+0d33}\N{U+0d3f}\N{U+0d2f}\N{U+0d3e}\N{U+0d34}\N{U+0d4d}\N{U+200c}\N{U+0d1a}",
      "\N{U+0d36}\N{U+0d28}\N{U+0d3f}\N{U+0d2f}\N{U+0d3e}\N{U+0d34}\N{U+0d4d}\N{U+200c}\N{U+0d1a}",
      "\N{U+0d1e}\N{U+0d3e}\N{U+0d2f}\N{U+0d31}\N{U+0d3e}\N{U+0d34}\N{U+0d4d}\N{U+200c}\N{U+0d1a}"
    ],
    era_abbreviated => [
      "\N{U+0d15}\N{U+0d4d}\N{U+0d30}\N{U+0d3f}.\N{U+0d2e}\N{U+0d41}.",
      "\N{U+0d0e}\N{U+0d21}\N{U+0d3f}"
    ],
    era_narrow => [
      "\N{U+0d15}\N{U+0d4d}\N{U+0d30}\N{U+0d3f}.\N{U+0d2e}\N{U+0d41}.",
      "\N{U+0d0e}\N{U+0d21}\N{U+0d3f}"
    ],
    era_wide => [
      "\N{U+0d15}\N{U+0d4d}\N{U+0d30}\N{U+0d3f}\N{U+0d38}\N{U+0d4d}\N{U+200c}\N{U+0d24}\N{U+0d41}\N{U+0d35}\N{U+0d3f}\N{U+0d28}\N{U+0d4d} \N{U+0d2e}\N{U+0d41}\N{U+0d2e}\N{U+0d4d}\N{U+0d2a}\N{U+0d4d}",
      "\N{U+0d06}\N{U+0d28}\N{U+0d4d}\N{U+0d28}\N{U+0d4b} \N{U+0d21}\N{U+0d4a}\N{U+0d2e}\N{U+0d3f}\N{U+0d28}\N{U+0d3f}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Malayalam",
    month_format_abbreviated => [
      "\N{U+0d1c}\N{U+0d28}\N{U+0d41}",
      "\N{U+0d2b}\N{U+0d46}\N{U+0d2c}\N{U+0d4d}\N{U+0d30}\N{U+0d41}",
      "\N{U+0d2e}\N{U+0d3e}\N{U+0d7c}",
      "\N{U+0d0f}\N{U+0d2a}\N{U+0d4d}\N{U+0d30}\N{U+0d3f}",
      "\N{U+0d2e}\N{U+0d47}\N{U+0d2f}\N{U+0d4d}",
      "\N{U+0d1c}\N{U+0d42}\N{U+0d7a}",
      "\N{U+0d1c}\N{U+0d42}\N{U+0d32}\N{U+0d48}",
      "\N{U+0d13}\N{U+0d17}",
      "\N{U+0d38}\N{U+0d46}\N{U+0d2a}\N{U+0d4d}\N{U+0d31}\N{U+0d4d}\N{U+0d31}\N{U+0d02}",
      "\N{U+0d12}\N{U+0d15}\N{U+0d4d}\N{U+0d1f}\N{U+0d4b}",
      "\N{U+0d28}\N{U+0d35}\N{U+0d02}",
      "\N{U+0d21}\N{U+0d3f}\N{U+0d38}\N{U+0d02}"
    ],
    month_format_narrow => [
      "\N{U+0d1c}",
      "\N{U+0d2b}",
      "\N{U+0d2e}\N{U+0d3e}",
      "\N{U+0d0f}",
      "\N{U+0d2e}\N{U+0d46}",
      "\N{U+0d1c}\N{U+0d42}",
      "\N{U+0d1c}\N{U+0d42}",
      "\N{U+0d13}",
      "\N{U+0d38}",
      "\N{U+0d12}",
      "\N{U+0d28}",
      "\N{U+0d21}\N{U+0d3f}"
    ],
    month_format_wide => [
      "\N{U+0d1c}\N{U+0d28}\N{U+0d41}\N{U+0d35}\N{U+0d30}\N{U+0d3f}",
      "\N{U+0d2b}\N{U+0d46}\N{U+0d2c}\N{U+0d4d}\N{U+0d30}\N{U+0d41}\N{U+0d35}\N{U+0d30}\N{U+0d3f}",
      "\N{U+0d2e}\N{U+0d3e}\N{U+0d7c}\N{U+0d1a}\N{U+0d4d}\N{U+0d1a}\N{U+0d4d}",
      "\N{U+0d0f}\N{U+0d2a}\N{U+0d4d}\N{U+0d30}\N{U+0d3f}\N{U+0d7d}",
      "\N{U+0d2e}\N{U+0d47}\N{U+0d2f}\N{U+0d4d}",
      "\N{U+0d1c}\N{U+0d42}\N{U+0d7a}",
      "\N{U+0d1c}\N{U+0d42}\N{U+0d32}\N{U+0d48}",
      "\N{U+0d13}\N{U+0d17}\N{U+0d38}\N{U+0d4d}\N{U+0d31}\N{U+0d4d}\N{U+0d31}\N{U+0d4d}",
      "\N{U+0d38}\N{U+0d46}\N{U+0d2a}\N{U+0d4d}\N{U+0d31}\N{U+0d4d}\N{U+0d31}\N{U+0d02}\N{U+0d2c}\N{U+0d7c}",
      "\N{U+0d12}\N{U+0d15}\N{U+0d4d}\N{U+200c}\N{U+0d1f}\N{U+0d4b}\N{U+0d2c}\N{U+0d7c}",
      "\N{U+0d28}\N{U+0d35}\N{U+0d02}\N{U+0d2c}\N{U+0d7c}",
      "\N{U+0d21}\N{U+0d3f}\N{U+0d38}\N{U+0d02}\N{U+0d2c}\N{U+0d7c}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0d1c}\N{U+0d28}\N{U+0d41}",
      "\N{U+0d2b}\N{U+0d46}\N{U+0d2c}\N{U+0d4d}\N{U+0d30}\N{U+0d41}",
      "\N{U+0d2e}\N{U+0d3e}\N{U+0d7c}",
      "\N{U+0d0f}\N{U+0d2a}\N{U+0d4d}\N{U+0d30}\N{U+0d3f}",
      "\N{U+0d2e}\N{U+0d47}\N{U+0d2f}\N{U+0d4d}",
      "\N{U+0d1c}\N{U+0d42}\N{U+0d7a}",
      "\N{U+0d1c}\N{U+0d42}\N{U+0d32}\N{U+0d48}",
      "\N{U+0d13}\N{U+0d17}",
      "\N{U+0d38}\N{U+0d46}\N{U+0d2a}\N{U+0d4d}\N{U+0d31}\N{U+0d4d}\N{U+0d31}\N{U+0d02}",
      "\N{U+0d12}\N{U+0d15}\N{U+0d4d}\N{U+0d1f}\N{U+0d4b}",
      "\N{U+0d28}\N{U+0d35}\N{U+0d02}",
      "\N{U+0d21}\N{U+0d3f}\N{U+0d38}\N{U+0d02}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0d1c}",
      "\N{U+0d2b}\N{U+0d46}",
      "\N{U+0d2e}\N{U+0d3e}",
      "\N{U+0d0f}",
      "\N{U+0d2e}\N{U+0d46}",
      "\N{U+0d1c}\N{U+0d42}",
      "\N{U+0d1c}\N{U+0d42}",
      "\N{U+0d13}",
      "\N{U+0d38}\N{U+0d46}",
      "\N{U+0d12}",
      "\N{U+0d28}",
      "\N{U+0d21}\N{U+0d3f}"
    ],
    month_stand_alone_wide => [
      "\N{U+0d1c}\N{U+0d28}\N{U+0d41}\N{U+0d35}\N{U+0d30}\N{U+0d3f}",
      "\N{U+0d2b}\N{U+0d46}\N{U+0d2c}\N{U+0d4d}\N{U+0d30}\N{U+0d41}\N{U+0d35}\N{U+0d30}\N{U+0d3f}",
      "\N{U+0d2e}\N{U+0d3e}\N{U+0d7c}\N{U+0d1a}\N{U+0d4d}\N{U+0d1a}\N{U+0d4d}",
      "\N{U+0d0f}\N{U+0d2a}\N{U+0d4d}\N{U+0d30}\N{U+0d3f}\N{U+0d7d}",
      "\N{U+0d2e}\N{U+0d47}\N{U+0d2f}\N{U+0d4d}",
      "\N{U+0d1c}\N{U+0d42}\N{U+0d7a}",
      "\N{U+0d1c}\N{U+0d42}\N{U+0d32}\N{U+0d48}",
      "\N{U+0d13}\N{U+0d17}\N{U+0d38}\N{U+0d4d}\N{U+0d31}\N{U+0d4d}\N{U+0d31}\N{U+0d4d}",
      "\N{U+0d38}\N{U+0d46}\N{U+0d2a}\N{U+0d4d}\N{U+0d31}\N{U+0d4d}\N{U+0d31}\N{U+0d02}\N{U+0d2c}\N{U+0d7c}",
      "\N{U+0d12}\N{U+0d15}\N{U+0d4d}\N{U+200c}\N{U+0d1f}\N{U+0d4b}\N{U+0d2c}\N{U+0d7c}",
      "\N{U+0d28}\N{U+0d35}\N{U+0d02}\N{U+0d2c}\N{U+0d7c}",
      "\N{U+0d21}\N{U+0d3f}\N{U+0d38}\N{U+0d02}\N{U+0d2c}\N{U+0d7c}"
    ],
    name => "Malayalam",
    native_language => "\N{U+0d2e}\N{U+0d32}\N{U+0d2f}\N{U+0d3e}\N{U+0d33}\N{U+0d02}",
    native_name => "\N{U+0d2e}\N{U+0d32}\N{U+0d2f}\N{U+0d3e}\N{U+0d33}\N{U+0d02}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0d12}\N{U+0d28}\N{U+0d4d}\N{U+0d28}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}",
      "\N{U+0d30}\N{U+0d23}\N{U+0d4d}\N{U+0d1f}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}",
      "\N{U+0d2e}\N{U+0d42}\N{U+0d28}\N{U+0d4d}\N{U+0d28}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}",
      "\N{U+0d28}\N{U+0d3e}\N{U+0d32}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+0d12}\N{U+0d28}\N{U+0d4d}\N{U+0d28}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}",
      "\N{U+0d30}\N{U+0d23}\N{U+0d4d}\N{U+0d1f}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}",
      "\N{U+0d2e}\N{U+0d42}\N{U+0d28}\N{U+0d4d}\N{U+0d28}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}",
      "\N{U+0d28}\N{U+0d3e}\N{U+0d32}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0d12}\N{U+0d28}\N{U+0d4d}\N{U+0d28}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}",
      "\N{U+0d30}\N{U+0d23}\N{U+0d4d}\N{U+0d1f}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}",
      "\N{U+0d2e}\N{U+0d42}\N{U+0d28}\N{U+0d4d}\N{U+0d28}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}",
      "\N{U+0d28}\N{U+0d3e}\N{U+0d32}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+0d12}\N{U+0d28}\N{U+0d4d}\N{U+0d28}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}",
      "\N{U+0d30}\N{U+0d23}\N{U+0d4d}\N{U+0d1f}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}",
      "\N{U+0d2e}\N{U+0d42}\N{U+0d28}\N{U+0d4d}\N{U+0d28}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}",
      "\N{U+0d28}\N{U+0d3e}\N{U+0d32}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ml-IN ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "d/M, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMEd => "MMMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M-y",
      yMEd => "d-M-y, E",
      yMM => "MM-y",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "d/M/y",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "ml-IN",
    date_format_full => "y, MMMM d, EEEE",
    date_format_long => "y, MMMM d",
    date_format_medium => "y, MMM d",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0d24}\N{U+0d3f}\N{U+0d19}\N{U+0d4d}\N{U+0d15}\N{U+0d7e}",
      "\N{U+0d1a}\N{U+0d4a}\N{U+0d35}\N{U+0d4d}\N{U+0d35}",
      "\N{U+0d2c}\N{U+0d41}\N{U+0d27}\N{U+0d7b}",
      "\N{U+0d35}\N{U+0d4d}\N{U+0d2f}\N{U+0d3e}\N{U+0d34}\N{U+0d02}",
      "\N{U+0d35}\N{U+0d46}\N{U+0d33}\N{U+0d4d}\N{U+0d33}\N{U+0d3f}",
      "\N{U+0d36}\N{U+0d28}\N{U+0d3f}",
      "\N{U+0d1e}\N{U+0d3e}\N{U+0d2f}\N{U+0d7c}"
    ],
    day_format_narrow => [
      "\N{U+0d24}\N{U+0d3f}",
      "\N{U+0d1a}\N{U+0d4a}",
      "\N{U+0d2c}\N{U+0d41}",
      "\N{U+0d35}\N{U+0d4d}\N{U+0d2f}\N{U+0d3e}",
      "\N{U+0d35}\N{U+0d46}",
      "\N{U+0d36}",
      "\N{U+0d1e}"
    ],
    day_format_wide => [
      "\N{U+0d24}\N{U+0d3f}\N{U+0d19}\N{U+0d4d}\N{U+0d15}\N{U+0d33}\N{U+0d3e}\N{U+0d34}\N{U+0d4d}\N{U+200c}\N{U+0d1a}",
      "\N{U+0d1a}\N{U+0d4a}\N{U+0d35}\N{U+0d4d}\N{U+0d35}\N{U+0d3e}\N{U+0d34}\N{U+0d4d}\N{U+0d1a}",
      "\N{U+0d2c}\N{U+0d41}\N{U+0d27}\N{U+0d28}\N{U+0d3e}\N{U+0d34}\N{U+0d4d}\N{U+200c}\N{U+0d1a}",
      "\N{U+0d35}\N{U+0d4d}\N{U+0d2f}\N{U+0d3e}\N{U+0d34}\N{U+0d3e}\N{U+0d34}\N{U+0d4d}\N{U+200c}\N{U+0d1a}",
      "\N{U+0d35}\N{U+0d46}\N{U+0d33}\N{U+0d4d}\N{U+0d33}\N{U+0d3f}\N{U+0d2f}\N{U+0d3e}\N{U+0d34}\N{U+0d4d}\N{U+200c}\N{U+0d1a}",
      "\N{U+0d36}\N{U+0d28}\N{U+0d3f}\N{U+0d2f}\N{U+0d3e}\N{U+0d34}\N{U+0d4d}\N{U+200c}\N{U+0d1a}",
      "\N{U+0d1e}\N{U+0d3e}\N{U+0d2f}\N{U+0d31}\N{U+0d3e}\N{U+0d34}\N{U+0d4d}\N{U+200c}\N{U+0d1a}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0d24}\N{U+0d3f}\N{U+0d19}\N{U+0d4d}\N{U+0d15}\N{U+0d7e}",
      "\N{U+0d1a}\N{U+0d4a}\N{U+0d35}\N{U+0d4d}\N{U+0d35}",
      "\N{U+0d2c}\N{U+0d41}\N{U+0d27}\N{U+0d7b}",
      "\N{U+0d35}\N{U+0d4d}\N{U+0d2f}\N{U+0d3e}\N{U+0d34}\N{U+0d02}",
      "\N{U+0d35}\N{U+0d46}\N{U+0d33}\N{U+0d4d}\N{U+0d33}\N{U+0d3f}",
      "\N{U+0d36}\N{U+0d28}\N{U+0d3f}",
      "\N{U+0d1e}\N{U+0d3e}\N{U+0d2f}\N{U+0d7c}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0d24}\N{U+0d3f}",
      "\N{U+0d1a}\N{U+0d4a}",
      "\N{U+0d2c}\N{U+0d41}",
      "\N{U+0d35}\N{U+0d4d}\N{U+0d2f}\N{U+0d3e}",
      "\N{U+0d35}\N{U+0d46}",
      "\N{U+0d36}",
      "\N{U+0d1e}\N{U+0d3e}"
    ],
    day_stand_alone_wide => [
      "\N{U+0d24}\N{U+0d3f}\N{U+0d19}\N{U+0d4d}\N{U+0d15}\N{U+0d33}\N{U+0d3e}\N{U+0d34}\N{U+0d4d}\N{U+200c}\N{U+0d1a}",
      "\N{U+0d1a}\N{U+0d4a}\N{U+0d35}\N{U+0d4d}\N{U+0d35}\N{U+0d3e}\N{U+0d34}\N{U+0d4d}\N{U+200c}\N{U+0d1a}",
      "\N{U+0d2c}\N{U+0d41}\N{U+0d27}\N{U+0d28}\N{U+0d3e}\N{U+0d34}\N{U+0d4d}\N{U+200c}\N{U+0d1a}",
      "\N{U+0d35}\N{U+0d4d}\N{U+0d2f}\N{U+0d3e}\N{U+0d34}\N{U+0d3e}\N{U+0d34}\N{U+0d4d}\N{U+200c}\N{U+0d1a}",
      "\N{U+0d35}\N{U+0d46}\N{U+0d33}\N{U+0d4d}\N{U+0d33}\N{U+0d3f}\N{U+0d2f}\N{U+0d3e}\N{U+0d34}\N{U+0d4d}\N{U+200c}\N{U+0d1a}",
      "\N{U+0d36}\N{U+0d28}\N{U+0d3f}\N{U+0d2f}\N{U+0d3e}\N{U+0d34}\N{U+0d4d}\N{U+200c}\N{U+0d1a}",
      "\N{U+0d1e}\N{U+0d3e}\N{U+0d2f}\N{U+0d31}\N{U+0d3e}\N{U+0d34}\N{U+0d4d}\N{U+200c}\N{U+0d1a}"
    ],
    era_abbreviated => [
      "\N{U+0d15}\N{U+0d4d}\N{U+0d30}\N{U+0d3f}.\N{U+0d2e}\N{U+0d41}.",
      "\N{U+0d0e}\N{U+0d21}\N{U+0d3f}"
    ],
    era_narrow => [
      "\N{U+0d15}\N{U+0d4d}\N{U+0d30}\N{U+0d3f}.\N{U+0d2e}\N{U+0d41}.",
      "\N{U+0d0e}\N{U+0d21}\N{U+0d3f}"
    ],
    era_wide => [
      "\N{U+0d15}\N{U+0d4d}\N{U+0d30}\N{U+0d3f}\N{U+0d38}\N{U+0d4d}\N{U+200c}\N{U+0d24}\N{U+0d41}\N{U+0d35}\N{U+0d3f}\N{U+0d28}\N{U+0d4d} \N{U+0d2e}\N{U+0d41}\N{U+0d2e}\N{U+0d4d}\N{U+0d2a}\N{U+0d4d}",
      "\N{U+0d06}\N{U+0d28}\N{U+0d4d}\N{U+0d28}\N{U+0d4b} \N{U+0d21}\N{U+0d4a}\N{U+0d2e}\N{U+0d3f}\N{U+0d28}\N{U+0d3f}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%A %d %B %Y",
    glibc_datetime_format => "%A %d %B %Y %I:%M:%S %p %Z",
    glibc_time_12_format => "%I:%M:%S %p %Z",
    glibc_time_format => "%I:%M:%S  %Z",
    language => "Malayalam",
    month_format_abbreviated => [
      "\N{U+0d1c}\N{U+0d28}\N{U+0d41}",
      "\N{U+0d2b}\N{U+0d46}\N{U+0d2c}\N{U+0d4d}\N{U+0d30}\N{U+0d41}",
      "\N{U+0d2e}\N{U+0d3e}\N{U+0d7c}",
      "\N{U+0d0f}\N{U+0d2a}\N{U+0d4d}\N{U+0d30}\N{U+0d3f}",
      "\N{U+0d2e}\N{U+0d47}\N{U+0d2f}\N{U+0d4d}",
      "\N{U+0d1c}\N{U+0d42}\N{U+0d7a}",
      "\N{U+0d1c}\N{U+0d42}\N{U+0d32}\N{U+0d48}",
      "\N{U+0d13}\N{U+0d17}",
      "\N{U+0d38}\N{U+0d46}\N{U+0d2a}\N{U+0d4d}\N{U+0d31}\N{U+0d4d}\N{U+0d31}\N{U+0d02}",
      "\N{U+0d12}\N{U+0d15}\N{U+0d4d}\N{U+0d1f}\N{U+0d4b}",
      "\N{U+0d28}\N{U+0d35}\N{U+0d02}",
      "\N{U+0d21}\N{U+0d3f}\N{U+0d38}\N{U+0d02}"
    ],
    month_format_narrow => [
      "\N{U+0d1c}",
      "\N{U+0d2b}",
      "\N{U+0d2e}\N{U+0d3e}",
      "\N{U+0d0f}",
      "\N{U+0d2e}\N{U+0d46}",
      "\N{U+0d1c}\N{U+0d42}",
      "\N{U+0d1c}\N{U+0d42}",
      "\N{U+0d13}",
      "\N{U+0d38}",
      "\N{U+0d12}",
      "\N{U+0d28}",
      "\N{U+0d21}\N{U+0d3f}"
    ],
    month_format_wide => [
      "\N{U+0d1c}\N{U+0d28}\N{U+0d41}\N{U+0d35}\N{U+0d30}\N{U+0d3f}",
      "\N{U+0d2b}\N{U+0d46}\N{U+0d2c}\N{U+0d4d}\N{U+0d30}\N{U+0d41}\N{U+0d35}\N{U+0d30}\N{U+0d3f}",
      "\N{U+0d2e}\N{U+0d3e}\N{U+0d7c}\N{U+0d1a}\N{U+0d4d}\N{U+0d1a}\N{U+0d4d}",
      "\N{U+0d0f}\N{U+0d2a}\N{U+0d4d}\N{U+0d30}\N{U+0d3f}\N{U+0d7d}",
      "\N{U+0d2e}\N{U+0d47}\N{U+0d2f}\N{U+0d4d}",
      "\N{U+0d1c}\N{U+0d42}\N{U+0d7a}",
      "\N{U+0d1c}\N{U+0d42}\N{U+0d32}\N{U+0d48}",
      "\N{U+0d13}\N{U+0d17}\N{U+0d38}\N{U+0d4d}\N{U+0d31}\N{U+0d4d}\N{U+0d31}\N{U+0d4d}",
      "\N{U+0d38}\N{U+0d46}\N{U+0d2a}\N{U+0d4d}\N{U+0d31}\N{U+0d4d}\N{U+0d31}\N{U+0d02}\N{U+0d2c}\N{U+0d7c}",
      "\N{U+0d12}\N{U+0d15}\N{U+0d4d}\N{U+200c}\N{U+0d1f}\N{U+0d4b}\N{U+0d2c}\N{U+0d7c}",
      "\N{U+0d28}\N{U+0d35}\N{U+0d02}\N{U+0d2c}\N{U+0d7c}",
      "\N{U+0d21}\N{U+0d3f}\N{U+0d38}\N{U+0d02}\N{U+0d2c}\N{U+0d7c}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0d1c}\N{U+0d28}\N{U+0d41}",
      "\N{U+0d2b}\N{U+0d46}\N{U+0d2c}\N{U+0d4d}\N{U+0d30}\N{U+0d41}",
      "\N{U+0d2e}\N{U+0d3e}\N{U+0d7c}",
      "\N{U+0d0f}\N{U+0d2a}\N{U+0d4d}\N{U+0d30}\N{U+0d3f}",
      "\N{U+0d2e}\N{U+0d47}\N{U+0d2f}\N{U+0d4d}",
      "\N{U+0d1c}\N{U+0d42}\N{U+0d7a}",
      "\N{U+0d1c}\N{U+0d42}\N{U+0d32}\N{U+0d48}",
      "\N{U+0d13}\N{U+0d17}",
      "\N{U+0d38}\N{U+0d46}\N{U+0d2a}\N{U+0d4d}\N{U+0d31}\N{U+0d4d}\N{U+0d31}\N{U+0d02}",
      "\N{U+0d12}\N{U+0d15}\N{U+0d4d}\N{U+0d1f}\N{U+0d4b}",
      "\N{U+0d28}\N{U+0d35}\N{U+0d02}",
      "\N{U+0d21}\N{U+0d3f}\N{U+0d38}\N{U+0d02}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0d1c}",
      "\N{U+0d2b}\N{U+0d46}",
      "\N{U+0d2e}\N{U+0d3e}",
      "\N{U+0d0f}",
      "\N{U+0d2e}\N{U+0d46}",
      "\N{U+0d1c}\N{U+0d42}",
      "\N{U+0d1c}\N{U+0d42}",
      "\N{U+0d13}",
      "\N{U+0d38}\N{U+0d46}",
      "\N{U+0d12}",
      "\N{U+0d28}",
      "\N{U+0d21}\N{U+0d3f}"
    ],
    month_stand_alone_wide => [
      "\N{U+0d1c}\N{U+0d28}\N{U+0d41}\N{U+0d35}\N{U+0d30}\N{U+0d3f}",
      "\N{U+0d2b}\N{U+0d46}\N{U+0d2c}\N{U+0d4d}\N{U+0d30}\N{U+0d41}\N{U+0d35}\N{U+0d30}\N{U+0d3f}",
      "\N{U+0d2e}\N{U+0d3e}\N{U+0d7c}\N{U+0d1a}\N{U+0d4d}\N{U+0d1a}\N{U+0d4d}",
      "\N{U+0d0f}\N{U+0d2a}\N{U+0d4d}\N{U+0d30}\N{U+0d3f}\N{U+0d7d}",
      "\N{U+0d2e}\N{U+0d47}\N{U+0d2f}\N{U+0d4d}",
      "\N{U+0d1c}\N{U+0d42}\N{U+0d7a}",
      "\N{U+0d1c}\N{U+0d42}\N{U+0d32}\N{U+0d48}",
      "\N{U+0d13}\N{U+0d17}\N{U+0d38}\N{U+0d4d}\N{U+0d31}\N{U+0d4d}\N{U+0d31}\N{U+0d4d}",
      "\N{U+0d38}\N{U+0d46}\N{U+0d2a}\N{U+0d4d}\N{U+0d31}\N{U+0d4d}\N{U+0d31}\N{U+0d02}\N{U+0d2c}\N{U+0d7c}",
      "\N{U+0d12}\N{U+0d15}\N{U+0d4d}\N{U+200c}\N{U+0d1f}\N{U+0d4b}\N{U+0d2c}\N{U+0d7c}",
      "\N{U+0d28}\N{U+0d35}\N{U+0d02}\N{U+0d2c}\N{U+0d7c}",
      "\N{U+0d21}\N{U+0d3f}\N{U+0d38}\N{U+0d02}\N{U+0d2c}\N{U+0d7c}"
    ],
    name => "Malayalam India",
    native_language => "\N{U+0d2e}\N{U+0d32}\N{U+0d2f}\N{U+0d3e}\N{U+0d33}\N{U+0d02}",
    native_name => "\N{U+0d2e}\N{U+0d32}\N{U+0d2f}\N{U+0d3e}\N{U+0d33}\N{U+0d02} \N{U+0d07}\N{U+0d28}\N{U+0d4d}\N{U+0d24}\N{U+0d4d}\N{U+0d2f}",
    native_script => undef,
    native_territory => "\N{U+0d07}\N{U+0d28}\N{U+0d4d}\N{U+0d24}\N{U+0d4d}\N{U+0d2f}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0d12}\N{U+0d28}\N{U+0d4d}\N{U+0d28}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}",
      "\N{U+0d30}\N{U+0d23}\N{U+0d4d}\N{U+0d1f}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}",
      "\N{U+0d2e}\N{U+0d42}\N{U+0d28}\N{U+0d4d}\N{U+0d28}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}",
      "\N{U+0d28}\N{U+0d3e}\N{U+0d32}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+0d12}\N{U+0d28}\N{U+0d4d}\N{U+0d28}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}",
      "\N{U+0d30}\N{U+0d23}\N{U+0d4d}\N{U+0d1f}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}",
      "\N{U+0d2e}\N{U+0d42}\N{U+0d28}\N{U+0d4d}\N{U+0d28}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}",
      "\N{U+0d28}\N{U+0d3e}\N{U+0d32}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0d12}\N{U+0d28}\N{U+0d4d}\N{U+0d28}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}",
      "\N{U+0d30}\N{U+0d23}\N{U+0d4d}\N{U+0d1f}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}",
      "\N{U+0d2e}\N{U+0d42}\N{U+0d28}\N{U+0d4d}\N{U+0d28}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}",
      "\N{U+0d28}\N{U+0d3e}\N{U+0d32}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+0d12}\N{U+0d28}\N{U+0d4d}\N{U+0d28}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}",
      "\N{U+0d30}\N{U+0d23}\N{U+0d4d}\N{U+0d1f}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}",
      "\N{U+0d2e}\N{U+0d42}\N{U+0d28}\N{U+0d4d}\N{U+0d28}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}",
      "\N{U+0d28}\N{U+0d3e}\N{U+0d32}\N{U+0d3e}\N{U+0d02} \N{U+0d2a}\N{U+0d3e}\N{U+0d26}\N{U+0d02}"
    ],
    script => undef,
    territory => "India",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ mn ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "dd E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "E, G y MMM d",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M-d",
      MMM => "LLL",
      MMMEd => "E MMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M-d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-M",
      yMEd => "E, y-M-d",
      yMMM => "y MMM",
      yMMMEd => "E, y MMM d",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-M-d",
      yQQQ => "y QQQ",
      yQQQQ => "y '\N{U+043e}\N{U+043d}\N{U+044b}' QQQQ"
    },
    code => "mn",
    date_format_full => "EEEE, y '\N{U+043e}\N{U+043d}\N{U+044b}' MM '\N{U+0441}\N{U+0430}\N{U+0440}\N{U+044b}\N{U+043d}' d",
    date_format_long => "y '\N{U+043e}\N{U+043d}\N{U+044b}' MM '\N{U+0441}\N{U+0430}\N{U+0440}\N{U+044b}\N{U+043d}' d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+0414}\N{U+0430}",
      "\N{U+041c}\N{U+044f}",
      "\N{U+041b}\N{U+0445}",
      "\N{U+041f}\N{U+04af}",
      "\N{U+0411}\N{U+0430}",
      "\N{U+0411}\N{U+044f}",
      "\N{U+041d}\N{U+044f}"
    ],
    day_format_narrow => [
      2,
      3,
      4,
      5,
      6,
      7,
      1
    ],
    day_format_wide => [
      "\N{U+0434}\N{U+0430}\N{U+0432}\N{U+0430}\N{U+0430}",
      "\N{U+043c}\N{U+044f}\N{U+0433}\N{U+043c}\N{U+0430}\N{U+0440}",
      "\N{U+043b}\N{U+0445}\N{U+0430}\N{U+0433}\N{U+0432}\N{U+0430}",
      "\N{U+043f}\N{U+04af}\N{U+0440}\N{U+044d}\N{U+0432}",
      "\N{U+0431}\N{U+0430}\N{U+0430}\N{U+0441}\N{U+0430}\N{U+043d}",
      "\N{U+0431}\N{U+044f}\N{U+043c}\N{U+0431}\N{U+0430}",
      "\N{U+043d}\N{U+044f}\N{U+043c}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0414}\N{U+0430}",
      "\N{U+041c}\N{U+044f}",
      "\N{U+041b}\N{U+0445}",
      "\N{U+041f}\N{U+04af}",
      "\N{U+0411}\N{U+0430}",
      "\N{U+0411}\N{U+044f}",
      "\N{U+041d}\N{U+044f}"
    ],
    day_stand_alone_narrow => [
      2,
      3,
      4,
      5,
      6,
      7,
      1
    ],
    day_stand_alone_wide => [
      "\N{U+0434}\N{U+0430}\N{U+0432}\N{U+0430}\N{U+0430}",
      "\N{U+043c}\N{U+044f}\N{U+0433}\N{U+043c}\N{U+0430}\N{U+0440}",
      "\N{U+043b}\N{U+0445}\N{U+0430}\N{U+0433}\N{U+0432}\N{U+0430}",
      "\N{U+043f}\N{U+04af}\N{U+0440}\N{U+044d}\N{U+0432}",
      "\N{U+0431}\N{U+0430}\N{U+0430}\N{U+0441}\N{U+0430}\N{U+043d}",
      "\N{U+0431}\N{U+044f}\N{U+043c}\N{U+0431}\N{U+0430}",
      "\N{U+043d}\N{U+044f}\N{U+043c}"
    ],
    era_abbreviated => [
      "\N{U+043c}.\N{U+044d}.\N{U+04e9}",
      "\N{U+043c}.\N{U+044d}."
    ],
    era_narrow => [
      "\N{U+041c}\N{U+042d}\N{U+04e8}",
      "\N{U+041c}\N{U+042d}"
    ],
    era_wide => [
      "\N{U+043c}\N{U+0430}\N{U+043d}\N{U+0430}\N{U+0439} \N{U+044d}\N{U+0440}\N{U+0438}\N{U+043d}\N{U+0438}\N{U+0439} \N{U+04e9}\N{U+043c}\N{U+043d}\N{U+04e9}\N{U+0445}",
      "\N{U+043c}\N{U+0430}\N{U+043d}\N{U+0430}\N{U+0439} \N{U+044d}\N{U+0440}\N{U+0438}\N{U+043d}\N{U+0438}\N{U+0439}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Mongolian",
    month_format_abbreviated => [
      "1-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "2-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "3-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "4-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "5-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "6-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "7-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "8-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "9-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "10-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "11-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "12-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+041d}\N{U+044d}\N{U+0433}\N{U+0434}\N{U+04af}\N{U+0433}\N{U+044d}\N{U+044d}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0425}\N{U+043e}\N{U+0451}\N{U+0440}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0413}\N{U+0443}\N{U+0440}\N{U+0430}\N{U+0432}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0414}\N{U+04e9}\N{U+0440}\N{U+04e9}\N{U+0432}\N{U+0434}\N{U+04af}\N{U+0433}\N{U+044d}\N{U+044d}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0422}\N{U+0430}\N{U+0432}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0417}\N{U+0443}\N{U+0440}\N{U+0433}\N{U+0430}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0414}\N{U+043e}\N{U+043b}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+041d}\N{U+0430}\N{U+0439}\N{U+043c}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0415}\N{U+0441}\N{U+0434}\N{U+04af}\N{U+0433}\N{U+044d}\N{U+044d}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0410}\N{U+0440}\N{U+0430}\N{U+0432}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0410}\N{U+0440}\N{U+0432}\N{U+0430}\N{U+043d} \N{U+043d}\N{U+044d}\N{U+0433}\N{U+0434}\N{U+04af}\N{U+0433}\N{U+044d}\N{U+044d}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0410}\N{U+0440}\N{U+0432}\N{U+0430}\N{U+043d} \N{U+0445}\N{U+043e}\N{U+0451}\N{U+0440}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}"
    ],
    month_stand_alone_abbreviated => [
      "1-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "2-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "3-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "4-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "5-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "6-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "7-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "8-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "9-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "10-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "11-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "12-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+041d}\N{U+044d}\N{U+0433}\N{U+0434}\N{U+04af}\N{U+0433}\N{U+044d}\N{U+044d}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0425}\N{U+043e}\N{U+0451}\N{U+0440}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0413}\N{U+0443}\N{U+0440}\N{U+0430}\N{U+0432}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0414}\N{U+04e9}\N{U+0440}\N{U+04e9}\N{U+0432}\N{U+0434}\N{U+04af}\N{U+0433}\N{U+044d}\N{U+044d}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0422}\N{U+0430}\N{U+0432}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0417}\N{U+0443}\N{U+0440}\N{U+0433}\N{U+0430}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0414}\N{U+043e}\N{U+043b}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+041d}\N{U+0430}\N{U+0439}\N{U+043c}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0415}\N{U+0441}\N{U+0434}\N{U+04af}\N{U+0433}\N{U+044d}\N{U+044d}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0410}\N{U+0440}\N{U+0430}\N{U+0432}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0410}\N{U+0440}\N{U+0432}\N{U+0430}\N{U+043d} \N{U+043d}\N{U+044d}\N{U+0433}\N{U+0434}\N{U+04af}\N{U+0433}\N{U+044d}\N{U+044d}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0410}\N{U+0440}\N{U+0432}\N{U+0430}\N{U+043d} \N{U+0445}\N{U+043e}\N{U+0451}\N{U+0440}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}"
    ],
    name => "Mongolian",
    native_language => "\N{U+043c}\N{U+043e}\N{U+043d}\N{U+0433}\N{U+043e}\N{U+043b}",
    native_name => "\N{U+043c}\N{U+043e}\N{U+043d}\N{U+0433}\N{U+043e}\N{U+043b}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0423}1",
      "\N{U+0423}2",
      "\N{U+0423}3",
      "\N{U+0423}4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1-\N{U+0440} \N{U+0443}\N{U+043b}\N{U+0438}\N{U+0440}\N{U+0430}\N{U+043b}",
      "2-\N{U+0440} \N{U+0443}\N{U+043b}\N{U+0438}\N{U+0440}\N{U+0430}\N{U+043b}",
      "3-\N{U+0440} \N{U+0443}\N{U+043b}\N{U+0438}\N{U+0440}\N{U+0430}\N{U+043b}",
      "4-\N{U+0440} \N{U+0443}\N{U+043b}\N{U+0438}\N{U+0440}\N{U+0430}\N{U+043b}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0423}1",
      "\N{U+0423}2",
      "\N{U+0423}3",
      "\N{U+0423}4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-\N{U+0440} \N{U+0443}\N{U+043b}\N{U+0438}\N{U+0440}\N{U+0430}\N{U+043b}",
      "2-\N{U+0440} \N{U+0443}\N{U+043b}\N{U+0438}\N{U+0440}\N{U+0430}\N{U+043b}",
      "3-\N{U+0440} \N{U+0443}\N{U+043b}\N{U+0438}\N{U+0440}\N{U+0430}\N{U+043b}",
      "4-\N{U+0440} \N{U+0443}\N{U+043b}\N{U+0438}\N{U+0440}\N{U+0430}\N{U+043b}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ mn-MN ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "dd E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "E, G y MMM d",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M-d",
      MMM => "LLL",
      MMMEd => "E MMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M-d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-M",
      yMEd => "E, y-M-d",
      yMMM => "y MMM",
      yMMMEd => "E, y MMM d",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-M-d",
      yQQQ => "y QQQ",
      yQQQQ => "y '\N{U+043e}\N{U+043d}\N{U+044b}' QQQQ"
    },
    code => "mn-MN",
    date_format_full => "EEEE, y '\N{U+043e}\N{U+043d}\N{U+044b}' MM '\N{U+0441}\N{U+0430}\N{U+0440}\N{U+044b}\N{U+043d}' d",
    date_format_long => "y '\N{U+043e}\N{U+043d}\N{U+044b}' MM '\N{U+0441}\N{U+0430}\N{U+0440}\N{U+044b}\N{U+043d}' d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+0414}\N{U+0430}",
      "\N{U+041c}\N{U+044f}",
      "\N{U+041b}\N{U+0445}",
      "\N{U+041f}\N{U+04af}",
      "\N{U+0411}\N{U+0430}",
      "\N{U+0411}\N{U+044f}",
      "\N{U+041d}\N{U+044f}"
    ],
    day_format_narrow => [
      2,
      3,
      4,
      5,
      6,
      7,
      1
    ],
    day_format_wide => [
      "\N{U+0434}\N{U+0430}\N{U+0432}\N{U+0430}\N{U+0430}",
      "\N{U+043c}\N{U+044f}\N{U+0433}\N{U+043c}\N{U+0430}\N{U+0440}",
      "\N{U+043b}\N{U+0445}\N{U+0430}\N{U+0433}\N{U+0432}\N{U+0430}",
      "\N{U+043f}\N{U+04af}\N{U+0440}\N{U+044d}\N{U+0432}",
      "\N{U+0431}\N{U+0430}\N{U+0430}\N{U+0441}\N{U+0430}\N{U+043d}",
      "\N{U+0431}\N{U+044f}\N{U+043c}\N{U+0431}\N{U+0430}",
      "\N{U+043d}\N{U+044f}\N{U+043c}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0414}\N{U+0430}",
      "\N{U+041c}\N{U+044f}",
      "\N{U+041b}\N{U+0445}",
      "\N{U+041f}\N{U+04af}",
      "\N{U+0411}\N{U+0430}",
      "\N{U+0411}\N{U+044f}",
      "\N{U+041d}\N{U+044f}"
    ],
    day_stand_alone_narrow => [
      2,
      3,
      4,
      5,
      6,
      7,
      1
    ],
    day_stand_alone_wide => [
      "\N{U+0434}\N{U+0430}\N{U+0432}\N{U+0430}\N{U+0430}",
      "\N{U+043c}\N{U+044f}\N{U+0433}\N{U+043c}\N{U+0430}\N{U+0440}",
      "\N{U+043b}\N{U+0445}\N{U+0430}\N{U+0433}\N{U+0432}\N{U+0430}",
      "\N{U+043f}\N{U+04af}\N{U+0440}\N{U+044d}\N{U+0432}",
      "\N{U+0431}\N{U+0430}\N{U+0430}\N{U+0441}\N{U+0430}\N{U+043d}",
      "\N{U+0431}\N{U+044f}\N{U+043c}\N{U+0431}\N{U+0430}",
      "\N{U+043d}\N{U+044f}\N{U+043c}"
    ],
    era_abbreviated => [
      "\N{U+043c}.\N{U+044d}.\N{U+04e9}",
      "\N{U+043c}.\N{U+044d}."
    ],
    era_narrow => [
      "\N{U+041c}\N{U+042d}\N{U+04e8}",
      "\N{U+041c}\N{U+042d}"
    ],
    era_wide => [
      "\N{U+043c}\N{U+0430}\N{U+043d}\N{U+0430}\N{U+0439} \N{U+044d}\N{U+0440}\N{U+0438}\N{U+043d}\N{U+0438}\N{U+0439} \N{U+04e9}\N{U+043c}\N{U+043d}\N{U+04e9}\N{U+0445}",
      "\N{U+043c}\N{U+0430}\N{U+043d}\N{U+0430}\N{U+0439} \N{U+044d}\N{U+0440}\N{U+0438}\N{U+043d}\N{U+0438}\N{U+0439}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%Z %Y \N{U+043e}\N{U+043d}\N{U+044b} %B %e, %a %H:%M:%S",
    glibc_date_format => "%Y.%m.%d",
    glibc_datetime_format => "%Y %b %d, %a %T",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Mongolian",
    month_format_abbreviated => [
      "1-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "2-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "3-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "4-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "5-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "6-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "7-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "8-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "9-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "10-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "11-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "12-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+041d}\N{U+044d}\N{U+0433}\N{U+0434}\N{U+04af}\N{U+0433}\N{U+044d}\N{U+044d}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0425}\N{U+043e}\N{U+0451}\N{U+0440}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0413}\N{U+0443}\N{U+0440}\N{U+0430}\N{U+0432}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0414}\N{U+04e9}\N{U+0440}\N{U+04e9}\N{U+0432}\N{U+0434}\N{U+04af}\N{U+0433}\N{U+044d}\N{U+044d}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0422}\N{U+0430}\N{U+0432}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0417}\N{U+0443}\N{U+0440}\N{U+0433}\N{U+0430}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0414}\N{U+043e}\N{U+043b}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+041d}\N{U+0430}\N{U+0439}\N{U+043c}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0415}\N{U+0441}\N{U+0434}\N{U+04af}\N{U+0433}\N{U+044d}\N{U+044d}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0410}\N{U+0440}\N{U+0430}\N{U+0432}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0410}\N{U+0440}\N{U+0432}\N{U+0430}\N{U+043d} \N{U+043d}\N{U+044d}\N{U+0433}\N{U+0434}\N{U+04af}\N{U+0433}\N{U+044d}\N{U+044d}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0410}\N{U+0440}\N{U+0432}\N{U+0430}\N{U+043d} \N{U+0445}\N{U+043e}\N{U+0451}\N{U+0440}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}"
    ],
    month_stand_alone_abbreviated => [
      "1-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "2-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "3-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "4-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "5-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "6-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "7-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "8-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "9-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "10-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "11-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "12-\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+041d}\N{U+044d}\N{U+0433}\N{U+0434}\N{U+04af}\N{U+0433}\N{U+044d}\N{U+044d}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0425}\N{U+043e}\N{U+0451}\N{U+0440}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0413}\N{U+0443}\N{U+0440}\N{U+0430}\N{U+0432}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0414}\N{U+04e9}\N{U+0440}\N{U+04e9}\N{U+0432}\N{U+0434}\N{U+04af}\N{U+0433}\N{U+044d}\N{U+044d}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0422}\N{U+0430}\N{U+0432}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0417}\N{U+0443}\N{U+0440}\N{U+0433}\N{U+0430}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0414}\N{U+043e}\N{U+043b}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+041d}\N{U+0430}\N{U+0439}\N{U+043c}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0415}\N{U+0441}\N{U+0434}\N{U+04af}\N{U+0433}\N{U+044d}\N{U+044d}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0410}\N{U+0440}\N{U+0430}\N{U+0432}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0410}\N{U+0440}\N{U+0432}\N{U+0430}\N{U+043d} \N{U+043d}\N{U+044d}\N{U+0433}\N{U+0434}\N{U+04af}\N{U+0433}\N{U+044d}\N{U+044d}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}",
      "\N{U+0410}\N{U+0440}\N{U+0432}\N{U+0430}\N{U+043d} \N{U+0445}\N{U+043e}\N{U+0451}\N{U+0440}\N{U+0434}\N{U+0443}\N{U+0433}\N{U+0430}\N{U+0430}\N{U+0440} \N{U+0441}\N{U+0430}\N{U+0440}"
    ],
    name => "Mongolian Mongolia",
    native_language => "\N{U+043c}\N{U+043e}\N{U+043d}\N{U+0433}\N{U+043e}\N{U+043b}",
    native_name => "\N{U+043c}\N{U+043e}\N{U+043d}\N{U+0433}\N{U+043e}\N{U+043b} \N{U+041c}\N{U+043e}\N{U+043d}\N{U+0433}\N{U+043e}\N{U+043b}",
    native_script => undef,
    native_territory => "\N{U+041c}\N{U+043e}\N{U+043d}\N{U+0433}\N{U+043e}\N{U+043b}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0423}1",
      "\N{U+0423}2",
      "\N{U+0423}3",
      "\N{U+0423}4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1-\N{U+0440} \N{U+0443}\N{U+043b}\N{U+0438}\N{U+0440}\N{U+0430}\N{U+043b}",
      "2-\N{U+0440} \N{U+0443}\N{U+043b}\N{U+0438}\N{U+0440}\N{U+0430}\N{U+043b}",
      "3-\N{U+0440} \N{U+0443}\N{U+043b}\N{U+0438}\N{U+0440}\N{U+0430}\N{U+043b}",
      "4-\N{U+0440} \N{U+0443}\N{U+043b}\N{U+0438}\N{U+0440}\N{U+0430}\N{U+043b}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0423}1",
      "\N{U+0423}2",
      "\N{U+0423}3",
      "\N{U+0423}4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-\N{U+0440} \N{U+0443}\N{U+043b}\N{U+0438}\N{U+0440}\N{U+0430}\N{U+043b}",
      "2-\N{U+0440} \N{U+0443}\N{U+043b}\N{U+0438}\N{U+0440}\N{U+0430}\N{U+043b}",
      "3-\N{U+0440} \N{U+0443}\N{U+043b}\N{U+0438}\N{U+0440}\N{U+0430}\N{U+043b}",
      "4-\N{U+0440} \N{U+0443}\N{U+043b}\N{U+0438}\N{U+0440}\N{U+0430}\N{U+043b}"
    ],
    script => undef,
    territory => "Mongolia",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ mr ]__
  {
    am_pm_abbreviated => [
      "\N{U+092e}.\N{U+092a}\N{U+0942}.",
      "\N{U+092e}.\N{U+0909}."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "MMM G y",
      GyMMMEd => "E, d MMM, G y",
      GyMMMd => "d MMM, G y",
      H => "HH",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd-MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMM => "MM-y",
      yMMM => "MMM y",
      yMMMEd => "E, d, MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM, y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "mr",
    date_format_full => "EEEE, d MMMM, y",
    date_format_long => "d MMMM, y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} \N{U+0930}\N{U+094b}\N{U+091c}\N{U+0940} {0}",
    datetime_format_long => "{1} \N{U+0930}\N{U+094b}\N{U+091c}\N{U+0940} {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+0938}\N{U+094b}\N{U+092e}",
      "\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0933}",
      "\N{U+092c}\N{U+0941}\N{U+0927}",
      "\N{U+0917}\N{U+0941}\N{U+0930}\N{U+0941}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}",
      "\N{U+0930}\N{U+0935}\N{U+093f}"
    ],
    day_format_narrow => [
      "\N{U+0938}\N{U+094b}",
      "\N{U+092e}\N{U+0902}",
      "\N{U+092c}\N{U+0941}",
      "\N{U+0917}\N{U+0941}",
      "\N{U+0936}\N{U+0941}",
      "\N{U+0936}",
      "\N{U+0930}"
    ],
    day_format_wide => [
      "\N{U+0938}\N{U+094b}\N{U+092e}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0933}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+092c}\N{U+0941}\N{U+0927}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0917}\N{U+0941}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0930}\N{U+0935}\N{U+093f}\N{U+0935}\N{U+093e}\N{U+0930}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0938}\N{U+094b}\N{U+092e}",
      "\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0933}",
      "\N{U+092c}\N{U+0941}\N{U+0927}",
      "\N{U+0917}\N{U+0941}\N{U+0930}\N{U+0941}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}",
      "\N{U+0930}\N{U+0935}\N{U+093f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0938}\N{U+094b}",
      "\N{U+092e}\N{U+0902}",
      "\N{U+092c}\N{U+0941}",
      "\N{U+0917}\N{U+0941}",
      "\N{U+0936}\N{U+0941}",
      "\N{U+0936}",
      "\N{U+0930}"
    ],
    day_stand_alone_wide => [
      "\N{U+0938}\N{U+094b}\N{U+092e}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0933}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+092c}\N{U+0941}\N{U+0927}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0917}\N{U+0941}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0930}\N{U+0935}\N{U+093f}\N{U+0935}\N{U+093e}\N{U+0930}"
    ],
    era_abbreviated => [
      "\N{U+0907}. \N{U+0938}. \N{U+092a}\N{U+0942}.",
      "\N{U+0907}. \N{U+0938}."
    ],
    era_narrow => [
      "\N{U+0907}. \N{U+0938}. \N{U+092a}\N{U+0942}.",
      "\N{U+0907}. \N{U+0938}."
    ],
    era_wide => [
      "\N{U+0908}\N{U+0938}\N{U+0935}\N{U+0940}\N{U+0938}\N{U+0928}\N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}",
      "\N{U+0908}\N{U+0938}\N{U+0935}\N{U+0940}\N{U+0938}\N{U+0928}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Marathi",
    month_format_abbreviated => [
      "\N{U+091c}\N{U+093e}\N{U+0928}\N{U+0947}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+090f}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+093f}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0942}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+0948}",
      "\N{U+0911}\N{U+0917}",
      "\N{U+0938}\N{U+092a}\N{U+094d}\N{U+091f}\N{U+0947}\N{U+0902}",
      "\N{U+0911}\N{U+0915}\N{U+094d}\N{U+091f}\N{U+094b}",
      "\N{U+0928}\N{U+094b}\N{U+0935}\N{U+094d}\N{U+0939}\N{U+0947}\N{U+0902}",
      "\N{U+0921}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+0902}"
    ],
    month_format_narrow => [
      "\N{U+091c}\N{U+093e}",
      "\N{U+092b}\N{U+0947}",
      "\N{U+092e}\N{U+093e}",
      "\N{U+090f}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0942}",
      "\N{U+091c}\N{U+0941}",
      "\N{U+0911}",
      "\N{U+0938}",
      "\N{U+0911}",
      "\N{U+0928}\N{U+094b}",
      "\N{U+0921}\N{U+093f}"
    ],
    month_format_wide => [
      "\N{U+091c}\N{U+093e}\N{U+0928}\N{U+0947}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+090f}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0942}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+0948}",
      "\N{U+0911}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+091f}",
      "\N{U+0938}\N{U+092a}\N{U+094d}\N{U+091f}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}",
      "\N{U+0911}\N{U+0915}\N{U+094d}\N{U+091f}\N{U+094b}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+094b}\N{U+0935}\N{U+094d}\N{U+0939}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}",
      "\N{U+0921}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+091c}\N{U+093e}\N{U+0928}\N{U+0947}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+090f}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+093f}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0942}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+0948}",
      "\N{U+0911}\N{U+0917}",
      "\N{U+0938}\N{U+092a}\N{U+094d}\N{U+091f}\N{U+0947}\N{U+0902}",
      "\N{U+0911}\N{U+0915}\N{U+094d}\N{U+091f}\N{U+094b}",
      "\N{U+0928}\N{U+094b}\N{U+0935}\N{U+094d}\N{U+0939}\N{U+0947}\N{U+0902}",
      "\N{U+0921}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+0902}"
    ],
    month_stand_alone_narrow => [
      "\N{U+091c}\N{U+093e}",
      "\N{U+092b}\N{U+0947}",
      "\N{U+092e}\N{U+093e}",
      "\N{U+090f}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0942}",
      "\N{U+091c}\N{U+0941}",
      "\N{U+0911}",
      "\N{U+0938}",
      "\N{U+0911}",
      "\N{U+0928}\N{U+094b}",
      "\N{U+0921}\N{U+093f}"
    ],
    month_stand_alone_wide => [
      "\N{U+091c}\N{U+093e}\N{U+0928}\N{U+0947}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+090f}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0942}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+0948}",
      "\N{U+0911}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+091f}",
      "\N{U+0938}\N{U+092a}\N{U+094d}\N{U+091f}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}",
      "\N{U+0911}\N{U+0915}\N{U+094d}\N{U+091f}\N{U+094b}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+094b}\N{U+0935}\N{U+094d}\N{U+0939}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}",
      "\N{U+0921}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}"
    ],
    name => "Marathi",
    native_language => "\N{U+092e}\N{U+0930}\N{U+093e}\N{U+0920}\N{U+0940}",
    native_name => "\N{U+092e}\N{U+0930}\N{U+093e}\N{U+0920}\N{U+0940}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0924}\N{U+093f}\N{U+0967}",
      "\N{U+0924}\N{U+093f}\N{U+0968}",
      "\N{U+0924}\N{U+093f}\N{U+0969}",
      "\N{U+0924}\N{U+093f}\N{U+096a}"
    ],
    quarter_format_narrow => [
      "\N{U+0967}",
      "\N{U+0968}",
      "\N{U+0969}",
      "\N{U+096a}"
    ],
    quarter_format_wide => [
      "\N{U+092a}\N{U+094d}\N{U+0930}\N{U+0925}\N{U+092e} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}",
      "\N{U+0926}\N{U+094d}\N{U+0935}\N{U+093f}\N{U+0924}\N{U+0940}\N{U+092f} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}",
      "\N{U+0924}\N{U+0943}\N{U+0924}\N{U+0940}\N{U+092f} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}",
      "\N{U+091a}\N{U+0924}\N{U+0941}\N{U+0930}\N{U+094d}\N{U+0925} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0924}\N{U+093f}\N{U+0967}",
      "\N{U+0924}\N{U+093f}\N{U+0968}",
      "\N{U+0924}\N{U+093f}\N{U+0969}",
      "\N{U+0924}\N{U+093f}\N{U+096a}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0967}",
      "\N{U+0968}",
      "\N{U+0969}",
      "\N{U+096a}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+092a}\N{U+094d}\N{U+0930}\N{U+0925}\N{U+092e} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}",
      "\N{U+0926}\N{U+094d}\N{U+0935}\N{U+093f}\N{U+0924}\N{U+0940}\N{U+092f} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}",
      "\N{U+0924}\N{U+0943}\N{U+0924}\N{U+0940}\N{U+092f} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}",
      "\N{U+091a}\N{U+0924}\N{U+0941}\N{U+0930}\N{U+094d}\N{U+0925} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ mr-IN ]__
  {
    am_pm_abbreviated => [
      "\N{U+092e}.\N{U+092a}\N{U+0942}.",
      "\N{U+092e}.\N{U+0909}."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "MMM G y",
      GyMMMEd => "E, d MMM, G y",
      GyMMMd => "d MMM, G y",
      H => "HH",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd-MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMM => "MM-y",
      yMMM => "MMM y",
      yMMMEd => "E, d, MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM, y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "mr-IN",
    date_format_full => "EEEE, d MMMM, y",
    date_format_long => "d MMMM, y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} \N{U+0930}\N{U+094b}\N{U+091c}\N{U+0940} {0}",
    datetime_format_long => "{1} \N{U+0930}\N{U+094b}\N{U+091c}\N{U+0940} {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+0938}\N{U+094b}\N{U+092e}",
      "\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0933}",
      "\N{U+092c}\N{U+0941}\N{U+0927}",
      "\N{U+0917}\N{U+0941}\N{U+0930}\N{U+0941}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}",
      "\N{U+0930}\N{U+0935}\N{U+093f}"
    ],
    day_format_narrow => [
      "\N{U+0938}\N{U+094b}",
      "\N{U+092e}\N{U+0902}",
      "\N{U+092c}\N{U+0941}",
      "\N{U+0917}\N{U+0941}",
      "\N{U+0936}\N{U+0941}",
      "\N{U+0936}",
      "\N{U+0930}"
    ],
    day_format_wide => [
      "\N{U+0938}\N{U+094b}\N{U+092e}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0933}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+092c}\N{U+0941}\N{U+0927}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0917}\N{U+0941}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0930}\N{U+0935}\N{U+093f}\N{U+0935}\N{U+093e}\N{U+0930}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0938}\N{U+094b}\N{U+092e}",
      "\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0933}",
      "\N{U+092c}\N{U+0941}\N{U+0927}",
      "\N{U+0917}\N{U+0941}\N{U+0930}\N{U+0941}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}",
      "\N{U+0930}\N{U+0935}\N{U+093f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0938}\N{U+094b}",
      "\N{U+092e}\N{U+0902}",
      "\N{U+092c}\N{U+0941}",
      "\N{U+0917}\N{U+0941}",
      "\N{U+0936}\N{U+0941}",
      "\N{U+0936}",
      "\N{U+0930}"
    ],
    day_stand_alone_wide => [
      "\N{U+0938}\N{U+094b}\N{U+092e}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+092e}\N{U+0902}\N{U+0917}\N{U+0933}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+092c}\N{U+0941}\N{U+0927}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0917}\N{U+0941}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}\N{U+0935}\N{U+093e}\N{U+0930}",
      "\N{U+0930}\N{U+0935}\N{U+093f}\N{U+0935}\N{U+093e}\N{U+0930}"
    ],
    era_abbreviated => [
      "\N{U+0907}. \N{U+0938}. \N{U+092a}\N{U+0942}.",
      "\N{U+0907}. \N{U+0938}."
    ],
    era_narrow => [
      "\N{U+0907}. \N{U+0938}. \N{U+092a}\N{U+0942}.",
      "\N{U+0907}. \N{U+0938}."
    ],
    era_wide => [
      "\N{U+0908}\N{U+0938}\N{U+0935}\N{U+0940}\N{U+0938}\N{U+0928}\N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}",
      "\N{U+0908}\N{U+0938}\N{U+0935}\N{U+0940}\N{U+0938}\N{U+0928}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%A %d %b %Y",
    glibc_datetime_format => "%A %d %b %Y %I:%M:%S %p %Z",
    glibc_time_12_format => "%I:%M:%S %p %Z",
    glibc_time_format => "%I:%M:%S  %Z",
    language => "Marathi",
    month_format_abbreviated => [
      "\N{U+091c}\N{U+093e}\N{U+0928}\N{U+0947}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+090f}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+093f}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0942}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+0948}",
      "\N{U+0911}\N{U+0917}",
      "\N{U+0938}\N{U+092a}\N{U+094d}\N{U+091f}\N{U+0947}\N{U+0902}",
      "\N{U+0911}\N{U+0915}\N{U+094d}\N{U+091f}\N{U+094b}",
      "\N{U+0928}\N{U+094b}\N{U+0935}\N{U+094d}\N{U+0939}\N{U+0947}\N{U+0902}",
      "\N{U+0921}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+0902}"
    ],
    month_format_narrow => [
      "\N{U+091c}\N{U+093e}",
      "\N{U+092b}\N{U+0947}",
      "\N{U+092e}\N{U+093e}",
      "\N{U+090f}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0942}",
      "\N{U+091c}\N{U+0941}",
      "\N{U+0911}",
      "\N{U+0938}",
      "\N{U+0911}",
      "\N{U+0928}\N{U+094b}",
      "\N{U+0921}\N{U+093f}"
    ],
    month_format_wide => [
      "\N{U+091c}\N{U+093e}\N{U+0928}\N{U+0947}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+090f}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0942}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+0948}",
      "\N{U+0911}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+091f}",
      "\N{U+0938}\N{U+092a}\N{U+094d}\N{U+091f}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}",
      "\N{U+0911}\N{U+0915}\N{U+094d}\N{U+091f}\N{U+094b}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+094b}\N{U+0935}\N{U+094d}\N{U+0939}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}",
      "\N{U+0921}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+091c}\N{U+093e}\N{U+0928}\N{U+0947}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+090f}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+093f}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0942}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+0948}",
      "\N{U+0911}\N{U+0917}",
      "\N{U+0938}\N{U+092a}\N{U+094d}\N{U+091f}\N{U+0947}\N{U+0902}",
      "\N{U+0911}\N{U+0915}\N{U+094d}\N{U+091f}\N{U+094b}",
      "\N{U+0928}\N{U+094b}\N{U+0935}\N{U+094d}\N{U+0939}\N{U+0947}\N{U+0902}",
      "\N{U+0921}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+0902}"
    ],
    month_stand_alone_narrow => [
      "\N{U+091c}\N{U+093e}",
      "\N{U+092b}\N{U+0947}",
      "\N{U+092e}\N{U+093e}",
      "\N{U+090f}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0942}",
      "\N{U+091c}\N{U+0941}",
      "\N{U+0911}",
      "\N{U+0938}",
      "\N{U+0911}",
      "\N{U+0928}\N{U+094b}",
      "\N{U+0921}\N{U+093f}"
    ],
    month_stand_alone_wide => [
      "\N{U+091c}\N{U+093e}\N{U+0928}\N{U+0947}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0935}\N{U+093e}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+090f}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0942}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+0948}",
      "\N{U+0911}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+091f}",
      "\N{U+0938}\N{U+092a}\N{U+094d}\N{U+091f}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}",
      "\N{U+0911}\N{U+0915}\N{U+094d}\N{U+091f}\N{U+094b}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+094b}\N{U+0935}\N{U+094d}\N{U+0939}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}",
      "\N{U+0921}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+0902}\N{U+092c}\N{U+0930}"
    ],
    name => "Marathi India",
    native_language => "\N{U+092e}\N{U+0930}\N{U+093e}\N{U+0920}\N{U+0940}",
    native_name => "\N{U+092e}\N{U+0930}\N{U+093e}\N{U+0920}\N{U+0940} \N{U+092d}\N{U+093e}\N{U+0930}\N{U+0924}",
    native_script => undef,
    native_territory => "\N{U+092d}\N{U+093e}\N{U+0930}\N{U+0924}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0924}\N{U+093f}\N{U+0967}",
      "\N{U+0924}\N{U+093f}\N{U+0968}",
      "\N{U+0924}\N{U+093f}\N{U+0969}",
      "\N{U+0924}\N{U+093f}\N{U+096a}"
    ],
    quarter_format_narrow => [
      "\N{U+0967}",
      "\N{U+0968}",
      "\N{U+0969}",
      "\N{U+096a}"
    ],
    quarter_format_wide => [
      "\N{U+092a}\N{U+094d}\N{U+0930}\N{U+0925}\N{U+092e} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}",
      "\N{U+0926}\N{U+094d}\N{U+0935}\N{U+093f}\N{U+0924}\N{U+0940}\N{U+092f} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}",
      "\N{U+0924}\N{U+0943}\N{U+0924}\N{U+0940}\N{U+092f} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}",
      "\N{U+091a}\N{U+0924}\N{U+0941}\N{U+0930}\N{U+094d}\N{U+0925} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0924}\N{U+093f}\N{U+0967}",
      "\N{U+0924}\N{U+093f}\N{U+0968}",
      "\N{U+0924}\N{U+093f}\N{U+0969}",
      "\N{U+0924}\N{U+093f}\N{U+096a}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0967}",
      "\N{U+0968}",
      "\N{U+0969}",
      "\N{U+096a}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+092a}\N{U+094d}\N{U+0930}\N{U+0925}\N{U+092e} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}",
      "\N{U+0926}\N{U+094d}\N{U+0935}\N{U+093f}\N{U+0924}\N{U+0940}\N{U+092f} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}",
      "\N{U+0924}\N{U+0943}\N{U+0924}\N{U+0940}\N{U+092f} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}",
      "\N{U+091a}\N{U+0924}\N{U+0941}\N{U+0930}\N{U+094d}\N{U+0925} \N{U+0924}\N{U+093f}\N{U+092e}\N{U+093e}\N{U+0939}\N{U+0940}"
    ],
    script => undef,
    territory => "India",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ms ]__
  {
    am_pm_abbreviated => [
      "PG",
      "PTG"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hmm => "H:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d-M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "d-M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M-y",
      yMEd => "E, d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ms",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Isn",
      "Sel",
      "Rab",
      "Kha",
      "Jum",
      "Sab",
      "Ahd"
    ],
    day_format_narrow => [
      "I",
      "S",
      "R",
      "K",
      "J",
      "S",
      "A"
    ],
    day_format_wide => [
      "Isnin",
      "Selasa",
      "Rabu",
      "Khamis",
      "Jumaat",
      "Sabtu",
      "Ahad"
    ],
    day_stand_alone_abbreviated => [
      "Isn",
      "Sel",
      "Rab",
      "Kha",
      "Jum",
      "Sab",
      "Ahd"
    ],
    day_stand_alone_narrow => [
      "I",
      "S",
      "R",
      "K",
      "J",
      "S",
      "A"
    ],
    day_stand_alone_wide => [
      "Isnin",
      "Selasa",
      "Rabu",
      "Khamis",
      "Jumaat",
      "Sabtu",
      "Ahad"
    ],
    era_abbreviated => [
      "S.M.",
      "TM"
    ],
    era_narrow => [
      "S.M.",
      "TM"
    ],
    era_wide => [
      "S.M.",
      "TM"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Malay",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ogo",
      "Sep",
      "Okt",
      "Nov",
      "Dis"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "O",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januari",
      "Februari",
      "Mac",
      "April",
      "Mei",
      "Jun",
      "Julai",
      "Ogos",
      "September",
      "Oktober",
      "November",
      "Disember"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ogo",
      "Sep",
      "Okt",
      "Nov",
      "Dis"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "O",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januari",
      "Februari",
      "Mac",
      "April",
      "Mei",
      "Jun",
      "Julai",
      "Ogos",
      "September",
      "Oktober",
      "November",
      "Disember"
    ],
    name => "Malay",
    native_language => "Bahasa Melayu",
    native_name => "Bahasa Melayu",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "S1",
      "S2",
      "S3",
      "S4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Suku pertama",
      "Suku Ke-2",
      "Suku Ke-3",
      "Suku Ke-4"
    ],
    quarter_stand_alone_abbreviated => [
      "S1",
      "S2",
      "S3",
      "S4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Suku pertama",
      "Suku Ke-2",
      "Suku Ke-3",
      "Suku Ke-4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ms-BN ]__
  {
    am_pm_abbreviated => [
      "PG",
      "PTG"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hmm => "H:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d-M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "d-M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M-y",
      yMEd => "E, d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ms-BN",
    date_format_full => "dd MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Isn",
      "Sel",
      "Rab",
      "Kha",
      "Jum",
      "Sab",
      "Ahd"
    ],
    day_format_narrow => [
      "I",
      "S",
      "R",
      "K",
      "J",
      "S",
      "A"
    ],
    day_format_wide => [
      "Isnin",
      "Selasa",
      "Rabu",
      "Khamis",
      "Jumaat",
      "Sabtu",
      "Ahad"
    ],
    day_stand_alone_abbreviated => [
      "Isn",
      "Sel",
      "Rab",
      "Kha",
      "Jum",
      "Sab",
      "Ahd"
    ],
    day_stand_alone_narrow => [
      "I",
      "S",
      "R",
      "K",
      "J",
      "S",
      "A"
    ],
    day_stand_alone_wide => [
      "Isnin",
      "Selasa",
      "Rabu",
      "Khamis",
      "Jumaat",
      "Sabtu",
      "Ahad"
    ],
    era_abbreviated => [
      "S.M.",
      "TM"
    ],
    era_narrow => [
      "S.M.",
      "TM"
    ],
    era_wide => [
      "S.M.",
      "TM"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Malay",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ogo",
      "Sep",
      "Okt",
      "Nov",
      "Dis"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "O",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januari",
      "Februari",
      "Mac",
      "April",
      "Mei",
      "Jun",
      "Julai",
      "Ogos",
      "September",
      "Oktober",
      "November",
      "Disember"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ogo",
      "Sep",
      "Okt",
      "Nov",
      "Dis"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "O",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januari",
      "Februari",
      "Mac",
      "April",
      "Mei",
      "Jun",
      "Julai",
      "Ogos",
      "September",
      "Oktober",
      "November",
      "Disember"
    ],
    name => "Malay Brunei",
    native_language => "Bahasa Melayu",
    native_name => "Bahasa Melayu Brunei",
    native_script => undef,
    native_territory => "Brunei",
    native_variant => undef,
    quarter_format_abbreviated => [
      "S1",
      "S2",
      "S3",
      "S4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Suku pertama",
      "Suku Ke-2",
      "Suku Ke-3",
      "Suku Ke-4"
    ],
    quarter_stand_alone_abbreviated => [
      "S1",
      "S2",
      "S3",
      "S4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Suku pertama",
      "Suku Ke-2",
      "Suku Ke-3",
      "Suku Ke-4"
    ],
    script => undef,
    territory => "Brunei",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ms-MY ]__
  {
    am_pm_abbreviated => [
      "PG",
      "PTG"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hmm => "H:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d-M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "d-M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M-y",
      yMEd => "E, d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ms-MY",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Isn",
      "Sel",
      "Rab",
      "Kha",
      "Jum",
      "Sab",
      "Ahd"
    ],
    day_format_narrow => [
      "I",
      "S",
      "R",
      "K",
      "J",
      "S",
      "A"
    ],
    day_format_wide => [
      "Isnin",
      "Selasa",
      "Rabu",
      "Khamis",
      "Jumaat",
      "Sabtu",
      "Ahad"
    ],
    day_stand_alone_abbreviated => [
      "Isn",
      "Sel",
      "Rab",
      "Kha",
      "Jum",
      "Sab",
      "Ahd"
    ],
    day_stand_alone_narrow => [
      "I",
      "S",
      "R",
      "K",
      "J",
      "S",
      "A"
    ],
    day_stand_alone_wide => [
      "Isnin",
      "Selasa",
      "Rabu",
      "Khamis",
      "Jumaat",
      "Sabtu",
      "Ahad"
    ],
    era_abbreviated => [
      "S.M.",
      "TM"
    ],
    era_narrow => [
      "S.M.",
      "TM"
    ],
    era_wide => [
      "S.M.",
      "TM"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%A %d %b %Y",
    glibc_datetime_format => "%A %d %b %Y %I:%M:%S %p %Z",
    glibc_time_12_format => "%I:%M:%S %p %Z",
    glibc_time_format => "%I:%M:%S  %Z",
    language => "Malay",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ogo",
      "Sep",
      "Okt",
      "Nov",
      "Dis"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "O",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januari",
      "Februari",
      "Mac",
      "April",
      "Mei",
      "Jun",
      "Julai",
      "Ogos",
      "September",
      "Oktober",
      "November",
      "Disember"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ogo",
      "Sep",
      "Okt",
      "Nov",
      "Dis"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "O",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januari",
      "Februari",
      "Mac",
      "April",
      "Mei",
      "Jun",
      "Julai",
      "Ogos",
      "September",
      "Oktober",
      "November",
      "Disember"
    ],
    name => "Malay Malaysia",
    native_language => "Bahasa Melayu",
    native_name => "Bahasa Melayu Malaysia",
    native_script => undef,
    native_territory => "Malaysia",
    native_variant => undef,
    quarter_format_abbreviated => [
      "S1",
      "S2",
      "S3",
      "S4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Suku pertama",
      "Suku Ke-2",
      "Suku Ke-3",
      "Suku Ke-4"
    ],
    quarter_stand_alone_abbreviated => [
      "S1",
      "S2",
      "S3",
      "S4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Suku pertama",
      "Suku Ke-2",
      "Suku Ke-3",
      "Suku Ke-4"
    ],
    script => undef,
    territory => "Malaysia",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ms-SG ]__
  {
    am_pm_abbreviated => [
      "PG",
      "PTG"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hmm => "H:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d-M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "d-M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M-y",
      yMEd => "E, d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ms-SG",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Isn",
      "Sel",
      "Rab",
      "Kha",
      "Jum",
      "Sab",
      "Ahd"
    ],
    day_format_narrow => [
      "I",
      "S",
      "R",
      "K",
      "J",
      "S",
      "A"
    ],
    day_format_wide => [
      "Isnin",
      "Selasa",
      "Rabu",
      "Khamis",
      "Jumaat",
      "Sabtu",
      "Ahad"
    ],
    day_stand_alone_abbreviated => [
      "Isn",
      "Sel",
      "Rab",
      "Kha",
      "Jum",
      "Sab",
      "Ahd"
    ],
    day_stand_alone_narrow => [
      "I",
      "S",
      "R",
      "K",
      "J",
      "S",
      "A"
    ],
    day_stand_alone_wide => [
      "Isnin",
      "Selasa",
      "Rabu",
      "Khamis",
      "Jumaat",
      "Sabtu",
      "Ahad"
    ],
    era_abbreviated => [
      "S.M.",
      "TM"
    ],
    era_narrow => [
      "S.M.",
      "TM"
    ],
    era_wide => [
      "S.M.",
      "TM"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Malay",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ogo",
      "Sep",
      "Okt",
      "Nov",
      "Dis"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "O",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januari",
      "Februari",
      "Mac",
      "April",
      "Mei",
      "Jun",
      "Julai",
      "Ogos",
      "September",
      "Oktober",
      "November",
      "Disember"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ogo",
      "Sep",
      "Okt",
      "Nov",
      "Dis"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "O",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januari",
      "Februari",
      "Mac",
      "April",
      "Mei",
      "Jun",
      "Julai",
      "Ogos",
      "September",
      "Oktober",
      "November",
      "Disember"
    ],
    name => "Malay Singapore",
    native_language => "Bahasa Melayu",
    native_name => "Bahasa Melayu Singapura",
    native_script => undef,
    native_territory => "Singapura",
    native_variant => undef,
    quarter_format_abbreviated => [
      "S1",
      "S2",
      "S3",
      "S4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Suku pertama",
      "Suku Ke-2",
      "Suku Ke-3",
      "Suku Ke-4"
    ],
    quarter_stand_alone_abbreviated => [
      "S1",
      "S2",
      "S3",
      "S4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Suku pertama",
      "Suku Ke-2",
      "Suku Ke-3",
      "Suku Ke-4"
    ],
    script => undef,
    territory => "Singapore",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ mt ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "mt",
    date_format_full => "EEEE, d 'ta'\N{U+2019} MMMM y",
    date_format_long => "d 'ta'\N{U+2019} MMMM y",
    date_format_medium => "dd MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Tne",
      "Tli",
      "Erb",
      "\N{U+0126}am",
      "\N{U+0120}im",
      "Sib",
      "\N{U+0126}ad"
    ],
    day_format_narrow => [
      "T",
      "T",
      "E",
      "\N{U+0126}",
      "\N{U+0120}",
      "S",
      "\N{U+0126}"
    ],
    day_format_wide => [
      "It-Tnejn",
      "It-Tlieta",
      "L-Erbg\N{U+0127}a",
      "Il-\N{U+0126}amis",
      "Il-\N{U+0120}img\N{U+0127}a",
      "Is-Sibt",
      "Il-\N{U+0126}add"
    ],
    day_stand_alone_abbreviated => [
      "Tne",
      "Tli",
      "Erb",
      "\N{U+0126}am",
      "\N{U+0120}im",
      "Sib",
      "\N{U+0126}ad"
    ],
    day_stand_alone_narrow => [
      "Tn",
      "Tl",
      "Er",
      "\N{U+0126}m",
      "\N{U+0120}m",
      "Sb",
      "\N{U+0126}d"
    ],
    day_stand_alone_wide => [
      "It-Tnejn",
      "It-Tlieta",
      "L-Erbg\N{U+0127}a",
      "Il-\N{U+0126}amis",
      "Il-\N{U+0120}img\N{U+0127}a",
      "Is-Sibt",
      "Il-\N{U+0126}add"
    ],
    era_abbreviated => [
      "QK",
      "WK"
    ],
    era_narrow => [
      "QK",
      "WK"
    ],
    era_wide => [
      "Qabel Kristu",
      "Wara Kristu"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Maltese",
    month_format_abbreviated => [
      "Jan",
      "Fra",
      "Mar",
      "Apr",
      "Mej",
      "\N{U+0120}un",
      "Lul",
      "Aww",
      "Set",
      "Ott",
      "Nov",
      "Di\N{U+010b}"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "\N{U+0120}",
      "L",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Jannar",
      "Frar",
      "Marzu",
      "April",
      "Mejju",
      "\N{U+0120}unju",
      "Lulju",
      "Awwissu",
      "Settembru",
      "Ottubru",
      "Novembru",
      "Di\N{U+010b}embru"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Fra",
      "Mar",
      "Apr",
      "Mej",
      "\N{U+0120}un",
      "Lul",
      "Aww",
      "Set",
      "Ott",
      "Nov",
      "Di\N{U+010b}"
    ],
    month_stand_alone_narrow => [
      "Jn",
      "Fr",
      "Mz",
      "Ap",
      "Mj",
      "\N{U+0120}n",
      "Lj",
      "Aw",
      "St",
      "Ob",
      "Nv",
      "D\N{U+010b}"
    ],
    month_stand_alone_wide => [
      "Jannar",
      "Frar",
      "Marzu",
      "April",
      "Mejju",
      "\N{U+0120}unju",
      "Lulju",
      "Awwissu",
      "Settembru",
      "Ottubru",
      "Novembru",
      "Di\N{U+010b}embru"
    ],
    name => "Maltese",
    native_language => "Malti",
    native_name => "Malti",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1el kwart",
      "2ni kwart",
      "3et kwart",
      "4ba\N{U+2019} kwart"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1el kwart",
      "2ni kwart",
      "3et kwart",
      "4ba\N{U+2019} kwart"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ mt-MT ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "mt-MT",
    date_format_full => "EEEE, d 'ta'\N{U+2019} MMMM y",
    date_format_long => "d 'ta'\N{U+2019} MMMM y",
    date_format_medium => "dd MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Tne",
      "Tli",
      "Erb",
      "\N{U+0126}am",
      "\N{U+0120}im",
      "Sib",
      "\N{U+0126}ad"
    ],
    day_format_narrow => [
      "T",
      "T",
      "E",
      "\N{U+0126}",
      "\N{U+0120}",
      "S",
      "\N{U+0126}"
    ],
    day_format_wide => [
      "It-Tnejn",
      "It-Tlieta",
      "L-Erbg\N{U+0127}a",
      "Il-\N{U+0126}amis",
      "Il-\N{U+0120}img\N{U+0127}a",
      "Is-Sibt",
      "Il-\N{U+0126}add"
    ],
    day_stand_alone_abbreviated => [
      "Tne",
      "Tli",
      "Erb",
      "\N{U+0126}am",
      "\N{U+0120}im",
      "Sib",
      "\N{U+0126}ad"
    ],
    day_stand_alone_narrow => [
      "Tn",
      "Tl",
      "Er",
      "\N{U+0126}m",
      "\N{U+0120}m",
      "Sb",
      "\N{U+0126}d"
    ],
    day_stand_alone_wide => [
      "It-Tnejn",
      "It-Tlieta",
      "L-Erbg\N{U+0127}a",
      "Il-\N{U+0126}amis",
      "Il-\N{U+0120}img\N{U+0127}a",
      "Is-Sibt",
      "Il-\N{U+0126}add"
    ],
    era_abbreviated => [
      "QK",
      "WK"
    ],
    era_narrow => [
      "QK",
      "WK"
    ],
    era_wide => [
      "Qabel Kristu",
      "Wara Kristu"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%A, %d ta %b, %Y",
    glibc_datetime_format => "%A, %d ta %b, %Y %I:%M:%S %p %Z",
    glibc_time_12_format => "%I:%M:%S %p %Z",
    glibc_time_format => "%I:%M:%S  %Z",
    language => "Maltese",
    month_format_abbreviated => [
      "Jan",
      "Fra",
      "Mar",
      "Apr",
      "Mej",
      "\N{U+0120}un",
      "Lul",
      "Aww",
      "Set",
      "Ott",
      "Nov",
      "Di\N{U+010b}"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "\N{U+0120}",
      "L",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Jannar",
      "Frar",
      "Marzu",
      "April",
      "Mejju",
      "\N{U+0120}unju",
      "Lulju",
      "Awwissu",
      "Settembru",
      "Ottubru",
      "Novembru",
      "Di\N{U+010b}embru"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Fra",
      "Mar",
      "Apr",
      "Mej",
      "\N{U+0120}un",
      "Lul",
      "Aww",
      "Set",
      "Ott",
      "Nov",
      "Di\N{U+010b}"
    ],
    month_stand_alone_narrow => [
      "Jn",
      "Fr",
      "Mz",
      "Ap",
      "Mj",
      "\N{U+0120}n",
      "Lj",
      "Aw",
      "St",
      "Ob",
      "Nv",
      "D\N{U+010b}"
    ],
    month_stand_alone_wide => [
      "Jannar",
      "Frar",
      "Marzu",
      "April",
      "Mejju",
      "\N{U+0120}unju",
      "Lulju",
      "Awwissu",
      "Settembru",
      "Ottubru",
      "Novembru",
      "Di\N{U+010b}embru"
    ],
    name => "Maltese Malta",
    native_language => "Malti",
    native_name => "Malti Malta",
    native_script => undef,
    native_territory => "Malta",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1el kwart",
      "2ni kwart",
      "3et kwart",
      "4ba\N{U+2019} kwart"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1el kwart",
      "2ni kwart",
      "3et kwart",
      "4ba\N{U+2019} kwart"
    ],
    script => undef,
    territory => "Malta",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ mua ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "mua",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Cla",
      "Czi",
      "Cko",
      "Cka",
      "Cga",
      "Cze",
      "Cya"
    ],
    day_format_narrow => [
      "L",
      "Z",
      "O",
      "A",
      "G",
      "E",
      "Y"
    ],
    day_format_wide => [
      "Comlaa\N{U+0257}ii",
      "Comzyii\N{U+0257}ii",
      "Comkolle",
      "Comkald\N{U+01dd}\N{U+0253}lii",
      "Comgaisuu",
      "Comzye\N{U+0253}suu",
      "Com\N{U+2019}yakke"
    ],
    day_stand_alone_abbreviated => [
      "Cla",
      "Czi",
      "Cko",
      "Cka",
      "Cga",
      "Cze",
      "Cya"
    ],
    day_stand_alone_narrow => [
      "L",
      "Z",
      "O",
      "A",
      "G",
      "E",
      "Y"
    ],
    day_stand_alone_wide => [
      "Comlaa\N{U+0257}ii",
      "Comzyii\N{U+0257}ii",
      "Comkolle",
      "Comkald\N{U+01dd}\N{U+0253}lii",
      "Comgaisuu",
      "Comzye\N{U+0253}suu",
      "Com\N{U+2019}yakke"
    ],
    era_abbreviated => [
      "KK",
      "PK"
    ],
    era_narrow => [
      "KK",
      "PK"
    ],
    era_wide => [
      "K\N{U+01dd}Pel Kristu",
      "Pel Kristu"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Mundang",
    month_format_abbreviated => [
      "FLO",
      "CLA",
      "CKI",
      "FMF",
      "MAD",
      "MBI",
      "MLI",
      "MAM",
      "FDE",
      "FMU",
      "FGW",
      "FYU"
    ],
    month_format_narrow => [
      "O",
      "A",
      "I",
      "F",
      "D",
      "B",
      "L",
      "M",
      "E",
      "U",
      "W",
      "Y"
    ],
    month_format_wide => [
      "F\N{U+0129}i Loo",
      "Cokcwakla\N{U+014b}ne",
      "Cokcwaklii",
      "F\N{U+0129}i Marfoo",
      "Mad\N{U+01dd}\N{U+01dd}uut\N{U+01dd}bija\N{U+014b}",
      "Mam\N{U+01dd}\N{U+014b}gw\N{U+00e3}afahbii",
      "Mam\N{U+01dd}\N{U+014b}gw\N{U+00e3}alii",
      "Mad\N{U+01dd}mbii",
      "F\N{U+0129}i D\N{U+01dd}\N{U+0253}lii",
      "F\N{U+0129}i Munda\N{U+014b}",
      "F\N{U+0129}i Gwahlle",
      "F\N{U+0129}i Yuru"
    ],
    month_stand_alone_abbreviated => [
      "FLO",
      "CLA",
      "CKI",
      "FMF",
      "MAD",
      "MBI",
      "MLI",
      "MAM",
      "FDE",
      "FMU",
      "FGW",
      "FYU"
    ],
    month_stand_alone_narrow => [
      "O",
      "A",
      "I",
      "F",
      "D",
      "B",
      "L",
      "M",
      "E",
      "U",
      "W",
      "Y"
    ],
    month_stand_alone_wide => [
      "F\N{U+0129}i Loo",
      "Cokcwakla\N{U+014b}ne",
      "Cokcwaklii",
      "F\N{U+0129}i Marfoo",
      "Mad\N{U+01dd}\N{U+01dd}uut\N{U+01dd}bija\N{U+014b}",
      "Mam\N{U+01dd}\N{U+014b}gw\N{U+00e3}afahbii",
      "Mam\N{U+01dd}\N{U+014b}gw\N{U+00e3}alii",
      "Mad\N{U+01dd}mbii",
      "F\N{U+0129}i D\N{U+01dd}\N{U+0253}lii",
      "F\N{U+0129}i Munda\N{U+014b}",
      "F\N{U+0129}i Gwahlle",
      "F\N{U+0129}i Yuru"
    ],
    name => "Mundang",
    native_language => "MUNDA\N{U+014a}",
    native_name => "MUNDA\N{U+014a}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "F1",
      "F2",
      "F3",
      "F4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Tai f\N{U+0129}i sai ma t\N{U+01dd}n kee zah",
      "Tai f\N{U+0129}i sai zah l\N{U+01dd}n gwa ma kee",
      "Tai f\N{U+0129}i sai zah l\N{U+01dd}n sai ma kee",
      "Tai f\N{U+0129}i sai ma coo kee zah \N{U+2018}na"
    ],
    quarter_stand_alone_abbreviated => [
      "F1",
      "F2",
      "F3",
      "F4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Tai f\N{U+0129}i sai ma t\N{U+01dd}n kee zah",
      "Tai f\N{U+0129}i sai zah l\N{U+01dd}n gwa ma kee",
      "Tai f\N{U+0129}i sai zah l\N{U+01dd}n sai ma kee",
      "Tai f\N{U+0129}i sai ma coo kee zah \N{U+2018}na"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ mua-CM ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "mua-CM",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Cla",
      "Czi",
      "Cko",
      "Cka",
      "Cga",
      "Cze",
      "Cya"
    ],
    day_format_narrow => [
      "L",
      "Z",
      "O",
      "A",
      "G",
      "E",
      "Y"
    ],
    day_format_wide => [
      "Comlaa\N{U+0257}ii",
      "Comzyii\N{U+0257}ii",
      "Comkolle",
      "Comkald\N{U+01dd}\N{U+0253}lii",
      "Comgaisuu",
      "Comzye\N{U+0253}suu",
      "Com\N{U+2019}yakke"
    ],
    day_stand_alone_abbreviated => [
      "Cla",
      "Czi",
      "Cko",
      "Cka",
      "Cga",
      "Cze",
      "Cya"
    ],
    day_stand_alone_narrow => [
      "L",
      "Z",
      "O",
      "A",
      "G",
      "E",
      "Y"
    ],
    day_stand_alone_wide => [
      "Comlaa\N{U+0257}ii",
      "Comzyii\N{U+0257}ii",
      "Comkolle",
      "Comkald\N{U+01dd}\N{U+0253}lii",
      "Comgaisuu",
      "Comzye\N{U+0253}suu",
      "Com\N{U+2019}yakke"
    ],
    era_abbreviated => [
      "KK",
      "PK"
    ],
    era_narrow => [
      "KK",
      "PK"
    ],
    era_wide => [
      "K\N{U+01dd}Pel Kristu",
      "Pel Kristu"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Mundang",
    month_format_abbreviated => [
      "FLO",
      "CLA",
      "CKI",
      "FMF",
      "MAD",
      "MBI",
      "MLI",
      "MAM",
      "FDE",
      "FMU",
      "FGW",
      "FYU"
    ],
    month_format_narrow => [
      "O",
      "A",
      "I",
      "F",
      "D",
      "B",
      "L",
      "M",
      "E",
      "U",
      "W",
      "Y"
    ],
    month_format_wide => [
      "F\N{U+0129}i Loo",
      "Cokcwakla\N{U+014b}ne",
      "Cokcwaklii",
      "F\N{U+0129}i Marfoo",
      "Mad\N{U+01dd}\N{U+01dd}uut\N{U+01dd}bija\N{U+014b}",
      "Mam\N{U+01dd}\N{U+014b}gw\N{U+00e3}afahbii",
      "Mam\N{U+01dd}\N{U+014b}gw\N{U+00e3}alii",
      "Mad\N{U+01dd}mbii",
      "F\N{U+0129}i D\N{U+01dd}\N{U+0253}lii",
      "F\N{U+0129}i Munda\N{U+014b}",
      "F\N{U+0129}i Gwahlle",
      "F\N{U+0129}i Yuru"
    ],
    month_stand_alone_abbreviated => [
      "FLO",
      "CLA",
      "CKI",
      "FMF",
      "MAD",
      "MBI",
      "MLI",
      "MAM",
      "FDE",
      "FMU",
      "FGW",
      "FYU"
    ],
    month_stand_alone_narrow => [
      "O",
      "A",
      "I",
      "F",
      "D",
      "B",
      "L",
      "M",
      "E",
      "U",
      "W",
      "Y"
    ],
    month_stand_alone_wide => [
      "F\N{U+0129}i Loo",
      "Cokcwakla\N{U+014b}ne",
      "Cokcwaklii",
      "F\N{U+0129}i Marfoo",
      "Mad\N{U+01dd}\N{U+01dd}uut\N{U+01dd}bija\N{U+014b}",
      "Mam\N{U+01dd}\N{U+014b}gw\N{U+00e3}afahbii",
      "Mam\N{U+01dd}\N{U+014b}gw\N{U+00e3}alii",
      "Mad\N{U+01dd}mbii",
      "F\N{U+0129}i D\N{U+01dd}\N{U+0253}lii",
      "F\N{U+0129}i Munda\N{U+014b}",
      "F\N{U+0129}i Gwahlle",
      "F\N{U+0129}i Yuru"
    ],
    name => "Mundang Cameroon",
    native_language => "MUNDA\N{U+014a}",
    native_name => "MUNDA\N{U+014a} kameru\N{U+014b}",
    native_script => undef,
    native_territory => "kameru\N{U+014b}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "F1",
      "F2",
      "F3",
      "F4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Tai f\N{U+0129}i sai ma t\N{U+01dd}n kee zah",
      "Tai f\N{U+0129}i sai zah l\N{U+01dd}n gwa ma kee",
      "Tai f\N{U+0129}i sai zah l\N{U+01dd}n sai ma kee",
      "Tai f\N{U+0129}i sai ma coo kee zah \N{U+2018}na"
    ],
    quarter_stand_alone_abbreviated => [
      "F1",
      "F2",
      "F3",
      "F4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Tai f\N{U+0129}i sai ma t\N{U+01dd}n kee zah",
      "Tai f\N{U+0129}i sai zah l\N{U+01dd}n gwa ma kee",
      "Tai f\N{U+0129}i sai zah l\N{U+01dd}n sai ma kee",
      "Tai f\N{U+0129}i sai ma coo kee zah \N{U+2018}na"
    ],
    script => undef,
    territory => "Cameroon",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ my ]__
  {
    am_pm_abbreviated => [
      "\N{U+1014}\N{U+1036}\N{U+1014}\N{U+1000}\N{U+103a}",
      "\N{U+100a}\N{U+1014}\N{U+1031}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E\N{U+104a} d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G MMM y",
      GyMMMEd => "E\N{U+104a} G d MMM y",
      GyMMMd => "G d MMM y",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+104a} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+104a} d MMM",
      MMMMEd => "E\N{U+104a} d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E\N{U+104a} d-M-y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+104a} d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd-MM-y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "my",
    date_format_full => "EEEE\N{U+104a} dd MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd-MM-yy",
    datetime_format_full => "{1}\N{U+1019}\N{U+103e}\N{U+102c} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+1010}\N{U+1014}\N{U+1004}\N{U+103a}\N{U+1039}\N{U+101c}\N{U+102c}",
      "\N{U+1021}\N{U+1004}\N{U+103a}\N{U+1039}\N{U+1002}\N{U+102b}",
      "\N{U+1017}\N{U+102f}\N{U+1012}\N{U+1039}\N{U+1013}\N{U+101f}\N{U+1030}\N{U+1038}",
      "\N{U+1000}\N{U+103c}\N{U+102c}\N{U+101e}\N{U+1015}\N{U+1010}\N{U+1031}\N{U+1038}",
      "\N{U+101e}\N{U+1031}\N{U+102c}\N{U+1000}\N{U+103c}\N{U+102c}",
      "\N{U+1005}\N{U+1014}\N{U+1031}",
      "\N{U+1010}\N{U+1014}\N{U+1004}\N{U+103a}\N{U+1039}\N{U+1002}\N{U+1014}\N{U+103d}\N{U+1031}"
    ],
    day_format_narrow => [
      "\N{U+1010}",
      "\N{U+1021}",
      "\N{U+1017}",
      "\N{U+1000}",
      "\N{U+101e}",
      "\N{U+1005}",
      "\N{U+1010}"
    ],
    day_format_wide => [
      "\N{U+1010}\N{U+1014}\N{U+1004}\N{U+103a}\N{U+1039}\N{U+101c}\N{U+102c}",
      "\N{U+1021}\N{U+1004}\N{U+103a}\N{U+1039}\N{U+1002}\N{U+102b}",
      "\N{U+1017}\N{U+102f}\N{U+1012}\N{U+1039}\N{U+1013}\N{U+101f}\N{U+1030}\N{U+1038}",
      "\N{U+1000}\N{U+103c}\N{U+102c}\N{U+101e}\N{U+1015}\N{U+1010}\N{U+1031}\N{U+1038}",
      "\N{U+101e}\N{U+1031}\N{U+102c}\N{U+1000}\N{U+103c}\N{U+102c}",
      "\N{U+1005}\N{U+1014}\N{U+1031}",
      "\N{U+1010}\N{U+1014}\N{U+1004}\N{U+103a}\N{U+1039}\N{U+1002}\N{U+1014}\N{U+103d}\N{U+1031}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+1010}\N{U+1014}\N{U+1004}\N{U+103a}\N{U+1039}\N{U+101c}\N{U+102c}",
      "\N{U+1021}\N{U+1004}\N{U+103a}\N{U+1039}\N{U+1002}\N{U+102b}",
      "\N{U+1017}\N{U+102f}\N{U+1012}\N{U+1039}\N{U+1013}\N{U+101f}\N{U+1030}\N{U+1038}",
      "\N{U+1000}\N{U+103c}\N{U+102c}\N{U+101e}\N{U+1015}\N{U+1010}\N{U+1031}\N{U+1038}",
      "\N{U+101e}\N{U+1031}\N{U+102c}\N{U+1000}\N{U+103c}\N{U+102c}",
      "\N{U+1005}\N{U+1014}\N{U+1031}",
      "\N{U+1010}\N{U+1014}\N{U+1004}\N{U+103a}\N{U+1039}\N{U+1002}\N{U+1014}\N{U+103d}\N{U+1031}"
    ],
    day_stand_alone_narrow => [
      "\N{U+1010}",
      "\N{U+1021}",
      "\N{U+1017}",
      "\N{U+1000}",
      "\N{U+101e}",
      "\N{U+1005}",
      "\N{U+1010}"
    ],
    day_stand_alone_wide => [
      "\N{U+1010}\N{U+1014}\N{U+1004}\N{U+103a}\N{U+1039}\N{U+101c}\N{U+102c}",
      "\N{U+1021}\N{U+1004}\N{U+103a}\N{U+1039}\N{U+1002}\N{U+102b}",
      "\N{U+1017}\N{U+102f}\N{U+1012}\N{U+1039}\N{U+1013}\N{U+101f}\N{U+1030}\N{U+1038}",
      "\N{U+1000}\N{U+103c}\N{U+102c}\N{U+101e}\N{U+1015}\N{U+1010}\N{U+1031}\N{U+1038}",
      "\N{U+101e}\N{U+1031}\N{U+102c}\N{U+1000}\N{U+103c}\N{U+102c}",
      "\N{U+1005}\N{U+1014}\N{U+1031}",
      "\N{U+1010}\N{U+1014}\N{U+1004}\N{U+103a}\N{U+1039}\N{U+1002}\N{U+1014}\N{U+103d}\N{U+1031}"
    ],
    era_abbreviated => [
      "\N{U+1018}\N{U+102e}\N{U+1005}\N{U+102e}",
      "\N{U+1021}\N{U+1031}\N{U+1012}\N{U+102e}"
    ],
    era_narrow => [
      "\N{U+1018}\N{U+102e}\N{U+1005}\N{U+102e}",
      "\N{U+1021}\N{U+1031}\N{U+1012}\N{U+102e}"
    ],
    era_wide => [
      "\N{U+1001}\N{U+101b}\N{U+1005}\N{U+103a}\N{U+1010}\N{U+1031}\N{U+102c}\N{U+103a} \N{U+1019}\N{U+1015}\N{U+1031}\N{U+102b}\N{U+103a}\N{U+1019}\N{U+102e}\N{U+1000}\N{U+102c}\N{U+101c}",
      "\N{U+1001}\N{U+101b}\N{U+1005}\N{U+103a}\N{U+1010}\N{U+1031}\N{U+102c}\N{U+103a} \N{U+1015}\N{U+1031}\N{U+102b}\N{U+103a}\N{U+1011}\N{U+103d}\N{U+1014}\N{U+103a}\N{U+1038}\N{U+1015}\N{U+103c}\N{U+102e}\N{U+1038}\N{U+1000}\N{U+102c}\N{U+101c}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Burmese",
    month_format_abbreviated => [
      "\N{U+1007}\N{U+1014}\N{U+103a}",
      "\N{U+1016}\N{U+1031}",
      "\N{U+1019}\N{U+1010}\N{U+103a}",
      "\N{U+1027}\N{U+1015}\N{U+103c}\N{U+102e}",
      "\N{U+1019}\N{U+1031}",
      "\N{U+1007}\N{U+103d}\N{U+1014}\N{U+103a}",
      "\N{U+1007}\N{U+1030}",
      "\N{U+1029}",
      "\N{U+1005}\N{U+1000}\N{U+103a}",
      "\N{U+1021}\N{U+1031}\N{U+102c}\N{U+1000}\N{U+103a}",
      "\N{U+1014}\N{U+102d}\N{U+102f}",
      "\N{U+1012}\N{U+102e}"
    ],
    month_format_narrow => [
      "\N{U+1007}",
      "\N{U+1016}",
      "\N{U+1019}",
      "\N{U+1027}",
      "\N{U+1019}",
      "\N{U+1007}",
      "\N{U+1007}",
      "\N{U+1029}",
      "\N{U+1005}",
      "\N{U+1021}",
      "\N{U+1014}",
      "\N{U+1012}"
    ],
    month_format_wide => [
      "\N{U+1007}\N{U+1014}\N{U+103a}\N{U+1014}\N{U+101d}\N{U+102b}\N{U+101b}\N{U+102e}",
      "\N{U+1016}\N{U+1031}\N{U+1016}\N{U+1031}\N{U+102c}\N{U+103a}\N{U+101d}\N{U+102b}\N{U+101b}\N{U+102e}",
      "\N{U+1019}\N{U+1010}\N{U+103a}",
      "\N{U+1027}\N{U+1015}\N{U+103c}\N{U+102e}",
      "\N{U+1019}\N{U+1031}",
      "\N{U+1007}\N{U+103d}\N{U+1014}\N{U+103a}",
      "\N{U+1007}\N{U+1030}\N{U+101c}\N{U+102d}\N{U+102f}\N{U+1004}\N{U+103a}",
      "\N{U+1029}\N{U+1002}\N{U+102f}\N{U+1010}\N{U+103a}",
      "\N{U+1005}\N{U+1000}\N{U+103a}\N{U+1010}\N{U+1004}\N{U+103a}\N{U+1018}\N{U+102c}",
      "\N{U+1021}\N{U+1031}\N{U+102c}\N{U+1000}\N{U+103a}\N{U+1010}\N{U+102d}\N{U+102f}\N{U+1018}\N{U+102c}",
      "\N{U+1014}\N{U+102d}\N{U+102f}\N{U+101d}\N{U+1004}\N{U+103a}\N{U+1018}\N{U+102c}",
      "\N{U+1012}\N{U+102e}\N{U+1007}\N{U+1004}\N{U+103a}\N{U+1018}\N{U+102c}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+1007}\N{U+1014}\N{U+103a}",
      "\N{U+1016}\N{U+1031}",
      "\N{U+1019}\N{U+1010}\N{U+103a}",
      "\N{U+1027}\N{U+1015}\N{U+103c}\N{U+102e}",
      "\N{U+1019}\N{U+1031}",
      "\N{U+1007}\N{U+103d}\N{U+1014}\N{U+103a}",
      "\N{U+1007}\N{U+1030}",
      "\N{U+1029}",
      "\N{U+1005}\N{U+1000}\N{U+103a}",
      "\N{U+1021}\N{U+1031}\N{U+102c}\N{U+1000}\N{U+103a}",
      "\N{U+1014}\N{U+102d}\N{U+102f}",
      "\N{U+1012}\N{U+102e}"
    ],
    month_stand_alone_narrow => [
      "\N{U+1007}",
      "\N{U+1016}",
      "\N{U+1019}",
      "\N{U+1027}",
      "\N{U+1019}",
      "\N{U+1007}",
      "\N{U+1007}",
      "\N{U+1029}",
      "\N{U+1005}",
      "\N{U+1021}",
      "\N{U+1014}",
      "\N{U+1012}"
    ],
    month_stand_alone_wide => [
      "\N{U+1007}\N{U+1014}\N{U+103a}\N{U+1014}\N{U+101d}\N{U+102b}\N{U+101b}\N{U+102e}",
      "\N{U+1016}\N{U+1031}\N{U+1016}\N{U+1031}\N{U+102c}\N{U+103a}\N{U+101d}\N{U+102b}\N{U+101b}\N{U+102e}",
      "\N{U+1019}\N{U+1010}\N{U+103a}",
      "\N{U+1027}\N{U+1015}\N{U+103c}\N{U+102e}",
      "\N{U+1019}\N{U+1031}",
      "\N{U+1007}\N{U+103d}\N{U+1014}\N{U+103a}",
      "\N{U+1007}\N{U+1030}\N{U+101c}\N{U+102d}\N{U+102f}\N{U+1004}\N{U+103a}",
      "\N{U+1029}\N{U+1002}\N{U+102f}\N{U+1010}\N{U+103a}",
      "\N{U+1005}\N{U+1000}\N{U+103a}\N{U+1010}\N{U+1004}\N{U+103a}\N{U+1018}\N{U+102c}",
      "\N{U+1021}\N{U+1031}\N{U+102c}\N{U+1000}\N{U+103a}\N{U+1010}\N{U+102d}\N{U+102f}\N{U+1018}\N{U+102c}",
      "\N{U+1014}\N{U+102d}\N{U+102f}\N{U+101d}\N{U+1004}\N{U+103a}\N{U+1018}\N{U+102c}",
      "\N{U+1012}\N{U+102e}\N{U+1007}\N{U+1004}\N{U+103a}\N{U+1018}\N{U+102c}"
    ],
    name => "Burmese",
    native_language => "\N{U+1017}\N{U+1019}\N{U+102c}",
    native_name => "\N{U+1017}\N{U+1019}\N{U+102c}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+1015}\N{U+1011}\N{U+1019} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}",
      "\N{U+1012}\N{U+102f}\N{U+1010}\N{U+102d}\N{U+101a} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}",
      "\N{U+1010}\N{U+1010}\N{U+102d}\N{U+101a} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}",
      "\N{U+1005}\N{U+1010}\N{U+102f}\N{U+1010}\N{U+1039}\N{U+1011} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}"
    ],
    quarter_format_narrow => [
      "\N{U+1015}",
      "\N{U+1012}\N{U+102f}",
      "\N{U+1010}",
      "\N{U+1005}"
    ],
    quarter_format_wide => [
      "\N{U+1015}\N{U+1011}\N{U+1019} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}",
      "\N{U+1012}\N{U+102f}\N{U+1010}\N{U+102d}\N{U+101a} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}",
      "\N{U+1010}\N{U+1010}\N{U+102d}\N{U+101a} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}",
      "\N{U+1005}\N{U+1010}\N{U+102f}\N{U+1010}\N{U+1039}\N{U+1011} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+1015}\N{U+1011}\N{U+1019} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}",
      "\N{U+1012}\N{U+102f}\N{U+1010}\N{U+102d}\N{U+101a} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}",
      "\N{U+1010}\N{U+1010}\N{U+102d}\N{U+101a} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}",
      "\N{U+1005}\N{U+1010}\N{U+102f}\N{U+1010}\N{U+1039}\N{U+1011} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+1015}",
      "\N{U+1012}\N{U+102f}",
      "\N{U+1010}",
      "\N{U+1005}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+1015}\N{U+1011}\N{U+1019} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}",
      "\N{U+1012}\N{U+102f}\N{U+1010}\N{U+102d}\N{U+101a} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}",
      "\N{U+1010}\N{U+1010}\N{U+102d}\N{U+101a} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}",
      "\N{U+1005}\N{U+1010}\N{U+102f}\N{U+1010}\N{U+1039}\N{U+1011} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ my-MM ]__
  {
    am_pm_abbreviated => [
      "\N{U+1014}\N{U+1036}\N{U+1014}\N{U+1000}\N{U+103a}",
      "\N{U+100a}\N{U+1014}\N{U+1031}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E\N{U+104a} d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G MMM y",
      GyMMMEd => "E\N{U+104a} G d MMM y",
      GyMMMd => "G d MMM y",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+104a} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+104a} d MMM",
      MMMMEd => "E\N{U+104a} d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E\N{U+104a} d-M-y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+104a} d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd-MM-y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "my-MM",
    date_format_full => "EEEE\N{U+104a} dd MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd-MM-yy",
    datetime_format_full => "{1}\N{U+1019}\N{U+103e}\N{U+102c} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+1010}\N{U+1014}\N{U+1004}\N{U+103a}\N{U+1039}\N{U+101c}\N{U+102c}",
      "\N{U+1021}\N{U+1004}\N{U+103a}\N{U+1039}\N{U+1002}\N{U+102b}",
      "\N{U+1017}\N{U+102f}\N{U+1012}\N{U+1039}\N{U+1013}\N{U+101f}\N{U+1030}\N{U+1038}",
      "\N{U+1000}\N{U+103c}\N{U+102c}\N{U+101e}\N{U+1015}\N{U+1010}\N{U+1031}\N{U+1038}",
      "\N{U+101e}\N{U+1031}\N{U+102c}\N{U+1000}\N{U+103c}\N{U+102c}",
      "\N{U+1005}\N{U+1014}\N{U+1031}",
      "\N{U+1010}\N{U+1014}\N{U+1004}\N{U+103a}\N{U+1039}\N{U+1002}\N{U+1014}\N{U+103d}\N{U+1031}"
    ],
    day_format_narrow => [
      "\N{U+1010}",
      "\N{U+1021}",
      "\N{U+1017}",
      "\N{U+1000}",
      "\N{U+101e}",
      "\N{U+1005}",
      "\N{U+1010}"
    ],
    day_format_wide => [
      "\N{U+1010}\N{U+1014}\N{U+1004}\N{U+103a}\N{U+1039}\N{U+101c}\N{U+102c}",
      "\N{U+1021}\N{U+1004}\N{U+103a}\N{U+1039}\N{U+1002}\N{U+102b}",
      "\N{U+1017}\N{U+102f}\N{U+1012}\N{U+1039}\N{U+1013}\N{U+101f}\N{U+1030}\N{U+1038}",
      "\N{U+1000}\N{U+103c}\N{U+102c}\N{U+101e}\N{U+1015}\N{U+1010}\N{U+1031}\N{U+1038}",
      "\N{U+101e}\N{U+1031}\N{U+102c}\N{U+1000}\N{U+103c}\N{U+102c}",
      "\N{U+1005}\N{U+1014}\N{U+1031}",
      "\N{U+1010}\N{U+1014}\N{U+1004}\N{U+103a}\N{U+1039}\N{U+1002}\N{U+1014}\N{U+103d}\N{U+1031}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+1010}\N{U+1014}\N{U+1004}\N{U+103a}\N{U+1039}\N{U+101c}\N{U+102c}",
      "\N{U+1021}\N{U+1004}\N{U+103a}\N{U+1039}\N{U+1002}\N{U+102b}",
      "\N{U+1017}\N{U+102f}\N{U+1012}\N{U+1039}\N{U+1013}\N{U+101f}\N{U+1030}\N{U+1038}",
      "\N{U+1000}\N{U+103c}\N{U+102c}\N{U+101e}\N{U+1015}\N{U+1010}\N{U+1031}\N{U+1038}",
      "\N{U+101e}\N{U+1031}\N{U+102c}\N{U+1000}\N{U+103c}\N{U+102c}",
      "\N{U+1005}\N{U+1014}\N{U+1031}",
      "\N{U+1010}\N{U+1014}\N{U+1004}\N{U+103a}\N{U+1039}\N{U+1002}\N{U+1014}\N{U+103d}\N{U+1031}"
    ],
    day_stand_alone_narrow => [
      "\N{U+1010}",
      "\N{U+1021}",
      "\N{U+1017}",
      "\N{U+1000}",
      "\N{U+101e}",
      "\N{U+1005}",
      "\N{U+1010}"
    ],
    day_stand_alone_wide => [
      "\N{U+1010}\N{U+1014}\N{U+1004}\N{U+103a}\N{U+1039}\N{U+101c}\N{U+102c}",
      "\N{U+1021}\N{U+1004}\N{U+103a}\N{U+1039}\N{U+1002}\N{U+102b}",
      "\N{U+1017}\N{U+102f}\N{U+1012}\N{U+1039}\N{U+1013}\N{U+101f}\N{U+1030}\N{U+1038}",
      "\N{U+1000}\N{U+103c}\N{U+102c}\N{U+101e}\N{U+1015}\N{U+1010}\N{U+1031}\N{U+1038}",
      "\N{U+101e}\N{U+1031}\N{U+102c}\N{U+1000}\N{U+103c}\N{U+102c}",
      "\N{U+1005}\N{U+1014}\N{U+1031}",
      "\N{U+1010}\N{U+1014}\N{U+1004}\N{U+103a}\N{U+1039}\N{U+1002}\N{U+1014}\N{U+103d}\N{U+1031}"
    ],
    era_abbreviated => [
      "\N{U+1018}\N{U+102e}\N{U+1005}\N{U+102e}",
      "\N{U+1021}\N{U+1031}\N{U+1012}\N{U+102e}"
    ],
    era_narrow => [
      "\N{U+1018}\N{U+102e}\N{U+1005}\N{U+102e}",
      "\N{U+1021}\N{U+1031}\N{U+1012}\N{U+102e}"
    ],
    era_wide => [
      "\N{U+1001}\N{U+101b}\N{U+1005}\N{U+103a}\N{U+1010}\N{U+1031}\N{U+102c}\N{U+103a} \N{U+1019}\N{U+1015}\N{U+1031}\N{U+102b}\N{U+103a}\N{U+1019}\N{U+102e}\N{U+1000}\N{U+102c}\N{U+101c}",
      "\N{U+1001}\N{U+101b}\N{U+1005}\N{U+103a}\N{U+1010}\N{U+1031}\N{U+102c}\N{U+103a} \N{U+1015}\N{U+1031}\N{U+102b}\N{U+103a}\N{U+1011}\N{U+103d}\N{U+1014}\N{U+103a}\N{U+1038}\N{U+1015}\N{U+103c}\N{U+102e}\N{U+1038}\N{U+1000}\N{U+102c}\N{U+101c}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%OC%Oy %b %Od %A",
    glibc_datetime_format => "%OC%Oy %b %Od %A %OI:%OM:%OS %Op %Z",
    glibc_time_12_format => "%OI:%OM:%OS %p",
    glibc_time_format => "%OI:%OM:%OS %p",
    language => "Burmese",
    month_format_abbreviated => [
      "\N{U+1007}\N{U+1014}\N{U+103a}",
      "\N{U+1016}\N{U+1031}",
      "\N{U+1019}\N{U+1010}\N{U+103a}",
      "\N{U+1027}\N{U+1015}\N{U+103c}\N{U+102e}",
      "\N{U+1019}\N{U+1031}",
      "\N{U+1007}\N{U+103d}\N{U+1014}\N{U+103a}",
      "\N{U+1007}\N{U+1030}",
      "\N{U+1029}",
      "\N{U+1005}\N{U+1000}\N{U+103a}",
      "\N{U+1021}\N{U+1031}\N{U+102c}\N{U+1000}\N{U+103a}",
      "\N{U+1014}\N{U+102d}\N{U+102f}",
      "\N{U+1012}\N{U+102e}"
    ],
    month_format_narrow => [
      "\N{U+1007}",
      "\N{U+1016}",
      "\N{U+1019}",
      "\N{U+1027}",
      "\N{U+1019}",
      "\N{U+1007}",
      "\N{U+1007}",
      "\N{U+1029}",
      "\N{U+1005}",
      "\N{U+1021}",
      "\N{U+1014}",
      "\N{U+1012}"
    ],
    month_format_wide => [
      "\N{U+1007}\N{U+1014}\N{U+103a}\N{U+1014}\N{U+101d}\N{U+102b}\N{U+101b}\N{U+102e}",
      "\N{U+1016}\N{U+1031}\N{U+1016}\N{U+1031}\N{U+102c}\N{U+103a}\N{U+101d}\N{U+102b}\N{U+101b}\N{U+102e}",
      "\N{U+1019}\N{U+1010}\N{U+103a}",
      "\N{U+1027}\N{U+1015}\N{U+103c}\N{U+102e}",
      "\N{U+1019}\N{U+1031}",
      "\N{U+1007}\N{U+103d}\N{U+1014}\N{U+103a}",
      "\N{U+1007}\N{U+1030}\N{U+101c}\N{U+102d}\N{U+102f}\N{U+1004}\N{U+103a}",
      "\N{U+1029}\N{U+1002}\N{U+102f}\N{U+1010}\N{U+103a}",
      "\N{U+1005}\N{U+1000}\N{U+103a}\N{U+1010}\N{U+1004}\N{U+103a}\N{U+1018}\N{U+102c}",
      "\N{U+1021}\N{U+1031}\N{U+102c}\N{U+1000}\N{U+103a}\N{U+1010}\N{U+102d}\N{U+102f}\N{U+1018}\N{U+102c}",
      "\N{U+1014}\N{U+102d}\N{U+102f}\N{U+101d}\N{U+1004}\N{U+103a}\N{U+1018}\N{U+102c}",
      "\N{U+1012}\N{U+102e}\N{U+1007}\N{U+1004}\N{U+103a}\N{U+1018}\N{U+102c}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+1007}\N{U+1014}\N{U+103a}",
      "\N{U+1016}\N{U+1031}",
      "\N{U+1019}\N{U+1010}\N{U+103a}",
      "\N{U+1027}\N{U+1015}\N{U+103c}\N{U+102e}",
      "\N{U+1019}\N{U+1031}",
      "\N{U+1007}\N{U+103d}\N{U+1014}\N{U+103a}",
      "\N{U+1007}\N{U+1030}",
      "\N{U+1029}",
      "\N{U+1005}\N{U+1000}\N{U+103a}",
      "\N{U+1021}\N{U+1031}\N{U+102c}\N{U+1000}\N{U+103a}",
      "\N{U+1014}\N{U+102d}\N{U+102f}",
      "\N{U+1012}\N{U+102e}"
    ],
    month_stand_alone_narrow => [
      "\N{U+1007}",
      "\N{U+1016}",
      "\N{U+1019}",
      "\N{U+1027}",
      "\N{U+1019}",
      "\N{U+1007}",
      "\N{U+1007}",
      "\N{U+1029}",
      "\N{U+1005}",
      "\N{U+1021}",
      "\N{U+1014}",
      "\N{U+1012}"
    ],
    month_stand_alone_wide => [
      "\N{U+1007}\N{U+1014}\N{U+103a}\N{U+1014}\N{U+101d}\N{U+102b}\N{U+101b}\N{U+102e}",
      "\N{U+1016}\N{U+1031}\N{U+1016}\N{U+1031}\N{U+102c}\N{U+103a}\N{U+101d}\N{U+102b}\N{U+101b}\N{U+102e}",
      "\N{U+1019}\N{U+1010}\N{U+103a}",
      "\N{U+1027}\N{U+1015}\N{U+103c}\N{U+102e}",
      "\N{U+1019}\N{U+1031}",
      "\N{U+1007}\N{U+103d}\N{U+1014}\N{U+103a}",
      "\N{U+1007}\N{U+1030}\N{U+101c}\N{U+102d}\N{U+102f}\N{U+1004}\N{U+103a}",
      "\N{U+1029}\N{U+1002}\N{U+102f}\N{U+1010}\N{U+103a}",
      "\N{U+1005}\N{U+1000}\N{U+103a}\N{U+1010}\N{U+1004}\N{U+103a}\N{U+1018}\N{U+102c}",
      "\N{U+1021}\N{U+1031}\N{U+102c}\N{U+1000}\N{U+103a}\N{U+1010}\N{U+102d}\N{U+102f}\N{U+1018}\N{U+102c}",
      "\N{U+1014}\N{U+102d}\N{U+102f}\N{U+101d}\N{U+1004}\N{U+103a}\N{U+1018}\N{U+102c}",
      "\N{U+1012}\N{U+102e}\N{U+1007}\N{U+1004}\N{U+103a}\N{U+1018}\N{U+102c}"
    ],
    name => "Burmese Myanmar (Burma)",
    native_language => "\N{U+1017}\N{U+1019}\N{U+102c}",
    native_name => "\N{U+1017}\N{U+1019}\N{U+102c} \N{U+1019}\N{U+103c}\N{U+1014}\N{U+103a}\N{U+1019}\N{U+102c}",
    native_script => undef,
    native_territory => "\N{U+1019}\N{U+103c}\N{U+1014}\N{U+103a}\N{U+1019}\N{U+102c}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+1015}\N{U+1011}\N{U+1019} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}",
      "\N{U+1012}\N{U+102f}\N{U+1010}\N{U+102d}\N{U+101a} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}",
      "\N{U+1010}\N{U+1010}\N{U+102d}\N{U+101a} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}",
      "\N{U+1005}\N{U+1010}\N{U+102f}\N{U+1010}\N{U+1039}\N{U+1011} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}"
    ],
    quarter_format_narrow => [
      "\N{U+1015}",
      "\N{U+1012}\N{U+102f}",
      "\N{U+1010}",
      "\N{U+1005}"
    ],
    quarter_format_wide => [
      "\N{U+1015}\N{U+1011}\N{U+1019} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}",
      "\N{U+1012}\N{U+102f}\N{U+1010}\N{U+102d}\N{U+101a} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}",
      "\N{U+1010}\N{U+1010}\N{U+102d}\N{U+101a} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}",
      "\N{U+1005}\N{U+1010}\N{U+102f}\N{U+1010}\N{U+1039}\N{U+1011} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+1015}\N{U+1011}\N{U+1019} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}",
      "\N{U+1012}\N{U+102f}\N{U+1010}\N{U+102d}\N{U+101a} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}",
      "\N{U+1010}\N{U+1010}\N{U+102d}\N{U+101a} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}",
      "\N{U+1005}\N{U+1010}\N{U+102f}\N{U+1010}\N{U+1039}\N{U+1011} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+1015}",
      "\N{U+1012}\N{U+102f}",
      "\N{U+1010}",
      "\N{U+1005}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+1015}\N{U+1011}\N{U+1019} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}",
      "\N{U+1012}\N{U+102f}\N{U+1010}\N{U+102d}\N{U+101a} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}",
      "\N{U+1010}\N{U+1010}\N{U+102d}\N{U+101a} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}",
      "\N{U+1005}\N{U+1010}\N{U+102f}\N{U+1010}\N{U+1039}\N{U+1011} \N{U+101e}\N{U+102f}\N{U+1036}\N{U+1038}\N{U+101c}\N{U+1015}\N{U+1010}\N{U+103a}"
    ],
    script => undef,
    territory => "Myanmar (Burma)",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ mzn ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "mzn",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    era_abbreviated => [
      "\N{U+067e}.\N{U+0645}",
      "\N{U+0645}."
    ],
    era_narrow => [
      "\N{U+067e}.\N{U+0645}",
      "\N{U+0645}."
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0645}\N{U+06cc}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0628}\N{U+0639}\N{U+062f} \N{U+0645}\N{U+06cc}\N{U+0644}\N{U+0627}\N{U+062f}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Mazanderani",
    month_format_abbreviated => [
      "\N{U+0698}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+06cc}\N{U+0647}",
      "\N{U+0641}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0647}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0647}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+0646}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+06cc}\N{U+0647}",
      "\N{U+0627}\N{U+0648}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+0698}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+06cc}\N{U+0647}",
      "\N{U+0641}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0647}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0647}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+0646}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+06cc}\N{U+0647}",
      "\N{U+0627}\N{U+0648}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0698}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+06cc}\N{U+0647}",
      "\N{U+0641}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0647}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0647}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+0646}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+06cc}\N{U+0647}",
      "\N{U+0627}\N{U+0648}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+0698}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+06cc}\N{U+0647}",
      "\N{U+0641}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0647}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0647}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+0646}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+06cc}\N{U+0647}",
      "\N{U+0627}\N{U+0648}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Mazanderani",
    native_language => "\N{U+0645}\N{U+0627}\N{U+0632}\N{U+0631}\N{U+0648}\N{U+0646}\N{U+06cc}",
    native_name => "\N{U+0645}\N{U+0627}\N{U+0632}\N{U+0631}\N{U+0648}\N{U+0646}\N{U+06cc}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ mzn-IR ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "mzn-IR",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    era_abbreviated => [
      "\N{U+067e}.\N{U+0645}",
      "\N{U+0645}."
    ],
    era_narrow => [
      "\N{U+067e}.\N{U+0645}",
      "\N{U+0645}."
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0645}\N{U+06cc}\N{U+0644}\N{U+0627}\N{U+062f}",
      "\N{U+0628}\N{U+0639}\N{U+062f} \N{U+0645}\N{U+06cc}\N{U+0644}\N{U+0627}\N{U+062f}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Mazanderani",
    month_format_abbreviated => [
      "\N{U+0698}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+06cc}\N{U+0647}",
      "\N{U+0641}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0647}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0647}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+0646}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+06cc}\N{U+0647}",
      "\N{U+0627}\N{U+0648}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+0698}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+06cc}\N{U+0647}",
      "\N{U+0641}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0647}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0647}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+0646}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+06cc}\N{U+0647}",
      "\N{U+0627}\N{U+0648}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0698}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+06cc}\N{U+0647}",
      "\N{U+0641}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0647}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0647}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+0646}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+06cc}\N{U+0647}",
      "\N{U+0627}\N{U+0648}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+0698}\N{U+0627}\N{U+0646}\N{U+0648}\N{U+06cc}\N{U+0647}",
      "\N{U+0641}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0647}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0633}",
      "\N{U+0622}\N{U+0648}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0647}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+0646}",
      "\N{U+0698}\N{U+0648}\N{U+0626}\N{U+06cc}\N{U+0647}",
      "\N{U+0627}\N{U+0648}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0627}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Mazanderani Iran",
    native_language => "\N{U+0645}\N{U+0627}\N{U+0632}\N{U+0631}\N{U+0648}\N{U+0646}\N{U+06cc}",
    native_name => "\N{U+0645}\N{U+0627}\N{U+0632}\N{U+0631}\N{U+0648}\N{U+0646}\N{U+06cc} \N{U+0627}\N{U+06cc}\N{U+0631}\N{U+0627}\N{U+0646}",
    native_script => undef,
    native_territory => "\N{U+0627}\N{U+06cc}\N{U+0631}\N{U+0627}\N{U+0646}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "Iran",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ naq ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "naq",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Ma",
      "De",
      "Wu",
      "Do",
      "Fr",
      "Sat",
      "Son"
    ],
    day_format_narrow => [
      "M",
      "E",
      "W",
      "D",
      "F",
      "A",
      "S"
    ],
    day_format_wide => [
      "Mantaxtsees",
      "Denstaxtsees",
      "Wunstaxtsees",
      "Dondertaxtsees",
      "Fraitaxtsees",
      "Satertaxtsees",
      "Sontaxtsees"
    ],
    day_stand_alone_abbreviated => [
      "Ma",
      "De",
      "Wu",
      "Do",
      "Fr",
      "Sat",
      "Son"
    ],
    day_stand_alone_narrow => [
      "M",
      "E",
      "W",
      "D",
      "F",
      "A",
      "S"
    ],
    day_stand_alone_wide => [
      "Mantaxtsees",
      "Denstaxtsees",
      "Wunstaxtsees",
      "Dondertaxtsees",
      "Fraitaxtsees",
      "Satertaxtsees",
      "Sontaxtsees"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "Xristub ai\N{U+01c3}\N{U+00e2}",
      "Xristub khao\N{U+01c3}g\N{U+00e2}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Nama",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "\N{U+01c3}Khanni",
      "\N{U+01c3}Khan\N{U+01c0}g\N{U+00f4}ab",
      "\N{U+01c0}Khuu\N{U+01c1}kh\N{U+00e2}b",
      "\N{U+01c3}H\N{U+00f4}a\N{U+01c2}khaib",
      "\N{U+01c3}Khaits\N{U+00e2}b",
      "Gama\N{U+01c0}aeb",
      "\N{U+01c2}Khoesaob",
      "Ao\N{U+01c1}khuum\N{U+00fb}\N{U+01c1}kh\N{U+00e2}b",
      "Tara\N{U+01c0}khuum\N{U+00fb}\N{U+01c1}kh\N{U+00e2}b",
      "\N{U+01c2}N\N{U+00fb}\N{U+01c1}n\N{U+00e2}iseb",
      "\N{U+01c0}Hoo\N{U+01c2}gaeb",
      "H\N{U+00f4}asore\N{U+01c1}kh\N{U+00e2}b"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "\N{U+01c3}Khanni",
      "\N{U+01c3}Khan\N{U+01c0}g\N{U+00f4}ab",
      "\N{U+01c0}Khuu\N{U+01c1}kh\N{U+00e2}b",
      "\N{U+01c3}H\N{U+00f4}a\N{U+01c2}khaib",
      "\N{U+01c3}Khaits\N{U+00e2}b",
      "Gama\N{U+01c0}aeb",
      "\N{U+01c2}Khoesaob",
      "Ao\N{U+01c1}khuum\N{U+00fb}\N{U+01c1}kh\N{U+00e2}b",
      "Tara\N{U+01c0}khuum\N{U+00fb}\N{U+01c1}kh\N{U+00e2}b",
      "\N{U+01c2}N\N{U+00fb}\N{U+01c1}n\N{U+00e2}iseb",
      "\N{U+01c0}Hoo\N{U+01c2}gaeb",
      "H\N{U+00f4}asore\N{U+01c1}kh\N{U+00e2}b"
    ],
    name => "Nama",
    native_language => "Khoekhoegowab",
    native_name => "Khoekhoegowab",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "KW1",
      "KW2",
      "KW3",
      "KW4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1ro kwartals",
      "2\N{U+01c1}\N{U+00ee} kwartals",
      "3\N{U+01c1}\N{U+00ee} kwartals",
      "4\N{U+01c1}\N{U+00ee} kwartals"
    ],
    quarter_stand_alone_abbreviated => [
      "KW1",
      "KW2",
      "KW3",
      "KW4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1ro kwartals",
      "2\N{U+01c1}\N{U+00ee} kwartals",
      "3\N{U+01c1}\N{U+00ee} kwartals",
      "4\N{U+01c1}\N{U+00ee} kwartals"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ naq-NA ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "naq-NA",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Ma",
      "De",
      "Wu",
      "Do",
      "Fr",
      "Sat",
      "Son"
    ],
    day_format_narrow => [
      "M",
      "E",
      "W",
      "D",
      "F",
      "A",
      "S"
    ],
    day_format_wide => [
      "Mantaxtsees",
      "Denstaxtsees",
      "Wunstaxtsees",
      "Dondertaxtsees",
      "Fraitaxtsees",
      "Satertaxtsees",
      "Sontaxtsees"
    ],
    day_stand_alone_abbreviated => [
      "Ma",
      "De",
      "Wu",
      "Do",
      "Fr",
      "Sat",
      "Son"
    ],
    day_stand_alone_narrow => [
      "M",
      "E",
      "W",
      "D",
      "F",
      "A",
      "S"
    ],
    day_stand_alone_wide => [
      "Mantaxtsees",
      "Denstaxtsees",
      "Wunstaxtsees",
      "Dondertaxtsees",
      "Fraitaxtsees",
      "Satertaxtsees",
      "Sontaxtsees"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "Xristub ai\N{U+01c3}\N{U+00e2}",
      "Xristub khao\N{U+01c3}g\N{U+00e2}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Nama",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "\N{U+01c3}Khanni",
      "\N{U+01c3}Khan\N{U+01c0}g\N{U+00f4}ab",
      "\N{U+01c0}Khuu\N{U+01c1}kh\N{U+00e2}b",
      "\N{U+01c3}H\N{U+00f4}a\N{U+01c2}khaib",
      "\N{U+01c3}Khaits\N{U+00e2}b",
      "Gama\N{U+01c0}aeb",
      "\N{U+01c2}Khoesaob",
      "Ao\N{U+01c1}khuum\N{U+00fb}\N{U+01c1}kh\N{U+00e2}b",
      "Tara\N{U+01c0}khuum\N{U+00fb}\N{U+01c1}kh\N{U+00e2}b",
      "\N{U+01c2}N\N{U+00fb}\N{U+01c1}n\N{U+00e2}iseb",
      "\N{U+01c0}Hoo\N{U+01c2}gaeb",
      "H\N{U+00f4}asore\N{U+01c1}kh\N{U+00e2}b"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apr",
      "May",
      "Jun",
      "Jul",
      "Aug",
      "Sep",
      "Oct",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "\N{U+01c3}Khanni",
      "\N{U+01c3}Khan\N{U+01c0}g\N{U+00f4}ab",
      "\N{U+01c0}Khuu\N{U+01c1}kh\N{U+00e2}b",
      "\N{U+01c3}H\N{U+00f4}a\N{U+01c2}khaib",
      "\N{U+01c3}Khaits\N{U+00e2}b",
      "Gama\N{U+01c0}aeb",
      "\N{U+01c2}Khoesaob",
      "Ao\N{U+01c1}khuum\N{U+00fb}\N{U+01c1}kh\N{U+00e2}b",
      "Tara\N{U+01c0}khuum\N{U+00fb}\N{U+01c1}kh\N{U+00e2}b",
      "\N{U+01c2}N\N{U+00fb}\N{U+01c1}n\N{U+00e2}iseb",
      "\N{U+01c0}Hoo\N{U+01c2}gaeb",
      "H\N{U+00f4}asore\N{U+01c1}kh\N{U+00e2}b"
    ],
    name => "Nama Namibia",
    native_language => "Khoekhoegowab",
    native_name => "Khoekhoegowab Namibiab",
    native_script => undef,
    native_territory => "Namibiab",
    native_variant => undef,
    quarter_format_abbreviated => [
      "KW1",
      "KW2",
      "KW3",
      "KW4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1ro kwartals",
      "2\N{U+01c1}\N{U+00ee} kwartals",
      "3\N{U+01c1}\N{U+00ee} kwartals",
      "4\N{U+01c1}\N{U+00ee} kwartals"
    ],
    quarter_stand_alone_abbreviated => [
      "KW1",
      "KW2",
      "KW3",
      "KW4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1ro kwartals",
      "2\N{U+01c1}\N{U+00ee} kwartals",
      "3\N{U+01c1}\N{U+00ee} kwartals",
      "4\N{U+01c1}\N{U+00ee} kwartals"
    ],
    script => undef,
    territory => "Namibia",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ nb ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH.mm",
      EHms => "E HH.mm.ss",
      Ed => "E d.",
      Ehm => "E h.mm a",
      Ehms => "E h.mm.ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d. MMM y G",
      GyMMMd => "d. MMM y G",
      H => "HH",
      Hm => "HH.mm",
      Hms => "HH.mm.ss",
      Hmsv => "HH.mm.ss v",
      Hmv => "HH.mm v",
      M => "L.",
      MEd => "E d.M",
      MMM => "LLL",
      MMMEd => "E d. MMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMdd => "d.M.",
      Md => "d.M.",
      d => "d.",
      h => "h a",
      hm => "h.mm a",
      hms => "h.mm.ss a",
      hmsv => "h.mm.ss a v",
      hmv => "h.mm a v",
      ms => "mm.ss",
      y => "y",
      yM => "M.y",
      yMEd => "E d.MM.y",
      yMM => "MM.y",
      yMMM => "MMM y",
      yMMMEd => "E d. MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d. MMM y",
      yMd => "d.M.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "nb",
    date_format_full => "EEEE d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "d. MMM y",
    date_format_short => "dd.MM.y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} 'kl'. {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "man.",
      "tir.",
      "ons.",
      "tor.",
      "fre.",
      "l\N{U+00f8}r.",
      "s\N{U+00f8}n."
    ],
    day_format_narrow => [
      "M",
      "T",
      "O",
      "T",
      "F",
      "L",
      "S"
    ],
    day_format_wide => [
      "mandag",
      "tirsdag",
      "onsdag",
      "torsdag",
      "fredag",
      "l\N{U+00f8}rdag",
      "s\N{U+00f8}ndag"
    ],
    day_stand_alone_abbreviated => [
      "man.",
      "tir.",
      "ons.",
      "tor.",
      "fre.",
      "l\N{U+00f8}r.",
      "s\N{U+00f8}n."
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "O",
      "T",
      "F",
      "L",
      "S"
    ],
    day_stand_alone_wide => [
      "mandag",
      "tirsdag",
      "onsdag",
      "torsdag",
      "fredag",
      "l\N{U+00f8}rdag",
      "s\N{U+00f8}ndag"
    ],
    era_abbreviated => [
      "f.Kr.",
      "e.Kr."
    ],
    era_narrow => [
      "f.Kr.",
      "e.Kr."
    ],
    era_wide => [
      "f\N{U+00f8}r Kristus",
      "etter Kristus"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Norwegian Bokm\N{U+00e5}l",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "mar.",
      "apr.",
      "mai",
      "jun.",
      "jul.",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "des."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "januar",
      "februar",
      "mars",
      "april",
      "mai",
      "juni",
      "juli",
      "august",
      "september",
      "oktober",
      "november",
      "desember"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "mai",
      "jun",
      "jul",
      "aug",
      "sep",
      "okt",
      "nov",
      "des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "januar",
      "februar",
      "mars",
      "april",
      "mai",
      "juni",
      "juli",
      "august",
      "september",
      "oktober",
      "november",
      "desember"
    ],
    name => "Norwegian Bokm\N{U+00e5}l",
    native_language => "norsk bokm\N{U+00e5}l",
    native_name => "norsk bokm\N{U+00e5}l",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_format_wide => [
      "1. kvartal",
      "2. kvartal",
      "3. kvartal",
      "4. kvartal"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "1. kvartal",
      "2. kvartal",
      "3. kvartal",
      "4. kvartal"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH.mm.ss zzzz",
    time_format_long => "HH.mm.ss z",
    time_format_medium => "HH.mm.ss",
    time_format_short => "HH.mm",
    variant => undef,
    version => 28
  }
  __[ nb-NO ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH.mm",
      EHms => "E HH.mm.ss",
      Ed => "E d.",
      Ehm => "E h.mm a",
      Ehms => "E h.mm.ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d. MMM y G",
      GyMMMd => "d. MMM y G",
      H => "HH",
      Hm => "HH.mm",
      Hms => "HH.mm.ss",
      Hmsv => "HH.mm.ss v",
      Hmv => "HH.mm v",
      M => "L.",
      MEd => "E d.M",
      MMM => "LLL",
      MMMEd => "E d. MMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMdd => "d.M.",
      Md => "d.M.",
      d => "d.",
      h => "h a",
      hm => "h.mm a",
      hms => "h.mm.ss a",
      hmsv => "h.mm.ss a v",
      hmv => "h.mm a v",
      ms => "mm.ss",
      y => "y",
      yM => "M.y",
      yMEd => "E d.MM.y",
      yMM => "MM.y",
      yMMM => "MMM y",
      yMMMEd => "E d. MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d. MMM y",
      yMd => "d.M.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "nb-NO",
    date_format_full => "EEEE d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "d. MMM y",
    date_format_short => "dd.MM.y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} 'kl'. {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "man.",
      "tir.",
      "ons.",
      "tor.",
      "fre.",
      "l\N{U+00f8}r.",
      "s\N{U+00f8}n."
    ],
    day_format_narrow => [
      "M",
      "T",
      "O",
      "T",
      "F",
      "L",
      "S"
    ],
    day_format_wide => [
      "mandag",
      "tirsdag",
      "onsdag",
      "torsdag",
      "fredag",
      "l\N{U+00f8}rdag",
      "s\N{U+00f8}ndag"
    ],
    day_stand_alone_abbreviated => [
      "man.",
      "tir.",
      "ons.",
      "tor.",
      "fre.",
      "l\N{U+00f8}r.",
      "s\N{U+00f8}n."
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "O",
      "T",
      "F",
      "L",
      "S"
    ],
    day_stand_alone_wide => [
      "mandag",
      "tirsdag",
      "onsdag",
      "torsdag",
      "fredag",
      "l\N{U+00f8}rdag",
      "s\N{U+00f8}ndag"
    ],
    era_abbreviated => [
      "f.Kr.",
      "e.Kr."
    ],
    era_narrow => [
      "f.Kr.",
      "e.Kr."
    ],
    era_wide => [
      "f\N{U+00f8}r Kristus",
      "etter Kristus"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %d. %b %H:%M:%S %z %Y",
    glibc_date_format => "%d. %b %Y",
    glibc_datetime_format => "%a %d. %b %Y kl. %H.%M %z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "kl. %H.%M %z",
    language => "Norwegian Bokm\N{U+00e5}l",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "mar.",
      "apr.",
      "mai",
      "jun.",
      "jul.",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "des."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "januar",
      "februar",
      "mars",
      "april",
      "mai",
      "juni",
      "juli",
      "august",
      "september",
      "oktober",
      "november",
      "desember"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "mai",
      "jun",
      "jul",
      "aug",
      "sep",
      "okt",
      "nov",
      "des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "januar",
      "februar",
      "mars",
      "april",
      "mai",
      "juni",
      "juli",
      "august",
      "september",
      "oktober",
      "november",
      "desember"
    ],
    name => "Norwegian Bokm\N{U+00e5}l Norway",
    native_language => "norsk bokm\N{U+00e5}l",
    native_name => "norsk bokm\N{U+00e5}l Norge",
    native_script => undef,
    native_territory => "Norge",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_format_wide => [
      "1. kvartal",
      "2. kvartal",
      "3. kvartal",
      "4. kvartal"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "1. kvartal",
      "2. kvartal",
      "3. kvartal",
      "4. kvartal"
    ],
    script => undef,
    territory => "Norway",
    time_format_full => "HH.mm.ss zzzz",
    time_format_long => "HH.mm.ss z",
    time_format_medium => "HH.mm.ss",
    time_format_short => "HH.mm",
    variant => undef,
    version => 28
  }
  __[ nb-SJ ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH.mm",
      EHms => "E HH.mm.ss",
      Ed => "E d.",
      Ehm => "E h.mm a",
      Ehms => "E h.mm.ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d. MMM y G",
      GyMMMd => "d. MMM y G",
      H => "HH",
      Hm => "HH.mm",
      Hms => "HH.mm.ss",
      Hmsv => "HH.mm.ss v",
      Hmv => "HH.mm v",
      M => "L.",
      MEd => "E d.M",
      MMM => "LLL",
      MMMEd => "E d. MMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMdd => "d.M.",
      Md => "d.M.",
      d => "d.",
      h => "h a",
      hm => "h.mm a",
      hms => "h.mm.ss a",
      hmsv => "h.mm.ss a v",
      hmv => "h.mm a v",
      ms => "mm.ss",
      y => "y",
      yM => "M.y",
      yMEd => "E d.MM.y",
      yMM => "MM.y",
      yMMM => "MMM y",
      yMMMEd => "E d. MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d. MMM y",
      yMd => "d.M.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "nb-SJ",
    date_format_full => "EEEE d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "d. MMM y",
    date_format_short => "dd.MM.y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} 'kl'. {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "man.",
      "tir.",
      "ons.",
      "tor.",
      "fre.",
      "l\N{U+00f8}r.",
      "s\N{U+00f8}n."
    ],
    day_format_narrow => [
      "M",
      "T",
      "O",
      "T",
      "F",
      "L",
      "S"
    ],
    day_format_wide => [
      "mandag",
      "tirsdag",
      "onsdag",
      "torsdag",
      "fredag",
      "l\N{U+00f8}rdag",
      "s\N{U+00f8}ndag"
    ],
    day_stand_alone_abbreviated => [
      "man.",
      "tir.",
      "ons.",
      "tor.",
      "fre.",
      "l\N{U+00f8}r.",
      "s\N{U+00f8}n."
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "O",
      "T",
      "F",
      "L",
      "S"
    ],
    day_stand_alone_wide => [
      "mandag",
      "tirsdag",
      "onsdag",
      "torsdag",
      "fredag",
      "l\N{U+00f8}rdag",
      "s\N{U+00f8}ndag"
    ],
    era_abbreviated => [
      "f.Kr.",
      "e.Kr."
    ],
    era_narrow => [
      "f.Kr.",
      "e.Kr."
    ],
    era_wide => [
      "f\N{U+00f8}r Kristus",
      "etter Kristus"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Norwegian Bokm\N{U+00e5}l",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "mar.",
      "apr.",
      "mai",
      "jun.",
      "jul.",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "des."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "januar",
      "februar",
      "mars",
      "april",
      "mai",
      "juni",
      "juli",
      "august",
      "september",
      "oktober",
      "november",
      "desember"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "mai",
      "jun",
      "jul",
      "aug",
      "sep",
      "okt",
      "nov",
      "des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "januar",
      "februar",
      "mars",
      "april",
      "mai",
      "juni",
      "juli",
      "august",
      "september",
      "oktober",
      "november",
      "desember"
    ],
    name => "Norwegian Bokm\N{U+00e5}l Svalbard & Jan Mayen",
    native_language => "norsk bokm\N{U+00e5}l",
    native_name => "norsk bokm\N{U+00e5}l Svalbard og Jan Mayen",
    native_script => undef,
    native_territory => "Svalbard og Jan Mayen",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_format_wide => [
      "1. kvartal",
      "2. kvartal",
      "3. kvartal",
      "4. kvartal"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "1. kvartal",
      "2. kvartal",
      "3. kvartal",
      "4. kvartal"
    ],
    script => undef,
    territory => "Svalbard & Jan Mayen",
    time_format_full => "HH.mm.ss zzzz",
    time_format_long => "HH.mm.ss z",
    time_format_medium => "HH.mm.ss",
    time_format_short => "HH.mm",
    variant => undef,
    version => 28
  }
  __[ nd ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "nd",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Mvu",
      "Sib",
      "Sit",
      "Sin",
      "Sih",
      "Mgq",
      "Son"
    ],
    day_format_narrow => [
      "M",
      "S",
      "S",
      "S",
      "S",
      "M",
      "S"
    ],
    day_format_wide => [
      "Mvulo",
      "Sibili",
      "Sithathu",
      "Sine",
      "Sihlanu",
      "Mgqibelo",
      "Sonto"
    ],
    day_stand_alone_abbreviated => [
      "Mvu",
      "Sib",
      "Sit",
      "Sin",
      "Sih",
      "Mgq",
      "Son"
    ],
    day_stand_alone_narrow => [
      "M",
      "S",
      "S",
      "S",
      "S",
      "M",
      "S"
    ],
    day_stand_alone_wide => [
      "Mvulo",
      "Sibili",
      "Sithathu",
      "Sine",
      "Sihlanu",
      "Mgqibelo",
      "Sonto"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "UKristo angakabuyi",
      "Ukristo ebuyile"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "North Ndebele",
    month_format_abbreviated => [
      "Zib",
      "Nhlo",
      "Mbi",
      "Mab",
      "Nkw",
      "Nhla",
      "Ntu",
      "Ncw",
      "Mpan",
      "Mfu",
      "Lwe",
      "Mpal"
    ],
    month_format_narrow => [
      "Z",
      "N",
      "M",
      "M",
      "N",
      "N",
      "N",
      "N",
      "M",
      "M",
      "L",
      "M"
    ],
    month_format_wide => [
      "Zibandlela",
      "Nhlolanja",
      "Mbimbitho",
      "Mabasa",
      "Nkwenkwezi",
      "Nhlangula",
      "Ntulikazi",
      "Ncwabakazi",
      "Mpandula",
      "Mfumfu",
      "Lwezi",
      "Mpalakazi"
    ],
    month_stand_alone_abbreviated => [
      "Zib",
      "Nhlo",
      "Mbi",
      "Mab",
      "Nkw",
      "Nhla",
      "Ntu",
      "Ncw",
      "Mpan",
      "Mfu",
      "Lwe",
      "Mpal"
    ],
    month_stand_alone_narrow => [
      "Z",
      "N",
      "M",
      "M",
      "N",
      "N",
      "N",
      "N",
      "M",
      "M",
      "L",
      "M"
    ],
    month_stand_alone_wide => [
      "Zibandlela",
      "Nhlolanja",
      "Mbimbitho",
      "Mabasa",
      "Nkwenkwezi",
      "Nhlangula",
      "Ntulikazi",
      "Ncwabakazi",
      "Mpandula",
      "Mfumfu",
      "Lwezi",
      "Mpalakazi"
    ],
    name => "North Ndebele",
    native_language => "isiNdebele",
    native_name => "isiNdebele",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Kota 1",
      "Kota 2",
      "Kota 3",
      "Kota 4"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Kota 1",
      "Kota 2",
      "Kota 3",
      "Kota 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ nd-ZW ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "nd-ZW",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Mvu",
      "Sib",
      "Sit",
      "Sin",
      "Sih",
      "Mgq",
      "Son"
    ],
    day_format_narrow => [
      "M",
      "S",
      "S",
      "S",
      "S",
      "M",
      "S"
    ],
    day_format_wide => [
      "Mvulo",
      "Sibili",
      "Sithathu",
      "Sine",
      "Sihlanu",
      "Mgqibelo",
      "Sonto"
    ],
    day_stand_alone_abbreviated => [
      "Mvu",
      "Sib",
      "Sit",
      "Sin",
      "Sih",
      "Mgq",
      "Son"
    ],
    day_stand_alone_narrow => [
      "M",
      "S",
      "S",
      "S",
      "S",
      "M",
      "S"
    ],
    day_stand_alone_wide => [
      "Mvulo",
      "Sibili",
      "Sithathu",
      "Sine",
      "Sihlanu",
      "Mgqibelo",
      "Sonto"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "UKristo angakabuyi",
      "Ukristo ebuyile"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "North Ndebele",
    month_format_abbreviated => [
      "Zib",
      "Nhlo",
      "Mbi",
      "Mab",
      "Nkw",
      "Nhla",
      "Ntu",
      "Ncw",
      "Mpan",
      "Mfu",
      "Lwe",
      "Mpal"
    ],
    month_format_narrow => [
      "Z",
      "N",
      "M",
      "M",
      "N",
      "N",
      "N",
      "N",
      "M",
      "M",
      "L",
      "M"
    ],
    month_format_wide => [
      "Zibandlela",
      "Nhlolanja",
      "Mbimbitho",
      "Mabasa",
      "Nkwenkwezi",
      "Nhlangula",
      "Ntulikazi",
      "Ncwabakazi",
      "Mpandula",
      "Mfumfu",
      "Lwezi",
      "Mpalakazi"
    ],
    month_stand_alone_abbreviated => [
      "Zib",
      "Nhlo",
      "Mbi",
      "Mab",
      "Nkw",
      "Nhla",
      "Ntu",
      "Ncw",
      "Mpan",
      "Mfu",
      "Lwe",
      "Mpal"
    ],
    month_stand_alone_narrow => [
      "Z",
      "N",
      "M",
      "M",
      "N",
      "N",
      "N",
      "N",
      "M",
      "M",
      "L",
      "M"
    ],
    month_stand_alone_wide => [
      "Zibandlela",
      "Nhlolanja",
      "Mbimbitho",
      "Mabasa",
      "Nkwenkwezi",
      "Nhlangula",
      "Ntulikazi",
      "Ncwabakazi",
      "Mpandula",
      "Mfumfu",
      "Lwezi",
      "Mpalakazi"
    ],
    name => "North Ndebele Zimbabwe",
    native_language => "isiNdebele",
    native_name => "isiNdebele Zimbabwe",
    native_script => undef,
    native_territory => "Zimbabwe",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Kota 1",
      "Kota 2",
      "Kota 3",
      "Kota 4"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Kota 1",
      "Kota 2",
      "Kota 3",
      "Kota 4"
    ],
    script => undef,
    territory => "Zimbabwe",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ne ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "ne",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+0938}\N{U+094b}\N{U+092e}",
      "\N{U+092e}\N{U+0919}\N{U+094d}\N{U+0917}\N{U+0932}",
      "\N{U+092c}\N{U+0941}\N{U+0927}",
      "\N{U+092c}\N{U+093f}\N{U+0939}\N{U+0940}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}",
      "\N{U+0906}\N{U+0907}\N{U+0924}"
    ],
    day_format_narrow => [
      "\N{U+0938}\N{U+094b}",
      "\N{U+092e}",
      "\N{U+092c}\N{U+0941}",
      "\N{U+092c}\N{U+093f}",
      "\N{U+0936}\N{U+0941}",
      "\N{U+0936}",
      "\N{U+0906}"
    ],
    day_format_wide => [
      "\N{U+0938}\N{U+094b}\N{U+092e}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+092e}\N{U+0919}\N{U+094d}\N{U+0917}\N{U+0932}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+092c}\N{U+0941}\N{U+0927}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+092c}\N{U+093f}\N{U+0939}\N{U+093f}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+0906}\N{U+0907}\N{U+0924}\N{U+092c}\N{U+093e}\N{U+0930}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0938}\N{U+094b}\N{U+092e}",
      "\N{U+092e}\N{U+0919}\N{U+094d}\N{U+0917}\N{U+0932}",
      "\N{U+092c}\N{U+0941}\N{U+0927}",
      "\N{U+092c}\N{U+093f}\N{U+0939}\N{U+0940}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}",
      "\N{U+0906}\N{U+0907}\N{U+0924}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0938}\N{U+094b}",
      "\N{U+092e}",
      "\N{U+092c}\N{U+0941}",
      "\N{U+092c}\N{U+093f}",
      "\N{U+0936}\N{U+0941}",
      "\N{U+0936}",
      "\N{U+0906}"
    ],
    day_stand_alone_wide => [
      "\N{U+0938}\N{U+094b}\N{U+092e}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+092e}\N{U+0919}\N{U+094d}\N{U+0917}\N{U+0932}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+092c}\N{U+0941}\N{U+0927}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+092c}\N{U+093f}\N{U+0939}\N{U+093f}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+0906}\N{U+0907}\N{U+0924}\N{U+092c}\N{U+093e}\N{U+0930}"
    ],
    era_abbreviated => [
      "\N{U+0908}\N{U+0938}\N{U+093e} \N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}",
      "\N{U+0938}\N{U+0928}\N{U+094d}"
    ],
    era_narrow => [
      "\N{U+0908}\N{U+0938}\N{U+093e} \N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}",
      "\N{U+0938}\N{U+0928}\N{U+094d}"
    ],
    era_wide => [
      "\N{U+0908}\N{U+0938}\N{U+093e} \N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}",
      "\N{U+0938}\N{U+0928}\N{U+094d}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Nepali",
    month_format_abbreviated => [
      "\N{U+091c}\N{U+0928}\N{U+0935}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0905}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+0905}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0941}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+093e}\N{U+0908}",
      "\N{U+0905}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+091f}",
      "\N{U+0938}\N{U+0947}\N{U+092a}\N{U+094d}\N{U+091f}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}",
      "\N{U+0905}\N{U+0915}\N{U+094d}\N{U+091f}\N{U+094b}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+094b}\N{U+092d}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}",
      "\N{U+0921}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}"
    ],
    month_format_narrow => [
      "\N{U+0967}",
      "\N{U+0968}",
      "\N{U+0969}",
      "\N{U+096a}",
      "\N{U+096b}",
      "\N{U+096c}",
      "\N{U+096d}",
      "\N{U+096e}",
      "\N{U+096f}",
      "\N{U+0967}\N{U+0966}",
      "\N{U+0967}\N{U+0967}",
      "\N{U+0967}\N{U+0968}"
    ],
    month_format_wide => [
      "\N{U+091c}\N{U+0928}\N{U+0935}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0905}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+0905}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0908}",
      "\N{U+091c}\N{U+0941}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+093e}\N{U+0908}",
      "\N{U+0905}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+091f}",
      "\N{U+0938}\N{U+0947}\N{U+092a}\N{U+094d}\N{U+091f}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}",
      "\N{U+0905}\N{U+0915}\N{U+094d}\N{U+091f}\N{U+094b}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+094b}\N{U+092d}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}",
      "\N{U+0921}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+091c}\N{U+0928}\N{U+0935}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0905}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+0905}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0941}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+093e}\N{U+0908}",
      "\N{U+0905}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+091f}",
      "\N{U+0938}\N{U+0947}\N{U+092a}\N{U+094d}\N{U+091f}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}",
      "\N{U+0905}\N{U+0915}\N{U+094d}\N{U+091f}\N{U+094b}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+094b}\N{U+092d}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}",
      "\N{U+0921}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0967}",
      "\N{U+0968}",
      "\N{U+0969}",
      "\N{U+096a}",
      "\N{U+096b}",
      "\N{U+096c}",
      "\N{U+096d}",
      "\N{U+096e}",
      "\N{U+096f}",
      "\N{U+0967}\N{U+0966}",
      "\N{U+0967}\N{U+0967}",
      "\N{U+0967}\N{U+0968}"
    ],
    month_stand_alone_wide => [
      "\N{U+091c}\N{U+0928}\N{U+0935}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0905}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+0905}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0941}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+093e}\N{U+0908}",
      "\N{U+0905}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+091f}",
      "\N{U+0938}\N{U+0947}\N{U+092a}\N{U+094d}\N{U+091f}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}",
      "\N{U+0905}\N{U+0915}\N{U+094d}\N{U+091f}\N{U+094b}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+094b}\N{U+092d}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}",
      "\N{U+0921}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}"
    ],
    name => "Nepali",
    native_language => "\N{U+0928}\N{U+0947}\N{U+092a}\N{U+093e}\N{U+0932}\N{U+0940}",
    native_name => "\N{U+0928}\N{U+0947}\N{U+092a}\N{U+093e}\N{U+0932}\N{U+0940}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+092a}\N{U+0939}\N{U+093f}\N{U+0932}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+0926}\N{U+094b}\N{U+0938}\N{U+094d}\N{U+0930}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+0924}\N{U+0947}\N{U+0938}\N{U+094d}\N{U+0930}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+091a}\N{U+094c}\N{U+0925}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}"
    ],
    quarter_format_narrow => [
      "\N{U+0967}",
      "\N{U+0968}",
      "\N{U+0969}",
      "\N{U+096a}"
    ],
    quarter_format_wide => [
      "\N{U+092a}\N{U+0939}\N{U+093f}\N{U+0932}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+0926}\N{U+094b}\N{U+0938}\N{U+094d}\N{U+0930}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+0924}\N{U+0947}\N{U+0938}\N{U+094d}\N{U+0930}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+091a}\N{U+094c}\N{U+0925}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+092a}\N{U+0939}\N{U+093f}\N{U+0932}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+0926}\N{U+094b}\N{U+0938}\N{U+094d}\N{U+0930}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+0924}\N{U+0947}\N{U+0938}\N{U+094d}\N{U+0930}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+091a}\N{U+094c}\N{U+0925}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0967}",
      "\N{U+0968}",
      "\N{U+0969}",
      "\N{U+096a}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+092a}\N{U+0939}\N{U+093f}\N{U+0932}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+0926}\N{U+094b}\N{U+0938}\N{U+094d}\N{U+0930}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+0924}\N{U+0947}\N{U+0938}\N{U+094d}\N{U+0930}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+091a}\N{U+094c}\N{U+0925}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ne-IN ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "ne-IN",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+0938}\N{U+094b}\N{U+092e}",
      "\N{U+092e}\N{U+0919}\N{U+094d}\N{U+0917}\N{U+0932}",
      "\N{U+092c}\N{U+0941}\N{U+0927}",
      "\N{U+092c}\N{U+093f}\N{U+0939}\N{U+0940}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}",
      "\N{U+0906}\N{U+0907}\N{U+0924}"
    ],
    day_format_narrow => [
      "\N{U+0938}\N{U+094b}",
      "\N{U+092e}",
      "\N{U+092c}\N{U+0941}",
      "\N{U+092c}\N{U+093f}",
      "\N{U+0936}\N{U+0941}",
      "\N{U+0936}",
      "\N{U+0906}"
    ],
    day_format_wide => [
      "\N{U+0938}\N{U+094b}\N{U+092e}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+092e}\N{U+0919}\N{U+094d}\N{U+0917}\N{U+0932}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+092c}\N{U+0941}\N{U+0927}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+092c}\N{U+093f}\N{U+0939}\N{U+093f}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+0906}\N{U+0907}\N{U+0924}\N{U+092c}\N{U+093e}\N{U+0930}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0938}\N{U+094b}\N{U+092e}",
      "\N{U+092e}\N{U+0919}\N{U+094d}\N{U+0917}\N{U+0932}",
      "\N{U+092c}\N{U+0941}\N{U+0927}",
      "\N{U+092c}\N{U+093f}\N{U+0939}\N{U+0940}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}",
      "\N{U+0906}\N{U+0907}\N{U+0924}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0938}\N{U+094b}",
      "\N{U+092e}",
      "\N{U+092c}\N{U+0941}",
      "\N{U+092c}\N{U+093f}",
      "\N{U+0936}\N{U+0941}",
      "\N{U+0936}",
      "\N{U+0906}"
    ],
    day_stand_alone_wide => [
      "\N{U+0938}\N{U+094b}\N{U+092e}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+092e}\N{U+0919}\N{U+094d}\N{U+0917}\N{U+0932}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+092c}\N{U+0941}\N{U+0927}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+092c}\N{U+093f}\N{U+0939}\N{U+093f}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+0906}\N{U+0907}\N{U+0924}\N{U+092c}\N{U+093e}\N{U+0930}"
    ],
    era_abbreviated => [
      "\N{U+0908}\N{U+0938}\N{U+093e} \N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}",
      "\N{U+0938}\N{U+0928}\N{U+094d}"
    ],
    era_narrow => [
      "\N{U+0908}\N{U+0938}\N{U+093e} \N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}",
      "\N{U+0938}\N{U+0928}\N{U+094d}"
    ],
    era_wide => [
      "\N{U+0908}\N{U+0938}\N{U+093e} \N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}",
      "\N{U+0938}\N{U+0928}\N{U+094d}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Nepali",
    month_format_abbreviated => [
      "\N{U+091c}\N{U+0928}\N{U+0935}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0905}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+0905}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0941}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+093e}\N{U+0908}",
      "\N{U+0905}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+091f}",
      "\N{U+0938}\N{U+0947}\N{U+092a}\N{U+094d}\N{U+091f}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}",
      "\N{U+0905}\N{U+0915}\N{U+094d}\N{U+091f}\N{U+094b}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+094b}\N{U+092d}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}",
      "\N{U+0921}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}"
    ],
    month_format_narrow => [
      "\N{U+0967}",
      "\N{U+0968}",
      "\N{U+0969}",
      "\N{U+096a}",
      "\N{U+096b}",
      "\N{U+096c}",
      "\N{U+096d}",
      "\N{U+096e}",
      "\N{U+096f}",
      "\N{U+0967}\N{U+0966}",
      "\N{U+0967}\N{U+0967}",
      "\N{U+0967}\N{U+0968}"
    ],
    month_format_wide => [
      "\N{U+091c}\N{U+0928}\N{U+0935}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0905}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+0905}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0908}",
      "\N{U+091c}\N{U+0941}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+093e}\N{U+0908}",
      "\N{U+0905}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+091f}",
      "\N{U+0938}\N{U+0947}\N{U+092a}\N{U+094d}\N{U+091f}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}",
      "\N{U+0905}\N{U+0915}\N{U+094d}\N{U+091f}\N{U+094b}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+094b}\N{U+092d}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}",
      "\N{U+0921}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+091c}\N{U+0928}\N{U+0935}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0905}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+0905}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0941}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+093e}\N{U+0908}",
      "\N{U+0905}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+091f}",
      "\N{U+0938}\N{U+0947}\N{U+092a}\N{U+094d}\N{U+091f}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}",
      "\N{U+0905}\N{U+0915}\N{U+094d}\N{U+091f}\N{U+094b}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+094b}\N{U+092d}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}",
      "\N{U+0921}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0967}",
      "\N{U+0968}",
      "\N{U+0969}",
      "\N{U+096a}",
      "\N{U+096b}",
      "\N{U+096c}",
      "\N{U+096d}",
      "\N{U+096e}",
      "\N{U+096f}",
      "\N{U+0967}\N{U+0966}",
      "\N{U+0967}\N{U+0967}",
      "\N{U+0967}\N{U+0968}"
    ],
    month_stand_alone_wide => [
      "\N{U+091c}\N{U+0928}\N{U+0935}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0905}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+0905}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0941}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+093e}\N{U+0908}",
      "\N{U+0905}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+091f}",
      "\N{U+0938}\N{U+0947}\N{U+092a}\N{U+094d}\N{U+091f}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}",
      "\N{U+0905}\N{U+0915}\N{U+094d}\N{U+091f}\N{U+094b}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+094b}\N{U+092d}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}",
      "\N{U+0921}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}"
    ],
    name => "Nepali India",
    native_language => "\N{U+0928}\N{U+0947}\N{U+092a}\N{U+093e}\N{U+0932}\N{U+0940}",
    native_name => "\N{U+0928}\N{U+0947}\N{U+092a}\N{U+093e}\N{U+0932}\N{U+0940} \N{U+092d}\N{U+093e}\N{U+0930}\N{U+0924}",
    native_script => undef,
    native_territory => "\N{U+092d}\N{U+093e}\N{U+0930}\N{U+0924}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+092a}\N{U+0939}\N{U+093f}\N{U+0932}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+0926}\N{U+094b}\N{U+0938}\N{U+094d}\N{U+0930}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+0924}\N{U+0947}\N{U+0938}\N{U+094d}\N{U+0930}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+091a}\N{U+094c}\N{U+0925}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}"
    ],
    quarter_format_narrow => [
      "\N{U+0967}",
      "\N{U+0968}",
      "\N{U+0969}",
      "\N{U+096a}"
    ],
    quarter_format_wide => [
      "\N{U+092a}\N{U+0939}\N{U+093f}\N{U+0932}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+0926}\N{U+094b}\N{U+0938}\N{U+094d}\N{U+0930}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+0924}\N{U+0947}\N{U+0938}\N{U+094d}\N{U+0930}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+091a}\N{U+094c}\N{U+0925}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+092a}\N{U+0939}\N{U+093f}\N{U+0932}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+0926}\N{U+094b}\N{U+0938}\N{U+094d}\N{U+0930}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+0924}\N{U+0947}\N{U+0938}\N{U+094d}\N{U+0930}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+091a}\N{U+094c}\N{U+0925}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0967}",
      "\N{U+0968}",
      "\N{U+0969}",
      "\N{U+096a}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+092a}\N{U+0939}\N{U+093f}\N{U+0932}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+0926}\N{U+094b}\N{U+0938}\N{U+094d}\N{U+0930}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+0924}\N{U+0947}\N{U+0938}\N{U+094d}\N{U+0930}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+091a}\N{U+094c}\N{U+0925}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}"
    ],
    script => undef,
    territory => "India",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ne-NP ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "ne-NP",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+0938}\N{U+094b}\N{U+092e}",
      "\N{U+092e}\N{U+0919}\N{U+094d}\N{U+0917}\N{U+0932}",
      "\N{U+092c}\N{U+0941}\N{U+0927}",
      "\N{U+092c}\N{U+093f}\N{U+0939}\N{U+0940}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}",
      "\N{U+0906}\N{U+0907}\N{U+0924}"
    ],
    day_format_narrow => [
      "\N{U+0938}\N{U+094b}",
      "\N{U+092e}",
      "\N{U+092c}\N{U+0941}",
      "\N{U+092c}\N{U+093f}",
      "\N{U+0936}\N{U+0941}",
      "\N{U+0936}",
      "\N{U+0906}"
    ],
    day_format_wide => [
      "\N{U+0938}\N{U+094b}\N{U+092e}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+092e}\N{U+0919}\N{U+094d}\N{U+0917}\N{U+0932}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+092c}\N{U+0941}\N{U+0927}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+092c}\N{U+093f}\N{U+0939}\N{U+093f}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+0906}\N{U+0907}\N{U+0924}\N{U+092c}\N{U+093e}\N{U+0930}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0938}\N{U+094b}\N{U+092e}",
      "\N{U+092e}\N{U+0919}\N{U+094d}\N{U+0917}\N{U+0932}",
      "\N{U+092c}\N{U+0941}\N{U+0927}",
      "\N{U+092c}\N{U+093f}\N{U+0939}\N{U+0940}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}",
      "\N{U+0906}\N{U+0907}\N{U+0924}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0938}\N{U+094b}",
      "\N{U+092e}",
      "\N{U+092c}\N{U+0941}",
      "\N{U+092c}\N{U+093f}",
      "\N{U+0936}\N{U+0941}",
      "\N{U+0936}",
      "\N{U+0906}"
    ],
    day_stand_alone_wide => [
      "\N{U+0938}\N{U+094b}\N{U+092e}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+092e}\N{U+0919}\N{U+094d}\N{U+0917}\N{U+0932}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+092c}\N{U+0941}\N{U+0927}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+092c}\N{U+093f}\N{U+0939}\N{U+093f}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0941}\N{U+0915}\N{U+094d}\N{U+0930}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+0936}\N{U+0928}\N{U+093f}\N{U+092c}\N{U+093e}\N{U+0930}",
      "\N{U+0906}\N{U+0907}\N{U+0924}\N{U+092c}\N{U+093e}\N{U+0930}"
    ],
    era_abbreviated => [
      "\N{U+0908}\N{U+0938}\N{U+093e} \N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}",
      "\N{U+0938}\N{U+0928}\N{U+094d}"
    ],
    era_narrow => [
      "\N{U+0908}\N{U+0938}\N{U+093e} \N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}",
      "\N{U+0938}\N{U+0928}\N{U+094d}"
    ],
    era_wide => [
      "\N{U+0908}\N{U+0938}\N{U+093e} \N{U+092a}\N{U+0942}\N{U+0930}\N{U+094d}\N{U+0935}",
      "\N{U+0938}\N{U+0928}\N{U+094d}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%A %d %b %Y",
    glibc_datetime_format => "%A %d %b %Y %I:%M:%S %p %Z",
    glibc_time_12_format => "%I:%M:%S %p %Z",
    glibc_time_format => "%I:%M:%S  %Z",
    language => "Nepali",
    month_format_abbreviated => [
      "\N{U+091c}\N{U+0928}\N{U+0935}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0905}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+0905}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0941}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+093e}\N{U+0908}",
      "\N{U+0905}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+091f}",
      "\N{U+0938}\N{U+0947}\N{U+092a}\N{U+094d}\N{U+091f}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}",
      "\N{U+0905}\N{U+0915}\N{U+094d}\N{U+091f}\N{U+094b}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+094b}\N{U+092d}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}",
      "\N{U+0921}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}"
    ],
    month_format_narrow => [
      "\N{U+0967}",
      "\N{U+0968}",
      "\N{U+0969}",
      "\N{U+096a}",
      "\N{U+096b}",
      "\N{U+096c}",
      "\N{U+096d}",
      "\N{U+096e}",
      "\N{U+096f}",
      "\N{U+0967}\N{U+0966}",
      "\N{U+0967}\N{U+0967}",
      "\N{U+0967}\N{U+0968}"
    ],
    month_format_wide => [
      "\N{U+091c}\N{U+0928}\N{U+0935}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0905}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+0905}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0908}",
      "\N{U+091c}\N{U+0941}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+093e}\N{U+0908}",
      "\N{U+0905}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+091f}",
      "\N{U+0938}\N{U+0947}\N{U+092a}\N{U+094d}\N{U+091f}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}",
      "\N{U+0905}\N{U+0915}\N{U+094d}\N{U+091f}\N{U+094b}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+094b}\N{U+092d}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}",
      "\N{U+0921}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+091c}\N{U+0928}\N{U+0935}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0905}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+0905}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0941}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+093e}\N{U+0908}",
      "\N{U+0905}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+091f}",
      "\N{U+0938}\N{U+0947}\N{U+092a}\N{U+094d}\N{U+091f}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}",
      "\N{U+0905}\N{U+0915}\N{U+094d}\N{U+091f}\N{U+094b}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+094b}\N{U+092d}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}",
      "\N{U+0921}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0967}",
      "\N{U+0968}",
      "\N{U+0969}",
      "\N{U+096a}",
      "\N{U+096b}",
      "\N{U+096c}",
      "\N{U+096d}",
      "\N{U+096e}",
      "\N{U+096f}",
      "\N{U+0967}\N{U+0966}",
      "\N{U+0967}\N{U+0967}",
      "\N{U+0967}\N{U+0968}"
    ],
    month_stand_alone_wide => [
      "\N{U+091c}\N{U+0928}\N{U+0935}\N{U+0930}\N{U+0940}",
      "\N{U+092b}\N{U+0947}\N{U+092c}\N{U+094d}\N{U+0930}\N{U+0941}\N{U+0905}\N{U+0930}\N{U+0940}",
      "\N{U+092e}\N{U+093e}\N{U+0930}\N{U+094d}\N{U+091a}",
      "\N{U+0905}\N{U+092a}\N{U+094d}\N{U+0930}\N{U+093f}\N{U+0932}",
      "\N{U+092e}\N{U+0947}",
      "\N{U+091c}\N{U+0941}\N{U+0928}",
      "\N{U+091c}\N{U+0941}\N{U+0932}\N{U+093e}\N{U+0908}",
      "\N{U+0905}\N{U+0917}\N{U+0938}\N{U+094d}\N{U+091f}",
      "\N{U+0938}\N{U+0947}\N{U+092a}\N{U+094d}\N{U+091f}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}",
      "\N{U+0905}\N{U+0915}\N{U+094d}\N{U+091f}\N{U+094b}\N{U+092c}\N{U+0930}",
      "\N{U+0928}\N{U+094b}\N{U+092d}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}",
      "\N{U+0921}\N{U+093f}\N{U+0938}\N{U+0947}\N{U+092e}\N{U+094d}\N{U+092c}\N{U+0930}"
    ],
    name => "Nepali Nepal",
    native_language => "\N{U+0928}\N{U+0947}\N{U+092a}\N{U+093e}\N{U+0932}\N{U+0940}",
    native_name => "\N{U+0928}\N{U+0947}\N{U+092a}\N{U+093e}\N{U+0932}\N{U+0940} \N{U+0928}\N{U+0947}\N{U+092a}\N{U+093e}\N{U+0932}",
    native_script => undef,
    native_territory => "\N{U+0928}\N{U+0947}\N{U+092a}\N{U+093e}\N{U+0932}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+092a}\N{U+0939}\N{U+093f}\N{U+0932}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+0926}\N{U+094b}\N{U+0938}\N{U+094d}\N{U+0930}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+0924}\N{U+0947}\N{U+0938}\N{U+094d}\N{U+0930}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+091a}\N{U+094c}\N{U+0925}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}"
    ],
    quarter_format_narrow => [
      "\N{U+0967}",
      "\N{U+0968}",
      "\N{U+0969}",
      "\N{U+096a}"
    ],
    quarter_format_wide => [
      "\N{U+092a}\N{U+0939}\N{U+093f}\N{U+0932}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+0926}\N{U+094b}\N{U+0938}\N{U+094d}\N{U+0930}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+0924}\N{U+0947}\N{U+0938}\N{U+094d}\N{U+0930}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+091a}\N{U+094c}\N{U+0925}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+092a}\N{U+0939}\N{U+093f}\N{U+0932}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+0926}\N{U+094b}\N{U+0938}\N{U+094d}\N{U+0930}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+0924}\N{U+0947}\N{U+0938}\N{U+094d}\N{U+0930}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+091a}\N{U+094c}\N{U+0925}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}"
    ],
    quarter_stand_alone_narrow => [
      "\N{U+0967}",
      "\N{U+0968}",
      "\N{U+0969}",
      "\N{U+096a}"
    ],
    quarter_stand_alone_wide => [
      "\N{U+092a}\N{U+0939}\N{U+093f}\N{U+0932}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+0926}\N{U+094b}\N{U+0938}\N{U+094d}\N{U+0930}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+0924}\N{U+0947}\N{U+0938}\N{U+094d}\N{U+0930}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}",
      "\N{U+091a}\N{U+094c}\N{U+0925}\N{U+094b} \N{U+0938}\N{U+0924}\N{U+094d}\N{U+0930}"
    ],
    script => undef,
    territory => "Nepal",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ nl ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d-M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d-M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M-y",
      yMEd => "E d-M-y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d-M-y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "nl",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd-MM-yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "ma",
      "di",
      "wo",
      "do",
      "vr",
      "za",
      "zo"
    ],
    day_format_narrow => [
      "M",
      "D",
      "W",
      "D",
      "V",
      "Z",
      "Z"
    ],
    day_format_wide => [
      "maandag",
      "dinsdag",
      "woensdag",
      "donderdag",
      "vrijdag",
      "zaterdag",
      "zondag"
    ],
    day_stand_alone_abbreviated => [
      "ma",
      "di",
      "wo",
      "do",
      "vr",
      "za",
      "zo"
    ],
    day_stand_alone_narrow => [
      "M",
      "D",
      "W",
      "D",
      "V",
      "Z",
      "Z"
    ],
    day_stand_alone_wide => [
      "maandag",
      "dinsdag",
      "woensdag",
      "donderdag",
      "vrijdag",
      "zaterdag",
      "zondag"
    ],
    era_abbreviated => [
      "v.Chr.",
      "n.Chr."
    ],
    era_narrow => [
      "v.C.",
      "n.C."
    ],
    era_wide => [
      "voor Christus",
      "na Christus"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Dutch",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "mrt.",
      "apr.",
      "mei",
      "jun.",
      "jul.",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "januari",
      "februari",
      "maart",
      "april",
      "mei",
      "juni",
      "juli",
      "augustus",
      "september",
      "oktober",
      "november",
      "december"
    ],
    month_stand_alone_abbreviated => [
      "jan.",
      "feb.",
      "mrt.",
      "apr.",
      "mei",
      "jun.",
      "jul.",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "januari",
      "februari",
      "maart",
      "april",
      "mei",
      "juni",
      "juli",
      "augustus",
      "september",
      "oktober",
      "november",
      "december"
    ],
    name => "Dutch",
    native_language => "Nederlands",
    native_name => "Nederlands",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1e kwartaal",
      "2e kwartaal",
      "3e kwartaal",
      "4e kwartaal"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1e kwartaal",
      "2e kwartaal",
      "3e kwartaal",
      "4e kwartaal"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ nl-AW ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d-M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d-M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M-y",
      yMEd => "E d-M-y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d-M-y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "nl-AW",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd-MM-yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "ma",
      "di",
      "wo",
      "do",
      "vr",
      "za",
      "zo"
    ],
    day_format_narrow => [
      "M",
      "D",
      "W",
      "D",
      "V",
      "Z",
      "Z"
    ],
    day_format_wide => [
      "maandag",
      "dinsdag",
      "woensdag",
      "donderdag",
      "vrijdag",
      "zaterdag",
      "zondag"
    ],
    day_stand_alone_abbreviated => [
      "ma",
      "di",
      "wo",
      "do",
      "vr",
      "za",
      "zo"
    ],
    day_stand_alone_narrow => [
      "M",
      "D",
      "W",
      "D",
      "V",
      "Z",
      "Z"
    ],
    day_stand_alone_wide => [
      "maandag",
      "dinsdag",
      "woensdag",
      "donderdag",
      "vrijdag",
      "zaterdag",
      "zondag"
    ],
    era_abbreviated => [
      "v.Chr.",
      "n.Chr."
    ],
    era_narrow => [
      "v.C.",
      "n.C."
    ],
    era_wide => [
      "voor Christus",
      "na Christus"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Dutch",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "mrt.",
      "apr.",
      "mei",
      "jun.",
      "jul.",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "januari",
      "februari",
      "maart",
      "april",
      "mei",
      "juni",
      "juli",
      "augustus",
      "september",
      "oktober",
      "november",
      "december"
    ],
    month_stand_alone_abbreviated => [
      "jan.",
      "feb.",
      "mrt.",
      "apr.",
      "mei",
      "jun.",
      "jul.",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "januari",
      "februari",
      "maart",
      "april",
      "mei",
      "juni",
      "juli",
      "augustus",
      "september",
      "oktober",
      "november",
      "december"
    ],
    name => "Dutch Aruba",
    native_language => "Nederlands",
    native_name => "Nederlands Aruba",
    native_script => undef,
    native_territory => "Aruba",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1e kwartaal",
      "2e kwartaal",
      "3e kwartaal",
      "4e kwartaal"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1e kwartaal",
      "2e kwartaal",
      "3e kwartaal",
      "4e kwartaal"
    ],
    script => undef,
    territory => "Aruba",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ nl-BE ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d-M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d-M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M-y",
      yMEd => "E d-M-y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d-M-y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "nl-BE",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "ma",
      "di",
      "wo",
      "do",
      "vr",
      "za",
      "zo"
    ],
    day_format_narrow => [
      "M",
      "D",
      "W",
      "D",
      "V",
      "Z",
      "Z"
    ],
    day_format_wide => [
      "maandag",
      "dinsdag",
      "woensdag",
      "donderdag",
      "vrijdag",
      "zaterdag",
      "zondag"
    ],
    day_stand_alone_abbreviated => [
      "ma",
      "di",
      "wo",
      "do",
      "vr",
      "za",
      "zo"
    ],
    day_stand_alone_narrow => [
      "M",
      "D",
      "W",
      "D",
      "V",
      "Z",
      "Z"
    ],
    day_stand_alone_wide => [
      "maandag",
      "dinsdag",
      "woensdag",
      "donderdag",
      "vrijdag",
      "zaterdag",
      "zondag"
    ],
    era_abbreviated => [
      "v.Chr.",
      "n.Chr."
    ],
    era_narrow => [
      "v.C.",
      "n.C."
    ],
    era_wide => [
      "voor Christus",
      "na Christus"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d-%m-%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Dutch",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "mrt.",
      "apr.",
      "mei",
      "jun.",
      "jul.",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "januari",
      "februari",
      "maart",
      "april",
      "mei",
      "juni",
      "juli",
      "augustus",
      "september",
      "oktober",
      "november",
      "december"
    ],
    month_stand_alone_abbreviated => [
      "jan.",
      "feb.",
      "mrt.",
      "apr.",
      "mei",
      "jun.",
      "jul.",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "januari",
      "februari",
      "maart",
      "april",
      "mei",
      "juni",
      "juli",
      "augustus",
      "september",
      "oktober",
      "november",
      "december"
    ],
    name => "Dutch Belgium",
    native_language => "Nederlands",
    native_name => "Nederlands Belgi\N{U+00eb}",
    native_script => undef,
    native_territory => "Belgi\N{U+00eb}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1e kwartaal",
      "2e kwartaal",
      "3e kwartaal",
      "4e kwartaal"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1e kwartaal",
      "2e kwartaal",
      "3e kwartaal",
      "4e kwartaal"
    ],
    script => undef,
    territory => "Belgium",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ nl-BQ ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d-M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d-M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M-y",
      yMEd => "E d-M-y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d-M-y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "nl-BQ",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd-MM-yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "ma",
      "di",
      "wo",
      "do",
      "vr",
      "za",
      "zo"
    ],
    day_format_narrow => [
      "M",
      "D",
      "W",
      "D",
      "V",
      "Z",
      "Z"
    ],
    day_format_wide => [
      "maandag",
      "dinsdag",
      "woensdag",
      "donderdag",
      "vrijdag",
      "zaterdag",
      "zondag"
    ],
    day_stand_alone_abbreviated => [
      "ma",
      "di",
      "wo",
      "do",
      "vr",
      "za",
      "zo"
    ],
    day_stand_alone_narrow => [
      "M",
      "D",
      "W",
      "D",
      "V",
      "Z",
      "Z"
    ],
    day_stand_alone_wide => [
      "maandag",
      "dinsdag",
      "woensdag",
      "donderdag",
      "vrijdag",
      "zaterdag",
      "zondag"
    ],
    era_abbreviated => [
      "v.Chr.",
      "n.Chr."
    ],
    era_narrow => [
      "v.C.",
      "n.C."
    ],
    era_wide => [
      "voor Christus",
      "na Christus"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Dutch",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "mrt.",
      "apr.",
      "mei",
      "jun.",
      "jul.",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "januari",
      "februari",
      "maart",
      "april",
      "mei",
      "juni",
      "juli",
      "augustus",
      "september",
      "oktober",
      "november",
      "december"
    ],
    month_stand_alone_abbreviated => [
      "jan.",
      "feb.",
      "mrt.",
      "apr.",
      "mei",
      "jun.",
      "jul.",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "januari",
      "februari",
      "maart",
      "april",
      "mei",
      "juni",
      "juli",
      "augustus",
      "september",
      "oktober",
      "november",
      "december"
    ],
    name => "Dutch Caribbean Netherlands",
    native_language => "Nederlands",
    native_name => "Nederlands Caribisch Nederland",
    native_script => undef,
    native_territory => "Caribisch Nederland",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1e kwartaal",
      "2e kwartaal",
      "3e kwartaal",
      "4e kwartaal"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1e kwartaal",
      "2e kwartaal",
      "3e kwartaal",
      "4e kwartaal"
    ],
    script => undef,
    territory => "Caribbean Netherlands",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ nl-CW ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d-M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d-M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M-y",
      yMEd => "E d-M-y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d-M-y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "nl-CW",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd-MM-yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "ma",
      "di",
      "wo",
      "do",
      "vr",
      "za",
      "zo"
    ],
    day_format_narrow => [
      "M",
      "D",
      "W",
      "D",
      "V",
      "Z",
      "Z"
    ],
    day_format_wide => [
      "maandag",
      "dinsdag",
      "woensdag",
      "donderdag",
      "vrijdag",
      "zaterdag",
      "zondag"
    ],
    day_stand_alone_abbreviated => [
      "ma",
      "di",
      "wo",
      "do",
      "vr",
      "za",
      "zo"
    ],
    day_stand_alone_narrow => [
      "M",
      "D",
      "W",
      "D",
      "V",
      "Z",
      "Z"
    ],
    day_stand_alone_wide => [
      "maandag",
      "dinsdag",
      "woensdag",
      "donderdag",
      "vrijdag",
      "zaterdag",
      "zondag"
    ],
    era_abbreviated => [
      "v.Chr.",
      "n.Chr."
    ],
    era_narrow => [
      "v.C.",
      "n.C."
    ],
    era_wide => [
      "voor Christus",
      "na Christus"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Dutch",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "mrt.",
      "apr.",
      "mei",
      "jun.",
      "jul.",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "januari",
      "februari",
      "maart",
      "april",
      "mei",
      "juni",
      "juli",
      "augustus",
      "september",
      "oktober",
      "november",
      "december"
    ],
    month_stand_alone_abbreviated => [
      "jan.",
      "feb.",
      "mrt.",
      "apr.",
      "mei",
      "jun.",
      "jul.",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "januari",
      "februari",
      "maart",
      "april",
      "mei",
      "juni",
      "juli",
      "augustus",
      "september",
      "oktober",
      "november",
      "december"
    ],
    name => "Dutch Cura\N{U+00e7}ao",
    native_language => "Nederlands",
    native_name => "Nederlands Cura\N{U+00e7}ao",
    native_script => undef,
    native_territory => "Cura\N{U+00e7}ao",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1e kwartaal",
      "2e kwartaal",
      "3e kwartaal",
      "4e kwartaal"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1e kwartaal",
      "2e kwartaal",
      "3e kwartaal",
      "4e kwartaal"
    ],
    script => undef,
    territory => "Cura\N{U+00e7}ao",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ nl-NL ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d-M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d-M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M-y",
      yMEd => "E d-M-y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d-M-y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "nl-NL",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd-MM-yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "ma",
      "di",
      "wo",
      "do",
      "vr",
      "za",
      "zo"
    ],
    day_format_narrow => [
      "M",
      "D",
      "W",
      "D",
      "V",
      "Z",
      "Z"
    ],
    day_format_wide => [
      "maandag",
      "dinsdag",
      "woensdag",
      "donderdag",
      "vrijdag",
      "zaterdag",
      "zondag"
    ],
    day_stand_alone_abbreviated => [
      "ma",
      "di",
      "wo",
      "do",
      "vr",
      "za",
      "zo"
    ],
    day_stand_alone_narrow => [
      "M",
      "D",
      "W",
      "D",
      "V",
      "Z",
      "Z"
    ],
    day_stand_alone_wide => [
      "maandag",
      "dinsdag",
      "woensdag",
      "donderdag",
      "vrijdag",
      "zaterdag",
      "zondag"
    ],
    era_abbreviated => [
      "v.Chr.",
      "n.Chr."
    ],
    era_narrow => [
      "v.C.",
      "n.C."
    ],
    era_wide => [
      "voor Christus",
      "na Christus"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d-%m-%y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Dutch",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "mrt.",
      "apr.",
      "mei",
      "jun.",
      "jul.",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "januari",
      "februari",
      "maart",
      "april",
      "mei",
      "juni",
      "juli",
      "augustus",
      "september",
      "oktober",
      "november",
      "december"
    ],
    month_stand_alone_abbreviated => [
      "jan.",
      "feb.",
      "mrt.",
      "apr.",
      "mei",
      "jun.",
      "jul.",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "januari",
      "februari",
      "maart",
      "april",
      "mei",
      "juni",
      "juli",
      "augustus",
      "september",
      "oktober",
      "november",
      "december"
    ],
    name => "Dutch Netherlands",
    native_language => "Nederlands",
    native_name => "Nederlands Nederland",
    native_script => undef,
    native_territory => "Nederland",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1e kwartaal",
      "2e kwartaal",
      "3e kwartaal",
      "4e kwartaal"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1e kwartaal",
      "2e kwartaal",
      "3e kwartaal",
      "4e kwartaal"
    ],
    script => undef,
    territory => "Netherlands",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ nl-SR ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d-M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d-M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M-y",
      yMEd => "E d-M-y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d-M-y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "nl-SR",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd-MM-yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "ma",
      "di",
      "wo",
      "do",
      "vr",
      "za",
      "zo"
    ],
    day_format_narrow => [
      "M",
      "D",
      "W",
      "D",
      "V",
      "Z",
      "Z"
    ],
    day_format_wide => [
      "maandag",
      "dinsdag",
      "woensdag",
      "donderdag",
      "vrijdag",
      "zaterdag",
      "zondag"
    ],
    day_stand_alone_abbreviated => [
      "ma",
      "di",
      "wo",
      "do",
      "vr",
      "za",
      "zo"
    ],
    day_stand_alone_narrow => [
      "M",
      "D",
      "W",
      "D",
      "V",
      "Z",
      "Z"
    ],
    day_stand_alone_wide => [
      "maandag",
      "dinsdag",
      "woensdag",
      "donderdag",
      "vrijdag",
      "zaterdag",
      "zondag"
    ],
    era_abbreviated => [
      "v.Chr.",
      "n.Chr."
    ],
    era_narrow => [
      "v.C.",
      "n.C."
    ],
    era_wide => [
      "voor Christus",
      "na Christus"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Dutch",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "mrt.",
      "apr.",
      "mei",
      "jun.",
      "jul.",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "januari",
      "februari",
      "maart",
      "april",
      "mei",
      "juni",
      "juli",
      "augustus",
      "september",
      "oktober",
      "november",
      "december"
    ],
    month_stand_alone_abbreviated => [
      "jan.",
      "feb.",
      "mrt.",
      "apr.",
      "mei",
      "jun.",
      "jul.",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "januari",
      "februari",
      "maart",
      "april",
      "mei",
      "juni",
      "juli",
      "augustus",
      "september",
      "oktober",
      "november",
      "december"
    ],
    name => "Dutch Suriname",
    native_language => "Nederlands",
    native_name => "Nederlands Suriname",
    native_script => undef,
    native_territory => "Suriname",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1e kwartaal",
      "2e kwartaal",
      "3e kwartaal",
      "4e kwartaal"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1e kwartaal",
      "2e kwartaal",
      "3e kwartaal",
      "4e kwartaal"
    ],
    script => undef,
    territory => "Suriname",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ nl-SX ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d-M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d-M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M-y",
      yMEd => "E d-M-y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d-M-y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "nl-SX",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd-MM-yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "ma",
      "di",
      "wo",
      "do",
      "vr",
      "za",
      "zo"
    ],
    day_format_narrow => [
      "M",
      "D",
      "W",
      "D",
      "V",
      "Z",
      "Z"
    ],
    day_format_wide => [
      "maandag",
      "dinsdag",
      "woensdag",
      "donderdag",
      "vrijdag",
      "zaterdag",
      "zondag"
    ],
    day_stand_alone_abbreviated => [
      "ma",
      "di",
      "wo",
      "do",
      "vr",
      "za",
      "zo"
    ],
    day_stand_alone_narrow => [
      "M",
      "D",
      "W",
      "D",
      "V",
      "Z",
      "Z"
    ],
    day_stand_alone_wide => [
      "maandag",
      "dinsdag",
      "woensdag",
      "donderdag",
      "vrijdag",
      "zaterdag",
      "zondag"
    ],
    era_abbreviated => [
      "v.Chr.",
      "n.Chr."
    ],
    era_narrow => [
      "v.C.",
      "n.C."
    ],
    era_wide => [
      "voor Christus",
      "na Christus"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Dutch",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "mrt.",
      "apr.",
      "mei",
      "jun.",
      "jul.",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "januari",
      "februari",
      "maart",
      "april",
      "mei",
      "juni",
      "juli",
      "augustus",
      "september",
      "oktober",
      "november",
      "december"
    ],
    month_stand_alone_abbreviated => [
      "jan.",
      "feb.",
      "mrt.",
      "apr.",
      "mei",
      "jun.",
      "jul.",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "januari",
      "februari",
      "maart",
      "april",
      "mei",
      "juni",
      "juli",
      "augustus",
      "september",
      "oktober",
      "november",
      "december"
    ],
    name => "Dutch Sint Maarten",
    native_language => "Nederlands",
    native_name => "Nederlands Sint-Maarten",
    native_script => undef,
    native_territory => "Sint-Maarten",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1e kwartaal",
      "2e kwartaal",
      "3e kwartaal",
      "4e kwartaal"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1e kwartaal",
      "2e kwartaal",
      "3e kwartaal",
      "4e kwartaal"
    ],
    script => undef,
    territory => "Sint Maarten",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ nmg ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "nmg",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "m\N{U+0254}\N{U+0301}n",
      "smb",
      "sml",
      "smn",
      "mbs",
      "sas",
      "s\N{U+0254}\N{U+0301}n"
    ],
    day_format_narrow => [
      "m",
      "s",
      "s",
      "s",
      "m",
      "s",
      "s"
    ],
    day_format_wide => [
      "m\N{U+0254}\N{U+0301}nd\N{U+0254}",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254} maf\N{U+00fa} m\N{U+00e1}ba",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254} maf\N{U+00fa} m\N{U+00e1}lal",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254} maf\N{U+00fa} m\N{U+00e1}na",
      "mab\N{U+00e1}g\N{U+00e1} m\N{U+00e1} sukul",
      "s\N{U+00e1}sadi",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254}"
    ],
    day_stand_alone_abbreviated => [
      "m\N{U+0254}\N{U+0301}n",
      "smb",
      "sml",
      "smn",
      "mbs",
      "sas",
      "s\N{U+0254}\N{U+0301}n"
    ],
    day_stand_alone_narrow => [
      "m",
      "s",
      "s",
      "s",
      "m",
      "s",
      "s"
    ],
    day_stand_alone_wide => [
      "m\N{U+0254}\N{U+0301}nd\N{U+0254}",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254} maf\N{U+00fa} m\N{U+00e1}ba",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254} maf\N{U+00fa} m\N{U+00e1}lal",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254} maf\N{U+00fa} m\N{U+00e1}na",
      "mab\N{U+00e1}g\N{U+00e1} m\N{U+00e1} sukul",
      "s\N{U+00e1}sadi",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254}"
    ],
    era_abbreviated => [
      "BL",
      "PB"
    ],
    era_narrow => [
      "BL",
      "PB"
    ],
    era_wide => [
      "B\N{U+00f3} Lahl\N{U+025b}\N{U+0304}",
      "Pfi\N{U+025b} Bur\N{U+012b}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Kwasio",
    month_format_abbreviated => [
      "ng1",
      "ng2",
      "ng3",
      "ng4",
      "ng5",
      "ng6",
      "ng7",
      "ng8",
      "ng9",
      "ng10",
      "ng11",
      "kris"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "ngw\N{U+025b}n mat\N{U+00e1}hra",
      "ngw\N{U+025b}n \N{U+0144}mba",
      "ngw\N{U+025b}n \N{U+0144}lal",
      "ngw\N{U+025b}n \N{U+0144}na",
      "ngw\N{U+025b}n \N{U+0144}tan",
      "ngw\N{U+025b}n \N{U+0144}tu\N{U+00f3}",
      "ngw\N{U+025b}n h\N{U+025b}mbu\N{U+025b}r\N{U+00ed}",
      "ngw\N{U+025b}n l\N{U+0254}mbi",
      "ngw\N{U+025b}n r\N{U+025b}bvu\N{U+00e2}",
      "ngw\N{U+025b}n wum",
      "ngw\N{U+025b}n wum nav\N{U+01d4}r",
      "kr\N{U+00ed}simin"
    ],
    month_stand_alone_abbreviated => [
      "ng1",
      "ng2",
      "ng3",
      "ng4",
      "ng5",
      "ng6",
      "ng7",
      "ng8",
      "ng9",
      "ng10",
      "ng11",
      "kris"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "ngw\N{U+025b}n mat\N{U+00e1}hra",
      "ngw\N{U+025b}n \N{U+0144}mba",
      "ngw\N{U+025b}n \N{U+0144}lal",
      "ngw\N{U+025b}n \N{U+0144}na",
      "ngw\N{U+025b}n \N{U+0144}tan",
      "ngw\N{U+025b}n \N{U+0144}tu\N{U+00f3}",
      "ngw\N{U+025b}n h\N{U+025b}mbu\N{U+025b}r\N{U+00ed}",
      "ngw\N{U+025b}n l\N{U+0254}mbi",
      "ngw\N{U+025b}n r\N{U+025b}bvu\N{U+00e2}",
      "ngw\N{U+025b}n wum",
      "ngw\N{U+025b}n wum nav\N{U+01d4}r",
      "kr\N{U+00ed}simin"
    ],
    name => "Kwasio",
    native_language => "nmg",
    native_name => "nmg",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Tind\N{U+025b} nv\N{U+00fa}r",
      "Tind\N{U+025b} \N{U+0144}mba",
      "Tind\N{U+025b} \N{U+0144}lal",
      "Tind\N{U+025b} \N{U+0144}na"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Tind\N{U+025b} nv\N{U+00fa}r",
      "Tind\N{U+025b} \N{U+0144}mba",
      "Tind\N{U+025b} \N{U+0144}lal",
      "Tind\N{U+025b} \N{U+0144}na"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ nmg-CM ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "nmg-CM",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "m\N{U+0254}\N{U+0301}n",
      "smb",
      "sml",
      "smn",
      "mbs",
      "sas",
      "s\N{U+0254}\N{U+0301}n"
    ],
    day_format_narrow => [
      "m",
      "s",
      "s",
      "s",
      "m",
      "s",
      "s"
    ],
    day_format_wide => [
      "m\N{U+0254}\N{U+0301}nd\N{U+0254}",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254} maf\N{U+00fa} m\N{U+00e1}ba",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254} maf\N{U+00fa} m\N{U+00e1}lal",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254} maf\N{U+00fa} m\N{U+00e1}na",
      "mab\N{U+00e1}g\N{U+00e1} m\N{U+00e1} sukul",
      "s\N{U+00e1}sadi",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254}"
    ],
    day_stand_alone_abbreviated => [
      "m\N{U+0254}\N{U+0301}n",
      "smb",
      "sml",
      "smn",
      "mbs",
      "sas",
      "s\N{U+0254}\N{U+0301}n"
    ],
    day_stand_alone_narrow => [
      "m",
      "s",
      "s",
      "s",
      "m",
      "s",
      "s"
    ],
    day_stand_alone_wide => [
      "m\N{U+0254}\N{U+0301}nd\N{U+0254}",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254} maf\N{U+00fa} m\N{U+00e1}ba",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254} maf\N{U+00fa} m\N{U+00e1}lal",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254} maf\N{U+00fa} m\N{U+00e1}na",
      "mab\N{U+00e1}g\N{U+00e1} m\N{U+00e1} sukul",
      "s\N{U+00e1}sadi",
      "s\N{U+0254}\N{U+0301}nd\N{U+0254}"
    ],
    era_abbreviated => [
      "BL",
      "PB"
    ],
    era_narrow => [
      "BL",
      "PB"
    ],
    era_wide => [
      "B\N{U+00f3} Lahl\N{U+025b}\N{U+0304}",
      "Pfi\N{U+025b} Bur\N{U+012b}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Kwasio",
    month_format_abbreviated => [
      "ng1",
      "ng2",
      "ng3",
      "ng4",
      "ng5",
      "ng6",
      "ng7",
      "ng8",
      "ng9",
      "ng10",
      "ng11",
      "kris"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "ngw\N{U+025b}n mat\N{U+00e1}hra",
      "ngw\N{U+025b}n \N{U+0144}mba",
      "ngw\N{U+025b}n \N{U+0144}lal",
      "ngw\N{U+025b}n \N{U+0144}na",
      "ngw\N{U+025b}n \N{U+0144}tan",
      "ngw\N{U+025b}n \N{U+0144}tu\N{U+00f3}",
      "ngw\N{U+025b}n h\N{U+025b}mbu\N{U+025b}r\N{U+00ed}",
      "ngw\N{U+025b}n l\N{U+0254}mbi",
      "ngw\N{U+025b}n r\N{U+025b}bvu\N{U+00e2}",
      "ngw\N{U+025b}n wum",
      "ngw\N{U+025b}n wum nav\N{U+01d4}r",
      "kr\N{U+00ed}simin"
    ],
    month_stand_alone_abbreviated => [
      "ng1",
      "ng2",
      "ng3",
      "ng4",
      "ng5",
      "ng6",
      "ng7",
      "ng8",
      "ng9",
      "ng10",
      "ng11",
      "kris"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "ngw\N{U+025b}n mat\N{U+00e1}hra",
      "ngw\N{U+025b}n \N{U+0144}mba",
      "ngw\N{U+025b}n \N{U+0144}lal",
      "ngw\N{U+025b}n \N{U+0144}na",
      "ngw\N{U+025b}n \N{U+0144}tan",
      "ngw\N{U+025b}n \N{U+0144}tu\N{U+00f3}",
      "ngw\N{U+025b}n h\N{U+025b}mbu\N{U+025b}r\N{U+00ed}",
      "ngw\N{U+025b}n l\N{U+0254}mbi",
      "ngw\N{U+025b}n r\N{U+025b}bvu\N{U+00e2}",
      "ngw\N{U+025b}n wum",
      "ngw\N{U+025b}n wum nav\N{U+01d4}r",
      "kr\N{U+00ed}simin"
    ],
    name => "Kwasio Cameroon",
    native_language => "nmg",
    native_name => "nmg Kamerun",
    native_script => undef,
    native_territory => "Kamerun",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Tind\N{U+025b} nv\N{U+00fa}r",
      "Tind\N{U+025b} \N{U+0144}mba",
      "Tind\N{U+025b} \N{U+0144}lal",
      "Tind\N{U+025b} \N{U+0144}na"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Tind\N{U+025b} nv\N{U+00fa}r",
      "Tind\N{U+025b} \N{U+0144}mba",
      "Tind\N{U+025b} \N{U+0144}lal",
      "Tind\N{U+025b} \N{U+0144}na"
    ],
    script => undef,
    territory => "Cameroon",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ nn ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d.",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d. MMM y G",
      GyMMMd => "d. MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d.M",
      MMM => "LLL",
      MMMEd => "E d. MMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMdd => "d.M.",
      Md => "d.M.",
      d => "d.",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M y",
      yMEd => "E d.M.y",
      yMM => "MM.y",
      yMMM => "MMM y",
      yMMMEd => "E d. MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d. MMM y",
      yMd => "d.M.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "nn",
    date_format_full => "EEEE d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "d. MMM y",
    date_format_short => "dd.MM.y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} 'kl'. {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "m\N{U+00e5}.",
      "ty.",
      "on.",
      "to.",
      "fr.",
      "la.",
      "s\N{U+00f8}."
    ],
    day_format_narrow => [
      "M",
      "T",
      "O",
      "T",
      "F",
      "L",
      "S"
    ],
    day_format_wide => [
      "m\N{U+00e5}ndag",
      "tysdag",
      "onsdag",
      "torsdag",
      "fredag",
      "laurdag",
      "s\N{U+00f8}ndag"
    ],
    day_stand_alone_abbreviated => [
      "m\N{U+00e5}.",
      "ty.",
      "on.",
      "to.",
      "fr.",
      "la.",
      "s\N{U+00f8}."
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "O",
      "T",
      "F",
      "L",
      "S"
    ],
    day_stand_alone_wide => [
      "m\N{U+00e5}ndag",
      "tysdag",
      "onsdag",
      "torsdag",
      "fredag",
      "laurdag",
      "s\N{U+00f8}ndag"
    ],
    era_abbreviated => [
      "f.Kr.",
      "e.Kr."
    ],
    era_narrow => [
      "f.Kr.",
      "e.Kr."
    ],
    era_wide => [
      "f.Kr.",
      "e.Kr."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Norwegian Nynorsk",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "mars",
      "apr.",
      "mai",
      "juni",
      "juli",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "des."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "januar",
      "februar",
      "mars",
      "april",
      "mai",
      "juni",
      "juli",
      "august",
      "september",
      "oktober",
      "november",
      "desember"
    ],
    month_stand_alone_abbreviated => [
      "jan.",
      "feb.",
      "mars",
      "apr.",
      "mai",
      "juni",
      "juli",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "des."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "januar",
      "februar",
      "mars",
      "april",
      "mai",
      "juni",
      "juli",
      "august",
      "september",
      "oktober",
      "november",
      "desember"
    ],
    name => "Norwegian Nynorsk",
    native_language => "nynorsk",
    native_name => "nynorsk",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. kvartal",
      "2. kvartal",
      "3. kvartal",
      "4. kvartal"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. kvartal",
      "2. kvartal",
      "3. kvartal",
      "4. kvartal"
    ],
    script => undef,
    territory => undef,
    time_format_full => "'kl'. HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ nn-NO ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d.",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d. MMM y G",
      GyMMMd => "d. MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d.M",
      MMM => "LLL",
      MMMEd => "E d. MMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMdd => "d.M.",
      Md => "d.M.",
      d => "d.",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M y",
      yMEd => "E d.M.y",
      yMM => "MM.y",
      yMMM => "MMM y",
      yMMMEd => "E d. MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d. MMM y",
      yMd => "d.M.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "nn-NO",
    date_format_full => "EEEE d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "d. MMM y",
    date_format_short => "dd.MM.y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} 'kl'. {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "m\N{U+00e5}.",
      "ty.",
      "on.",
      "to.",
      "fr.",
      "la.",
      "s\N{U+00f8}."
    ],
    day_format_narrow => [
      "M",
      "T",
      "O",
      "T",
      "F",
      "L",
      "S"
    ],
    day_format_wide => [
      "m\N{U+00e5}ndag",
      "tysdag",
      "onsdag",
      "torsdag",
      "fredag",
      "laurdag",
      "s\N{U+00f8}ndag"
    ],
    day_stand_alone_abbreviated => [
      "m\N{U+00e5}.",
      "ty.",
      "on.",
      "to.",
      "fr.",
      "la.",
      "s\N{U+00f8}."
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "O",
      "T",
      "F",
      "L",
      "S"
    ],
    day_stand_alone_wide => [
      "m\N{U+00e5}ndag",
      "tysdag",
      "onsdag",
      "torsdag",
      "fredag",
      "laurdag",
      "s\N{U+00f8}ndag"
    ],
    era_abbreviated => [
      "f.Kr.",
      "e.Kr."
    ],
    era_narrow => [
      "f.Kr.",
      "e.Kr."
    ],
    era_wide => [
      "f.Kr.",
      "e.Kr."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %d. %b %H:%M:%S %z %Y",
    glibc_date_format => "%d. %b %Y",
    glibc_datetime_format => "%a %d. %b %Y kl. %H.%M %z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "kl. %H.%M %z",
    language => "Norwegian Nynorsk",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "mars",
      "apr.",
      "mai",
      "juni",
      "juli",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "des."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "januar",
      "februar",
      "mars",
      "april",
      "mai",
      "juni",
      "juli",
      "august",
      "september",
      "oktober",
      "november",
      "desember"
    ],
    month_stand_alone_abbreviated => [
      "jan.",
      "feb.",
      "mars",
      "apr.",
      "mai",
      "juni",
      "juli",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "des."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "januar",
      "februar",
      "mars",
      "april",
      "mai",
      "juni",
      "juli",
      "august",
      "september",
      "oktober",
      "november",
      "desember"
    ],
    name => "Norwegian Nynorsk Norway",
    native_language => "nynorsk",
    native_name => "nynorsk Noreg",
    native_script => undef,
    native_territory => "Noreg",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. kvartal",
      "2. kvartal",
      "3. kvartal",
      "4. kvartal"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. kvartal",
      "2. kvartal",
      "3. kvartal",
      "4. kvartal"
    ],
    script => undef,
    territory => "Norway",
    time_format_full => "'kl'. HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ nnh ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "E , 'ly\N{U+025b}'\N{U+030c}\N{U+02bc} d 'na' M, y",
      yMMM => "MMM y",
      yMMMEd => "E , 'ly\N{U+025b}'\N{U+030c}\N{U+02bc} d 'na' MMM, y",
      yMMMM => "y MMMM",
      yMMMd => "'ly\N{U+025b}'\N{U+030c}\N{U+02bc} d 'na' MMMM, y",
      yMd => "d/M/y",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "nnh",
    date_format_full => "EEEE , 'ly\N{U+025b}'\N{U+030c}\N{U+02bc} d 'na' MMMM, y",
    date_format_long => "'ly\N{U+025b}'\N{U+030c}\N{U+02bc} d 'na' MMMM, y",
    date_format_medium => "d MMM, y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1},{0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "mvf\N{U+00f2} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "mb\N{U+0254}\N{U+0301}\N{U+0254}nt\N{U+00e8} mvf\N{U+00f2} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "ts\N{U+00e8}ts\N{U+025b}\N{U+0300}\N{U+025b} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "mb\N{U+0254}\N{U+0301}\N{U+0254}nt\N{U+00e8} tsets\N{U+025b}\N{U+0300}\N{U+025b} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "mvf\N{U+00f2} m\N{U+00e0}ga ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "m\N{U+00e0}ga ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "ly\N{U+025b}\N{U+02bc}\N{U+025b}\N{U+0301} s\N{U+1e85}\N{U+00ed}\N{U+014b}t\N{U+00e8}"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "mvf\N{U+00f2} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "mb\N{U+0254}\N{U+0301}\N{U+0254}nt\N{U+00e8} mvf\N{U+00f2} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "ts\N{U+00e8}ts\N{U+025b}\N{U+0300}\N{U+025b} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "mb\N{U+0254}\N{U+0301}\N{U+0254}nt\N{U+00e8} tsets\N{U+025b}\N{U+0300}\N{U+025b} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "mvf\N{U+00f2} m\N{U+00e0}ga ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "m\N{U+00e0}ga ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "ly\N{U+025b}\N{U+02bc}\N{U+025b}\N{U+0301} s\N{U+1e85}\N{U+00ed}\N{U+014b}t\N{U+00e8}"
    ],
    day_stand_alone_abbreviated => [
      "mvf\N{U+00f2} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "mb\N{U+0254}\N{U+0301}\N{U+0254}nt\N{U+00e8} mvf\N{U+00f2} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "ts\N{U+00e8}ts\N{U+025b}\N{U+0300}\N{U+025b} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "mb\N{U+0254}\N{U+0301}\N{U+0254}nt\N{U+00e8} tsets\N{U+025b}\N{U+0300}\N{U+025b} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "mvf\N{U+00f2} m\N{U+00e0}ga ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "m\N{U+00e0}ga ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "ly\N{U+025b}\N{U+02bc}\N{U+025b}\N{U+0301} s\N{U+1e85}\N{U+00ed}\N{U+014b}t\N{U+00e8}"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "mvf\N{U+00f2} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "mb\N{U+0254}\N{U+0301}\N{U+0254}nt\N{U+00e8} mvf\N{U+00f2} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "ts\N{U+00e8}ts\N{U+025b}\N{U+0300}\N{U+025b} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "mb\N{U+0254}\N{U+0301}\N{U+0254}nt\N{U+00e8} tsets\N{U+025b}\N{U+0300}\N{U+025b} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "mvf\N{U+00f2} m\N{U+00e0}ga ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "m\N{U+00e0}ga ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "ly\N{U+025b}\N{U+02bc}\N{U+025b}\N{U+0301} s\N{U+1e85}\N{U+00ed}\N{U+014b}t\N{U+00e8}"
    ],
    era_abbreviated => [
      "m.z.Y.",
      "m.g.n.Y."
    ],
    era_narrow => [
      "m.z.Y.",
      "m.g.n.Y."
    ],
    era_wide => [
      "m\N{U+00e9} zy\N{U+00e9} Y\N{U+011b}s\N{U+00f4}",
      "m\N{U+00e9} g\N{U+00ff}o \N{U+0144}zy\N{U+00e9} Y\N{U+011b}s\N{U+00f4}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Ngiemboon",
    month_format_abbreviated => [
      "sa\N{U+014b} tsets\N{U+025b}\N{U+0300}\N{U+025b} l\N{U+00f9}m",
      "sa\N{U+014b} k\N{U+00e0}g ngw\N{U+00f3}\N{U+014b}",
      "sa\N{U+014b} lepy\N{U+00e8} sh\N{U+00fa}m",
      "sa\N{U+014b} c\N{U+00ff}\N{U+00f3}",
      "sa\N{U+014b} ts\N{U+025b}\N{U+0300}\N{U+025b} c\N{U+00ff}\N{U+00f3}",
      "sa\N{U+014b} nj\N{U+00ff}ol\N{U+00e1}\N{U+02bc}",
      "sa\N{U+014b} ty\N{U+025b}\N{U+0300}b ty\N{U+025b}\N{U+0300}b mb\N{U+0289}\N{U+0300}\N{U+014b}",
      "sa\N{U+014b} mb\N{U+0289}\N{U+0300}\N{U+014b}",
      "sa\N{U+014b} ngw\N{U+0254}\N{U+0300}\N{U+02bc} mb\N{U+00ff}\N{U+025b}",
      "sa\N{U+014b} t\N{U+00e0}\N{U+014b}a tsets\N{U+00e1}\N{U+02bc}",
      "sa\N{U+014b} mejwo\N{U+014b}\N{U+00f3}",
      "sa\N{U+014b} l\N{U+00f9}m"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "sa\N{U+014b} tsets\N{U+025b}\N{U+0300}\N{U+025b} l\N{U+00f9}m",
      "sa\N{U+014b} k\N{U+00e0}g ngw\N{U+00f3}\N{U+014b}",
      "sa\N{U+014b} lepy\N{U+00e8} sh\N{U+00fa}m",
      "sa\N{U+014b} c\N{U+00ff}\N{U+00f3}",
      "sa\N{U+014b} ts\N{U+025b}\N{U+0300}\N{U+025b} c\N{U+00ff}\N{U+00f3}",
      "sa\N{U+014b} nj\N{U+00ff}ol\N{U+00e1}\N{U+02bc}",
      "sa\N{U+014b} ty\N{U+025b}\N{U+0300}b ty\N{U+025b}\N{U+0300}b mb\N{U+0289}\N{U+0300}\N{U+014b}",
      "sa\N{U+014b} mb\N{U+0289}\N{U+0300}\N{U+014b}",
      "sa\N{U+014b} ngw\N{U+0254}\N{U+0300}\N{U+02bc} mb\N{U+00ff}\N{U+025b}",
      "sa\N{U+014b} t\N{U+00e0}\N{U+014b}a tsets\N{U+00e1}\N{U+02bc}",
      "sa\N{U+014b} mejwo\N{U+014b}\N{U+00f3}",
      "sa\N{U+014b} l\N{U+00f9}m"
    ],
    month_stand_alone_abbreviated => [
      "sa\N{U+014b} tsets\N{U+025b}\N{U+0300}\N{U+025b} l\N{U+00f9}m",
      "sa\N{U+014b} k\N{U+00e0}g ngw\N{U+00f3}\N{U+014b}",
      "sa\N{U+014b} lepy\N{U+00e8} sh\N{U+00fa}m",
      "sa\N{U+014b} c\N{U+00ff}\N{U+00f3}",
      "sa\N{U+014b} ts\N{U+025b}\N{U+0300}\N{U+025b} c\N{U+00ff}\N{U+00f3}",
      "sa\N{U+014b} nj\N{U+00ff}ol\N{U+00e1}\N{U+02bc}",
      "sa\N{U+014b} ty\N{U+025b}\N{U+0300}b ty\N{U+025b}\N{U+0300}b mb\N{U+0289}\N{U+0300}\N{U+014b}",
      "sa\N{U+014b} mb\N{U+0289}\N{U+0300}\N{U+014b}",
      "sa\N{U+014b} ngw\N{U+0254}\N{U+0300}\N{U+02bc} mb\N{U+00ff}\N{U+025b}",
      "sa\N{U+014b} t\N{U+00e0}\N{U+014b}a tsets\N{U+00e1}\N{U+02bc}",
      "sa\N{U+014b} mejwo\N{U+014b}\N{U+00f3}",
      "sa\N{U+014b} l\N{U+00f9}m"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "sa\N{U+014b} tsets\N{U+025b}\N{U+0300}\N{U+025b} l\N{U+00f9}m",
      "sa\N{U+014b} k\N{U+00e0}g ngw\N{U+00f3}\N{U+014b}",
      "sa\N{U+014b} lepy\N{U+00e8} sh\N{U+00fa}m",
      "sa\N{U+014b} c\N{U+00ff}\N{U+00f3}",
      "sa\N{U+014b} ts\N{U+025b}\N{U+0300}\N{U+025b} c\N{U+00ff}\N{U+00f3}",
      "sa\N{U+014b} nj\N{U+00ff}ol\N{U+00e1}\N{U+02bc}",
      "sa\N{U+014b} ty\N{U+025b}\N{U+0300}b ty\N{U+025b}\N{U+0300}b mb\N{U+0289}\N{U+0300}\N{U+014b}",
      "sa\N{U+014b} mb\N{U+0289}\N{U+0300}\N{U+014b}",
      "sa\N{U+014b} ngw\N{U+0254}\N{U+0300}\N{U+02bc} mb\N{U+00ff}\N{U+025b}",
      "sa\N{U+014b} t\N{U+00e0}\N{U+014b}a tsets\N{U+00e1}\N{U+02bc}",
      "sa\N{U+014b} mejwo\N{U+014b}\N{U+00f3}",
      "sa\N{U+014b} l\N{U+00f9}m"
    ],
    name => "Ngiemboon",
    native_language => "Shw\N{U+00f3}\N{U+014b}\N{U+00f2} ngiemb\N{U+0254}\N{U+0254}n",
    native_name => "Shw\N{U+00f3}\N{U+014b}\N{U+00f2} ngiemb\N{U+0254}\N{U+0254}n",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ nnh-CM ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "E , 'ly\N{U+025b}'\N{U+030c}\N{U+02bc} d 'na' M, y",
      yMMM => "MMM y",
      yMMMEd => "E , 'ly\N{U+025b}'\N{U+030c}\N{U+02bc} d 'na' MMM, y",
      yMMMM => "y MMMM",
      yMMMd => "'ly\N{U+025b}'\N{U+030c}\N{U+02bc} d 'na' MMMM, y",
      yMd => "d/M/y",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "nnh-CM",
    date_format_full => "EEEE , 'ly\N{U+025b}'\N{U+030c}\N{U+02bc} d 'na' MMMM, y",
    date_format_long => "'ly\N{U+025b}'\N{U+030c}\N{U+02bc} d 'na' MMMM, y",
    date_format_medium => "d MMM, y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1},{0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "mvf\N{U+00f2} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "mb\N{U+0254}\N{U+0301}\N{U+0254}nt\N{U+00e8} mvf\N{U+00f2} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "ts\N{U+00e8}ts\N{U+025b}\N{U+0300}\N{U+025b} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "mb\N{U+0254}\N{U+0301}\N{U+0254}nt\N{U+00e8} tsets\N{U+025b}\N{U+0300}\N{U+025b} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "mvf\N{U+00f2} m\N{U+00e0}ga ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "m\N{U+00e0}ga ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "ly\N{U+025b}\N{U+02bc}\N{U+025b}\N{U+0301} s\N{U+1e85}\N{U+00ed}\N{U+014b}t\N{U+00e8}"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "mvf\N{U+00f2} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "mb\N{U+0254}\N{U+0301}\N{U+0254}nt\N{U+00e8} mvf\N{U+00f2} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "ts\N{U+00e8}ts\N{U+025b}\N{U+0300}\N{U+025b} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "mb\N{U+0254}\N{U+0301}\N{U+0254}nt\N{U+00e8} tsets\N{U+025b}\N{U+0300}\N{U+025b} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "mvf\N{U+00f2} m\N{U+00e0}ga ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "m\N{U+00e0}ga ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "ly\N{U+025b}\N{U+02bc}\N{U+025b}\N{U+0301} s\N{U+1e85}\N{U+00ed}\N{U+014b}t\N{U+00e8}"
    ],
    day_stand_alone_abbreviated => [
      "mvf\N{U+00f2} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "mb\N{U+0254}\N{U+0301}\N{U+0254}nt\N{U+00e8} mvf\N{U+00f2} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "ts\N{U+00e8}ts\N{U+025b}\N{U+0300}\N{U+025b} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "mb\N{U+0254}\N{U+0301}\N{U+0254}nt\N{U+00e8} tsets\N{U+025b}\N{U+0300}\N{U+025b} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "mvf\N{U+00f2} m\N{U+00e0}ga ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "m\N{U+00e0}ga ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "ly\N{U+025b}\N{U+02bc}\N{U+025b}\N{U+0301} s\N{U+1e85}\N{U+00ed}\N{U+014b}t\N{U+00e8}"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "mvf\N{U+00f2} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "mb\N{U+0254}\N{U+0301}\N{U+0254}nt\N{U+00e8} mvf\N{U+00f2} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "ts\N{U+00e8}ts\N{U+025b}\N{U+0300}\N{U+025b} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "mb\N{U+0254}\N{U+0301}\N{U+0254}nt\N{U+00e8} tsets\N{U+025b}\N{U+0300}\N{U+025b} ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "mvf\N{U+00f2} m\N{U+00e0}ga ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "m\N{U+00e0}ga ly\N{U+025b}\N{U+030c}\N{U+02bc}",
      "ly\N{U+025b}\N{U+02bc}\N{U+025b}\N{U+0301} s\N{U+1e85}\N{U+00ed}\N{U+014b}t\N{U+00e8}"
    ],
    era_abbreviated => [
      "m.z.Y.",
      "m.g.n.Y."
    ],
    era_narrow => [
      "m.z.Y.",
      "m.g.n.Y."
    ],
    era_wide => [
      "m\N{U+00e9} zy\N{U+00e9} Y\N{U+011b}s\N{U+00f4}",
      "m\N{U+00e9} g\N{U+00ff}o \N{U+0144}zy\N{U+00e9} Y\N{U+011b}s\N{U+00f4}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Ngiemboon",
    month_format_abbreviated => [
      "sa\N{U+014b} tsets\N{U+025b}\N{U+0300}\N{U+025b} l\N{U+00f9}m",
      "sa\N{U+014b} k\N{U+00e0}g ngw\N{U+00f3}\N{U+014b}",
      "sa\N{U+014b} lepy\N{U+00e8} sh\N{U+00fa}m",
      "sa\N{U+014b} c\N{U+00ff}\N{U+00f3}",
      "sa\N{U+014b} ts\N{U+025b}\N{U+0300}\N{U+025b} c\N{U+00ff}\N{U+00f3}",
      "sa\N{U+014b} nj\N{U+00ff}ol\N{U+00e1}\N{U+02bc}",
      "sa\N{U+014b} ty\N{U+025b}\N{U+0300}b ty\N{U+025b}\N{U+0300}b mb\N{U+0289}\N{U+0300}\N{U+014b}",
      "sa\N{U+014b} mb\N{U+0289}\N{U+0300}\N{U+014b}",
      "sa\N{U+014b} ngw\N{U+0254}\N{U+0300}\N{U+02bc} mb\N{U+00ff}\N{U+025b}",
      "sa\N{U+014b} t\N{U+00e0}\N{U+014b}a tsets\N{U+00e1}\N{U+02bc}",
      "sa\N{U+014b} mejwo\N{U+014b}\N{U+00f3}",
      "sa\N{U+014b} l\N{U+00f9}m"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "sa\N{U+014b} tsets\N{U+025b}\N{U+0300}\N{U+025b} l\N{U+00f9}m",
      "sa\N{U+014b} k\N{U+00e0}g ngw\N{U+00f3}\N{U+014b}",
      "sa\N{U+014b} lepy\N{U+00e8} sh\N{U+00fa}m",
      "sa\N{U+014b} c\N{U+00ff}\N{U+00f3}",
      "sa\N{U+014b} ts\N{U+025b}\N{U+0300}\N{U+025b} c\N{U+00ff}\N{U+00f3}",
      "sa\N{U+014b} nj\N{U+00ff}ol\N{U+00e1}\N{U+02bc}",
      "sa\N{U+014b} ty\N{U+025b}\N{U+0300}b ty\N{U+025b}\N{U+0300}b mb\N{U+0289}\N{U+0300}\N{U+014b}",
      "sa\N{U+014b} mb\N{U+0289}\N{U+0300}\N{U+014b}",
      "sa\N{U+014b} ngw\N{U+0254}\N{U+0300}\N{U+02bc} mb\N{U+00ff}\N{U+025b}",
      "sa\N{U+014b} t\N{U+00e0}\N{U+014b}a tsets\N{U+00e1}\N{U+02bc}",
      "sa\N{U+014b} mejwo\N{U+014b}\N{U+00f3}",
      "sa\N{U+014b} l\N{U+00f9}m"
    ],
    month_stand_alone_abbreviated => [
      "sa\N{U+014b} tsets\N{U+025b}\N{U+0300}\N{U+025b} l\N{U+00f9}m",
      "sa\N{U+014b} k\N{U+00e0}g ngw\N{U+00f3}\N{U+014b}",
      "sa\N{U+014b} lepy\N{U+00e8} sh\N{U+00fa}m",
      "sa\N{U+014b} c\N{U+00ff}\N{U+00f3}",
      "sa\N{U+014b} ts\N{U+025b}\N{U+0300}\N{U+025b} c\N{U+00ff}\N{U+00f3}",
      "sa\N{U+014b} nj\N{U+00ff}ol\N{U+00e1}\N{U+02bc}",
      "sa\N{U+014b} ty\N{U+025b}\N{U+0300}b ty\N{U+025b}\N{U+0300}b mb\N{U+0289}\N{U+0300}\N{U+014b}",
      "sa\N{U+014b} mb\N{U+0289}\N{U+0300}\N{U+014b}",
      "sa\N{U+014b} ngw\N{U+0254}\N{U+0300}\N{U+02bc} mb\N{U+00ff}\N{U+025b}",
      "sa\N{U+014b} t\N{U+00e0}\N{U+014b}a tsets\N{U+00e1}\N{U+02bc}",
      "sa\N{U+014b} mejwo\N{U+014b}\N{U+00f3}",
      "sa\N{U+014b} l\N{U+00f9}m"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "sa\N{U+014b} tsets\N{U+025b}\N{U+0300}\N{U+025b} l\N{U+00f9}m",
      "sa\N{U+014b} k\N{U+00e0}g ngw\N{U+00f3}\N{U+014b}",
      "sa\N{U+014b} lepy\N{U+00e8} sh\N{U+00fa}m",
      "sa\N{U+014b} c\N{U+00ff}\N{U+00f3}",
      "sa\N{U+014b} ts\N{U+025b}\N{U+0300}\N{U+025b} c\N{U+00ff}\N{U+00f3}",
      "sa\N{U+014b} nj\N{U+00ff}ol\N{U+00e1}\N{U+02bc}",
      "sa\N{U+014b} ty\N{U+025b}\N{U+0300}b ty\N{U+025b}\N{U+0300}b mb\N{U+0289}\N{U+0300}\N{U+014b}",
      "sa\N{U+014b} mb\N{U+0289}\N{U+0300}\N{U+014b}",
      "sa\N{U+014b} ngw\N{U+0254}\N{U+0300}\N{U+02bc} mb\N{U+00ff}\N{U+025b}",
      "sa\N{U+014b} t\N{U+00e0}\N{U+014b}a tsets\N{U+00e1}\N{U+02bc}",
      "sa\N{U+014b} mejwo\N{U+014b}\N{U+00f3}",
      "sa\N{U+014b} l\N{U+00f9}m"
    ],
    name => "Ngiemboon Cameroon",
    native_language => "Shw\N{U+00f3}\N{U+014b}\N{U+00f2} ngiemb\N{U+0254}\N{U+0254}n",
    native_name => "Shw\N{U+00f3}\N{U+014b}\N{U+00f2} ngiemb\N{U+0254}\N{U+0254}n K\N{U+00e0}mal\N{U+00fb}m",
    native_script => undef,
    native_territory => "K\N{U+00e0}mal\N{U+00fb}m",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "Cameroon",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ nus ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d-M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E\N{U+060c} d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "nus",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Jiec",
      "R\N{U+025b}w",
      "Di\N{U+0254}\N{U+0331}k",
      "\N{U+014a}uaan",
      "Dhieec",
      "B\N{U+00e4}k\N{U+025b}l",
      "C\N{U+00e4}\N{U+014b}"
    ],
    day_format_narrow => [
      "J",
      "R",
      "D",
      "\N{U+014a}",
      "D",
      "B",
      "C"
    ],
    day_format_wide => [
      "Jiec la\N{U+0331}t",
      "R\N{U+025b}w l\N{U+00e4}tni",
      "Di\N{U+0254}\N{U+0331}k l\N{U+00e4}tni",
      "\N{U+014a}uaan l\N{U+00e4}tni",
      "Dhieec l\N{U+00e4}tni",
      "B\N{U+00e4}k\N{U+025b}l l\N{U+00e4}tni",
      "C\N{U+00e4}\N{U+014b} ku\N{U+0254}th"
    ],
    day_stand_alone_abbreviated => [
      "Jiec",
      "R\N{U+025b}w",
      "Di\N{U+0254}\N{U+0331}k",
      "\N{U+014a}uaan",
      "Dhieec",
      "B\N{U+00e4}k\N{U+025b}l",
      "C\N{U+00e4}\N{U+014b}"
    ],
    day_stand_alone_narrow => [
      "J",
      "R",
      "D",
      "\N{U+014a}",
      "D",
      "B",
      "C"
    ],
    day_stand_alone_wide => [
      "Jiec la\N{U+0331}t",
      "R\N{U+025b}w l\N{U+00e4}tni",
      "Di\N{U+0254}\N{U+0331}k l\N{U+00e4}tni",
      "\N{U+014a}uaan l\N{U+00e4}tni",
      "Dhieec l\N{U+00e4}tni",
      "B\N{U+00e4}k\N{U+025b}l l\N{U+00e4}tni",
      "C\N{U+00e4}\N{U+014b} ku\N{U+0254}th"
    ],
    era_abbreviated => [
      "AY",
      "\N{U+0190}Y"
    ],
    era_narrow => [
      "AY",
      "\N{U+0190}Y"
    ],
    era_wide => [
      "A ka\N{U+0331}n Yecu ni dap",
      "\N{U+0190} ca Yecu dap"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Nuer",
    month_format_abbreviated => [
      "Tiop",
      "P\N{U+025b}t",
      "Du\N{U+0254}\N{U+0331}\N{U+0254}\N{U+0331}",
      "Guak",
      "Du\N{U+00e4}",
      "Kor",
      "Pay",
      "Thoo",
      "T\N{U+025b}\N{U+025b}",
      "Laa",
      "Kur",
      "Tid"
    ],
    month_format_narrow => [
      "T",
      "P",
      "D",
      "G",
      "D",
      "K",
      "P",
      "T",
      "T",
      "L",
      "K",
      "T"
    ],
    month_format_wide => [
      "Tiop thar p\N{U+025b}t",
      "P\N{U+025b}t",
      "Du\N{U+0254}\N{U+0331}\N{U+0254}\N{U+0331}\N{U+014b}",
      "Guak",
      "Du\N{U+00e4}t",
      "Kornyoot",
      "Pay yie\N{U+0331}tni",
      "Tho\N{U+0331}o\N{U+0331}r",
      "T\N{U+025b}\N{U+025b}r",
      "Laath",
      "Kur",
      "Tio\N{U+0331}p in di\N{U+0331}i\N{U+0331}t"
    ],
    month_stand_alone_abbreviated => [
      "Tiop",
      "P\N{U+025b}t",
      "Du\N{U+0254}\N{U+0331}\N{U+0254}\N{U+0331}",
      "Guak",
      "Du\N{U+00e4}",
      "Kor",
      "Pay",
      "Thoo",
      "T\N{U+025b}\N{U+025b}",
      "Laa",
      "Kur",
      "Tid"
    ],
    month_stand_alone_narrow => [
      "T",
      "P",
      "D",
      "G",
      "D",
      "K",
      "P",
      "T",
      "T",
      "L",
      "K",
      "T"
    ],
    month_stand_alone_wide => [
      "Tiop thar p\N{U+025b}t",
      "P\N{U+025b}t",
      "Du\N{U+0254}\N{U+0331}\N{U+0254}\N{U+0331}\N{U+014b}",
      "Guak",
      "Du\N{U+00e4}t",
      "Kornyoot",
      "Pay yie\N{U+0331}tni",
      "Tho\N{U+0331}o\N{U+0331}r",
      "T\N{U+025b}\N{U+025b}r",
      "Laath",
      "Kur",
      "Tio\N{U+0331}p in di\N{U+0331}i\N{U+0331}t"
    ],
    name => "Nuer",
    native_language => "Thok Nath",
    native_name => "Thok Nath",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "P1",
      "P2",
      "P3",
      "P4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "P\N{U+00e4}th di\N{U+0254}k tin nhiam",
      "P\N{U+00e4}th di\N{U+0254}k tin guur\N{U+025b}",
      "P\N{U+00e4}th di\N{U+0254}k tin w\N{U+00e4} k\N{U+0254}\N{U+0254}ri\N{U+025b}n",
      "P\N{U+00e4}th di\N{U+0254}k tin ji\N{U+0254}akdi\N{U+025b}n"
    ],
    quarter_stand_alone_abbreviated => [
      "P1",
      "P2",
      "P3",
      "P4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "P\N{U+00e4}th di\N{U+0254}k tin nhiam",
      "P\N{U+00e4}th di\N{U+0254}k tin guur\N{U+025b}",
      "P\N{U+00e4}th di\N{U+0254}k tin w\N{U+00e4} k\N{U+0254}\N{U+0254}ri\N{U+025b}n",
      "P\N{U+00e4}th di\N{U+0254}k tin ji\N{U+0254}akdi\N{U+025b}n"
    ],
    script => undef,
    territory => undef,
    time_format_full => "zzzz h:mm:ss a",
    time_format_long => "z h:mm:ss a",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ nus-SS ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d-M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E\N{U+060c} d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "nus-SS",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Jiec",
      "R\N{U+025b}w",
      "Di\N{U+0254}\N{U+0331}k",
      "\N{U+014a}uaan",
      "Dhieec",
      "B\N{U+00e4}k\N{U+025b}l",
      "C\N{U+00e4}\N{U+014b}"
    ],
    day_format_narrow => [
      "J",
      "R",
      "D",
      "\N{U+014a}",
      "D",
      "B",
      "C"
    ],
    day_format_wide => [
      "Jiec la\N{U+0331}t",
      "R\N{U+025b}w l\N{U+00e4}tni",
      "Di\N{U+0254}\N{U+0331}k l\N{U+00e4}tni",
      "\N{U+014a}uaan l\N{U+00e4}tni",
      "Dhieec l\N{U+00e4}tni",
      "B\N{U+00e4}k\N{U+025b}l l\N{U+00e4}tni",
      "C\N{U+00e4}\N{U+014b} ku\N{U+0254}th"
    ],
    day_stand_alone_abbreviated => [
      "Jiec",
      "R\N{U+025b}w",
      "Di\N{U+0254}\N{U+0331}k",
      "\N{U+014a}uaan",
      "Dhieec",
      "B\N{U+00e4}k\N{U+025b}l",
      "C\N{U+00e4}\N{U+014b}"
    ],
    day_stand_alone_narrow => [
      "J",
      "R",
      "D",
      "\N{U+014a}",
      "D",
      "B",
      "C"
    ],
    day_stand_alone_wide => [
      "Jiec la\N{U+0331}t",
      "R\N{U+025b}w l\N{U+00e4}tni",
      "Di\N{U+0254}\N{U+0331}k l\N{U+00e4}tni",
      "\N{U+014a}uaan l\N{U+00e4}tni",
      "Dhieec l\N{U+00e4}tni",
      "B\N{U+00e4}k\N{U+025b}l l\N{U+00e4}tni",
      "C\N{U+00e4}\N{U+014b} ku\N{U+0254}th"
    ],
    era_abbreviated => [
      "AY",
      "\N{U+0190}Y"
    ],
    era_narrow => [
      "AY",
      "\N{U+0190}Y"
    ],
    era_wide => [
      "A ka\N{U+0331}n Yecu ni dap",
      "\N{U+0190} ca Yecu dap"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Nuer",
    month_format_abbreviated => [
      "Tiop",
      "P\N{U+025b}t",
      "Du\N{U+0254}\N{U+0331}\N{U+0254}\N{U+0331}",
      "Guak",
      "Du\N{U+00e4}",
      "Kor",
      "Pay",
      "Thoo",
      "T\N{U+025b}\N{U+025b}",
      "Laa",
      "Kur",
      "Tid"
    ],
    month_format_narrow => [
      "T",
      "P",
      "D",
      "G",
      "D",
      "K",
      "P",
      "T",
      "T",
      "L",
      "K",
      "T"
    ],
    month_format_wide => [
      "Tiop thar p\N{U+025b}t",
      "P\N{U+025b}t",
      "Du\N{U+0254}\N{U+0331}\N{U+0254}\N{U+0331}\N{U+014b}",
      "Guak",
      "Du\N{U+00e4}t",
      "Kornyoot",
      "Pay yie\N{U+0331}tni",
      "Tho\N{U+0331}o\N{U+0331}r",
      "T\N{U+025b}\N{U+025b}r",
      "Laath",
      "Kur",
      "Tio\N{U+0331}p in di\N{U+0331}i\N{U+0331}t"
    ],
    month_stand_alone_abbreviated => [
      "Tiop",
      "P\N{U+025b}t",
      "Du\N{U+0254}\N{U+0331}\N{U+0254}\N{U+0331}",
      "Guak",
      "Du\N{U+00e4}",
      "Kor",
      "Pay",
      "Thoo",
      "T\N{U+025b}\N{U+025b}",
      "Laa",
      "Kur",
      "Tid"
    ],
    month_stand_alone_narrow => [
      "T",
      "P",
      "D",
      "G",
      "D",
      "K",
      "P",
      "T",
      "T",
      "L",
      "K",
      "T"
    ],
    month_stand_alone_wide => [
      "Tiop thar p\N{U+025b}t",
      "P\N{U+025b}t",
      "Du\N{U+0254}\N{U+0331}\N{U+0254}\N{U+0331}\N{U+014b}",
      "Guak",
      "Du\N{U+00e4}t",
      "Kornyoot",
      "Pay yie\N{U+0331}tni",
      "Tho\N{U+0331}o\N{U+0331}r",
      "T\N{U+025b}\N{U+025b}r",
      "Laath",
      "Kur",
      "Tio\N{U+0331}p in di\N{U+0331}i\N{U+0331}t"
    ],
    name => "Nuer South Sudan",
    native_language => "Thok Nath",
    native_name => "Thok Nath SS",
    native_script => undef,
    native_territory => "SS",
    native_variant => undef,
    quarter_format_abbreviated => [
      "P1",
      "P2",
      "P3",
      "P4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "P\N{U+00e4}th di\N{U+0254}k tin nhiam",
      "P\N{U+00e4}th di\N{U+0254}k tin guur\N{U+025b}",
      "P\N{U+00e4}th di\N{U+0254}k tin w\N{U+00e4} k\N{U+0254}\N{U+0254}ri\N{U+025b}n",
      "P\N{U+00e4}th di\N{U+0254}k tin ji\N{U+0254}akdi\N{U+025b}n"
    ],
    quarter_stand_alone_abbreviated => [
      "P1",
      "P2",
      "P3",
      "P4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "P\N{U+00e4}th di\N{U+0254}k tin nhiam",
      "P\N{U+00e4}th di\N{U+0254}k tin guur\N{U+025b}",
      "P\N{U+00e4}th di\N{U+0254}k tin w\N{U+00e4} k\N{U+0254}\N{U+0254}ri\N{U+025b}n",
      "P\N{U+00e4}th di\N{U+0254}k tin ji\N{U+0254}akdi\N{U+025b}n"
    ],
    script => undef,
    territory => "South Sudan",
    time_format_full => "zzzz h:mm:ss a",
    time_format_long => "z h:mm:ss a",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ nyn ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "nyn",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "ORK",
      "OKB",
      "OKS",
      "OKN",
      "OKT",
      "OMK",
      "SAN"
    ],
    day_format_narrow => [
      "K",
      "R",
      "S",
      "N",
      "T",
      "M",
      "S"
    ],
    day_format_wide => [
      "Orwokubanza",
      "Orwakabiri",
      "Orwakashatu",
      "Orwakana",
      "Orwakataano",
      "Orwamukaaga",
      "Sande"
    ],
    day_stand_alone_abbreviated => [
      "ORK",
      "OKB",
      "OKS",
      "OKN",
      "OKT",
      "OMK",
      "SAN"
    ],
    day_stand_alone_narrow => [
      "K",
      "R",
      "S",
      "N",
      "T",
      "M",
      "S"
    ],
    day_stand_alone_wide => [
      "Orwokubanza",
      "Orwakabiri",
      "Orwakashatu",
      "Orwakana",
      "Orwakataano",
      "Orwamukaaga",
      "Sande"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "Kurisito Atakaijire",
      "Kurisito Yaijire"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Nyankole",
    month_format_abbreviated => [
      "KBZ",
      "KBR",
      "KST",
      "KKN",
      "KTN",
      "KMK",
      "KMS",
      "KMN",
      "KMW",
      "KKM",
      "KNK",
      "KNB"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Okwokubanza",
      "Okwakabiri",
      "Okwakashatu",
      "Okwakana",
      "Okwakataana",
      "Okwamukaaga",
      "Okwamushanju",
      "Okwamunaana",
      "Okwamwenda",
      "Okwaikumi",
      "Okwaikumi na kumwe",
      "Okwaikumi na ibiri"
    ],
    month_stand_alone_abbreviated => [
      "KBZ",
      "KBR",
      "KST",
      "KKN",
      "KTN",
      "KMK",
      "KMS",
      "KMN",
      "KMW",
      "KKM",
      "KNK",
      "KNB"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Okwokubanza",
      "Okwakabiri",
      "Okwakashatu",
      "Okwakana",
      "Okwakataana",
      "Okwamukaaga",
      "Okwamushanju",
      "Okwamunaana",
      "Okwamwenda",
      "Okwaikumi",
      "Okwaikumi na kumwe",
      "Okwaikumi na ibiri"
    ],
    name => "Nyankole",
    native_language => "Runyankore",
    native_name => "Runyankore",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "KWOTA 1",
      "KWOTA 2",
      "KWOTA 3",
      "KWOTA 4"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "KWOTA 1",
      "KWOTA 2",
      "KWOTA 3",
      "KWOTA 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ nyn-UG ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "nyn-UG",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "ORK",
      "OKB",
      "OKS",
      "OKN",
      "OKT",
      "OMK",
      "SAN"
    ],
    day_format_narrow => [
      "K",
      "R",
      "S",
      "N",
      "T",
      "M",
      "S"
    ],
    day_format_wide => [
      "Orwokubanza",
      "Orwakabiri",
      "Orwakashatu",
      "Orwakana",
      "Orwakataano",
      "Orwamukaaga",
      "Sande"
    ],
    day_stand_alone_abbreviated => [
      "ORK",
      "OKB",
      "OKS",
      "OKN",
      "OKT",
      "OMK",
      "SAN"
    ],
    day_stand_alone_narrow => [
      "K",
      "R",
      "S",
      "N",
      "T",
      "M",
      "S"
    ],
    day_stand_alone_wide => [
      "Orwokubanza",
      "Orwakabiri",
      "Orwakashatu",
      "Orwakana",
      "Orwakataano",
      "Orwamukaaga",
      "Sande"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "Kurisito Atakaijire",
      "Kurisito Yaijire"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Nyankole",
    month_format_abbreviated => [
      "KBZ",
      "KBR",
      "KST",
      "KKN",
      "KTN",
      "KMK",
      "KMS",
      "KMN",
      "KMW",
      "KKM",
      "KNK",
      "KNB"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Okwokubanza",
      "Okwakabiri",
      "Okwakashatu",
      "Okwakana",
      "Okwakataana",
      "Okwamukaaga",
      "Okwamushanju",
      "Okwamunaana",
      "Okwamwenda",
      "Okwaikumi",
      "Okwaikumi na kumwe",
      "Okwaikumi na ibiri"
    ],
    month_stand_alone_abbreviated => [
      "KBZ",
      "KBR",
      "KST",
      "KKN",
      "KTN",
      "KMK",
      "KMS",
      "KMN",
      "KMW",
      "KKM",
      "KNK",
      "KNB"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Okwokubanza",
      "Okwakabiri",
      "Okwakashatu",
      "Okwakana",
      "Okwakataana",
      "Okwamukaaga",
      "Okwamushanju",
      "Okwamunaana",
      "Okwamwenda",
      "Okwaikumi",
      "Okwaikumi na kumwe",
      "Okwaikumi na ibiri"
    ],
    name => "Nyankole Uganda",
    native_language => "Runyankore",
    native_name => "Runyankore Uganda",
    native_script => undef,
    native_territory => "Uganda",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "KWOTA 1",
      "KWOTA 2",
      "KWOTA 3",
      "KWOTA 4"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "KWOTA 1",
      "KWOTA 2",
      "KWOTA 3",
      "KWOTA 4"
    ],
    script => undef,
    territory => "Uganda",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ om ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMMdd => "dd MMMM",
      MMMd => "MMM d",
      MMdd => "dd/MM",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMM => "MM/y",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "y QQQQ"
    },
    code => "om",
    date_format_full => "EEEE, MMMM d, y",
    date_format_long => "dd MMMM y",
    date_format_medium => "dd-MMM-y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Wix",
      "Qib",
      "Rob",
      "Kam",
      "Jim",
      "San",
      "Dil"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Wiixata",
      "Qibxata",
      "Roobii",
      "Kamiisa",
      "Jimaata",
      "Sanbata",
      "Dilbata"
    ],
    day_stand_alone_abbreviated => [
      "Wix",
      "Qib",
      "Rob",
      "Kam",
      "Jim",
      "San",
      "Dil"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Wiixata",
      "Qibxata",
      "Roobii",
      "Kamiisa",
      "Jimaata",
      "Sanbata",
      "Dilbata"
    ],
    era_abbreviated => [
      "KD",
      "KB"
    ],
    era_narrow => [
      "KD",
      "KB"
    ],
    era_wide => [
      "KD",
      "KB"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Oromo",
    month_format_abbreviated => [
      "Ama",
      "Gur",
      "Bit",
      "Elb",
      "Cam",
      "Wax",
      "Ado",
      "Hag",
      "Ful",
      "Onk",
      "Sad",
      "Mud"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Amajjii",
      "Guraandhala",
      "Bitooteessa",
      "Elba",
      "Caamsa",
      "Waxabajjii",
      "Adooleessa",
      "Hagayya",
      "Fuulbana",
      "Onkololeessa",
      "Sadaasa",
      "Muddee"
    ],
    month_stand_alone_abbreviated => [
      "Ama",
      "Gur",
      "Bit",
      "Elb",
      "Cam",
      "Wax",
      "Ado",
      "Hag",
      "Ful",
      "Onk",
      "Sad",
      "Mud"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Amajjii",
      "Guraandhala",
      "Bitooteessa",
      "Elba",
      "Caamsa",
      "Waxabajjii",
      "Adooleessa",
      "Hagayya",
      "Fuulbana",
      "Onkololeessa",
      "Sadaasa",
      "Muddee"
    ],
    name => "Oromo",
    native_language => "Oromoo",
    native_name => "Oromoo",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ om-ET ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMMdd => "dd MMMM",
      MMMd => "MMM d",
      MMdd => "dd/MM",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMM => "MM/y",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "y QQQQ"
    },
    code => "om-ET",
    date_format_full => "EEEE, MMMM d, y",
    date_format_long => "dd MMMM y",
    date_format_medium => "dd-MMM-y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Wix",
      "Qib",
      "Rob",
      "Kam",
      "Jim",
      "San",
      "Dil"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Wiixata",
      "Qibxata",
      "Roobii",
      "Kamiisa",
      "Jimaata",
      "Sanbata",
      "Dilbata"
    ],
    day_stand_alone_abbreviated => [
      "Wix",
      "Qib",
      "Rob",
      "Kam",
      "Jim",
      "San",
      "Dil"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Wiixata",
      "Qibxata",
      "Roobii",
      "Kamiisa",
      "Jimaata",
      "Sanbata",
      "Dilbata"
    ],
    era_abbreviated => [
      "KD",
      "KB"
    ],
    era_narrow => [
      "KD",
      "KB"
    ],
    era_wide => [
      "KD",
      "KB"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%A, %B %e, %r %Z %Y",
    glibc_date_format => "%d/%m/%Y",
    glibc_datetime_format => "%A, %B %e, %Y %r %Z",
    glibc_time_12_format => "%X %p",
    glibc_time_format => "%l:%M:%S",
    language => "Oromo",
    month_format_abbreviated => [
      "Ama",
      "Gur",
      "Bit",
      "Elb",
      "Cam",
      "Wax",
      "Ado",
      "Hag",
      "Ful",
      "Onk",
      "Sad",
      "Mud"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Amajjii",
      "Guraandhala",
      "Bitooteessa",
      "Elba",
      "Caamsa",
      "Waxabajjii",
      "Adooleessa",
      "Hagayya",
      "Fuulbana",
      "Onkololeessa",
      "Sadaasa",
      "Muddee"
    ],
    month_stand_alone_abbreviated => [
      "Ama",
      "Gur",
      "Bit",
      "Elb",
      "Cam",
      "Wax",
      "Ado",
      "Hag",
      "Ful",
      "Onk",
      "Sad",
      "Mud"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Amajjii",
      "Guraandhala",
      "Bitooteessa",
      "Elba",
      "Caamsa",
      "Waxabajjii",
      "Adooleessa",
      "Hagayya",
      "Fuulbana",
      "Onkololeessa",
      "Sadaasa",
      "Muddee"
    ],
    name => "Oromo Ethiopia",
    native_language => "Oromoo",
    native_name => "Oromoo Itoophiyaa",
    native_script => undef,
    native_territory => "Itoophiyaa",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "Ethiopia",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ om-KE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMMdd => "dd MMMM",
      MMMd => "MMM d",
      MMdd => "dd/MM",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMM => "MM/y",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "y QQQQ"
    },
    code => "om-KE",
    date_format_full => "EEEE, MMMM d, y",
    date_format_long => "dd MMMM y",
    date_format_medium => "dd-MMM-y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Wix",
      "Qib",
      "Rob",
      "Kam",
      "Jim",
      "San",
      "Dil"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Wiixata",
      "Qibxata",
      "Roobii",
      "Kamiisa",
      "Jimaata",
      "Sanbata",
      "Dilbata"
    ],
    day_stand_alone_abbreviated => [
      "Wix",
      "Qib",
      "Rob",
      "Kam",
      "Jim",
      "San",
      "Dil"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Wiixata",
      "Qibxata",
      "Roobii",
      "Kamiisa",
      "Jimaata",
      "Sanbata",
      "Dilbata"
    ],
    era_abbreviated => [
      "KD",
      "KB"
    ],
    era_narrow => [
      "KD",
      "KB"
    ],
    era_wide => [
      "KD",
      "KB"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%A, %B %e, %r %Z %Y",
    glibc_date_format => "%d/%m/%Y",
    glibc_datetime_format => "%A, %B %e, %Y %r %Z",
    glibc_time_12_format => "%X %p",
    glibc_time_format => "%l:%M:%S",
    language => "Oromo",
    month_format_abbreviated => [
      "Ama",
      "Gur",
      "Bit",
      "Elb",
      "Cam",
      "Wax",
      "Ado",
      "Hag",
      "Ful",
      "Onk",
      "Sad",
      "Mud"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Amajjii",
      "Guraandhala",
      "Bitooteessa",
      "Elba",
      "Caamsa",
      "Waxabajjii",
      "Adooleessa",
      "Hagayya",
      "Fuulbana",
      "Onkololeessa",
      "Sadaasa",
      "Muddee"
    ],
    month_stand_alone_abbreviated => [
      "Ama",
      "Gur",
      "Bit",
      "Elb",
      "Cam",
      "Wax",
      "Ado",
      "Hag",
      "Ful",
      "Onk",
      "Sad",
      "Mud"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Amajjii",
      "Guraandhala",
      "Bitooteessa",
      "Elba",
      "Caamsa",
      "Waxabajjii",
      "Adooleessa",
      "Hagayya",
      "Fuulbana",
      "Onkololeessa",
      "Sadaasa",
      "Muddee"
    ],
    name => "Oromo Kenya",
    native_language => "Oromoo",
    native_name => "Oromoo Keeniyaa",
    native_script => undef,
    native_territory => "Keeniyaa",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "Kenya",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ or ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      MMdd => "dd-MM",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMM => "MM-y",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "y QQQQ"
    },
    code => "or",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d-M-yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0b38}\N{U+0b4b}\N{U+0b2e}",
      "\N{U+0b2e}\N{U+0b19}\N{U+0b4d}\N{U+0b17}\N{U+0b33}",
      "\N{U+0b2c}\N{U+0b41}\N{U+0b27}",
      "\N{U+0b17}\N{U+0b41}\N{U+0b30}\N{U+0b41}",
      "\N{U+0b36}\N{U+0b41}\N{U+0b15}\N{U+0b4d}\N{U+0b30}",
      "\N{U+0b36}\N{U+0b28}\N{U+0b3f}",
      "\N{U+0b30}\N{U+0b2c}\N{U+0b3f}"
    ],
    day_format_narrow => [
      "\N{U+0b38}\N{U+0b4b}",
      "\N{U+0b2e}",
      "\N{U+0b2c}\N{U+0b41}",
      "\N{U+0b17}\N{U+0b41}",
      "\N{U+0b36}\N{U+0b41}",
      "\N{U+0b36}",
      "\N{U+0b30}"
    ],
    day_format_wide => [
      "\N{U+0b38}\N{U+0b4b}\N{U+0b2e}\N{U+0b2c}\N{U+0b3e}\N{U+0b30}",
      "\N{U+0b2e}\N{U+0b19}\N{U+0b4d}\N{U+0b17}\N{U+0b33}\N{U+0b2c}\N{U+0b3e}\N{U+0b30}",
      "\N{U+0b2c}\N{U+0b41}\N{U+0b27}\N{U+0b2c}\N{U+0b3e}\N{U+0b30}",
      "\N{U+0b17}\N{U+0b41}\N{U+0b30}\N{U+0b41}\N{U+0b2c}\N{U+0b3e}\N{U+0b30}",
      "\N{U+0b36}\N{U+0b41}\N{U+0b15}\N{U+0b4d}\N{U+0b30}\N{U+0b2c}\N{U+0b3e}\N{U+0b30}",
      "\N{U+0b36}\N{U+0b28}\N{U+0b3f}\N{U+0b2c}\N{U+0b3e}\N{U+0b30}",
      "\N{U+0b30}\N{U+0b2c}\N{U+0b3f}\N{U+0b2c}\N{U+0b3e}\N{U+0b30}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0b38}\N{U+0b4b}\N{U+0b2e}",
      "\N{U+0b2e}\N{U+0b19}\N{U+0b4d}\N{U+0b17}\N{U+0b33}",
      "\N{U+0b2c}\N{U+0b41}\N{U+0b27}",
      "\N{U+0b17}\N{U+0b41}\N{U+0b30}\N{U+0b41}",
      "\N{U+0b36}\N{U+0b41}\N{U+0b15}\N{U+0b4d}\N{U+0b30}",
      "\N{U+0b36}\N{U+0b28}\N{U+0b3f}",
      "\N{U+0b30}\N{U+0b2c}\N{U+0b3f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0b38}\N{U+0b4b}",
      "\N{U+0b2e}",
      "\N{U+0b2c}\N{U+0b41}",
      "\N{U+0b17}\N{U+0b41}",
      "\N{U+0b36}\N{U+0b41}",
      "\N{U+0b36}",
      "\N{U+0b30}"
    ],
    day_stand_alone_wide => [
      "\N{U+0b38}\N{U+0b4b}\N{U+0b2e}\N{U+0b2c}\N{U+0b3e}\N{U+0b30}",
      "\N{U+0b2e}\N{U+0b19}\N{U+0b4d}\N{U+0b17}\N{U+0b33}\N{U+0b2c}\N{U+0b3e}\N{U+0b30}",
      "\N{U+0b2c}\N{U+0b41}\N{U+0b27}\N{U+0b2c}\N{U+0b3e}\N{U+0b30}",
      "\N{U+0b17}\N{U+0b41}\N{U+0b30}\N{U+0b41}\N{U+0b2c}\N{U+0b3e}\N{U+0b30}",
      "\N{U+0b36}\N{U+0b41}\N{U+0b15}\N{U+0b4d}\N{U+0b30}\N{U+0b2c}\N{U+0b3e}\N{U+0b30}",
      "\N{U+0b36}\N{U+0b28}\N{U+0b3f}\N{U+0b2c}\N{U+0b3e}\N{U+0b30}",
      "\N{U+0b30}\N{U+0b2c}\N{U+0b3f}\N{U+0b2c}\N{U+0b3e}\N{U+0b30}"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Oriya",
    month_format_abbreviated => [
      "\N{U+0b1c}\N{U+0b3e}\N{U+0b28}\N{U+0b41}\N{U+0b06}\N{U+0b30}\N{U+0b40}",
      "\N{U+0b2b}\N{U+0b47}\N{U+0b2c}\N{U+0b43}\N{U+0b06}\N{U+0b30}\N{U+0b40}",
      "\N{U+0b2e}\N{U+0b3e}\N{U+0b30}\N{U+0b4d}\N{U+0b1a}\N{U+0b4d}\N{U+0b1a}",
      "\N{U+0b05}\N{U+0b2a}\N{U+0b4d}\N{U+0b30}\N{U+0b47}\N{U+0b32}",
      "\N{U+0b2e}\N{U+0b07}",
      "\N{U+0b1c}\N{U+0b41}\N{U+0b28}",
      "\N{U+0b1c}\N{U+0b41}\N{U+0b32}\N{U+0b3e}\N{U+0b07}",
      "\N{U+0b05}\N{U+0b17}\N{U+0b37}\N{U+0b4d}\N{U+0b1f}",
      "\N{U+0b38}\N{U+0b47}\N{U+0b2a}\N{U+0b4d}\N{U+0b1f}\N{U+0b47}\N{U+0b2e}\N{U+0b4d}\N{U+0b2c}\N{U+0b30}",
      "\N{U+0b05}\N{U+0b15}\N{U+0b4d}\N{U+0b1f}\N{U+0b4b}\N{U+0b2c}\N{U+0b30}",
      "\N{U+0b28}\N{U+0b2d}\N{U+0b47}\N{U+0b2e}\N{U+0b4d}\N{U+0b2c}\N{U+0b30}",
      "\N{U+0b21}\N{U+0b3f}\N{U+0b38}\N{U+0b47}\N{U+0b2e}\N{U+0b4d}\N{U+0b2c}\N{U+0b30}"
    ],
    month_format_narrow => [
      "\N{U+0b1c}\N{U+0b3e}",
      "\N{U+0b2b}\N{U+0b47}",
      "\N{U+0b2e}\N{U+0b3e}",
      "\N{U+0b05}",
      "\N{U+0b2e}\N{U+0b07}",
      "\N{U+0b1c}\N{U+0b41}",
      "\N{U+0b1c}\N{U+0b41}",
      "\N{U+0b05}",
      "\N{U+0b38}\N{U+0b47}",
      "\N{U+0b05}",
      "\N{U+0b28}",
      "\N{U+0b21}\N{U+0b3f}"
    ],
    month_format_wide => [
      "\N{U+0b1c}\N{U+0b3e}\N{U+0b28}\N{U+0b41}\N{U+0b06}\N{U+0b30}\N{U+0b40}",
      "\N{U+0b2b}\N{U+0b47}\N{U+0b2c}\N{U+0b43}\N{U+0b06}\N{U+0b30}\N{U+0b40}",
      "\N{U+0b2e}\N{U+0b3e}\N{U+0b30}\N{U+0b4d}\N{U+0b1a}\N{U+0b4d}\N{U+0b1a}",
      "\N{U+0b05}\N{U+0b2a}\N{U+0b4d}\N{U+0b30}\N{U+0b47}\N{U+0b32}",
      "\N{U+0b2e}\N{U+0b07}",
      "\N{U+0b1c}\N{U+0b41}\N{U+0b28}",
      "\N{U+0b1c}\N{U+0b41}\N{U+0b32}\N{U+0b3e}\N{U+0b07}",
      "\N{U+0b05}\N{U+0b17}\N{U+0b37}\N{U+0b4d}\N{U+0b1f}",
      "\N{U+0b38}\N{U+0b47}\N{U+0b2a}\N{U+0b4d}\N{U+0b1f}\N{U+0b47}\N{U+0b2e}\N{U+0b4d}\N{U+0b2c}\N{U+0b30}",
      "\N{U+0b05}\N{U+0b15}\N{U+0b4d}\N{U+0b1f}\N{U+0b4b}\N{U+0b2c}\N{U+0b30}",
      "\N{U+0b28}\N{U+0b2d}\N{U+0b47}\N{U+0b2e}\N{U+0b4d}\N{U+0b2c}\N{U+0b30}",
      "\N{U+0b21}\N{U+0b3f}\N{U+0b38}\N{U+0b47}\N{U+0b2e}\N{U+0b4d}\N{U+0b2c}\N{U+0b30}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0b1c}\N{U+0b3e}\N{U+0b28}\N{U+0b41}\N{U+0b06}\N{U+0b30}\N{U+0b40}",
      "\N{U+0b2b}\N{U+0b47}\N{U+0b2c}\N{U+0b43}\N{U+0b06}\N{U+0b30}\N{U+0b40}",
      "\N{U+0b2e}\N{U+0b3e}\N{U+0b30}\N{U+0b4d}\N{U+0b1a}\N{U+0b4d}\N{U+0b1a}",
      "\N{U+0b05}\N{U+0b2a}\N{U+0b4d}\N{U+0b30}\N{U+0b47}\N{U+0b32}",
      "\N{U+0b2e}\N{U+0b07}",
      "\N{U+0b1c}\N{U+0b41}\N{U+0b28}",
      "\N{U+0b1c}\N{U+0b41}\N{U+0b32}\N{U+0b3e}\N{U+0b07}",
      "\N{U+0b05}\N{U+0b17}\N{U+0b37}\N{U+0b4d}\N{U+0b1f}",
      "\N{U+0b38}\N{U+0b47}\N{U+0b2a}\N{U+0b4d}\N{U+0b1f}\N{U+0b47}\N{U+0b2e}\N{U+0b4d}\N{U+0b2c}\N{U+0b30}",
      "\N{U+0b05}\N{U+0b15}\N{U+0b4d}\N{U+0b1f}\N{U+0b4b}\N{U+0b2c}\N{U+0b30}",
      "\N{U+0b28}\N{U+0b2d}\N{U+0b47}\N{U+0b2e}\N{U+0b4d}\N{U+0b2c}\N{U+0b30}",
      "\N{U+0b21}\N{U+0b3f}\N{U+0b38}\N{U+0b47}\N{U+0b2e}\N{U+0b4d}\N{U+0b2c}\N{U+0b30}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0b1c}\N{U+0b3e}",
      "\N{U+0b2b}\N{U+0b47}",
      "\N{U+0b2e}\N{U+0b3e}",
      "\N{U+0b05}",
      "\N{U+0b2e}\N{U+0b07}",
      "\N{U+0b1c}\N{U+0b41}",
      "\N{U+0b1c}\N{U+0b41}",
      "\N{U+0b05}",
      "\N{U+0b38}\N{U+0b47}",
      "\N{U+0b05}",
      "\N{U+0b28}",
      "\N{U+0b21}\N{U+0b3f}"
    ],
    month_stand_alone_wide => [
      "\N{U+0b1c}\N{U+0b3e}\N{U+0b28}\N{U+0b41}\N{U+0b06}\N{U+0b30}\N{U+0b40}",
      "\N{U+0b2b}\N{U+0b47}\N{U+0b2c}\N{U+0b43}\N{U+0b06}\N{U+0b30}\N{U+0b40}",
      "\N{U+0b2e}\N{U+0b3e}\N{U+0b30}\N{U+0b4d}\N{U+0b1a}\N{U+0b4d}\N{U+0b1a}",
      "\N{U+0b05}\N{U+0b2a}\N{U+0b4d}\N{U+0b30}\N{U+0b47}\N{U+0b32}",
      "\N{U+0b2e}\N{U+0b07}",
      "\N{U+0b1c}\N{U+0b41}\N{U+0b28}",
      "\N{U+0b1c}\N{U+0b41}\N{U+0b32}\N{U+0b3e}\N{U+0b07}",
      "\N{U+0b05}\N{U+0b17}\N{U+0b37}\N{U+0b4d}\N{U+0b1f}",
      "\N{U+0b38}\N{U+0b47}\N{U+0b2a}\N{U+0b4d}\N{U+0b1f}\N{U+0b47}\N{U+0b2e}\N{U+0b4d}\N{U+0b2c}\N{U+0b30}",
      "\N{U+0b05}\N{U+0b15}\N{U+0b4d}\N{U+0b1f}\N{U+0b4b}\N{U+0b2c}\N{U+0b30}",
      "\N{U+0b28}\N{U+0b2d}\N{U+0b47}\N{U+0b2e}\N{U+0b4d}\N{U+0b2c}\N{U+0b30}",
      "\N{U+0b21}\N{U+0b3f}\N{U+0b38}\N{U+0b47}\N{U+0b2e}\N{U+0b4d}\N{U+0b2c}\N{U+0b30}"
    ],
    name => "Oriya",
    native_language => "\N{U+0b13}\N{U+0b21}\N{U+0b3c}\N{U+0b3f}\N{U+0b06}",
    native_name => "\N{U+0b13}\N{U+0b21}\N{U+0b3c}\N{U+0b3f}\N{U+0b06}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ or-IN ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      MMdd => "dd-MM",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMM => "MM-y",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "y QQQQ"
    },
    code => "or-IN",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d-M-yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0b38}\N{U+0b4b}\N{U+0b2e}",
      "\N{U+0b2e}\N{U+0b19}\N{U+0b4d}\N{U+0b17}\N{U+0b33}",
      "\N{U+0b2c}\N{U+0b41}\N{U+0b27}",
      "\N{U+0b17}\N{U+0b41}\N{U+0b30}\N{U+0b41}",
      "\N{U+0b36}\N{U+0b41}\N{U+0b15}\N{U+0b4d}\N{U+0b30}",
      "\N{U+0b36}\N{U+0b28}\N{U+0b3f}",
      "\N{U+0b30}\N{U+0b2c}\N{U+0b3f}"
    ],
    day_format_narrow => [
      "\N{U+0b38}\N{U+0b4b}",
      "\N{U+0b2e}",
      "\N{U+0b2c}\N{U+0b41}",
      "\N{U+0b17}\N{U+0b41}",
      "\N{U+0b36}\N{U+0b41}",
      "\N{U+0b36}",
      "\N{U+0b30}"
    ],
    day_format_wide => [
      "\N{U+0b38}\N{U+0b4b}\N{U+0b2e}\N{U+0b2c}\N{U+0b3e}\N{U+0b30}",
      "\N{U+0b2e}\N{U+0b19}\N{U+0b4d}\N{U+0b17}\N{U+0b33}\N{U+0b2c}\N{U+0b3e}\N{U+0b30}",
      "\N{U+0b2c}\N{U+0b41}\N{U+0b27}\N{U+0b2c}\N{U+0b3e}\N{U+0b30}",
      "\N{U+0b17}\N{U+0b41}\N{U+0b30}\N{U+0b41}\N{U+0b2c}\N{U+0b3e}\N{U+0b30}",
      "\N{U+0b36}\N{U+0b41}\N{U+0b15}\N{U+0b4d}\N{U+0b30}\N{U+0b2c}\N{U+0b3e}\N{U+0b30}",
      "\N{U+0b36}\N{U+0b28}\N{U+0b3f}\N{U+0b2c}\N{U+0b3e}\N{U+0b30}",
      "\N{U+0b30}\N{U+0b2c}\N{U+0b3f}\N{U+0b2c}\N{U+0b3e}\N{U+0b30}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0b38}\N{U+0b4b}\N{U+0b2e}",
      "\N{U+0b2e}\N{U+0b19}\N{U+0b4d}\N{U+0b17}\N{U+0b33}",
      "\N{U+0b2c}\N{U+0b41}\N{U+0b27}",
      "\N{U+0b17}\N{U+0b41}\N{U+0b30}\N{U+0b41}",
      "\N{U+0b36}\N{U+0b41}\N{U+0b15}\N{U+0b4d}\N{U+0b30}",
      "\N{U+0b36}\N{U+0b28}\N{U+0b3f}",
      "\N{U+0b30}\N{U+0b2c}\N{U+0b3f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0b38}\N{U+0b4b}",
      "\N{U+0b2e}",
      "\N{U+0b2c}\N{U+0b41}",
      "\N{U+0b17}\N{U+0b41}",
      "\N{U+0b36}\N{U+0b41}",
      "\N{U+0b36}",
      "\N{U+0b30}"
    ],
    day_stand_alone_wide => [
      "\N{U+0b38}\N{U+0b4b}\N{U+0b2e}\N{U+0b2c}\N{U+0b3e}\N{U+0b30}",
      "\N{U+0b2e}\N{U+0b19}\N{U+0b4d}\N{U+0b17}\N{U+0b33}\N{U+0b2c}\N{U+0b3e}\N{U+0b30}",
      "\N{U+0b2c}\N{U+0b41}\N{U+0b27}\N{U+0b2c}\N{U+0b3e}\N{U+0b30}",
      "\N{U+0b17}\N{U+0b41}\N{U+0b30}\N{U+0b41}\N{U+0b2c}\N{U+0b3e}\N{U+0b30}",
      "\N{U+0b36}\N{U+0b41}\N{U+0b15}\N{U+0b4d}\N{U+0b30}\N{U+0b2c}\N{U+0b3e}\N{U+0b30}",
      "\N{U+0b36}\N{U+0b28}\N{U+0b3f}\N{U+0b2c}\N{U+0b3e}\N{U+0b30}",
      "\N{U+0b30}\N{U+0b2c}\N{U+0b3f}\N{U+0b2c}\N{U+0b3e}\N{U+0b30}"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%Od-%Om-%Oy",
    glibc_datetime_format => "%Oe %B %Oy %OI:%OM:%OS %p %Z",
    glibc_time_12_format => "%OI:%OM:%OS %p",
    glibc_time_format => "%OI:%OM:%OS %p",
    language => "Oriya",
    month_format_abbreviated => [
      "\N{U+0b1c}\N{U+0b3e}\N{U+0b28}\N{U+0b41}\N{U+0b06}\N{U+0b30}\N{U+0b40}",
      "\N{U+0b2b}\N{U+0b47}\N{U+0b2c}\N{U+0b43}\N{U+0b06}\N{U+0b30}\N{U+0b40}",
      "\N{U+0b2e}\N{U+0b3e}\N{U+0b30}\N{U+0b4d}\N{U+0b1a}\N{U+0b4d}\N{U+0b1a}",
      "\N{U+0b05}\N{U+0b2a}\N{U+0b4d}\N{U+0b30}\N{U+0b47}\N{U+0b32}",
      "\N{U+0b2e}\N{U+0b07}",
      "\N{U+0b1c}\N{U+0b41}\N{U+0b28}",
      "\N{U+0b1c}\N{U+0b41}\N{U+0b32}\N{U+0b3e}\N{U+0b07}",
      "\N{U+0b05}\N{U+0b17}\N{U+0b37}\N{U+0b4d}\N{U+0b1f}",
      "\N{U+0b38}\N{U+0b47}\N{U+0b2a}\N{U+0b4d}\N{U+0b1f}\N{U+0b47}\N{U+0b2e}\N{U+0b4d}\N{U+0b2c}\N{U+0b30}",
      "\N{U+0b05}\N{U+0b15}\N{U+0b4d}\N{U+0b1f}\N{U+0b4b}\N{U+0b2c}\N{U+0b30}",
      "\N{U+0b28}\N{U+0b2d}\N{U+0b47}\N{U+0b2e}\N{U+0b4d}\N{U+0b2c}\N{U+0b30}",
      "\N{U+0b21}\N{U+0b3f}\N{U+0b38}\N{U+0b47}\N{U+0b2e}\N{U+0b4d}\N{U+0b2c}\N{U+0b30}"
    ],
    month_format_narrow => [
      "\N{U+0b1c}\N{U+0b3e}",
      "\N{U+0b2b}\N{U+0b47}",
      "\N{U+0b2e}\N{U+0b3e}",
      "\N{U+0b05}",
      "\N{U+0b2e}\N{U+0b07}",
      "\N{U+0b1c}\N{U+0b41}",
      "\N{U+0b1c}\N{U+0b41}",
      "\N{U+0b05}",
      "\N{U+0b38}\N{U+0b47}",
      "\N{U+0b05}",
      "\N{U+0b28}",
      "\N{U+0b21}\N{U+0b3f}"
    ],
    month_format_wide => [
      "\N{U+0b1c}\N{U+0b3e}\N{U+0b28}\N{U+0b41}\N{U+0b06}\N{U+0b30}\N{U+0b40}",
      "\N{U+0b2b}\N{U+0b47}\N{U+0b2c}\N{U+0b43}\N{U+0b06}\N{U+0b30}\N{U+0b40}",
      "\N{U+0b2e}\N{U+0b3e}\N{U+0b30}\N{U+0b4d}\N{U+0b1a}\N{U+0b4d}\N{U+0b1a}",
      "\N{U+0b05}\N{U+0b2a}\N{U+0b4d}\N{U+0b30}\N{U+0b47}\N{U+0b32}",
      "\N{U+0b2e}\N{U+0b07}",
      "\N{U+0b1c}\N{U+0b41}\N{U+0b28}",
      "\N{U+0b1c}\N{U+0b41}\N{U+0b32}\N{U+0b3e}\N{U+0b07}",
      "\N{U+0b05}\N{U+0b17}\N{U+0b37}\N{U+0b4d}\N{U+0b1f}",
      "\N{U+0b38}\N{U+0b47}\N{U+0b2a}\N{U+0b4d}\N{U+0b1f}\N{U+0b47}\N{U+0b2e}\N{U+0b4d}\N{U+0b2c}\N{U+0b30}",
      "\N{U+0b05}\N{U+0b15}\N{U+0b4d}\N{U+0b1f}\N{U+0b4b}\N{U+0b2c}\N{U+0b30}",
      "\N{U+0b28}\N{U+0b2d}\N{U+0b47}\N{U+0b2e}\N{U+0b4d}\N{U+0b2c}\N{U+0b30}",
      "\N{U+0b21}\N{U+0b3f}\N{U+0b38}\N{U+0b47}\N{U+0b2e}\N{U+0b4d}\N{U+0b2c}\N{U+0b30}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0b1c}\N{U+0b3e}\N{U+0b28}\N{U+0b41}\N{U+0b06}\N{U+0b30}\N{U+0b40}",
      "\N{U+0b2b}\N{U+0b47}\N{U+0b2c}\N{U+0b43}\N{U+0b06}\N{U+0b30}\N{U+0b40}",
      "\N{U+0b2e}\N{U+0b3e}\N{U+0b30}\N{U+0b4d}\N{U+0b1a}\N{U+0b4d}\N{U+0b1a}",
      "\N{U+0b05}\N{U+0b2a}\N{U+0b4d}\N{U+0b30}\N{U+0b47}\N{U+0b32}",
      "\N{U+0b2e}\N{U+0b07}",
      "\N{U+0b1c}\N{U+0b41}\N{U+0b28}",
      "\N{U+0b1c}\N{U+0b41}\N{U+0b32}\N{U+0b3e}\N{U+0b07}",
      "\N{U+0b05}\N{U+0b17}\N{U+0b37}\N{U+0b4d}\N{U+0b1f}",
      "\N{U+0b38}\N{U+0b47}\N{U+0b2a}\N{U+0b4d}\N{U+0b1f}\N{U+0b47}\N{U+0b2e}\N{U+0b4d}\N{U+0b2c}\N{U+0b30}",
      "\N{U+0b05}\N{U+0b15}\N{U+0b4d}\N{U+0b1f}\N{U+0b4b}\N{U+0b2c}\N{U+0b30}",
      "\N{U+0b28}\N{U+0b2d}\N{U+0b47}\N{U+0b2e}\N{U+0b4d}\N{U+0b2c}\N{U+0b30}",
      "\N{U+0b21}\N{U+0b3f}\N{U+0b38}\N{U+0b47}\N{U+0b2e}\N{U+0b4d}\N{U+0b2c}\N{U+0b30}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0b1c}\N{U+0b3e}",
      "\N{U+0b2b}\N{U+0b47}",
      "\N{U+0b2e}\N{U+0b3e}",
      "\N{U+0b05}",
      "\N{U+0b2e}\N{U+0b07}",
      "\N{U+0b1c}\N{U+0b41}",
      "\N{U+0b1c}\N{U+0b41}",
      "\N{U+0b05}",
      "\N{U+0b38}\N{U+0b47}",
      "\N{U+0b05}",
      "\N{U+0b28}",
      "\N{U+0b21}\N{U+0b3f}"
    ],
    month_stand_alone_wide => [
      "\N{U+0b1c}\N{U+0b3e}\N{U+0b28}\N{U+0b41}\N{U+0b06}\N{U+0b30}\N{U+0b40}",
      "\N{U+0b2b}\N{U+0b47}\N{U+0b2c}\N{U+0b43}\N{U+0b06}\N{U+0b30}\N{U+0b40}",
      "\N{U+0b2e}\N{U+0b3e}\N{U+0b30}\N{U+0b4d}\N{U+0b1a}\N{U+0b4d}\N{U+0b1a}",
      "\N{U+0b05}\N{U+0b2a}\N{U+0b4d}\N{U+0b30}\N{U+0b47}\N{U+0b32}",
      "\N{U+0b2e}\N{U+0b07}",
      "\N{U+0b1c}\N{U+0b41}\N{U+0b28}",
      "\N{U+0b1c}\N{U+0b41}\N{U+0b32}\N{U+0b3e}\N{U+0b07}",
      "\N{U+0b05}\N{U+0b17}\N{U+0b37}\N{U+0b4d}\N{U+0b1f}",
      "\N{U+0b38}\N{U+0b47}\N{U+0b2a}\N{U+0b4d}\N{U+0b1f}\N{U+0b47}\N{U+0b2e}\N{U+0b4d}\N{U+0b2c}\N{U+0b30}",
      "\N{U+0b05}\N{U+0b15}\N{U+0b4d}\N{U+0b1f}\N{U+0b4b}\N{U+0b2c}\N{U+0b30}",
      "\N{U+0b28}\N{U+0b2d}\N{U+0b47}\N{U+0b2e}\N{U+0b4d}\N{U+0b2c}\N{U+0b30}",
      "\N{U+0b21}\N{U+0b3f}\N{U+0b38}\N{U+0b47}\N{U+0b2e}\N{U+0b4d}\N{U+0b2c}\N{U+0b30}"
    ],
    name => "Oriya India",
    native_language => "\N{U+0b13}\N{U+0b21}\N{U+0b3c}\N{U+0b3f}\N{U+0b06}",
    native_name => "\N{U+0b13}\N{U+0b21}\N{U+0b3c}\N{U+0b3f}\N{U+0b06} \N{U+0b2d}\N{U+0b3e}\N{U+0b30}\N{U+0b24}",
    native_script => undef,
    native_territory => "\N{U+0b2d}\N{U+0b3e}\N{U+0b30}\N{U+0b24}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "India",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ os ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd.MM",
      MMM => "LLL",
      MMMEd => "ccc, d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "dd.MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM.y",
      yMEd => "E, dd.MM.y",
      yMMM => "LLL y",
      yMMMEd => "E, d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y-'\N{U+04d5}\N{U+043c}' '\N{U+0430}\N{U+0437}\N{U+044b}' QQQ",
      yQQQQ => "y-'\N{U+04d5}\N{U+043c}' '\N{U+0430}\N{U+0437}\N{U+044b}' QQQQ"
    },
    code => "os",
    date_format_full => "EEEE, d MMMM, y '\N{U+0430}\N{U+0437}'",
    date_format_long => "d MMMM, y '\N{U+0430}\N{U+0437}'",
    date_format_medium => "dd MMM y '\N{U+0430}\N{U+0437}'",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+043a}\N{U+0440}\N{U+0441}",
      "\N{U+0434}\N{U+0446}\N{U+0433}",
      "\N{U+04d5}\N{U+0440}\N{U+0442}",
      "\N{U+0446}\N{U+043f}\N{U+0440}",
      "\N{U+043c}\N{U+0440}\N{U+0431}",
      "\N{U+0441}\N{U+0431}\N{U+0442}",
      "\N{U+0445}\N{U+0446}\N{U+0431}"
    ],
    day_format_narrow => [
      "\N{U+041a}",
      "\N{U+0414}",
      "\N{U+04d4}",
      "\N{U+0426}",
      "\N{U+041c}",
      "\N{U+0421}",
      "\N{U+0425}"
    ],
    day_format_wide => [
      "\N{U+043a}\N{U+044a}\N{U+0443}\N{U+044b}\N{U+0440}\N{U+0438}\N{U+0441}\N{U+04d5}\N{U+0440}",
      "\N{U+0434}\N{U+044b}\N{U+0446}\N{U+0446}\N{U+04d5}\N{U+0433}",
      "\N{U+04d5}\N{U+0440}\N{U+0442}\N{U+044b}\N{U+0446}\N{U+0446}\N{U+04d5}\N{U+0433}",
      "\N{U+0446}\N{U+044b}\N{U+043f}\N{U+043f}\N{U+04d5}\N{U+0440}\N{U+04d5}\N{U+043c}",
      "\N{U+043c}\N{U+0430}\N{U+0439}\N{U+0440}\N{U+04d5}\N{U+043c}\N{U+0431}\N{U+043e}\N{U+043d}",
      "\N{U+0441}\N{U+0430}\N{U+0431}\N{U+0430}\N{U+0442}",
      "\N{U+0445}\N{U+0443}\N{U+044b}\N{U+0446}\N{U+0430}\N{U+0443}\N{U+0431}\N{U+043e}\N{U+043d}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+041a}\N{U+0440}\N{U+0441}",
      "\N{U+0414}\N{U+0446}\N{U+0433}",
      "\N{U+04d4}\N{U+0440}\N{U+0442}",
      "\N{U+0426}\N{U+043f}\N{U+0440}",
      "\N{U+041c}\N{U+0440}\N{U+0431}",
      "\N{U+0421}\N{U+0431}\N{U+0442}",
      "\N{U+0425}\N{U+0446}\N{U+0431}"
    ],
    day_stand_alone_narrow => [
      "\N{U+041a}",
      "\N{U+0414}",
      "\N{U+04d4}",
      "\N{U+0426}",
      "\N{U+041c}",
      "\N{U+0421}",
      "\N{U+0425}"
    ],
    day_stand_alone_wide => [
      "\N{U+041a}\N{U+044a}\N{U+0443}\N{U+044b}\N{U+0440}\N{U+0438}\N{U+0441}\N{U+04d5}\N{U+0440}",
      "\N{U+0414}\N{U+044b}\N{U+0446}\N{U+0446}\N{U+04d5}\N{U+0433}",
      "\N{U+04d4}\N{U+0440}\N{U+0442}\N{U+044b}\N{U+0446}\N{U+0446}\N{U+04d5}\N{U+0433}",
      "\N{U+0426}\N{U+044b}\N{U+043f}\N{U+043f}\N{U+04d5}\N{U+0440}\N{U+04d5}\N{U+043c}",
      "\N{U+041c}\N{U+0430}\N{U+0439}\N{U+0440}\N{U+04d5}\N{U+043c}\N{U+0431}\N{U+043e}\N{U+043d}",
      "\N{U+0421}\N{U+0430}\N{U+0431}\N{U+0430}\N{U+0442}",
      "\N{U+0425}\N{U+0443}\N{U+044b}\N{U+0446}\N{U+0430}\N{U+0443}\N{U+0431}\N{U+043e}\N{U+043d}"
    ],
    era_abbreviated => [
      "\N{U+043d}.\N{U+0434}.\N{U+0430}.",
      "\N{U+043d}.\N{U+0434}."
    ],
    era_narrow => [
      "\N{U+043d}.\N{U+0434}.\N{U+0430}.",
      "\N{U+043d}.\N{U+0434}."
    ],
    era_wide => [
      "\N{U+043d}.\N{U+0434}.\N{U+0430}.",
      "\N{U+043d}.\N{U+0434}."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Ossetic",
    month_format_abbreviated => [
      "\N{U+044f}\N{U+043d}\N{U+0432}.",
      "\N{U+0444}\N{U+0435}\N{U+0432}.",
      "\N{U+043c}\N{U+0430}\N{U+0440}.",
      "\N{U+0430}\N{U+043f}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+0439}\N{U+044b}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044b}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}.",
      "\N{U+0441}\N{U+0435}\N{U+043d}.",
      "\N{U+043e}\N{U+043a}\N{U+0442}.",
      "\N{U+043d}\N{U+043e}\N{U+044f}.",
      "\N{U+0434}\N{U+0435}\N{U+043a}."
    ],
    month_format_narrow => [
      "\N{U+042f}",
      "\N{U+0424}",
      "\N{U+041c}",
      "\N{U+0410}",
      "\N{U+041c}",
      "\N{U+0418}",
      "\N{U+0418}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+041e}",
      "\N{U+041d}",
      "\N{U+0414}"
    ],
    month_format_wide => [
      "\N{U+044f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+044b}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}\N{U+044b}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+044a}\N{U+0438}\N{U+0439}\N{U+044b}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}\N{U+044b}",
      "\N{U+043c}\N{U+0430}\N{U+0439}\N{U+044b}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044b}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}\N{U+044b}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044b}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044b}",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044b}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}\N{U+044b}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+042f}\N{U+043d}\N{U+0432}.",
      "\N{U+0424}\N{U+0435}\N{U+0432}\N{U+0440}.",
      "\N{U+041c}\N{U+0430}\N{U+0440}\N{U+0442}.",
      "\N{U+0410}\N{U+043f}\N{U+0440}.",
      "\N{U+041c}\N{U+0430}\N{U+0439}",
      "\N{U+0418}\N{U+044e}\N{U+043d}\N{U+044c}",
      "\N{U+0418}\N{U+044e}\N{U+043b}\N{U+044c}",
      "\N{U+0410}\N{U+0432}\N{U+0433}.",
      "\N{U+0421}\N{U+0435}\N{U+043d}\N{U+0442}.",
      "\N{U+041e}\N{U+043a}\N{U+0442}.",
      "\N{U+041d}\N{U+043e}\N{U+044f}\N{U+0431}.",
      "\N{U+0414}\N{U+0435}\N{U+043a}."
    ],
    month_stand_alone_narrow => [
      "\N{U+042f}",
      "\N{U+0424}",
      "\N{U+041c}",
      "\N{U+0410}",
      "\N{U+041c}",
      "\N{U+0418}",
      "\N{U+0418}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+041e}",
      "\N{U+041d}",
      "\N{U+0414}"
    ],
    month_stand_alone_wide => [
      "\N{U+042f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+044c}",
      "\N{U+0424}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}\N{U+044c}",
      "\N{U+041c}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+044a}\N{U+0438}",
      "\N{U+0410}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}\N{U+044c}",
      "\N{U+041c}\N{U+0430}\N{U+0439}",
      "\N{U+0418}\N{U+044e}\N{U+043d}\N{U+044c}",
      "\N{U+0418}\N{U+044e}\N{U+043b}\N{U+044c}",
      "\N{U+0410}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0421}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+041e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+041d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+0414}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}\N{U+044c}"
    ],
    name => "Ossetic",
    native_language => "\N{U+0438}\N{U+0440}\N{U+043e}\N{U+043d}",
    native_name => "\N{U+0438}\N{U+0440}\N{U+043e}\N{U+043d}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "1-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}.",
      "2-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}.",
      "3-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}.",
      "4-\N{U+04d5}\N{U+043c} \N{U+043a}\N{U+0432}."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+04d5}\N{U+043c} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    quarter_stand_alone_abbreviated => [
      "1-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}.",
      "2-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}.",
      "3-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}.",
      "4-\N{U+04d5}\N{U+043c} \N{U+043a}\N{U+0432}."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+04d5}\N{U+043c} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ os-GE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd.MM",
      MMM => "LLL",
      MMMEd => "ccc, d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "dd.MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM.y",
      yMEd => "E, dd.MM.y",
      yMMM => "LLL y",
      yMMMEd => "E, d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y-'\N{U+04d5}\N{U+043c}' '\N{U+0430}\N{U+0437}\N{U+044b}' QQQ",
      yQQQQ => "y-'\N{U+04d5}\N{U+043c}' '\N{U+0430}\N{U+0437}\N{U+044b}' QQQQ"
    },
    code => "os-GE",
    date_format_full => "EEEE, d MMMM, y '\N{U+0430}\N{U+0437}'",
    date_format_long => "d MMMM, y '\N{U+0430}\N{U+0437}'",
    date_format_medium => "dd MMM y '\N{U+0430}\N{U+0437}'",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+043a}\N{U+0440}\N{U+0441}",
      "\N{U+0434}\N{U+0446}\N{U+0433}",
      "\N{U+04d5}\N{U+0440}\N{U+0442}",
      "\N{U+0446}\N{U+043f}\N{U+0440}",
      "\N{U+043c}\N{U+0440}\N{U+0431}",
      "\N{U+0441}\N{U+0431}\N{U+0442}",
      "\N{U+0445}\N{U+0446}\N{U+0431}"
    ],
    day_format_narrow => [
      "\N{U+041a}",
      "\N{U+0414}",
      "\N{U+04d4}",
      "\N{U+0426}",
      "\N{U+041c}",
      "\N{U+0421}",
      "\N{U+0425}"
    ],
    day_format_wide => [
      "\N{U+043a}\N{U+044a}\N{U+0443}\N{U+044b}\N{U+0440}\N{U+0438}\N{U+0441}\N{U+04d5}\N{U+0440}",
      "\N{U+0434}\N{U+044b}\N{U+0446}\N{U+0446}\N{U+04d5}\N{U+0433}",
      "\N{U+04d5}\N{U+0440}\N{U+0442}\N{U+044b}\N{U+0446}\N{U+0446}\N{U+04d5}\N{U+0433}",
      "\N{U+0446}\N{U+044b}\N{U+043f}\N{U+043f}\N{U+04d5}\N{U+0440}\N{U+04d5}\N{U+043c}",
      "\N{U+043c}\N{U+0430}\N{U+0439}\N{U+0440}\N{U+04d5}\N{U+043c}\N{U+0431}\N{U+043e}\N{U+043d}",
      "\N{U+0441}\N{U+0430}\N{U+0431}\N{U+0430}\N{U+0442}",
      "\N{U+0445}\N{U+0443}\N{U+044b}\N{U+0446}\N{U+0430}\N{U+0443}\N{U+0431}\N{U+043e}\N{U+043d}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+041a}\N{U+0440}\N{U+0441}",
      "\N{U+0414}\N{U+0446}\N{U+0433}",
      "\N{U+04d4}\N{U+0440}\N{U+0442}",
      "\N{U+0426}\N{U+043f}\N{U+0440}",
      "\N{U+041c}\N{U+0440}\N{U+0431}",
      "\N{U+0421}\N{U+0431}\N{U+0442}",
      "\N{U+0425}\N{U+0446}\N{U+0431}"
    ],
    day_stand_alone_narrow => [
      "\N{U+041a}",
      "\N{U+0414}",
      "\N{U+04d4}",
      "\N{U+0426}",
      "\N{U+041c}",
      "\N{U+0421}",
      "\N{U+0425}"
    ],
    day_stand_alone_wide => [
      "\N{U+041a}\N{U+044a}\N{U+0443}\N{U+044b}\N{U+0440}\N{U+0438}\N{U+0441}\N{U+04d5}\N{U+0440}",
      "\N{U+0414}\N{U+044b}\N{U+0446}\N{U+0446}\N{U+04d5}\N{U+0433}",
      "\N{U+04d4}\N{U+0440}\N{U+0442}\N{U+044b}\N{U+0446}\N{U+0446}\N{U+04d5}\N{U+0433}",
      "\N{U+0426}\N{U+044b}\N{U+043f}\N{U+043f}\N{U+04d5}\N{U+0440}\N{U+04d5}\N{U+043c}",
      "\N{U+041c}\N{U+0430}\N{U+0439}\N{U+0440}\N{U+04d5}\N{U+043c}\N{U+0431}\N{U+043e}\N{U+043d}",
      "\N{U+0421}\N{U+0430}\N{U+0431}\N{U+0430}\N{U+0442}",
      "\N{U+0425}\N{U+0443}\N{U+044b}\N{U+0446}\N{U+0430}\N{U+0443}\N{U+0431}\N{U+043e}\N{U+043d}"
    ],
    era_abbreviated => [
      "\N{U+043d}.\N{U+0434}.\N{U+0430}.",
      "\N{U+043d}.\N{U+0434}."
    ],
    era_narrow => [
      "\N{U+043d}.\N{U+0434}.\N{U+0430}.",
      "\N{U+043d}.\N{U+0434}."
    ],
    era_wide => [
      "\N{U+043d}.\N{U+0434}.\N{U+0430}.",
      "\N{U+043d}.\N{U+0434}."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Ossetic",
    month_format_abbreviated => [
      "\N{U+044f}\N{U+043d}\N{U+0432}.",
      "\N{U+0444}\N{U+0435}\N{U+0432}.",
      "\N{U+043c}\N{U+0430}\N{U+0440}.",
      "\N{U+0430}\N{U+043f}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+0439}\N{U+044b}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044b}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}.",
      "\N{U+0441}\N{U+0435}\N{U+043d}.",
      "\N{U+043e}\N{U+043a}\N{U+0442}.",
      "\N{U+043d}\N{U+043e}\N{U+044f}.",
      "\N{U+0434}\N{U+0435}\N{U+043a}."
    ],
    month_format_narrow => [
      "\N{U+042f}",
      "\N{U+0424}",
      "\N{U+041c}",
      "\N{U+0410}",
      "\N{U+041c}",
      "\N{U+0418}",
      "\N{U+0418}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+041e}",
      "\N{U+041d}",
      "\N{U+0414}"
    ],
    month_format_wide => [
      "\N{U+044f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+044b}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}\N{U+044b}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+044a}\N{U+0438}\N{U+0439}\N{U+044b}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}\N{U+044b}",
      "\N{U+043c}\N{U+0430}\N{U+0439}\N{U+044b}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044b}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}\N{U+044b}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044b}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044b}",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044b}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}\N{U+044b}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+042f}\N{U+043d}\N{U+0432}.",
      "\N{U+0424}\N{U+0435}\N{U+0432}\N{U+0440}.",
      "\N{U+041c}\N{U+0430}\N{U+0440}\N{U+0442}.",
      "\N{U+0410}\N{U+043f}\N{U+0440}.",
      "\N{U+041c}\N{U+0430}\N{U+0439}",
      "\N{U+0418}\N{U+044e}\N{U+043d}\N{U+044c}",
      "\N{U+0418}\N{U+044e}\N{U+043b}\N{U+044c}",
      "\N{U+0410}\N{U+0432}\N{U+0433}.",
      "\N{U+0421}\N{U+0435}\N{U+043d}\N{U+0442}.",
      "\N{U+041e}\N{U+043a}\N{U+0442}.",
      "\N{U+041d}\N{U+043e}\N{U+044f}\N{U+0431}.",
      "\N{U+0414}\N{U+0435}\N{U+043a}."
    ],
    month_stand_alone_narrow => [
      "\N{U+042f}",
      "\N{U+0424}",
      "\N{U+041c}",
      "\N{U+0410}",
      "\N{U+041c}",
      "\N{U+0418}",
      "\N{U+0418}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+041e}",
      "\N{U+041d}",
      "\N{U+0414}"
    ],
    month_stand_alone_wide => [
      "\N{U+042f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+044c}",
      "\N{U+0424}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}\N{U+044c}",
      "\N{U+041c}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+044a}\N{U+0438}",
      "\N{U+0410}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}\N{U+044c}",
      "\N{U+041c}\N{U+0430}\N{U+0439}",
      "\N{U+0418}\N{U+044e}\N{U+043d}\N{U+044c}",
      "\N{U+0418}\N{U+044e}\N{U+043b}\N{U+044c}",
      "\N{U+0410}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0421}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+041e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+041d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+0414}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}\N{U+044c}"
    ],
    name => "Ossetic Georgia",
    native_language => "\N{U+0438}\N{U+0440}\N{U+043e}\N{U+043d}",
    native_name => "\N{U+0438}\N{U+0440}\N{U+043e}\N{U+043d} \N{U+0413}\N{U+0443}\N{U+044b}\N{U+0440}\N{U+0434}\N{U+0437}\N{U+044b}\N{U+0441}\N{U+0442}\N{U+043e}\N{U+043d}",
    native_script => undef,
    native_territory => "\N{U+0413}\N{U+0443}\N{U+044b}\N{U+0440}\N{U+0434}\N{U+0437}\N{U+044b}\N{U+0441}\N{U+0442}\N{U+043e}\N{U+043d}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}.",
      "2-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}.",
      "3-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}.",
      "4-\N{U+04d5}\N{U+043c} \N{U+043a}\N{U+0432}."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+04d5}\N{U+043c} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    quarter_stand_alone_abbreviated => [
      "1-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}.",
      "2-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}.",
      "3-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}.",
      "4-\N{U+04d5}\N{U+043c} \N{U+043a}\N{U+0432}."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+04d5}\N{U+043c} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    script => undef,
    territory => "Georgia",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ os-RU ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd.MM",
      MMM => "LLL",
      MMMEd => "ccc, d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "dd.MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM.y",
      yMEd => "E, dd.MM.y",
      yMMM => "LLL y",
      yMMMEd => "E, d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y-'\N{U+04d5}\N{U+043c}' '\N{U+0430}\N{U+0437}\N{U+044b}' QQQ",
      yQQQQ => "y-'\N{U+04d5}\N{U+043c}' '\N{U+0430}\N{U+0437}\N{U+044b}' QQQQ"
    },
    code => "os-RU",
    date_format_full => "EEEE, d MMMM, y '\N{U+0430}\N{U+0437}'",
    date_format_long => "d MMMM, y '\N{U+0430}\N{U+0437}'",
    date_format_medium => "dd MMM y '\N{U+0430}\N{U+0437}'",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+043a}\N{U+0440}\N{U+0441}",
      "\N{U+0434}\N{U+0446}\N{U+0433}",
      "\N{U+04d5}\N{U+0440}\N{U+0442}",
      "\N{U+0446}\N{U+043f}\N{U+0440}",
      "\N{U+043c}\N{U+0440}\N{U+0431}",
      "\N{U+0441}\N{U+0431}\N{U+0442}",
      "\N{U+0445}\N{U+0446}\N{U+0431}"
    ],
    day_format_narrow => [
      "\N{U+041a}",
      "\N{U+0414}",
      "\N{U+04d4}",
      "\N{U+0426}",
      "\N{U+041c}",
      "\N{U+0421}",
      "\N{U+0425}"
    ],
    day_format_wide => [
      "\N{U+043a}\N{U+044a}\N{U+0443}\N{U+044b}\N{U+0440}\N{U+0438}\N{U+0441}\N{U+04d5}\N{U+0440}",
      "\N{U+0434}\N{U+044b}\N{U+0446}\N{U+0446}\N{U+04d5}\N{U+0433}",
      "\N{U+04d5}\N{U+0440}\N{U+0442}\N{U+044b}\N{U+0446}\N{U+0446}\N{U+04d5}\N{U+0433}",
      "\N{U+0446}\N{U+044b}\N{U+043f}\N{U+043f}\N{U+04d5}\N{U+0440}\N{U+04d5}\N{U+043c}",
      "\N{U+043c}\N{U+0430}\N{U+0439}\N{U+0440}\N{U+04d5}\N{U+043c}\N{U+0431}\N{U+043e}\N{U+043d}",
      "\N{U+0441}\N{U+0430}\N{U+0431}\N{U+0430}\N{U+0442}",
      "\N{U+0445}\N{U+0443}\N{U+044b}\N{U+0446}\N{U+0430}\N{U+0443}\N{U+0431}\N{U+043e}\N{U+043d}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+041a}\N{U+0440}\N{U+0441}",
      "\N{U+0414}\N{U+0446}\N{U+0433}",
      "\N{U+04d4}\N{U+0440}\N{U+0442}",
      "\N{U+0426}\N{U+043f}\N{U+0440}",
      "\N{U+041c}\N{U+0440}\N{U+0431}",
      "\N{U+0421}\N{U+0431}\N{U+0442}",
      "\N{U+0425}\N{U+0446}\N{U+0431}"
    ],
    day_stand_alone_narrow => [
      "\N{U+041a}",
      "\N{U+0414}",
      "\N{U+04d4}",
      "\N{U+0426}",
      "\N{U+041c}",
      "\N{U+0421}",
      "\N{U+0425}"
    ],
    day_stand_alone_wide => [
      "\N{U+041a}\N{U+044a}\N{U+0443}\N{U+044b}\N{U+0440}\N{U+0438}\N{U+0441}\N{U+04d5}\N{U+0440}",
      "\N{U+0414}\N{U+044b}\N{U+0446}\N{U+0446}\N{U+04d5}\N{U+0433}",
      "\N{U+04d4}\N{U+0440}\N{U+0442}\N{U+044b}\N{U+0446}\N{U+0446}\N{U+04d5}\N{U+0433}",
      "\N{U+0426}\N{U+044b}\N{U+043f}\N{U+043f}\N{U+04d5}\N{U+0440}\N{U+04d5}\N{U+043c}",
      "\N{U+041c}\N{U+0430}\N{U+0439}\N{U+0440}\N{U+04d5}\N{U+043c}\N{U+0431}\N{U+043e}\N{U+043d}",
      "\N{U+0421}\N{U+0430}\N{U+0431}\N{U+0430}\N{U+0442}",
      "\N{U+0425}\N{U+0443}\N{U+044b}\N{U+0446}\N{U+0430}\N{U+0443}\N{U+0431}\N{U+043e}\N{U+043d}"
    ],
    era_abbreviated => [
      "\N{U+043d}.\N{U+0434}.\N{U+0430}.",
      "\N{U+043d}.\N{U+0434}."
    ],
    era_narrow => [
      "\N{U+043d}.\N{U+0434}.\N{U+0430}.",
      "\N{U+043d}.\N{U+0434}."
    ],
    era_wide => [
      "\N{U+043d}.\N{U+0434}.\N{U+0430}.",
      "\N{U+043d}.\N{U+0434}."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d.%m.%Y",
    glibc_datetime_format => "%a %d %b %Y %T",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Ossetic",
    month_format_abbreviated => [
      "\N{U+044f}\N{U+043d}\N{U+0432}.",
      "\N{U+0444}\N{U+0435}\N{U+0432}.",
      "\N{U+043c}\N{U+0430}\N{U+0440}.",
      "\N{U+0430}\N{U+043f}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+0439}\N{U+044b}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044b}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}.",
      "\N{U+0441}\N{U+0435}\N{U+043d}.",
      "\N{U+043e}\N{U+043a}\N{U+0442}.",
      "\N{U+043d}\N{U+043e}\N{U+044f}.",
      "\N{U+0434}\N{U+0435}\N{U+043a}."
    ],
    month_format_narrow => [
      "\N{U+042f}",
      "\N{U+0424}",
      "\N{U+041c}",
      "\N{U+0410}",
      "\N{U+041c}",
      "\N{U+0418}",
      "\N{U+0418}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+041e}",
      "\N{U+041d}",
      "\N{U+0414}"
    ],
    month_format_wide => [
      "\N{U+044f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+044b}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}\N{U+044b}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+044a}\N{U+0438}\N{U+0439}\N{U+044b}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}\N{U+044b}",
      "\N{U+043c}\N{U+0430}\N{U+0439}\N{U+044b}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044b}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}\N{U+044b}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044b}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044b}",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044b}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}\N{U+044b}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+042f}\N{U+043d}\N{U+0432}.",
      "\N{U+0424}\N{U+0435}\N{U+0432}\N{U+0440}.",
      "\N{U+041c}\N{U+0430}\N{U+0440}\N{U+0442}.",
      "\N{U+0410}\N{U+043f}\N{U+0440}.",
      "\N{U+041c}\N{U+0430}\N{U+0439}",
      "\N{U+0418}\N{U+044e}\N{U+043d}\N{U+044c}",
      "\N{U+0418}\N{U+044e}\N{U+043b}\N{U+044c}",
      "\N{U+0410}\N{U+0432}\N{U+0433}.",
      "\N{U+0421}\N{U+0435}\N{U+043d}\N{U+0442}.",
      "\N{U+041e}\N{U+043a}\N{U+0442}.",
      "\N{U+041d}\N{U+043e}\N{U+044f}\N{U+0431}.",
      "\N{U+0414}\N{U+0435}\N{U+043a}."
    ],
    month_stand_alone_narrow => [
      "\N{U+042f}",
      "\N{U+0424}",
      "\N{U+041c}",
      "\N{U+0410}",
      "\N{U+041c}",
      "\N{U+0418}",
      "\N{U+0418}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+041e}",
      "\N{U+041d}",
      "\N{U+0414}"
    ],
    month_stand_alone_wide => [
      "\N{U+042f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+044c}",
      "\N{U+0424}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}\N{U+044c}",
      "\N{U+041c}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+044a}\N{U+0438}",
      "\N{U+0410}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}\N{U+044c}",
      "\N{U+041c}\N{U+0430}\N{U+0439}",
      "\N{U+0418}\N{U+044e}\N{U+043d}\N{U+044c}",
      "\N{U+0418}\N{U+044e}\N{U+043b}\N{U+044c}",
      "\N{U+0410}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0421}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+041e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+041d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+0414}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}\N{U+044c}"
    ],
    name => "Ossetic Russia",
    native_language => "\N{U+0438}\N{U+0440}\N{U+043e}\N{U+043d}",
    native_name => "\N{U+0438}\N{U+0440}\N{U+043e}\N{U+043d} \N{U+0423}\N{U+04d5}\N{U+0440}\N{U+04d5}\N{U+0441}\N{U+0435}",
    native_script => undef,
    native_territory => "\N{U+0423}\N{U+04d5}\N{U+0440}\N{U+04d5}\N{U+0441}\N{U+0435}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}.",
      "2-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}.",
      "3-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}.",
      "4-\N{U+04d5}\N{U+043c} \N{U+043a}\N{U+0432}."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+04d5}\N{U+043c} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    quarter_stand_alone_abbreviated => [
      "1-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}.",
      "2-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}.",
      "3-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}.",
      "4-\N{U+04d5}\N{U+043c} \N{U+043a}\N{U+0432}."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0430}\N{U+0433} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+04d5}\N{U+043c} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    script => undef,
    territory => "Russia",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ pa ]__
  {
    am_pm_abbreviated => [
      "\N{U+0a2a}\N{U+0a42}.\N{U+0a26}\N{U+0a41}.",
      "\N{U+0a2c}\N{U+0a3e}.\N{U+0a26}\N{U+0a41}."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "MMM, G y",
      GyMMMEd => "E d MMM, G y",
      GyMMMd => "d MMM y",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd-MM.",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "pa",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+0a38}\N{U+0a4b}\N{U+0a2e}",
      "\N{U+0a2e}\N{U+0a70}\N{U+0a17}\N{U+0a32}",
      "\N{U+0a2c}\N{U+0a41}\N{U+0a71}\N{U+0a27}",
      "\N{U+0a35}\N{U+0a40}\N{U+0a30}",
      "\N{U+0a38}\N{U+0a3c}\N{U+0a41}\N{U+0a71}\N{U+0a15}\N{U+0a30}",
      "\N{U+0a38}\N{U+0a3c}\N{U+0a28}\N{U+0a3f}\N{U+0a71}\N{U+0a1a}\N{U+0a30}",
      "\N{U+0a10}\N{U+0a24}"
    ],
    day_format_narrow => [
      "\N{U+0a38}\N{U+0a4b}",
      "\N{U+0a2e}\N{U+0a70}",
      "\N{U+0a2c}\N{U+0a41}\N{U+0a71}",
      "\N{U+0a35}\N{U+0a40}",
      "\N{U+0a38}\N{U+0a3c}\N{U+0a41}\N{U+0a71}",
      "\N{U+0a38}\N{U+0a3c}",
      "\N{U+0a10}"
    ],
    day_format_wide => [
      "\N{U+0a38}\N{U+0a4b}\N{U+0a2e}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a2e}\N{U+0a70}\N{U+0a17}\N{U+0a32}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a2c}\N{U+0a41}\N{U+0a71}\N{U+0a27}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a35}\N{U+0a40}\N{U+0a30}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a38}\N{U+0a3c}\N{U+0a41}\N{U+0a71}\N{U+0a15}\N{U+0a30}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a38}\N{U+0a3c}\N{U+0a28}\N{U+0a3f}\N{U+0a71}\N{U+0a1a}\N{U+0a30}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a10}\N{U+0a24}\N{U+0a35}\N{U+0a3e}\N{U+0a30}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0a38}\N{U+0a4b}\N{U+0a2e}",
      "\N{U+0a2e}\N{U+0a70}\N{U+0a17}\N{U+0a32}",
      "\N{U+0a2c}\N{U+0a41}\N{U+0a71}\N{U+0a27}",
      "\N{U+0a35}\N{U+0a40}\N{U+0a30}",
      "\N{U+0a38}\N{U+0a3c}\N{U+0a41}\N{U+0a71}\N{U+0a15}\N{U+0a30}",
      "\N{U+0a38}\N{U+0a3c}\N{U+0a28}\N{U+0a3f}\N{U+0a71}\N{U+0a1a}\N{U+0a30}",
      "\N{U+0a10}\N{U+0a24}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0a38}\N{U+0a4b}",
      "\N{U+0a2e}\N{U+0a70}",
      "\N{U+0a2c}\N{U+0a41}\N{U+0a71}",
      "\N{U+0a35}\N{U+0a40}",
      "\N{U+0a38}\N{U+0a3c}\N{U+0a41}\N{U+0a71}",
      "\N{U+0a38}\N{U+0a3c}",
      "\N{U+0a10}"
    ],
    day_stand_alone_wide => [
      "\N{U+0a38}\N{U+0a4b}\N{U+0a2e}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a2e}\N{U+0a70}\N{U+0a17}\N{U+0a32}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a2c}\N{U+0a41}\N{U+0a71}\N{U+0a27}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a35}\N{U+0a40}\N{U+0a30}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a38}\N{U+0a3c}\N{U+0a41}\N{U+0a71}\N{U+0a15}\N{U+0a30}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a38}\N{U+0a3c}\N{U+0a28}\N{U+0a3f}\N{U+0a71}\N{U+0a1a}\N{U+0a30}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a10}\N{U+0a24}\N{U+0a35}\N{U+0a3e}\N{U+0a30}"
    ],
    era_abbreviated => [
      "\N{U+0a08}. \N{U+0a2a}\N{U+0a42}.",
      "\N{U+0a38}\N{U+0a70}\N{U+0a28}"
    ],
    era_narrow => [
      "\N{U+0a08}. \N{U+0a2a}\N{U+0a42}.",
      "\N{U+0a38}\N{U+0a70}\N{U+0a28}"
    ],
    era_wide => [
      "\N{U+0a08}\N{U+0a38}\N{U+0a35}\N{U+0a40} \N{U+0a2a}\N{U+0a42}\N{U+0a30}\N{U+0a35}",
      "\N{U+0a08}\N{U+0a38}\N{U+0a35}\N{U+0a40} \N{U+0a38}\N{U+0a70}\N{U+0a28}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Punjabi",
    month_format_abbreviated => [
      "\N{U+0a1c}\N{U+0a28}",
      "\N{U+0a2b}\N{U+0a3c}\N{U+0a30}",
      "\N{U+0a2e}\N{U+0a3e}\N{U+0a30}\N{U+0a1a}",
      "\N{U+0a05}\N{U+0a2a}\N{U+0a4d}\N{U+0a30}\N{U+0a48}",
      "\N{U+0a2e}\N{U+0a08}",
      "\N{U+0a1c}\N{U+0a42}\N{U+0a28}",
      "\N{U+0a1c}\N{U+0a41}\N{U+0a32}\N{U+0a3e}",
      "\N{U+0a05}\N{U+0a17}",
      "\N{U+0a38}\N{U+0a24}\N{U+0a70}",
      "\N{U+0a05}\N{U+0a15}\N{U+0a24}\N{U+0a42}",
      "\N{U+0a28}\N{U+0a35}\N{U+0a70}",
      "\N{U+0a26}\N{U+0a38}\N{U+0a70}"
    ],
    month_format_narrow => [
      "\N{U+0a1c}",
      "\N{U+0a2b}\N{U+0a3c}",
      "\N{U+0a2e}\N{U+0a3e}",
      "\N{U+0a05}",
      "\N{U+0a2e}",
      "\N{U+0a1c}\N{U+0a42}",
      "\N{U+0a1c}\N{U+0a41}",
      "\N{U+0a05}",
      "\N{U+0a38}",
      "\N{U+0a05}",
      "\N{U+0a28}",
      "\N{U+0a26}"
    ],
    month_format_wide => [
      "\N{U+0a1c}\N{U+0a28}\N{U+0a35}\N{U+0a30}\N{U+0a40}",
      "\N{U+0a2b}\N{U+0a3c}\N{U+0a30}\N{U+0a35}\N{U+0a30}\N{U+0a40}",
      "\N{U+0a2e}\N{U+0a3e}\N{U+0a30}\N{U+0a1a}",
      "\N{U+0a05}\N{U+0a2a}\N{U+0a4d}\N{U+0a30}\N{U+0a48}\N{U+0a32}",
      "\N{U+0a2e}\N{U+0a08}",
      "\N{U+0a1c}\N{U+0a42}\N{U+0a28}",
      "\N{U+0a1c}\N{U+0a41}\N{U+0a32}\N{U+0a3e}\N{U+0a08}",
      "\N{U+0a05}\N{U+0a17}\N{U+0a38}\N{U+0a24}",
      "\N{U+0a38}\N{U+0a24}\N{U+0a70}\N{U+0a2c}\N{U+0a30}",
      "\N{U+0a05}\N{U+0a15}\N{U+0a24}\N{U+0a42}\N{U+0a2c}\N{U+0a30}",
      "\N{U+0a28}\N{U+0a35}\N{U+0a70}\N{U+0a2c}\N{U+0a30}",
      "\N{U+0a26}\N{U+0a38}\N{U+0a70}\N{U+0a2c}\N{U+0a30}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0a1c}\N{U+0a28}",
      "\N{U+0a2b}\N{U+0a3c}\N{U+0a30}",
      "\N{U+0a2e}\N{U+0a3e}\N{U+0a30}\N{U+0a1a}",
      "\N{U+0a05}\N{U+0a2a}\N{U+0a4d}\N{U+0a30}\N{U+0a48}",
      "\N{U+0a2e}\N{U+0a08}",
      "\N{U+0a1c}\N{U+0a42}\N{U+0a28}",
      "\N{U+0a1c}\N{U+0a41}\N{U+0a32}\N{U+0a3e}",
      "\N{U+0a05}\N{U+0a17}",
      "\N{U+0a38}\N{U+0a24}\N{U+0a70}",
      "\N{U+0a05}\N{U+0a15}\N{U+0a24}\N{U+0a42}",
      "\N{U+0a28}\N{U+0a35}\N{U+0a70}",
      "\N{U+0a26}\N{U+0a38}\N{U+0a70}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0a1c}",
      "\N{U+0a2b}\N{U+0a3c}",
      "\N{U+0a2e}\N{U+0a3e}",
      "\N{U+0a05}",
      "\N{U+0a2e}",
      "\N{U+0a1c}\N{U+0a42}",
      "\N{U+0a1c}\N{U+0a41}",
      "\N{U+0a05}",
      "\N{U+0a38}",
      "\N{U+0a05}",
      "\N{U+0a28}",
      "\N{U+0a26}"
    ],
    month_stand_alone_wide => [
      "\N{U+0a1c}\N{U+0a28}\N{U+0a35}\N{U+0a30}\N{U+0a40}",
      "\N{U+0a2b}\N{U+0a3c}\N{U+0a30}\N{U+0a35}\N{U+0a30}\N{U+0a40}",
      "\N{U+0a2e}\N{U+0a3e}\N{U+0a30}\N{U+0a1a}",
      "\N{U+0a05}\N{U+0a2a}\N{U+0a4d}\N{U+0a30}\N{U+0a48}\N{U+0a32}",
      "\N{U+0a2e}\N{U+0a08}",
      "\N{U+0a1c}\N{U+0a42}\N{U+0a28}",
      "\N{U+0a1c}\N{U+0a41}\N{U+0a32}\N{U+0a3e}\N{U+0a08}",
      "\N{U+0a05}\N{U+0a17}\N{U+0a38}\N{U+0a24}",
      "\N{U+0a38}\N{U+0a24}\N{U+0a70}\N{U+0a2c}\N{U+0a30}",
      "\N{U+0a05}\N{U+0a15}\N{U+0a24}\N{U+0a42}\N{U+0a2c}\N{U+0a30}",
      "\N{U+0a28}\N{U+0a35}\N{U+0a70}\N{U+0a2c}\N{U+0a30}",
      "\N{U+0a26}\N{U+0a38}\N{U+0a70}\N{U+0a2c}\N{U+0a30}"
    ],
    name => "Punjabi",
    native_language => "\N{U+0a2a}\N{U+0a70}\N{U+0a1c}\N{U+0a3e}\N{U+0a2c}\N{U+0a40}",
    native_name => "\N{U+0a2a}\N{U+0a70}\N{U+0a1c}\N{U+0a3e}\N{U+0a2c}\N{U+0a40}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}1",
      "\N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}2",
      "\N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}3",
      "\N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+0a2a}\N{U+0a39}\N{U+0a3f}\N{U+0a32}\N{U+0a40} \N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}",
      "\N{U+0a26}\N{U+0a42}\N{U+0a1c}\N{U+0a40} \N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}",
      "\N{U+0a24}\N{U+0a40}\N{U+0a1c}\N{U+0a40} \N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}",
      "\N{U+0a1a}\N{U+0a4c}\N{U+0a25}\N{U+0a40} \N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}1",
      "\N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}2",
      "\N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}3",
      "\N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+0a2a}\N{U+0a39}\N{U+0a3f}\N{U+0a32}\N{U+0a40} \N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}",
      "\N{U+0a26}\N{U+0a42}\N{U+0a1c}\N{U+0a40} \N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}",
      "\N{U+0a24}\N{U+0a40}\N{U+0a1c}\N{U+0a40} \N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}",
      "\N{U+0a1a}\N{U+0a4c}\N{U+0a25}\N{U+0a40} \N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ pa-Arab ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      HHmmss => "HH:mm:ss",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "MMM y",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "y QQQQ"
    },
    code => "pa-Arab",
    date_format_full => "EEEE, dd MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+067e}\N{U+06cc}\N{U+0631}",
      "\N{U+0645}\N{U+0646}\N{U+06af}\N{U+0644}",
      "\N{U+0628}\N{U+064f}\N{U+062f}\N{U+06be}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0631}\N{U+0627}\N{U+062a}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+06c1}",
      "\N{U+06c1}\N{U+0641}\N{U+062a}\N{U+06c1}",
      "\N{U+0627}\N{U+062a}\N{U+0648}\N{U+0627}\N{U+0631}"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "\N{U+067e}\N{U+06cc}\N{U+0631}",
      "\N{U+0645}\N{U+0646}\N{U+06af}\N{U+0644}",
      "\N{U+0628}\N{U+064f}\N{U+062f}\N{U+06be}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0631}\N{U+0627}\N{U+062a}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+06c1}",
      "\N{U+06c1}\N{U+0641}\N{U+062a}\N{U+06c1}",
      "\N{U+0627}\N{U+062a}\N{U+0648}\N{U+0627}\N{U+0631}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+067e}\N{U+06cc}\N{U+0631}",
      "\N{U+0645}\N{U+0646}\N{U+06af}\N{U+0644}",
      "\N{U+0628}\N{U+064f}\N{U+062f}\N{U+06be}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0631}\N{U+0627}\N{U+062a}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+06c1}",
      "\N{U+06c1}\N{U+0641}\N{U+062a}\N{U+06c1}",
      "\N{U+0627}\N{U+062a}\N{U+0648}\N{U+0627}\N{U+0631}"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "\N{U+067e}\N{U+06cc}\N{U+0631}",
      "\N{U+0645}\N{U+0646}\N{U+06af}\N{U+0644}",
      "\N{U+0628}\N{U+064f}\N{U+062f}\N{U+06be}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0631}\N{U+0627}\N{U+062a}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+06c1}",
      "\N{U+06c1}\N{U+0641}\N{U+062a}\N{U+06c1}",
      "\N{U+0627}\N{U+062a}\N{U+0648}\N{U+0627}\N{U+0631}"
    ],
    era_abbreviated => [
      "\N{U+0627}\N{U+064a}\N{U+0633}\N{U+0627}\N{U+067e}\N{U+0648}\N{U+0631}\N{U+0648}",
      "\N{U+0633}\N{U+06ba}"
    ],
    era_narrow => [
      "\N{U+0627}\N{U+064a}\N{U+0633}\N{U+0627}\N{U+067e}\N{U+0648}\N{U+0631}\N{U+0648}",
      "\N{U+0633}\N{U+06ba}"
    ],
    era_wide => [
      "\N{U+0627}\N{U+064a}\N{U+0633}\N{U+0627}\N{U+067e}\N{U+0648}\N{U+0631}\N{U+0648}",
      "\N{U+0633}\N{U+06ba}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Punjabi",
    month_format_abbreviated => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+0626}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+0626}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+0626}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+0626}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Punjabi Arabic",
    native_language => "\N{U+067e}\N{U+0646}\N{U+062c}\N{U+0627}\N{U+0628}\N{U+06cc}",
    native_name => "\N{U+067e}\N{U+0646}\N{U+062c}\N{U+0627}\N{U+0628}\N{U+06cc} \N{U+0639}\N{U+0631}\N{U+0628}\N{U+06cc}",
    native_script => "\N{U+0639}\N{U+0631}\N{U+0628}\N{U+06cc}",
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+067e}\N{U+06c1}\N{U+0644}\N{U+0627}\N{U+06ba}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+062f}\N{U+0648}\N{U+062c}\N{U+0627}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+062a}\N{U+064a}\N{U+062c}\N{U+0627}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+067e}\N{U+06c1}\N{U+0644}\N{U+0627}\N{U+06ba}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+062f}\N{U+0648}\N{U+062c}\N{U+0627}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+062a}\N{U+064a}\N{U+062c}\N{U+0627}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+067e}\N{U+06c1}\N{U+0644}\N{U+0627}\N{U+06ba}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+062f}\N{U+0648}\N{U+062c}\N{U+0627}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+062a}\N{U+064a}\N{U+062c}\N{U+0627}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+067e}\N{U+06c1}\N{U+0644}\N{U+0627}\N{U+06ba}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+062f}\N{U+0648}\N{U+062c}\N{U+0627}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+062a}\N{U+064a}\N{U+062c}\N{U+0627}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}"
    ],
    script => "Arabic",
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ pa-Arab-PK ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      HHmmss => "HH:mm:ss",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "MMM y",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "y QQQQ"
    },
    code => "pa-Arab-PK",
    date_format_full => "EEEE, dd MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+067e}\N{U+06cc}\N{U+0631}",
      "\N{U+0645}\N{U+0646}\N{U+06af}\N{U+0644}",
      "\N{U+0628}\N{U+064f}\N{U+062f}\N{U+06be}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0631}\N{U+0627}\N{U+062a}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+06c1}",
      "\N{U+06c1}\N{U+0641}\N{U+062a}\N{U+06c1}",
      "\N{U+0627}\N{U+062a}\N{U+0648}\N{U+0627}\N{U+0631}"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "\N{U+067e}\N{U+06cc}\N{U+0631}",
      "\N{U+0645}\N{U+0646}\N{U+06af}\N{U+0644}",
      "\N{U+0628}\N{U+064f}\N{U+062f}\N{U+06be}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0631}\N{U+0627}\N{U+062a}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+06c1}",
      "\N{U+06c1}\N{U+0641}\N{U+062a}\N{U+06c1}",
      "\N{U+0627}\N{U+062a}\N{U+0648}\N{U+0627}\N{U+0631}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+067e}\N{U+06cc}\N{U+0631}",
      "\N{U+0645}\N{U+0646}\N{U+06af}\N{U+0644}",
      "\N{U+0628}\N{U+064f}\N{U+062f}\N{U+06be}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0631}\N{U+0627}\N{U+062a}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+06c1}",
      "\N{U+06c1}\N{U+0641}\N{U+062a}\N{U+06c1}",
      "\N{U+0627}\N{U+062a}\N{U+0648}\N{U+0627}\N{U+0631}"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "\N{U+067e}\N{U+06cc}\N{U+0631}",
      "\N{U+0645}\N{U+0646}\N{U+06af}\N{U+0644}",
      "\N{U+0628}\N{U+064f}\N{U+062f}\N{U+06be}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0631}\N{U+0627}\N{U+062a}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+06c1}",
      "\N{U+06c1}\N{U+0641}\N{U+062a}\N{U+06c1}",
      "\N{U+0627}\N{U+062a}\N{U+0648}\N{U+0627}\N{U+0631}"
    ],
    era_abbreviated => [
      "\N{U+0627}\N{U+064a}\N{U+0633}\N{U+0627}\N{U+067e}\N{U+0648}\N{U+0631}\N{U+0648}",
      "\N{U+0633}\N{U+06ba}"
    ],
    era_narrow => [
      "\N{U+0627}\N{U+064a}\N{U+0633}\N{U+0627}\N{U+067e}\N{U+0648}\N{U+0631}\N{U+0648}",
      "\N{U+0633}\N{U+06ba}"
    ],
    era_wide => [
      "\N{U+0627}\N{U+064a}\N{U+0633}\N{U+0627}\N{U+067e}\N{U+0648}\N{U+0631}\N{U+0648}",
      "\N{U+0633}\N{U+06ba}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Punjabi",
    month_format_abbreviated => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+0626}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+0626}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+0626}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+0626}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Punjabi Pakistan Arabic",
    native_language => "\N{U+067e}\N{U+0646}\N{U+062c}\N{U+0627}\N{U+0628}\N{U+06cc}",
    native_name => "\N{U+067e}\N{U+0646}\N{U+062c}\N{U+0627}\N{U+0628}\N{U+06cc} \N{U+067e}\N{U+06a9}\N{U+0633}\N{U+062a}\N{U+0627}\N{U+0646} \N{U+0639}\N{U+0631}\N{U+0628}\N{U+06cc}",
    native_script => "\N{U+0639}\N{U+0631}\N{U+0628}\N{U+06cc}",
    native_territory => "\N{U+067e}\N{U+06a9}\N{U+0633}\N{U+062a}\N{U+0627}\N{U+0646}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+067e}\N{U+06c1}\N{U+0644}\N{U+0627}\N{U+06ba}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+062f}\N{U+0648}\N{U+062c}\N{U+0627}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+062a}\N{U+064a}\N{U+062c}\N{U+0627}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+067e}\N{U+06c1}\N{U+0644}\N{U+0627}\N{U+06ba}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+062f}\N{U+0648}\N{U+062c}\N{U+0627}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+062a}\N{U+064a}\N{U+062c}\N{U+0627}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+067e}\N{U+06c1}\N{U+0644}\N{U+0627}\N{U+06ba}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+062f}\N{U+0648}\N{U+062c}\N{U+0627}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+062a}\N{U+064a}\N{U+062c}\N{U+0627}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+067e}\N{U+06c1}\N{U+0644}\N{U+0627}\N{U+06ba}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+062f}\N{U+0648}\N{U+062c}\N{U+0627}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+062a}\N{U+064a}\N{U+062c}\N{U+0627}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}\N{U+064a} \N{U+0686}\N{U+0648}\N{U+062a}\N{U+06be}\N{U+0627}"
    ],
    script => "Arabic",
    territory => "Pakistan",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ pa-Guru ]__
  {
    am_pm_abbreviated => [
      "\N{U+0a2a}\N{U+0a42}.\N{U+0a26}\N{U+0a41}.",
      "\N{U+0a2c}\N{U+0a3e}.\N{U+0a26}\N{U+0a41}."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "MMM, G y",
      GyMMMEd => "E d MMM, G y",
      GyMMMd => "d MMM y",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd-MM.",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "pa-Guru",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+0a38}\N{U+0a4b}\N{U+0a2e}",
      "\N{U+0a2e}\N{U+0a70}\N{U+0a17}\N{U+0a32}",
      "\N{U+0a2c}\N{U+0a41}\N{U+0a71}\N{U+0a27}",
      "\N{U+0a35}\N{U+0a40}\N{U+0a30}",
      "\N{U+0a38}\N{U+0a3c}\N{U+0a41}\N{U+0a71}\N{U+0a15}\N{U+0a30}",
      "\N{U+0a38}\N{U+0a3c}\N{U+0a28}\N{U+0a3f}\N{U+0a71}\N{U+0a1a}\N{U+0a30}",
      "\N{U+0a10}\N{U+0a24}"
    ],
    day_format_narrow => [
      "\N{U+0a38}\N{U+0a4b}",
      "\N{U+0a2e}\N{U+0a70}",
      "\N{U+0a2c}\N{U+0a41}\N{U+0a71}",
      "\N{U+0a35}\N{U+0a40}",
      "\N{U+0a38}\N{U+0a3c}\N{U+0a41}\N{U+0a71}",
      "\N{U+0a38}\N{U+0a3c}",
      "\N{U+0a10}"
    ],
    day_format_wide => [
      "\N{U+0a38}\N{U+0a4b}\N{U+0a2e}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a2e}\N{U+0a70}\N{U+0a17}\N{U+0a32}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a2c}\N{U+0a41}\N{U+0a71}\N{U+0a27}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a35}\N{U+0a40}\N{U+0a30}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a38}\N{U+0a3c}\N{U+0a41}\N{U+0a71}\N{U+0a15}\N{U+0a30}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a38}\N{U+0a3c}\N{U+0a28}\N{U+0a3f}\N{U+0a71}\N{U+0a1a}\N{U+0a30}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a10}\N{U+0a24}\N{U+0a35}\N{U+0a3e}\N{U+0a30}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0a38}\N{U+0a4b}\N{U+0a2e}",
      "\N{U+0a2e}\N{U+0a70}\N{U+0a17}\N{U+0a32}",
      "\N{U+0a2c}\N{U+0a41}\N{U+0a71}\N{U+0a27}",
      "\N{U+0a35}\N{U+0a40}\N{U+0a30}",
      "\N{U+0a38}\N{U+0a3c}\N{U+0a41}\N{U+0a71}\N{U+0a15}\N{U+0a30}",
      "\N{U+0a38}\N{U+0a3c}\N{U+0a28}\N{U+0a3f}\N{U+0a71}\N{U+0a1a}\N{U+0a30}",
      "\N{U+0a10}\N{U+0a24}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0a38}\N{U+0a4b}",
      "\N{U+0a2e}\N{U+0a70}",
      "\N{U+0a2c}\N{U+0a41}\N{U+0a71}",
      "\N{U+0a35}\N{U+0a40}",
      "\N{U+0a38}\N{U+0a3c}\N{U+0a41}\N{U+0a71}",
      "\N{U+0a38}\N{U+0a3c}",
      "\N{U+0a10}"
    ],
    day_stand_alone_wide => [
      "\N{U+0a38}\N{U+0a4b}\N{U+0a2e}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a2e}\N{U+0a70}\N{U+0a17}\N{U+0a32}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a2c}\N{U+0a41}\N{U+0a71}\N{U+0a27}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a35}\N{U+0a40}\N{U+0a30}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a38}\N{U+0a3c}\N{U+0a41}\N{U+0a71}\N{U+0a15}\N{U+0a30}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a38}\N{U+0a3c}\N{U+0a28}\N{U+0a3f}\N{U+0a71}\N{U+0a1a}\N{U+0a30}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a10}\N{U+0a24}\N{U+0a35}\N{U+0a3e}\N{U+0a30}"
    ],
    era_abbreviated => [
      "\N{U+0a08}. \N{U+0a2a}\N{U+0a42}.",
      "\N{U+0a38}\N{U+0a70}\N{U+0a28}"
    ],
    era_narrow => [
      "\N{U+0a08}. \N{U+0a2a}\N{U+0a42}.",
      "\N{U+0a38}\N{U+0a70}\N{U+0a28}"
    ],
    era_wide => [
      "\N{U+0a08}\N{U+0a38}\N{U+0a35}\N{U+0a40} \N{U+0a2a}\N{U+0a42}\N{U+0a30}\N{U+0a35}",
      "\N{U+0a08}\N{U+0a38}\N{U+0a35}\N{U+0a40} \N{U+0a38}\N{U+0a70}\N{U+0a28}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Punjabi",
    month_format_abbreviated => [
      "\N{U+0a1c}\N{U+0a28}",
      "\N{U+0a2b}\N{U+0a3c}\N{U+0a30}",
      "\N{U+0a2e}\N{U+0a3e}\N{U+0a30}\N{U+0a1a}",
      "\N{U+0a05}\N{U+0a2a}\N{U+0a4d}\N{U+0a30}\N{U+0a48}",
      "\N{U+0a2e}\N{U+0a08}",
      "\N{U+0a1c}\N{U+0a42}\N{U+0a28}",
      "\N{U+0a1c}\N{U+0a41}\N{U+0a32}\N{U+0a3e}",
      "\N{U+0a05}\N{U+0a17}",
      "\N{U+0a38}\N{U+0a24}\N{U+0a70}",
      "\N{U+0a05}\N{U+0a15}\N{U+0a24}\N{U+0a42}",
      "\N{U+0a28}\N{U+0a35}\N{U+0a70}",
      "\N{U+0a26}\N{U+0a38}\N{U+0a70}"
    ],
    month_format_narrow => [
      "\N{U+0a1c}",
      "\N{U+0a2b}\N{U+0a3c}",
      "\N{U+0a2e}\N{U+0a3e}",
      "\N{U+0a05}",
      "\N{U+0a2e}",
      "\N{U+0a1c}\N{U+0a42}",
      "\N{U+0a1c}\N{U+0a41}",
      "\N{U+0a05}",
      "\N{U+0a38}",
      "\N{U+0a05}",
      "\N{U+0a28}",
      "\N{U+0a26}"
    ],
    month_format_wide => [
      "\N{U+0a1c}\N{U+0a28}\N{U+0a35}\N{U+0a30}\N{U+0a40}",
      "\N{U+0a2b}\N{U+0a3c}\N{U+0a30}\N{U+0a35}\N{U+0a30}\N{U+0a40}",
      "\N{U+0a2e}\N{U+0a3e}\N{U+0a30}\N{U+0a1a}",
      "\N{U+0a05}\N{U+0a2a}\N{U+0a4d}\N{U+0a30}\N{U+0a48}\N{U+0a32}",
      "\N{U+0a2e}\N{U+0a08}",
      "\N{U+0a1c}\N{U+0a42}\N{U+0a28}",
      "\N{U+0a1c}\N{U+0a41}\N{U+0a32}\N{U+0a3e}\N{U+0a08}",
      "\N{U+0a05}\N{U+0a17}\N{U+0a38}\N{U+0a24}",
      "\N{U+0a38}\N{U+0a24}\N{U+0a70}\N{U+0a2c}\N{U+0a30}",
      "\N{U+0a05}\N{U+0a15}\N{U+0a24}\N{U+0a42}\N{U+0a2c}\N{U+0a30}",
      "\N{U+0a28}\N{U+0a35}\N{U+0a70}\N{U+0a2c}\N{U+0a30}",
      "\N{U+0a26}\N{U+0a38}\N{U+0a70}\N{U+0a2c}\N{U+0a30}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0a1c}\N{U+0a28}",
      "\N{U+0a2b}\N{U+0a3c}\N{U+0a30}",
      "\N{U+0a2e}\N{U+0a3e}\N{U+0a30}\N{U+0a1a}",
      "\N{U+0a05}\N{U+0a2a}\N{U+0a4d}\N{U+0a30}\N{U+0a48}",
      "\N{U+0a2e}\N{U+0a08}",
      "\N{U+0a1c}\N{U+0a42}\N{U+0a28}",
      "\N{U+0a1c}\N{U+0a41}\N{U+0a32}\N{U+0a3e}",
      "\N{U+0a05}\N{U+0a17}",
      "\N{U+0a38}\N{U+0a24}\N{U+0a70}",
      "\N{U+0a05}\N{U+0a15}\N{U+0a24}\N{U+0a42}",
      "\N{U+0a28}\N{U+0a35}\N{U+0a70}",
      "\N{U+0a26}\N{U+0a38}\N{U+0a70}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0a1c}",
      "\N{U+0a2b}\N{U+0a3c}",
      "\N{U+0a2e}\N{U+0a3e}",
      "\N{U+0a05}",
      "\N{U+0a2e}",
      "\N{U+0a1c}\N{U+0a42}",
      "\N{U+0a1c}\N{U+0a41}",
      "\N{U+0a05}",
      "\N{U+0a38}",
      "\N{U+0a05}",
      "\N{U+0a28}",
      "\N{U+0a26}"
    ],
    month_stand_alone_wide => [
      "\N{U+0a1c}\N{U+0a28}\N{U+0a35}\N{U+0a30}\N{U+0a40}",
      "\N{U+0a2b}\N{U+0a3c}\N{U+0a30}\N{U+0a35}\N{U+0a30}\N{U+0a40}",
      "\N{U+0a2e}\N{U+0a3e}\N{U+0a30}\N{U+0a1a}",
      "\N{U+0a05}\N{U+0a2a}\N{U+0a4d}\N{U+0a30}\N{U+0a48}\N{U+0a32}",
      "\N{U+0a2e}\N{U+0a08}",
      "\N{U+0a1c}\N{U+0a42}\N{U+0a28}",
      "\N{U+0a1c}\N{U+0a41}\N{U+0a32}\N{U+0a3e}\N{U+0a08}",
      "\N{U+0a05}\N{U+0a17}\N{U+0a38}\N{U+0a24}",
      "\N{U+0a38}\N{U+0a24}\N{U+0a70}\N{U+0a2c}\N{U+0a30}",
      "\N{U+0a05}\N{U+0a15}\N{U+0a24}\N{U+0a42}\N{U+0a2c}\N{U+0a30}",
      "\N{U+0a28}\N{U+0a35}\N{U+0a70}\N{U+0a2c}\N{U+0a30}",
      "\N{U+0a26}\N{U+0a38}\N{U+0a70}\N{U+0a2c}\N{U+0a30}"
    ],
    name => "Punjabi Gurmukhi",
    native_language => "\N{U+0a2a}\N{U+0a70}\N{U+0a1c}\N{U+0a3e}\N{U+0a2c}\N{U+0a40}",
    native_name => "\N{U+0a2a}\N{U+0a70}\N{U+0a1c}\N{U+0a3e}\N{U+0a2c}\N{U+0a40} \N{U+0a17}\N{U+0a41}\N{U+0a30}\N{U+0a2e}\N{U+0a41}\N{U+0a16}\N{U+0a40}",
    native_script => "\N{U+0a17}\N{U+0a41}\N{U+0a30}\N{U+0a2e}\N{U+0a41}\N{U+0a16}\N{U+0a40}",
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}1",
      "\N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}2",
      "\N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}3",
      "\N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+0a2a}\N{U+0a39}\N{U+0a3f}\N{U+0a32}\N{U+0a40} \N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}",
      "\N{U+0a26}\N{U+0a42}\N{U+0a1c}\N{U+0a40} \N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}",
      "\N{U+0a24}\N{U+0a40}\N{U+0a1c}\N{U+0a40} \N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}",
      "\N{U+0a1a}\N{U+0a4c}\N{U+0a25}\N{U+0a40} \N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}1",
      "\N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}2",
      "\N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}3",
      "\N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+0a2a}\N{U+0a39}\N{U+0a3f}\N{U+0a32}\N{U+0a40} \N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}",
      "\N{U+0a26}\N{U+0a42}\N{U+0a1c}\N{U+0a40} \N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}",
      "\N{U+0a24}\N{U+0a40}\N{U+0a1c}\N{U+0a40} \N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}",
      "\N{U+0a1a}\N{U+0a4c}\N{U+0a25}\N{U+0a40} \N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}"
    ],
    script => "Gurmukhi",
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ pa-Guru-IN ]__
  {
    am_pm_abbreviated => [
      "\N{U+0a2a}\N{U+0a42}.\N{U+0a26}\N{U+0a41}.",
      "\N{U+0a2c}\N{U+0a3e}.\N{U+0a26}\N{U+0a41}."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "MMM, G y",
      GyMMMEd => "E d MMM, G y",
      GyMMMd => "d MMM y",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd-MM.",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "pa-Guru-IN",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+0a38}\N{U+0a4b}\N{U+0a2e}",
      "\N{U+0a2e}\N{U+0a70}\N{U+0a17}\N{U+0a32}",
      "\N{U+0a2c}\N{U+0a41}\N{U+0a71}\N{U+0a27}",
      "\N{U+0a35}\N{U+0a40}\N{U+0a30}",
      "\N{U+0a38}\N{U+0a3c}\N{U+0a41}\N{U+0a71}\N{U+0a15}\N{U+0a30}",
      "\N{U+0a38}\N{U+0a3c}\N{U+0a28}\N{U+0a3f}\N{U+0a71}\N{U+0a1a}\N{U+0a30}",
      "\N{U+0a10}\N{U+0a24}"
    ],
    day_format_narrow => [
      "\N{U+0a38}\N{U+0a4b}",
      "\N{U+0a2e}\N{U+0a70}",
      "\N{U+0a2c}\N{U+0a41}\N{U+0a71}",
      "\N{U+0a35}\N{U+0a40}",
      "\N{U+0a38}\N{U+0a3c}\N{U+0a41}\N{U+0a71}",
      "\N{U+0a38}\N{U+0a3c}",
      "\N{U+0a10}"
    ],
    day_format_wide => [
      "\N{U+0a38}\N{U+0a4b}\N{U+0a2e}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a2e}\N{U+0a70}\N{U+0a17}\N{U+0a32}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a2c}\N{U+0a41}\N{U+0a71}\N{U+0a27}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a35}\N{U+0a40}\N{U+0a30}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a38}\N{U+0a3c}\N{U+0a41}\N{U+0a71}\N{U+0a15}\N{U+0a30}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a38}\N{U+0a3c}\N{U+0a28}\N{U+0a3f}\N{U+0a71}\N{U+0a1a}\N{U+0a30}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a10}\N{U+0a24}\N{U+0a35}\N{U+0a3e}\N{U+0a30}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0a38}\N{U+0a4b}\N{U+0a2e}",
      "\N{U+0a2e}\N{U+0a70}\N{U+0a17}\N{U+0a32}",
      "\N{U+0a2c}\N{U+0a41}\N{U+0a71}\N{U+0a27}",
      "\N{U+0a35}\N{U+0a40}\N{U+0a30}",
      "\N{U+0a38}\N{U+0a3c}\N{U+0a41}\N{U+0a71}\N{U+0a15}\N{U+0a30}",
      "\N{U+0a38}\N{U+0a3c}\N{U+0a28}\N{U+0a3f}\N{U+0a71}\N{U+0a1a}\N{U+0a30}",
      "\N{U+0a10}\N{U+0a24}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0a38}\N{U+0a4b}",
      "\N{U+0a2e}\N{U+0a70}",
      "\N{U+0a2c}\N{U+0a41}\N{U+0a71}",
      "\N{U+0a35}\N{U+0a40}",
      "\N{U+0a38}\N{U+0a3c}\N{U+0a41}\N{U+0a71}",
      "\N{U+0a38}\N{U+0a3c}",
      "\N{U+0a10}"
    ],
    day_stand_alone_wide => [
      "\N{U+0a38}\N{U+0a4b}\N{U+0a2e}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a2e}\N{U+0a70}\N{U+0a17}\N{U+0a32}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a2c}\N{U+0a41}\N{U+0a71}\N{U+0a27}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a35}\N{U+0a40}\N{U+0a30}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a38}\N{U+0a3c}\N{U+0a41}\N{U+0a71}\N{U+0a15}\N{U+0a30}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a38}\N{U+0a3c}\N{U+0a28}\N{U+0a3f}\N{U+0a71}\N{U+0a1a}\N{U+0a30}\N{U+0a35}\N{U+0a3e}\N{U+0a30}",
      "\N{U+0a10}\N{U+0a24}\N{U+0a35}\N{U+0a3e}\N{U+0a30}"
    ],
    era_abbreviated => [
      "\N{U+0a08}. \N{U+0a2a}\N{U+0a42}.",
      "\N{U+0a38}\N{U+0a70}\N{U+0a28}"
    ],
    era_narrow => [
      "\N{U+0a08}. \N{U+0a2a}\N{U+0a42}.",
      "\N{U+0a38}\N{U+0a70}\N{U+0a28}"
    ],
    era_wide => [
      "\N{U+0a08}\N{U+0a38}\N{U+0a35}\N{U+0a40} \N{U+0a2a}\N{U+0a42}\N{U+0a30}\N{U+0a35}",
      "\N{U+0a08}\N{U+0a38}\N{U+0a35}\N{U+0a40} \N{U+0a38}\N{U+0a70}\N{U+0a28}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Punjabi",
    month_format_abbreviated => [
      "\N{U+0a1c}\N{U+0a28}",
      "\N{U+0a2b}\N{U+0a3c}\N{U+0a30}",
      "\N{U+0a2e}\N{U+0a3e}\N{U+0a30}\N{U+0a1a}",
      "\N{U+0a05}\N{U+0a2a}\N{U+0a4d}\N{U+0a30}\N{U+0a48}",
      "\N{U+0a2e}\N{U+0a08}",
      "\N{U+0a1c}\N{U+0a42}\N{U+0a28}",
      "\N{U+0a1c}\N{U+0a41}\N{U+0a32}\N{U+0a3e}",
      "\N{U+0a05}\N{U+0a17}",
      "\N{U+0a38}\N{U+0a24}\N{U+0a70}",
      "\N{U+0a05}\N{U+0a15}\N{U+0a24}\N{U+0a42}",
      "\N{U+0a28}\N{U+0a35}\N{U+0a70}",
      "\N{U+0a26}\N{U+0a38}\N{U+0a70}"
    ],
    month_format_narrow => [
      "\N{U+0a1c}",
      "\N{U+0a2b}\N{U+0a3c}",
      "\N{U+0a2e}\N{U+0a3e}",
      "\N{U+0a05}",
      "\N{U+0a2e}",
      "\N{U+0a1c}\N{U+0a42}",
      "\N{U+0a1c}\N{U+0a41}",
      "\N{U+0a05}",
      "\N{U+0a38}",
      "\N{U+0a05}",
      "\N{U+0a28}",
      "\N{U+0a26}"
    ],
    month_format_wide => [
      "\N{U+0a1c}\N{U+0a28}\N{U+0a35}\N{U+0a30}\N{U+0a40}",
      "\N{U+0a2b}\N{U+0a3c}\N{U+0a30}\N{U+0a35}\N{U+0a30}\N{U+0a40}",
      "\N{U+0a2e}\N{U+0a3e}\N{U+0a30}\N{U+0a1a}",
      "\N{U+0a05}\N{U+0a2a}\N{U+0a4d}\N{U+0a30}\N{U+0a48}\N{U+0a32}",
      "\N{U+0a2e}\N{U+0a08}",
      "\N{U+0a1c}\N{U+0a42}\N{U+0a28}",
      "\N{U+0a1c}\N{U+0a41}\N{U+0a32}\N{U+0a3e}\N{U+0a08}",
      "\N{U+0a05}\N{U+0a17}\N{U+0a38}\N{U+0a24}",
      "\N{U+0a38}\N{U+0a24}\N{U+0a70}\N{U+0a2c}\N{U+0a30}",
      "\N{U+0a05}\N{U+0a15}\N{U+0a24}\N{U+0a42}\N{U+0a2c}\N{U+0a30}",
      "\N{U+0a28}\N{U+0a35}\N{U+0a70}\N{U+0a2c}\N{U+0a30}",
      "\N{U+0a26}\N{U+0a38}\N{U+0a70}\N{U+0a2c}\N{U+0a30}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0a1c}\N{U+0a28}",
      "\N{U+0a2b}\N{U+0a3c}\N{U+0a30}",
      "\N{U+0a2e}\N{U+0a3e}\N{U+0a30}\N{U+0a1a}",
      "\N{U+0a05}\N{U+0a2a}\N{U+0a4d}\N{U+0a30}\N{U+0a48}",
      "\N{U+0a2e}\N{U+0a08}",
      "\N{U+0a1c}\N{U+0a42}\N{U+0a28}",
      "\N{U+0a1c}\N{U+0a41}\N{U+0a32}\N{U+0a3e}",
      "\N{U+0a05}\N{U+0a17}",
      "\N{U+0a38}\N{U+0a24}\N{U+0a70}",
      "\N{U+0a05}\N{U+0a15}\N{U+0a24}\N{U+0a42}",
      "\N{U+0a28}\N{U+0a35}\N{U+0a70}",
      "\N{U+0a26}\N{U+0a38}\N{U+0a70}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0a1c}",
      "\N{U+0a2b}\N{U+0a3c}",
      "\N{U+0a2e}\N{U+0a3e}",
      "\N{U+0a05}",
      "\N{U+0a2e}",
      "\N{U+0a1c}\N{U+0a42}",
      "\N{U+0a1c}\N{U+0a41}",
      "\N{U+0a05}",
      "\N{U+0a38}",
      "\N{U+0a05}",
      "\N{U+0a28}",
      "\N{U+0a26}"
    ],
    month_stand_alone_wide => [
      "\N{U+0a1c}\N{U+0a28}\N{U+0a35}\N{U+0a30}\N{U+0a40}",
      "\N{U+0a2b}\N{U+0a3c}\N{U+0a30}\N{U+0a35}\N{U+0a30}\N{U+0a40}",
      "\N{U+0a2e}\N{U+0a3e}\N{U+0a30}\N{U+0a1a}",
      "\N{U+0a05}\N{U+0a2a}\N{U+0a4d}\N{U+0a30}\N{U+0a48}\N{U+0a32}",
      "\N{U+0a2e}\N{U+0a08}",
      "\N{U+0a1c}\N{U+0a42}\N{U+0a28}",
      "\N{U+0a1c}\N{U+0a41}\N{U+0a32}\N{U+0a3e}\N{U+0a08}",
      "\N{U+0a05}\N{U+0a17}\N{U+0a38}\N{U+0a24}",
      "\N{U+0a38}\N{U+0a24}\N{U+0a70}\N{U+0a2c}\N{U+0a30}",
      "\N{U+0a05}\N{U+0a15}\N{U+0a24}\N{U+0a42}\N{U+0a2c}\N{U+0a30}",
      "\N{U+0a28}\N{U+0a35}\N{U+0a70}\N{U+0a2c}\N{U+0a30}",
      "\N{U+0a26}\N{U+0a38}\N{U+0a70}\N{U+0a2c}\N{U+0a30}"
    ],
    name => "Punjabi India Gurmukhi",
    native_language => "\N{U+0a2a}\N{U+0a70}\N{U+0a1c}\N{U+0a3e}\N{U+0a2c}\N{U+0a40}",
    native_name => "\N{U+0a2a}\N{U+0a70}\N{U+0a1c}\N{U+0a3e}\N{U+0a2c}\N{U+0a40} \N{U+0a2d}\N{U+0a3e}\N{U+0a30}\N{U+0a24} \N{U+0a17}\N{U+0a41}\N{U+0a30}\N{U+0a2e}\N{U+0a41}\N{U+0a16}\N{U+0a40}",
    native_script => "\N{U+0a17}\N{U+0a41}\N{U+0a30}\N{U+0a2e}\N{U+0a41}\N{U+0a16}\N{U+0a40}",
    native_territory => "\N{U+0a2d}\N{U+0a3e}\N{U+0a30}\N{U+0a24}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}1",
      "\N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}2",
      "\N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}3",
      "\N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+0a2a}\N{U+0a39}\N{U+0a3f}\N{U+0a32}\N{U+0a40} \N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}",
      "\N{U+0a26}\N{U+0a42}\N{U+0a1c}\N{U+0a40} \N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}",
      "\N{U+0a24}\N{U+0a40}\N{U+0a1c}\N{U+0a40} \N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}",
      "\N{U+0a1a}\N{U+0a4c}\N{U+0a25}\N{U+0a40} \N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}1",
      "\N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}2",
      "\N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}3",
      "\N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+0a2a}\N{U+0a39}\N{U+0a3f}\N{U+0a32}\N{U+0a40} \N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}",
      "\N{U+0a26}\N{U+0a42}\N{U+0a1c}\N{U+0a40} \N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}",
      "\N{U+0a24}\N{U+0a40}\N{U+0a1c}\N{U+0a40} \N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}",
      "\N{U+0a1a}\N{U+0a4c}\N{U+0a25}\N{U+0a40} \N{U+0a24}\N{U+0a3f}\N{U+0a2e}\N{U+0a3e}\N{U+0a39}\N{U+0a40}"
    ],
    script => "Gurmukhi",
    territory => "India",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ pl ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "LLLL y G",
      GyMMMMEd => "E, d MMMM y G",
      GyMMMMd => "d MMMM y G",
      GyMMMd => "d.MM.y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.MM",
      MMM => "LLL",
      MMMEd => "E, d.MM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d.MM",
      Md => "d.MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM.y",
      yMEd => "E, d.MM.y",
      yMMM => "MM.y",
      yMMMEd => "E, d.MM.y",
      yMMMM => "LLLL y",
      yMMMMEd => "E, d MMMM y",
      yMMMMd => "d MMMM y",
      yMMMd => "d.MM.y",
      yMd => "d.MM.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "pl",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "dd.MM.y",
    date_format_short => "dd.MM.y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "pon.",
      "wt.",
      "\N{U+015b}r.",
      "czw.",
      "pt.",
      "sob.",
      "niedz."
    ],
    day_format_narrow => [
      "P",
      "W",
      "\N{U+015a}",
      "C",
      "P",
      "S",
      "N"
    ],
    day_format_wide => [
      "poniedzia\N{U+0142}ek",
      "wtorek",
      "\N{U+015b}roda",
      "czwartek",
      "pi\N{U+0105}tek",
      "sobota",
      "niedziela"
    ],
    day_stand_alone_abbreviated => [
      "pon.",
      "wt.",
      "\N{U+015b}r.",
      "czw.",
      "pt.",
      "sob.",
      "niedz."
    ],
    day_stand_alone_narrow => [
      "P",
      "W",
      "\N{U+015a}",
      "C",
      "P",
      "S",
      "N"
    ],
    day_stand_alone_wide => [
      "poniedzia\N{U+0142}ek",
      "wtorek",
      "\N{U+015b}roda",
      "czwartek",
      "pi\N{U+0105}tek",
      "sobota",
      "niedziela"
    ],
    era_abbreviated => [
      "p.n.e.",
      "n.e."
    ],
    era_narrow => [
      "p.n.e.",
      "n.e."
    ],
    era_wide => [
      "p.n.e.",
      "n.e."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Polish",
    month_format_abbreviated => [
      "sty",
      "lut",
      "mar",
      "kwi",
      "maj",
      "cze",
      "lip",
      "sie",
      "wrz",
      "pa\N{U+017a}",
      "lis",
      "gru"
    ],
    month_format_narrow => [
      "s",
      "l",
      "m",
      "k",
      "m",
      "c",
      "l",
      "s",
      "w",
      "p",
      "l",
      "g"
    ],
    month_format_wide => [
      "stycznia",
      "lutego",
      "marca",
      "kwietnia",
      "maja",
      "czerwca",
      "lipca",
      "sierpnia",
      "wrze\N{U+015b}nia",
      "pa\N{U+017a}dziernika",
      "listopada",
      "grudnia"
    ],
    month_stand_alone_abbreviated => [
      "sty",
      "lut",
      "mar",
      "kwi",
      "maj",
      "cze",
      "lip",
      "sie",
      "wrz",
      "pa\N{U+017a}",
      "lis",
      "gru"
    ],
    month_stand_alone_narrow => [
      "s",
      "l",
      "m",
      "k",
      "m",
      "c",
      "l",
      "s",
      "w",
      "p",
      "l",
      "g"
    ],
    month_stand_alone_wide => [
      "stycze\N{U+0144}",
      "luty",
      "marzec",
      "kwiecie\N{U+0144}",
      "maj",
      "czerwiec",
      "lipiec",
      "sierpie\N{U+0144}",
      "wrzesie\N{U+0144}",
      "pa\N{U+017a}dziernik",
      "listopad",
      "grudzie\N{U+0144}"
    ],
    name => "Polish",
    native_language => "polski",
    native_name => "polski",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "I kwarta\N{U+0142}",
      "II kwarta\N{U+0142}",
      "III kwarta\N{U+0142}",
      "IV kwarta\N{U+0142}"
    ],
    quarter_stand_alone_abbreviated => [
      "1 kw.",
      "2 kw.",
      "3 kw.",
      "4 kw."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "I kwarta\N{U+0142}",
      "II kwarta\N{U+0142}",
      "III kwarta\N{U+0142}",
      "IV kwarta\N{U+0142}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ pl-PL ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMM => "LLLL y G",
      GyMMMMEd => "E, d MMMM y G",
      GyMMMMd => "d MMMM y G",
      GyMMMd => "d.MM.y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.MM",
      MMM => "LLL",
      MMMEd => "E, d.MM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d.MM",
      Md => "d.MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM.y",
      yMEd => "E, d.MM.y",
      yMMM => "MM.y",
      yMMMEd => "E, d.MM.y",
      yMMMM => "LLLL y",
      yMMMMEd => "E, d MMMM y",
      yMMMMd => "d MMMM y",
      yMMMd => "d.MM.y",
      yMd => "d.MM.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "pl-PL",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "dd.MM.y",
    date_format_short => "dd.MM.y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "pon.",
      "wt.",
      "\N{U+015b}r.",
      "czw.",
      "pt.",
      "sob.",
      "niedz."
    ],
    day_format_narrow => [
      "P",
      "W",
      "\N{U+015a}",
      "C",
      "P",
      "S",
      "N"
    ],
    day_format_wide => [
      "poniedzia\N{U+0142}ek",
      "wtorek",
      "\N{U+015b}roda",
      "czwartek",
      "pi\N{U+0105}tek",
      "sobota",
      "niedziela"
    ],
    day_stand_alone_abbreviated => [
      "pon.",
      "wt.",
      "\N{U+015b}r.",
      "czw.",
      "pt.",
      "sob.",
      "niedz."
    ],
    day_stand_alone_narrow => [
      "P",
      "W",
      "\N{U+015a}",
      "C",
      "P",
      "S",
      "N"
    ],
    day_stand_alone_wide => [
      "poniedzia\N{U+0142}ek",
      "wtorek",
      "\N{U+015b}roda",
      "czwartek",
      "pi\N{U+0105}tek",
      "sobota",
      "niedziela"
    ],
    era_abbreviated => [
      "p.n.e.",
      "n.e."
    ],
    era_narrow => [
      "p.n.e.",
      "n.e."
    ],
    era_wide => [
      "p.n.e.",
      "n.e."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a, %-d %b %Y, %T %Z",
    glibc_date_format => "%d.%m.%Y",
    glibc_datetime_format => "%a, %-d %b %Y, %T",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Polish",
    month_format_abbreviated => [
      "sty",
      "lut",
      "mar",
      "kwi",
      "maj",
      "cze",
      "lip",
      "sie",
      "wrz",
      "pa\N{U+017a}",
      "lis",
      "gru"
    ],
    month_format_narrow => [
      "s",
      "l",
      "m",
      "k",
      "m",
      "c",
      "l",
      "s",
      "w",
      "p",
      "l",
      "g"
    ],
    month_format_wide => [
      "stycznia",
      "lutego",
      "marca",
      "kwietnia",
      "maja",
      "czerwca",
      "lipca",
      "sierpnia",
      "wrze\N{U+015b}nia",
      "pa\N{U+017a}dziernika",
      "listopada",
      "grudnia"
    ],
    month_stand_alone_abbreviated => [
      "sty",
      "lut",
      "mar",
      "kwi",
      "maj",
      "cze",
      "lip",
      "sie",
      "wrz",
      "pa\N{U+017a}",
      "lis",
      "gru"
    ],
    month_stand_alone_narrow => [
      "s",
      "l",
      "m",
      "k",
      "m",
      "c",
      "l",
      "s",
      "w",
      "p",
      "l",
      "g"
    ],
    month_stand_alone_wide => [
      "stycze\N{U+0144}",
      "luty",
      "marzec",
      "kwiecie\N{U+0144}",
      "maj",
      "czerwiec",
      "lipiec",
      "sierpie\N{U+0144}",
      "wrzesie\N{U+0144}",
      "pa\N{U+017a}dziernik",
      "listopad",
      "grudzie\N{U+0144}"
    ],
    name => "Polish Poland",
    native_language => "polski",
    native_name => "polski Polska",
    native_script => undef,
    native_territory => "Polska",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "I kwarta\N{U+0142}",
      "II kwarta\N{U+0142}",
      "III kwarta\N{U+0142}",
      "IV kwarta\N{U+0142}"
    ],
    quarter_stand_alone_abbreviated => [
      "1 kw.",
      "2 kw.",
      "3 kw.",
      "4 kw."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "I kwarta\N{U+0142}",
      "II kwarta\N{U+0142}",
      "III kwarta\N{U+0142}",
      "IV kwarta\N{U+0142}"
    ],
    script => undef,
    territory => "Poland",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ prg ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "prg",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Prussian",
    month_format_abbreviated => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_stand_alone_abbreviated => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    name => "Prussian",
    native_language => "pr\N{U+016b}siskan",
    native_name => "pr\N{U+016b}siskan",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ prg-001 ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "prg-001",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Prussian",
    month_format_abbreviated => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_stand_alone_abbreviated => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    name => "Prussian World",
    native_language => "pr\N{U+016b}siskan",
    native_name => "pr\N{U+016b}siskan 001",
    native_script => undef,
    native_territory => "001",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "World",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ps ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "H",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "ps",
    date_format_full => "EEEE \N{U+062f} y \N{U+062f} MMMM d",
    date_format_long => "\N{U+062f} y \N{U+062f} MMMM d",
    date_format_medium => "d MMM y",
    date_format_short => "y/M/d",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+062f}\N{U+0648}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0686}\N{U+0647}\N{U+0627}\N{U+0631}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+067e}\N{U+0646}\N{U+062c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0647}",
      "\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+06cc}\N{U+06a9}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "\N{U+062f}\N{U+0648}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0686}\N{U+0647}\N{U+0627}\N{U+0631}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+067e}\N{U+0646}\N{U+062c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0647}",
      "\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+06cc}\N{U+06a9}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+062f}\N{U+0648}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0686}\N{U+0647}\N{U+0627}\N{U+0631}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+067e}\N{U+0646}\N{U+062c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0647}",
      "\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+06cc}\N{U+06a9}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "\N{U+062f}\N{U+0648}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0686}\N{U+0647}\N{U+0627}\N{U+0631}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+067e}\N{U+0646}\N{U+062c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0647}",
      "\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+06cc}\N{U+06a9}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}.",
      "\N{U+0645}."
    ],
    era_narrow => [
      "\N{U+0642}.\N{U+0645}.",
      "\N{U+0645}."
    ],
    era_wide => [
      "\N{U+0642}.\N{U+0645}.",
      "\N{U+0645}."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Pashto",
    month_format_abbreviated => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+064a}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+064a}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+06cc}",
      "\N{U+0627}\N{U+06ab}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+064a}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+064a}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+06cc}",
      "\N{U+0627}\N{U+06ab}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+064a}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+064a}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+06cc}",
      "\N{U+0627}\N{U+06ab}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+064a}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+064a}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+06cc}",
      "\N{U+0627}\N{U+06ab}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Pashto",
    native_language => "\N{U+067e}\N{U+069a}\N{U+062a}\N{U+0648}",
    native_name => "\N{U+067e}\N{U+069a}\N{U+062a}\N{U+0648}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "H:mm:ss (zzzz)",
    time_format_long => "H:mm:ss (z)",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ ps-AF ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "H",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "ps-AF",
    date_format_full => "EEEE \N{U+062f} y \N{U+062f} MMMM d",
    date_format_long => "\N{U+062f} y \N{U+062f} MMMM d",
    date_format_medium => "d MMM y",
    date_format_short => "y/M/d",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+062f}\N{U+0648}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0686}\N{U+0647}\N{U+0627}\N{U+0631}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+067e}\N{U+0646}\N{U+062c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0647}",
      "\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+06cc}\N{U+06a9}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "\N{U+062f}\N{U+0648}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0686}\N{U+0647}\N{U+0627}\N{U+0631}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+067e}\N{U+0646}\N{U+062c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0647}",
      "\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+06cc}\N{U+06a9}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+062f}\N{U+0648}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0686}\N{U+0647}\N{U+0627}\N{U+0631}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+067e}\N{U+0646}\N{U+062c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0647}",
      "\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+06cc}\N{U+06a9}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "\N{U+062f}\N{U+0648}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0686}\N{U+0647}\N{U+0627}\N{U+0631}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+067e}\N{U+0646}\N{U+062c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0647}",
      "\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+06cc}\N{U+06a9}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}"
    ],
    era_abbreviated => [
      "\N{U+0642}.\N{U+0645}.",
      "\N{U+0645}."
    ],
    era_narrow => [
      "\N{U+0642}.\N{U+0645}.",
      "\N{U+0645}."
    ],
    era_wide => [
      "\N{U+0642}.\N{U+0645}.",
      "\N{U+0645}."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Pashto",
    month_format_abbreviated => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+064a}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+064a}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+06cc}",
      "\N{U+0627}\N{U+06ab}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+064a}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+064a}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+06cc}",
      "\N{U+0627}\N{U+06ab}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+064a}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+064a}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+06cc}",
      "\N{U+0627}\N{U+06ab}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+064a}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+064a}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+06cc}",
      "\N{U+0627}\N{U+06ab}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Pashto Afghanistan",
    native_language => "\N{U+067e}\N{U+069a}\N{U+062a}\N{U+0648}",
    native_name => "\N{U+067e}\N{U+069a}\N{U+062a}\N{U+0648} \N{U+0627}\N{U+0641}\N{U+063a}\N{U+0627}\N{U+0646}\N{U+0633}\N{U+062a}\N{U+0627}\N{U+0646}",
    native_script => undef,
    native_territory => "\N{U+0627}\N{U+0641}\N{U+063a}\N{U+0627}\N{U+0646}\N{U+0633}\N{U+062a}\N{U+0627}\N{U+0646}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "Afghanistan",
    time_format_full => "H:mm:ss (zzzz)",
    time_format_long => "H:mm:ss (z)",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ pt ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM 'de' y G",
      GyMMMEd => "E, d 'de' MMM 'de' y G",
      GyMMMd => "d 'de' MMM 'de' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d 'de' MMM",
      MMMMEd => "E, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d 'de' MMM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMM => "MM/y",
      yMMM => "MMM 'de' y",
      yMMMEd => "E, d 'de' MMM 'de' y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "E, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d 'de' MMM 'de' y",
      yMd => "dd/MM/y",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "pt",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "d 'de' MMM 'de' y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "seg",
      "ter",
      "qua",
      "qui",
      "sex",
      "s\N{U+00e1}b",
      "dom"
    ],
    day_format_narrow => [
      "S",
      "T",
      "Q",
      "Q",
      "S",
      "S",
      "D"
    ],
    day_format_wide => [
      "segunda-feira",
      "ter\N{U+00e7}a-feira",
      "quarta-feira",
      "quinta-feira",
      "sexta-feira",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "seg",
      "ter",
      "qua",
      "qui",
      "sex",
      "s\N{U+00e1}b",
      "dom"
    ],
    day_stand_alone_narrow => [
      "S",
      "T",
      "Q",
      "Q",
      "S",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "segunda-feira",
      "ter\N{U+00e7}a-feira",
      "quarta-feira",
      "quinta-feira",
      "sexta-feira",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a.C.",
      "d.C."
    ],
    era_narrow => [
      "a.C.",
      "d.C."
    ],
    era_wide => [
      "antes de Cristo",
      "depois de Cristo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Portuguese",
    month_format_abbreviated => [
      "jan",
      "fev",
      "mar",
      "abr",
      "mai",
      "jun",
      "jul",
      "ago",
      "set",
      "out",
      "nov",
      "dez"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janeiro",
      "fevereiro",
      "mar\N{U+00e7}o",
      "abril",
      "maio",
      "junho",
      "julho",
      "agosto",
      "setembro",
      "outubro",
      "novembro",
      "dezembro"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "fev",
      "mar",
      "abr",
      "mai",
      "jun",
      "jul",
      "ago",
      "set",
      "out",
      "nov",
      "dez"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janeiro",
      "fevereiro",
      "mar\N{U+00e7}o",
      "abril",
      "maio",
      "junho",
      "julho",
      "agosto",
      "setembro",
      "outubro",
      "novembro",
      "dezembro"
    ],
    name => "Portuguese",
    native_language => "portugu\N{U+00ea}s",
    native_name => "portugu\N{U+00ea}s",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1\N{U+00ba} trimestre",
      "2\N{U+00ba} trimestre",
      "3\N{U+00ba} trimestre",
      "4\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1\N{U+00ba} trimestre",
      "2\N{U+00ba} trimestre",
      "3\N{U+00ba} trimestre",
      "4\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ pt-AO ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM 'de' y G",
      GyMMMEd => "E, d 'de' MMM 'de' y G",
      GyMMMd => "d 'de' MMM 'de' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d/MM",
      MMMMEd => "ccc, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d/MM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMM => "MM/y",
      yMMM => "MM/y",
      yMMMEEEEd => "EEEE, d/MM/y",
      yMMMEd => "E, d/MM/y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "ccc, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d/MM/y",
      yMd => "dd/MM/y",
      yQQQ => "QQQQ 'de' y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "pt-AO",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "dd/MM/y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} '\N{U+00e0}s' {0}",
    datetime_format_long => "{1} '\N{U+00e0}s' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "segunda",
      "ter\N{U+00e7}a",
      "quarta",
      "quinta",
      "sexta",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_format_narrow => [
      "S",
      "T",
      "Q",
      "Q",
      "S",
      "S",
      "D"
    ],
    day_format_wide => [
      "segunda-feira",
      "ter\N{U+00e7}a-feira",
      "quarta-feira",
      "quinta-feira",
      "sexta-feira",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "segunda",
      "ter\N{U+00e7}a",
      "quarta",
      "quinta",
      "sexta",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_narrow => [
      "S",
      "T",
      "Q",
      "Q",
      "S",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "segunda-feira",
      "ter\N{U+00e7}a-feira",
      "quarta-feira",
      "quinta-feira",
      "sexta-feira",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a.C.",
      "d.C."
    ],
    era_narrow => [
      "a.C.",
      "d.C."
    ],
    era_wide => [
      "antes de Cristo",
      "depois de Cristo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d-%m-%Y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Portuguese",
    month_format_abbreviated => [
      "jan",
      "fev",
      "mar",
      "abr",
      "mai",
      "jun",
      "jul",
      "ago",
      "set",
      "out",
      "nov",
      "dez"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janeiro",
      "fevereiro",
      "mar\N{U+00e7}o",
      "abril",
      "maio",
      "junho",
      "julho",
      "agosto",
      "setembro",
      "outubro",
      "novembro",
      "dezembro"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "fev",
      "mar",
      "abr",
      "mai",
      "jun",
      "jul",
      "ago",
      "set",
      "out",
      "nov",
      "dez"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janeiro",
      "fevereiro",
      "mar\N{U+00e7}o",
      "abril",
      "maio",
      "junho",
      "julho",
      "agosto",
      "setembro",
      "outubro",
      "novembro",
      "dezembro"
    ],
    name => "Portuguese Angola",
    native_language => "portugu\N{U+00ea}s",
    native_name => "portugu\N{U+00ea}s Angola",
    native_script => undef,
    native_territory => "Angola",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.\N{U+00ba} trimestre",
      "2.\N{U+00ba} trimestre",
      "3.\N{U+00ba} trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.\N{U+00ba} trimestre",
      "2.\N{U+00ba} trimestre",
      "3.\N{U+00ba} trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Angola",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ pt-CV ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM 'de' y G",
      GyMMMEd => "E, d 'de' MMM 'de' y G",
      GyMMMd => "d 'de' MMM 'de' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d/MM",
      MMMMEd => "ccc, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d/MM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMM => "MM/y",
      yMMM => "MM/y",
      yMMMEEEEd => "EEEE, d/MM/y",
      yMMMEd => "E, d/MM/y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "ccc, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d/MM/y",
      yMd => "dd/MM/y",
      yQQQ => "QQQQ 'de' y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "pt-CV",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "dd/MM/y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} '\N{U+00e0}s' {0}",
    datetime_format_long => "{1} '\N{U+00e0}s' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "segunda",
      "ter\N{U+00e7}a",
      "quarta",
      "quinta",
      "sexta",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_format_narrow => [
      "S",
      "T",
      "Q",
      "Q",
      "S",
      "S",
      "D"
    ],
    day_format_wide => [
      "segunda-feira",
      "ter\N{U+00e7}a-feira",
      "quarta-feira",
      "quinta-feira",
      "sexta-feira",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "segunda",
      "ter\N{U+00e7}a",
      "quarta",
      "quinta",
      "sexta",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_narrow => [
      "S",
      "T",
      "Q",
      "Q",
      "S",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "segunda-feira",
      "ter\N{U+00e7}a-feira",
      "quarta-feira",
      "quinta-feira",
      "sexta-feira",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a.C.",
      "d.C."
    ],
    era_narrow => [
      "a.C.",
      "d.C."
    ],
    era_wide => [
      "antes de Cristo",
      "depois de Cristo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d-%m-%Y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Portuguese",
    month_format_abbreviated => [
      "jan",
      "fev",
      "mar",
      "abr",
      "mai",
      "jun",
      "jul",
      "ago",
      "set",
      "out",
      "nov",
      "dez"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janeiro",
      "fevereiro",
      "mar\N{U+00e7}o",
      "abril",
      "maio",
      "junho",
      "julho",
      "agosto",
      "setembro",
      "outubro",
      "novembro",
      "dezembro"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "fev",
      "mar",
      "abr",
      "mai",
      "jun",
      "jul",
      "ago",
      "set",
      "out",
      "nov",
      "dez"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janeiro",
      "fevereiro",
      "mar\N{U+00e7}o",
      "abril",
      "maio",
      "junho",
      "julho",
      "agosto",
      "setembro",
      "outubro",
      "novembro",
      "dezembro"
    ],
    name => "Portuguese Cape Verde",
    native_language => "portugu\N{U+00ea}s",
    native_name => "portugu\N{U+00ea}s Cabo Verde",
    native_script => undef,
    native_territory => "Cabo Verde",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.\N{U+00ba} trimestre",
      "2.\N{U+00ba} trimestre",
      "3.\N{U+00ba} trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.\N{U+00ba} trimestre",
      "2.\N{U+00ba} trimestre",
      "3.\N{U+00ba} trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Cape Verde",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ pt-GW ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM 'de' y G",
      GyMMMEd => "E, d 'de' MMM 'de' y G",
      GyMMMd => "d 'de' MMM 'de' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d/MM",
      MMMMEd => "ccc, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d/MM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMM => "MM/y",
      yMMM => "MM/y",
      yMMMEEEEd => "EEEE, d/MM/y",
      yMMMEd => "E, d/MM/y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "ccc, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d/MM/y",
      yMd => "dd/MM/y",
      yQQQ => "QQQQ 'de' y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "pt-GW",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "dd/MM/y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} '\N{U+00e0}s' {0}",
    datetime_format_long => "{1} '\N{U+00e0}s' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "segunda",
      "ter\N{U+00e7}a",
      "quarta",
      "quinta",
      "sexta",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_format_narrow => [
      "S",
      "T",
      "Q",
      "Q",
      "S",
      "S",
      "D"
    ],
    day_format_wide => [
      "segunda-feira",
      "ter\N{U+00e7}a-feira",
      "quarta-feira",
      "quinta-feira",
      "sexta-feira",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "segunda",
      "ter\N{U+00e7}a",
      "quarta",
      "quinta",
      "sexta",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_narrow => [
      "S",
      "T",
      "Q",
      "Q",
      "S",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "segunda-feira",
      "ter\N{U+00e7}a-feira",
      "quarta-feira",
      "quinta-feira",
      "sexta-feira",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a.C.",
      "d.C."
    ],
    era_narrow => [
      "a.C.",
      "d.C."
    ],
    era_wide => [
      "antes de Cristo",
      "depois de Cristo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d-%m-%Y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Portuguese",
    month_format_abbreviated => [
      "jan",
      "fev",
      "mar",
      "abr",
      "mai",
      "jun",
      "jul",
      "ago",
      "set",
      "out",
      "nov",
      "dez"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janeiro",
      "fevereiro",
      "mar\N{U+00e7}o",
      "abril",
      "maio",
      "junho",
      "julho",
      "agosto",
      "setembro",
      "outubro",
      "novembro",
      "dezembro"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "fev",
      "mar",
      "abr",
      "mai",
      "jun",
      "jul",
      "ago",
      "set",
      "out",
      "nov",
      "dez"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janeiro",
      "fevereiro",
      "mar\N{U+00e7}o",
      "abril",
      "maio",
      "junho",
      "julho",
      "agosto",
      "setembro",
      "outubro",
      "novembro",
      "dezembro"
    ],
    name => "Portuguese Guinea-Bissau",
    native_language => "portugu\N{U+00ea}s",
    native_name => "portugu\N{U+00ea}s Guin\N{U+00e9}-Bissau",
    native_script => undef,
    native_territory => "Guin\N{U+00e9}-Bissau",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.\N{U+00ba} trimestre",
      "2.\N{U+00ba} trimestre",
      "3.\N{U+00ba} trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.\N{U+00ba} trimestre",
      "2.\N{U+00ba} trimestre",
      "3.\N{U+00ba} trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Guinea-Bissau",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ pt-MO ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM 'de' y G",
      GyMMMEd => "E, d 'de' MMM 'de' y G",
      GyMMMd => "d 'de' MMM 'de' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d/MM",
      MMMMEd => "ccc, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d/MM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMM => "MM/y",
      yMMM => "MM/y",
      yMMMEEEEd => "EEEE, d/MM/y",
      yMMMEd => "E, d/MM/y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "ccc, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d/MM/y",
      yMd => "dd/MM/y",
      yQQQ => "QQQQ 'de' y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "pt-MO",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "dd/MM/y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} '\N{U+00e0}s' {0}",
    datetime_format_long => "{1} '\N{U+00e0}s' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "segunda",
      "ter\N{U+00e7}a",
      "quarta",
      "quinta",
      "sexta",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_format_narrow => [
      "S",
      "T",
      "Q",
      "Q",
      "S",
      "S",
      "D"
    ],
    day_format_wide => [
      "segunda-feira",
      "ter\N{U+00e7}a-feira",
      "quarta-feira",
      "quinta-feira",
      "sexta-feira",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "segunda",
      "ter\N{U+00e7}a",
      "quarta",
      "quinta",
      "sexta",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_narrow => [
      "S",
      "T",
      "Q",
      "Q",
      "S",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "segunda-feira",
      "ter\N{U+00e7}a-feira",
      "quarta-feira",
      "quinta-feira",
      "sexta-feira",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a.C.",
      "d.C."
    ],
    era_narrow => [
      "a.C.",
      "d.C."
    ],
    era_wide => [
      "antes de Cristo",
      "depois de Cristo"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d-%m-%Y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Portuguese",
    month_format_abbreviated => [
      "jan",
      "fev",
      "mar",
      "abr",
      "mai",
      "jun",
      "jul",
      "ago",
      "set",
      "out",
      "nov",
      "dez"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janeiro",
      "fevereiro",
      "mar\N{U+00e7}o",
      "abril",
      "maio",
      "junho",
      "julho",
      "agosto",
      "setembro",
      "outubro",
      "novembro",
      "dezembro"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "fev",
      "mar",
      "abr",
      "mai",
      "jun",
      "jul",
      "ago",
      "set",
      "out",
      "nov",
      "dez"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janeiro",
      "fevereiro",
      "mar\N{U+00e7}o",
      "abril",
      "maio",
      "junho",
      "julho",
      "agosto",
      "setembro",
      "outubro",
      "novembro",
      "dezembro"
    ],
    name => "Portuguese Macau SAR China",
    native_language => "portugu\N{U+00ea}s",
    native_name => "portugu\N{U+00ea}s Macau, RAE da China",
    native_script => undef,
    native_territory => "Macau, RAE da China",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.\N{U+00ba} trimestre",
      "2.\N{U+00ba} trimestre",
      "3.\N{U+00ba} trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.\N{U+00ba} trimestre",
      "2.\N{U+00ba} trimestre",
      "3.\N{U+00ba} trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Macau SAR China",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ pt-MZ ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM 'de' y G",
      GyMMMEd => "E, d 'de' MMM 'de' y G",
      GyMMMd => "d 'de' MMM 'de' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d/MM",
      MMMMEd => "ccc, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d/MM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMM => "MM/y",
      yMMM => "MM/y",
      yMMMEEEEd => "EEEE, d/MM/y",
      yMMMEd => "E, d/MM/y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "ccc, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d/MM/y",
      yMd => "dd/MM/y",
      yQQQ => "QQQQ 'de' y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "pt-MZ",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "dd/MM/y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} '\N{U+00e0}s' {0}",
    datetime_format_long => "{1} '\N{U+00e0}s' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "segunda",
      "ter\N{U+00e7}a",
      "quarta",
      "quinta",
      "sexta",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_format_narrow => [
      "S",
      "T",
      "Q",
      "Q",
      "S",
      "S",
      "D"
    ],
    day_format_wide => [
      "segunda-feira",
      "ter\N{U+00e7}a-feira",
      "quarta-feira",
      "quinta-feira",
      "sexta-feira",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "segunda",
      "ter\N{U+00e7}a",
      "quarta",
      "quinta",
      "sexta",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_narrow => [
      "S",
      "T",
      "Q",
      "Q",
      "S",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "segunda-feira",
      "ter\N{U+00e7}a-feira",
      "quarta-feira",
      "quinta-feira",
      "sexta-feira",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a.C.",
      "d.C."
    ],
    era_narrow => [
      "a.C.",
      "d.C."
    ],
    era_wide => [
      "antes de Cristo",
      "depois de Cristo"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d-%m-%Y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Portuguese",
    month_format_abbreviated => [
      "jan",
      "fev",
      "mar",
      "abr",
      "mai",
      "jun",
      "jul",
      "ago",
      "set",
      "out",
      "nov",
      "dez"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janeiro",
      "fevereiro",
      "mar\N{U+00e7}o",
      "abril",
      "maio",
      "junho",
      "julho",
      "agosto",
      "setembro",
      "outubro",
      "novembro",
      "dezembro"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "fev",
      "mar",
      "abr",
      "mai",
      "jun",
      "jul",
      "ago",
      "set",
      "out",
      "nov",
      "dez"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janeiro",
      "fevereiro",
      "mar\N{U+00e7}o",
      "abril",
      "maio",
      "junho",
      "julho",
      "agosto",
      "setembro",
      "outubro",
      "novembro",
      "dezembro"
    ],
    name => "Portuguese Mozambique",
    native_language => "portugu\N{U+00ea}s",
    native_name => "portugu\N{U+00ea}s Mo\N{U+00e7}ambique",
    native_script => undef,
    native_territory => "Mo\N{U+00e7}ambique",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.\N{U+00ba} trimestre",
      "2.\N{U+00ba} trimestre",
      "3.\N{U+00ba} trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.\N{U+00ba} trimestre",
      "2.\N{U+00ba} trimestre",
      "3.\N{U+00ba} trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Mozambique",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ pt-PT ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM 'de' y G",
      GyMMMEd => "E, d 'de' MMM 'de' y G",
      GyMMMd => "d 'de' MMM 'de' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d/MM",
      MMMMEd => "ccc, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d/MM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMM => "MM/y",
      yMMM => "MM/y",
      yMMMEEEEd => "EEEE, d/MM/y",
      yMMMEd => "E, d/MM/y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "ccc, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d/MM/y",
      yMd => "dd/MM/y",
      yQQQ => "QQQQ 'de' y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "pt-PT",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "dd/MM/y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} '\N{U+00e0}s' {0}",
    datetime_format_long => "{1} '\N{U+00e0}s' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "segunda",
      "ter\N{U+00e7}a",
      "quarta",
      "quinta",
      "sexta",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_format_narrow => [
      "S",
      "T",
      "Q",
      "Q",
      "S",
      "S",
      "D"
    ],
    day_format_wide => [
      "segunda-feira",
      "ter\N{U+00e7}a-feira",
      "quarta-feira",
      "quinta-feira",
      "sexta-feira",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "segunda",
      "ter\N{U+00e7}a",
      "quarta",
      "quinta",
      "sexta",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_narrow => [
      "S",
      "T",
      "Q",
      "Q",
      "S",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "segunda-feira",
      "ter\N{U+00e7}a-feira",
      "quarta-feira",
      "quinta-feira",
      "sexta-feira",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a.C.",
      "d.C."
    ],
    era_narrow => [
      "a.C.",
      "d.C."
    ],
    era_wide => [
      "antes de Cristo",
      "depois de Cristo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d-%m-%Y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Portuguese",
    month_format_abbreviated => [
      "jan",
      "fev",
      "mar",
      "abr",
      "mai",
      "jun",
      "jul",
      "ago",
      "set",
      "out",
      "nov",
      "dez"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janeiro",
      "fevereiro",
      "mar\N{U+00e7}o",
      "abril",
      "maio",
      "junho",
      "julho",
      "agosto",
      "setembro",
      "outubro",
      "novembro",
      "dezembro"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "fev",
      "mar",
      "abr",
      "mai",
      "jun",
      "jul",
      "ago",
      "set",
      "out",
      "nov",
      "dez"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janeiro",
      "fevereiro",
      "mar\N{U+00e7}o",
      "abril",
      "maio",
      "junho",
      "julho",
      "agosto",
      "setembro",
      "outubro",
      "novembro",
      "dezembro"
    ],
    name => "Portuguese Portugal",
    native_language => "portugu\N{U+00ea}s",
    native_name => "portugu\N{U+00ea}s Portugal",
    native_script => undef,
    native_territory => "Portugal",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.\N{U+00ba} trimestre",
      "2.\N{U+00ba} trimestre",
      "3.\N{U+00ba} trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.\N{U+00ba} trimestre",
      "2.\N{U+00ba} trimestre",
      "3.\N{U+00ba} trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Portugal",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ pt-ST ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM 'de' y G",
      GyMMMEd => "E, d 'de' MMM 'de' y G",
      GyMMMd => "d 'de' MMM 'de' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d/MM",
      MMMMEd => "ccc, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d/MM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMM => "MM/y",
      yMMM => "MM/y",
      yMMMEEEEd => "EEEE, d/MM/y",
      yMMMEd => "E, d/MM/y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "ccc, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d/MM/y",
      yMd => "dd/MM/y",
      yQQQ => "QQQQ 'de' y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "pt-ST",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "dd/MM/y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} '\N{U+00e0}s' {0}",
    datetime_format_long => "{1} '\N{U+00e0}s' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "segunda",
      "ter\N{U+00e7}a",
      "quarta",
      "quinta",
      "sexta",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_format_narrow => [
      "S",
      "T",
      "Q",
      "Q",
      "S",
      "S",
      "D"
    ],
    day_format_wide => [
      "segunda-feira",
      "ter\N{U+00e7}a-feira",
      "quarta-feira",
      "quinta-feira",
      "sexta-feira",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "segunda",
      "ter\N{U+00e7}a",
      "quarta",
      "quinta",
      "sexta",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_narrow => [
      "S",
      "T",
      "Q",
      "Q",
      "S",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "segunda-feira",
      "ter\N{U+00e7}a-feira",
      "quarta-feira",
      "quinta-feira",
      "sexta-feira",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a.C.",
      "d.C."
    ],
    era_narrow => [
      "a.C.",
      "d.C."
    ],
    era_wide => [
      "antes de Cristo",
      "depois de Cristo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d-%m-%Y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Portuguese",
    month_format_abbreviated => [
      "jan",
      "fev",
      "mar",
      "abr",
      "mai",
      "jun",
      "jul",
      "ago",
      "set",
      "out",
      "nov",
      "dez"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janeiro",
      "fevereiro",
      "mar\N{U+00e7}o",
      "abril",
      "maio",
      "junho",
      "julho",
      "agosto",
      "setembro",
      "outubro",
      "novembro",
      "dezembro"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "fev",
      "mar",
      "abr",
      "mai",
      "jun",
      "jul",
      "ago",
      "set",
      "out",
      "nov",
      "dez"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janeiro",
      "fevereiro",
      "mar\N{U+00e7}o",
      "abril",
      "maio",
      "junho",
      "julho",
      "agosto",
      "setembro",
      "outubro",
      "novembro",
      "dezembro"
    ],
    name => "Portuguese S\N{U+00e3}o Tom\N{U+00e9} & Pr\N{U+00ed}ncipe",
    native_language => "portugu\N{U+00ea}s",
    native_name => "portugu\N{U+00ea}s S\N{U+00e3}o Tom\N{U+00e9} e Pr\N{U+00ed}ncipe",
    native_script => undef,
    native_territory => "S\N{U+00e3}o Tom\N{U+00e9} e Pr\N{U+00ed}ncipe",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.\N{U+00ba} trimestre",
      "2.\N{U+00ba} trimestre",
      "3.\N{U+00ba} trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.\N{U+00ba} trimestre",
      "2.\N{U+00ba} trimestre",
      "3.\N{U+00ba} trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "S\N{U+00e3}o Tom\N{U+00e9} & Pr\N{U+00ed}ncipe",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ pt-TL ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM 'de' y G",
      GyMMMEd => "E, d 'de' MMM 'de' y G",
      GyMMMd => "d 'de' MMM 'de' y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d/MM",
      MMMMEd => "ccc, d 'de' MMMM",
      MMMMd => "d 'de' MMMM",
      MMMd => "d/MM",
      MMdd => "dd/MM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMM => "MM/y",
      yMMM => "MM/y",
      yMMMEEEEd => "EEEE, d/MM/y",
      yMMMEd => "E, d/MM/y",
      yMMMM => "MMMM 'de' y",
      yMMMMEd => "ccc, d 'de' MMMM 'de' y",
      yMMMMd => "d 'de' MMMM 'de' y",
      yMMMd => "d/MM/y",
      yMd => "dd/MM/y",
      yQQQ => "QQQQ 'de' y",
      yQQQQ => "QQQQ 'de' y"
    },
    code => "pt-TL",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "dd/MM/y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} '\N{U+00e0}s' {0}",
    datetime_format_long => "{1} '\N{U+00e0}s' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "segunda",
      "ter\N{U+00e7}a",
      "quarta",
      "quinta",
      "sexta",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_format_narrow => [
      "S",
      "T",
      "Q",
      "Q",
      "S",
      "S",
      "D"
    ],
    day_format_wide => [
      "segunda-feira",
      "ter\N{U+00e7}a-feira",
      "quarta-feira",
      "quinta-feira",
      "sexta-feira",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_abbreviated => [
      "segunda",
      "ter\N{U+00e7}a",
      "quarta",
      "quinta",
      "sexta",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    day_stand_alone_narrow => [
      "S",
      "T",
      "Q",
      "Q",
      "S",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "segunda-feira",
      "ter\N{U+00e7}a-feira",
      "quarta-feira",
      "quinta-feira",
      "sexta-feira",
      "s\N{U+00e1}bado",
      "domingo"
    ],
    era_abbreviated => [
      "a.C.",
      "d.C."
    ],
    era_narrow => [
      "a.C.",
      "d.C."
    ],
    era_wide => [
      "antes de Cristo",
      "depois de Cristo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d-%m-%Y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Portuguese",
    month_format_abbreviated => [
      "jan",
      "fev",
      "mar",
      "abr",
      "mai",
      "jun",
      "jul",
      "ago",
      "set",
      "out",
      "nov",
      "dez"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "janeiro",
      "fevereiro",
      "mar\N{U+00e7}o",
      "abril",
      "maio",
      "junho",
      "julho",
      "agosto",
      "setembro",
      "outubro",
      "novembro",
      "dezembro"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "fev",
      "mar",
      "abr",
      "mai",
      "jun",
      "jul",
      "ago",
      "set",
      "out",
      "nov",
      "dez"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "janeiro",
      "fevereiro",
      "mar\N{U+00e7}o",
      "abril",
      "maio",
      "junho",
      "julho",
      "agosto",
      "setembro",
      "outubro",
      "novembro",
      "dezembro"
    ],
    name => "Portuguese Timor-Leste",
    native_language => "portugu\N{U+00ea}s",
    native_name => "portugu\N{U+00ea}s Timor-Leste",
    native_script => undef,
    native_territory => "Timor-Leste",
    native_variant => undef,
    quarter_format_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1.\N{U+00ba} trimestre",
      "2.\N{U+00ba} trimestre",
      "3.\N{U+00ba} trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    quarter_stand_alone_abbreviated => [
      "T1",
      "T2",
      "T3",
      "T4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1.\N{U+00ba} trimestre",
      "2.\N{U+00ba} trimestre",
      "3.\N{U+00ba} trimestre",
      "4.\N{U+00ba} trimestre"
    ],
    script => undef,
    territory => "Timor-Leste",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ qu ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "E, d MMM, y",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "dd-MM-y",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "qu",
    date_format_full => "EEEE, d MMMM, y",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Lun",
      "Mar",
      "Mi\N{U+00e9}",
      "Jue",
      "Vie",
      "Sab",
      "Dom"
    ],
    day_format_narrow => [
      "L",
      "M",
      "X",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "Lunes",
      "Martes",
      "Mi\N{U+00e9}rcoles",
      "Jueves",
      "Viernes",
      "S\N{U+00e1}bado",
      "Domingo"
    ],
    day_stand_alone_abbreviated => [
      "Lun",
      "Mar",
      "Mi\N{U+00e9}",
      "Jue",
      "Vie",
      "Sab",
      "Dom"
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "X",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "Lunes",
      "Martes",
      "Mi\N{U+00e9}rcoles",
      "Jueves",
      "Viernes",
      "S\N{U+00e1}bado",
      "Domingo"
    ],
    era_abbreviated => [
      "BCE",
      "d.C."
    ],
    era_narrow => [
      "BCE",
      "dC"
    ],
    era_wide => [
      "BCE",
      "d.C."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Quechua",
    month_format_abbreviated => [
      "Qul",
      "Hat",
      "Pau",
      "Ayr",
      "Aym",
      "Int",
      "Ant",
      "Qha",
      "Uma",
      "Kan",
      "Aya",
      "Kap"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Qulla puquy",
      "Hatun puquy",
      "Pauqar waray",
      "Ayriwa",
      "Aymuray",
      "Inti raymi",
      "Anta Sitwa",
      "Qhapaq Sitwa",
      "Uma raymi",
      "Kantaray",
      "Ayamarq\N{U+02bc}a",
      "Kapaq Raymi"
    ],
    month_stand_alone_abbreviated => [
      "Qul",
      "Hat",
      "Pau",
      "Ayr",
      "Aym",
      "Int",
      "Ant",
      "Qha",
      "Uma",
      "Kan",
      "Aya",
      "Kap"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Qulla puquy",
      "Hatun puquy",
      "Pauqar waray",
      "Ayriwa",
      "Aymuray",
      "Inti raymi",
      "Anta Sitwa",
      "Qhapaq Sitwa",
      "Uma raymi",
      "Kantaray",
      "Ayamarq\N{U+02bc}a",
      "Kapaq Raymi"
    ],
    name => "Quechua",
    native_language => "Runasimi",
    native_name => "Runasimi",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ qu-BO ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "E, d MMM, y",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "dd-MM-y",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "qu-BO",
    date_format_full => "EEEE, d MMMM, y",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Lun",
      "Mar",
      "Mi\N{U+00e9}",
      "Jue",
      "Vie",
      "Sab",
      "Dom"
    ],
    day_format_narrow => [
      "L",
      "M",
      "X",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "Lunes",
      "Martes",
      "Mi\N{U+00e9}rcoles",
      "Jueves",
      "Viernes",
      "S\N{U+00e1}bado",
      "Domingo"
    ],
    day_stand_alone_abbreviated => [
      "Lun",
      "Mar",
      "Mi\N{U+00e9}",
      "Jue",
      "Vie",
      "Sab",
      "Dom"
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "X",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "Lunes",
      "Martes",
      "Mi\N{U+00e9}rcoles",
      "Jueves",
      "Viernes",
      "S\N{U+00e1}bado",
      "Domingo"
    ],
    era_abbreviated => [
      "BCE",
      "d.C."
    ],
    era_narrow => [
      "BCE",
      "dC"
    ],
    era_wide => [
      "BCE",
      "d.C."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Quechua",
    month_format_abbreviated => [
      "Qul",
      "Hat",
      "Pau",
      "Ayr",
      "Aym",
      "Int",
      "Ant",
      "Qha",
      "Uma",
      "Kan",
      "Aya",
      "Kap"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Qulla puquy",
      "Hatun puquy",
      "Pauqar waray",
      "Ayriwa",
      "Aymuray",
      "Inti raymi",
      "Anta Sitwa",
      "Qhapaq Sitwa",
      "Uma raymi",
      "Kantaray",
      "Ayamarq\N{U+02bc}a",
      "Kapaq Raymi"
    ],
    month_stand_alone_abbreviated => [
      "Qul",
      "Hat",
      "Pau",
      "Ayr",
      "Aym",
      "Int",
      "Ant",
      "Qha",
      "Uma",
      "Kan",
      "Aya",
      "Kap"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Qulla puquy",
      "Hatun puquy",
      "Pauqar waray",
      "Ayriwa",
      "Aymuray",
      "Inti raymi",
      "Anta Sitwa",
      "Qhapaq Sitwa",
      "Uma raymi",
      "Kantaray",
      "Ayamarq\N{U+02bc}a",
      "Kapaq Raymi"
    ],
    name => "Quechua Bolivia",
    native_language => "Runasimi",
    native_name => "Runasimi Bolivia",
    native_script => undef,
    native_territory => "Bolivia",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "Bolivia",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ qu-EC ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "E, d MMM, y",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "dd-MM-y",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "qu-EC",
    date_format_full => "EEEE, d MMMM, y",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Lun",
      "Mar",
      "Mi\N{U+00e9}",
      "Jue",
      "Vie",
      "Sab",
      "Dom"
    ],
    day_format_narrow => [
      "L",
      "M",
      "X",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "Lunes",
      "Martes",
      "Mi\N{U+00e9}rcoles",
      "Jueves",
      "Viernes",
      "S\N{U+00e1}bado",
      "Domingo"
    ],
    day_stand_alone_abbreviated => [
      "Lun",
      "Mar",
      "Mi\N{U+00e9}",
      "Jue",
      "Vie",
      "Sab",
      "Dom"
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "X",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "Lunes",
      "Martes",
      "Mi\N{U+00e9}rcoles",
      "Jueves",
      "Viernes",
      "S\N{U+00e1}bado",
      "Domingo"
    ],
    era_abbreviated => [
      "BCE",
      "d.C."
    ],
    era_narrow => [
      "BCE",
      "dC"
    ],
    era_wide => [
      "BCE",
      "d.C."
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Quechua",
    month_format_abbreviated => [
      "Qul",
      "Hat",
      "Pau",
      "Ayr",
      "Aym",
      "Int",
      "Ant",
      "Qha",
      "Uma",
      "Kan",
      "Aya",
      "Kap"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Qulla puquy",
      "Hatun puquy",
      "Pauqar waray",
      "Ayriwa",
      "Aymuray",
      "Inti raymi",
      "Anta Sitwa",
      "Qhapaq Sitwa",
      "Uma raymi",
      "Kantaray",
      "Ayamarq\N{U+02bc}a",
      "Kapaq Raymi"
    ],
    month_stand_alone_abbreviated => [
      "Qul",
      "Hat",
      "Pau",
      "Ayr",
      "Aym",
      "Int",
      "Ant",
      "Qha",
      "Uma",
      "Kan",
      "Aya",
      "Kap"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Qulla puquy",
      "Hatun puquy",
      "Pauqar waray",
      "Ayriwa",
      "Aymuray",
      "Inti raymi",
      "Anta Sitwa",
      "Qhapaq Sitwa",
      "Uma raymi",
      "Kantaray",
      "Ayamarq\N{U+02bc}a",
      "Kapaq Raymi"
    ],
    name => "Quechua Ecuador",
    native_language => "Runasimi",
    native_name => "Runasimi Ecuador",
    native_script => undef,
    native_territory => "Ecuador",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "Ecuador",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ qu-PE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "E, d MMM, y",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "dd-MM-y",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "qu-PE",
    date_format_full => "EEEE, d MMMM, y",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Lun",
      "Mar",
      "Mi\N{U+00e9}",
      "Jue",
      "Vie",
      "Sab",
      "Dom"
    ],
    day_format_narrow => [
      "L",
      "M",
      "X",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "Lunes",
      "Martes",
      "Mi\N{U+00e9}rcoles",
      "Jueves",
      "Viernes",
      "S\N{U+00e1}bado",
      "Domingo"
    ],
    day_stand_alone_abbreviated => [
      "Lun",
      "Mar",
      "Mi\N{U+00e9}",
      "Jue",
      "Vie",
      "Sab",
      "Dom"
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "X",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "Lunes",
      "Martes",
      "Mi\N{U+00e9}rcoles",
      "Jueves",
      "Viernes",
      "S\N{U+00e1}bado",
      "Domingo"
    ],
    era_abbreviated => [
      "BCE",
      "d.C."
    ],
    era_narrow => [
      "BCE",
      "dC"
    ],
    era_wide => [
      "BCE",
      "d.C."
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Quechua",
    month_format_abbreviated => [
      "Qul",
      "Hat",
      "Pau",
      "Ayr",
      "Aym",
      "Int",
      "Ant",
      "Qha",
      "Uma",
      "Kan",
      "Aya",
      "Kap"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Qulla puquy",
      "Hatun puquy",
      "Pauqar waray",
      "Ayriwa",
      "Aymuray",
      "Inti raymi",
      "Anta Sitwa",
      "Qhapaq Sitwa",
      "Uma raymi",
      "Kantaray",
      "Ayamarq\N{U+02bc}a",
      "Kapaq Raymi"
    ],
    month_stand_alone_abbreviated => [
      "Qul",
      "Hat",
      "Pau",
      "Ayr",
      "Aym",
      "Int",
      "Ant",
      "Qha",
      "Uma",
      "Kan",
      "Aya",
      "Kap"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Qulla puquy",
      "Hatun puquy",
      "Pauqar waray",
      "Ayriwa",
      "Aymuray",
      "Inti raymi",
      "Anta Sitwa",
      "Qhapaq Sitwa",
      "Uma raymi",
      "Kantaray",
      "Ayamarq\N{U+02bc}a",
      "Kapaq Raymi"
    ],
    name => "Quechua Peru",
    native_language => "Runasimi",
    native_name => "Runasimi Per\N{U+00fa}",
    native_script => undef,
    native_territory => "Per\N{U+00fa}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "Peru",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ rm ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d.",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "H",
      HHmm => "HH:mm",
      HHmmss => "HH:mm:ss",
      Hm => "H:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E d. MMM",
      MMMMEd => "E d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMd => "d.MM.",
      MMdd => "dd.MM.",
      Md => "d.M.",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y",
      yM => "y-M",
      yMEd => "E, y-M-d",
      yMM => "MM.y",
      yMMM => "MMM y",
      yMMMEd => "E, d. MMM y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMMdd => "dd.MM.y",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "rm",
    date_format_full => "EEEE, 'ils' d 'da' MMMM y",
    date_format_long => "d 'da' MMMM y",
    date_format_medium => "dd-MM-y",
    date_format_short => "dd-MM-yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "gli",
      "ma",
      "me",
      "gie",
      "ve",
      "so",
      "du"
    ],
    day_format_narrow => [
      "G",
      "M",
      "M",
      "G",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "glindesdi",
      "mardi",
      "mesemna",
      "gievgia",
      "venderdi",
      "sonda",
      "dumengia"
    ],
    day_stand_alone_abbreviated => [
      "gli",
      "ma",
      "me",
      "gie",
      "ve",
      "so",
      "du"
    ],
    day_stand_alone_narrow => [
      "G",
      "M",
      "M",
      "G",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "glindesdi",
      "mardi",
      "mesemna",
      "gievgia",
      "venderdi",
      "sonda",
      "dumengia"
    ],
    era_abbreviated => [
      "av. Cr.",
      "s. Cr."
    ],
    era_narrow => [
      "av. Cr.",
      "s. Cr."
    ],
    era_wide => [
      "avant Cristus",
      "suenter Cristus"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Romansh",
    month_format_abbreviated => [
      "schan.",
      "favr.",
      "mars",
      "avr.",
      "matg",
      "zercl.",
      "fan.",
      "avust",
      "sett.",
      "oct.",
      "nov.",
      "dec."
    ],
    month_format_narrow => [
      "S",
      "F",
      "M",
      "A",
      "M",
      "Z",
      "F",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "schaner",
      "favrer",
      "mars",
      "avrigl",
      "matg",
      "zercladur",
      "fanadur",
      "avust",
      "settember",
      "october",
      "november",
      "december"
    ],
    month_stand_alone_abbreviated => [
      "schan.",
      "favr.",
      "mars",
      "avr.",
      "matg",
      "zercl.",
      "fan.",
      "avust",
      "sett.",
      "oct.",
      "nov.",
      "dec."
    ],
    month_stand_alone_narrow => [
      "S",
      "F",
      "M",
      "A",
      "M",
      "Z",
      "F",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "schaner",
      "favrer",
      "mars",
      "avrigl",
      "matg",
      "zercladur",
      "fanadur",
      "avust",
      "settember",
      "october",
      "november",
      "december"
    ],
    name => "Romansh",
    native_language => "rumantsch",
    native_name => "rumantsch",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "1. quartal",
      "2. quartal",
      "3. quartal",
      "4. quartal"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. quartal",
      "2. quartal",
      "3. quartal",
      "4. quartal"
    ],
    quarter_stand_alone_abbreviated => [
      "1. quartal",
      "2. quartal",
      "3. quartal",
      "4. quartal"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. quartal",
      "2. quartal",
      "3. quartal",
      "4. quartal"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ rm-CH ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d.",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "H",
      HHmm => "HH:mm",
      HHmmss => "HH:mm:ss",
      Hm => "H:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E d. MMM",
      MMMMEd => "E d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMd => "d.MM.",
      MMdd => "dd.MM.",
      Md => "d.M.",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y",
      yM => "y-M",
      yMEd => "E, y-M-d",
      yMM => "MM.y",
      yMMM => "MMM y",
      yMMMEd => "E, d. MMM y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMMdd => "dd.MM.y",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "rm-CH",
    date_format_full => "EEEE, 'ils' d 'da' MMMM y",
    date_format_long => "d 'da' MMMM y",
    date_format_medium => "dd-MM-y",
    date_format_short => "dd-MM-yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "gli",
      "ma",
      "me",
      "gie",
      "ve",
      "so",
      "du"
    ],
    day_format_narrow => [
      "G",
      "M",
      "M",
      "G",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "glindesdi",
      "mardi",
      "mesemna",
      "gievgia",
      "venderdi",
      "sonda",
      "dumengia"
    ],
    day_stand_alone_abbreviated => [
      "gli",
      "ma",
      "me",
      "gie",
      "ve",
      "so",
      "du"
    ],
    day_stand_alone_narrow => [
      "G",
      "M",
      "M",
      "G",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "glindesdi",
      "mardi",
      "mesemna",
      "gievgia",
      "venderdi",
      "sonda",
      "dumengia"
    ],
    era_abbreviated => [
      "av. Cr.",
      "s. Cr."
    ],
    era_narrow => [
      "av. Cr.",
      "s. Cr."
    ],
    era_wide => [
      "avant Cristus",
      "suenter Cristus"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Romansh",
    month_format_abbreviated => [
      "schan.",
      "favr.",
      "mars",
      "avr.",
      "matg",
      "zercl.",
      "fan.",
      "avust",
      "sett.",
      "oct.",
      "nov.",
      "dec."
    ],
    month_format_narrow => [
      "S",
      "F",
      "M",
      "A",
      "M",
      "Z",
      "F",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "schaner",
      "favrer",
      "mars",
      "avrigl",
      "matg",
      "zercladur",
      "fanadur",
      "avust",
      "settember",
      "october",
      "november",
      "december"
    ],
    month_stand_alone_abbreviated => [
      "schan.",
      "favr.",
      "mars",
      "avr.",
      "matg",
      "zercl.",
      "fan.",
      "avust",
      "sett.",
      "oct.",
      "nov.",
      "dec."
    ],
    month_stand_alone_narrow => [
      "S",
      "F",
      "M",
      "A",
      "M",
      "Z",
      "F",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "schaner",
      "favrer",
      "mars",
      "avrigl",
      "matg",
      "zercladur",
      "fanadur",
      "avust",
      "settember",
      "october",
      "november",
      "december"
    ],
    name => "Romansh Switzerland",
    native_language => "rumantsch",
    native_name => "rumantsch Svizra",
    native_script => undef,
    native_territory => "Svizra",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1. quartal",
      "2. quartal",
      "3. quartal",
      "4. quartal"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. quartal",
      "2. quartal",
      "3. quartal",
      "4. quartal"
    ],
    quarter_stand_alone_abbreviated => [
      "1. quartal",
      "2. quartal",
      "3. quartal",
      "4. quartal"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. quartal",
      "2. quartal",
      "3. quartal",
      "4. quartal"
    ],
    script => undef,
    territory => "Switzerland",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ rn ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "rn",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "mbe.",
      "kab.",
      "gtu.",
      "kan.",
      "gnu.",
      "gnd.",
      "cu."
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Ku wa mbere",
      "Ku wa kabiri",
      "Ku wa gatatu",
      "Ku wa kane",
      "Ku wa gatanu",
      "Ku wa gatandatu",
      "Ku w\N{U+2019}indwi"
    ],
    day_stand_alone_abbreviated => [
      "mbe.",
      "kab.",
      "gtu.",
      "kan.",
      "gnu.",
      "gnd.",
      "cu."
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Ku wa mbere",
      "Ku wa kabiri",
      "Ku wa gatatu",
      "Ku wa kane",
      "Ku wa gatanu",
      "Ku wa gatandatu",
      "Ku w\N{U+2019}indwi"
    ],
    era_abbreviated => [
      "Mb.Y.",
      "Ny.Y"
    ],
    era_narrow => [
      "Mb.Y.",
      "Ny.Y"
    ],
    era_wide => [
      "Mbere ya Yezu",
      "Nyuma ya Yezu"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Rundi",
    month_format_abbreviated => [
      "Mut.",
      "Gas.",
      "Wer.",
      "Mat.",
      "Gic.",
      "Kam.",
      "Nya.",
      "Kan.",
      "Nze.",
      "Ukw.",
      "Ugu.",
      "Uku."
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Nzero",
      "Ruhuhuma",
      "Ntwarante",
      "Ndamukiza",
      "Rusama",
      "Ruheshi",
      "Mukakaro",
      "Nyandagaro",
      "Nyakanga",
      "Gitugutu",
      "Munyonyo",
      "Kigarama"
    ],
    month_stand_alone_abbreviated => [
      "Mut.",
      "Gas.",
      "Wer.",
      "Mat.",
      "Gic.",
      "Kam.",
      "Nya.",
      "Kan.",
      "Nze.",
      "Ukw.",
      "Ugu.",
      "Uku."
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Nzero",
      "Ruhuhuma",
      "Ntwarante",
      "Ndamukiza",
      "Rusama",
      "Ruheshi",
      "Mukakaro",
      "Nyandagaro",
      "Nyakanga",
      "Gitugutu",
      "Munyonyo",
      "Kigarama"
    ],
    name => "Rundi",
    native_language => "Ikirundi",
    native_name => "Ikirundi",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "I1",
      "I2",
      "I3",
      "I4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Igice ca mbere c\N{U+2019}umwaka",
      "Igice ca kabiri c\N{U+2019}umwaka",
      "Igice ca gatatu c\N{U+2019}umwaka",
      "Igice ca kane c\N{U+2019}umwaka"
    ],
    quarter_stand_alone_abbreviated => [
      "I1",
      "I2",
      "I3",
      "I4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Igice ca mbere c\N{U+2019}umwaka",
      "Igice ca kabiri c\N{U+2019}umwaka",
      "Igice ca gatatu c\N{U+2019}umwaka",
      "Igice ca kane c\N{U+2019}umwaka"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ rn-BI ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "rn-BI",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "mbe.",
      "kab.",
      "gtu.",
      "kan.",
      "gnu.",
      "gnd.",
      "cu."
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Ku wa mbere",
      "Ku wa kabiri",
      "Ku wa gatatu",
      "Ku wa kane",
      "Ku wa gatanu",
      "Ku wa gatandatu",
      "Ku w\N{U+2019}indwi"
    ],
    day_stand_alone_abbreviated => [
      "mbe.",
      "kab.",
      "gtu.",
      "kan.",
      "gnu.",
      "gnd.",
      "cu."
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Ku wa mbere",
      "Ku wa kabiri",
      "Ku wa gatatu",
      "Ku wa kane",
      "Ku wa gatanu",
      "Ku wa gatandatu",
      "Ku w\N{U+2019}indwi"
    ],
    era_abbreviated => [
      "Mb.Y.",
      "Ny.Y"
    ],
    era_narrow => [
      "Mb.Y.",
      "Ny.Y"
    ],
    era_wide => [
      "Mbere ya Yezu",
      "Nyuma ya Yezu"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Rundi",
    month_format_abbreviated => [
      "Mut.",
      "Gas.",
      "Wer.",
      "Mat.",
      "Gic.",
      "Kam.",
      "Nya.",
      "Kan.",
      "Nze.",
      "Ukw.",
      "Ugu.",
      "Uku."
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Nzero",
      "Ruhuhuma",
      "Ntwarante",
      "Ndamukiza",
      "Rusama",
      "Ruheshi",
      "Mukakaro",
      "Nyandagaro",
      "Nyakanga",
      "Gitugutu",
      "Munyonyo",
      "Kigarama"
    ],
    month_stand_alone_abbreviated => [
      "Mut.",
      "Gas.",
      "Wer.",
      "Mat.",
      "Gic.",
      "Kam.",
      "Nya.",
      "Kan.",
      "Nze.",
      "Ukw.",
      "Ugu.",
      "Uku."
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Nzero",
      "Ruhuhuma",
      "Ntwarante",
      "Ndamukiza",
      "Rusama",
      "Ruheshi",
      "Mukakaro",
      "Nyandagaro",
      "Nyakanga",
      "Gitugutu",
      "Munyonyo",
      "Kigarama"
    ],
    name => "Rundi Burundi",
    native_language => "Ikirundi",
    native_name => "Ikirundi Uburundi",
    native_script => undef,
    native_territory => "Uburundi",
    native_variant => undef,
    quarter_format_abbreviated => [
      "I1",
      "I2",
      "I3",
      "I4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Igice ca mbere c\N{U+2019}umwaka",
      "Igice ca kabiri c\N{U+2019}umwaka",
      "Igice ca gatatu c\N{U+2019}umwaka",
      "Igice ca kane c\N{U+2019}umwaka"
    ],
    quarter_stand_alone_abbreviated => [
      "I1",
      "I2",
      "I3",
      "I4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Igice ca mbere c\N{U+2019}umwaka",
      "Igice ca kabiri c\N{U+2019}umwaka",
      "Igice ca gatatu c\N{U+2019}umwaka",
      "Igice ca kane c\N{U+2019}umwaka"
    ],
    script => undef,
    territory => "Burundi",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ro ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd.MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd.MM",
      Md => "dd.MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM.y",
      yMEd => "E, dd.MM.y",
      yMM => "MM.y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd.MM.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ro",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd.MM.y",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mie.",
      "joi",
      "vin.",
      "s\N{U+00e2}m.",
      "dum."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "luni",
      "mar\N{U+021b}i",
      "miercuri",
      "joi",
      "vineri",
      "s\N{U+00e2}mb\N{U+0103}t\N{U+0103}",
      "duminic\N{U+0103}"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mie.",
      "joi",
      "vin.",
      "s\N{U+00e2}m.",
      "dum."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "luni",
      "mar\N{U+021b}i",
      "miercuri",
      "joi",
      "vineri",
      "s\N{U+00e2}mb\N{U+0103}t\N{U+0103}",
      "duminic\N{U+0103}"
    ],
    era_abbreviated => [
      "\N{U+00ee}.Hr.",
      "d.Hr."
    ],
    era_narrow => [
      "\N{U+00ee}.Hr.",
      "d.Hr."
    ],
    era_wide => [
      "\N{U+00ee}nainte de Hristos",
      "dup\N{U+0103} Hristos"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Romanian",
    month_format_abbreviated => [
      "ian.",
      "feb.",
      "mar.",
      "apr.",
      "mai",
      "iun.",
      "iul.",
      "aug.",
      "sept.",
      "oct.",
      "nov.",
      "dec."
    ],
    month_format_narrow => [
      "I",
      "F",
      "M",
      "A",
      "M",
      "I",
      "I",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "ianuarie",
      "februarie",
      "martie",
      "aprilie",
      "mai",
      "iunie",
      "iulie",
      "august",
      "septembrie",
      "octombrie",
      "noiembrie",
      "decembrie"
    ],
    month_stand_alone_abbreviated => [
      "ian.",
      "feb.",
      "mar.",
      "apr.",
      "mai",
      "iun.",
      "iul.",
      "aug.",
      "sept.",
      "oct.",
      "nov.",
      "dec."
    ],
    month_stand_alone_narrow => [
      "I",
      "F",
      "M",
      "A",
      "M",
      "I",
      "I",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "ianuarie",
      "februarie",
      "martie",
      "aprilie",
      "mai",
      "iunie",
      "iulie",
      "august",
      "septembrie",
      "octombrie",
      "noiembrie",
      "decembrie"
    ],
    name => "Romanian",
    native_language => "rom\N{U+00e2}n\N{U+0103}",
    native_name => "rom\N{U+00e2}n\N{U+0103}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "trim. I",
      "trim. II",
      "trim. III",
      "trim. IV"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "trimestrul I",
      "trimestrul al II-lea",
      "trimestrul al III-lea",
      "trimestrul al IV-lea"
    ],
    quarter_stand_alone_abbreviated => [
      "Trim. I",
      "Trim. II",
      "Trim. III",
      "Trim. IV"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Trimestrul I",
      "Trimestrul al II-lea",
      "Trimestrul al III-lea",
      "Trimestrul al IV-lea"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ro-MD ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd.MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd.MM",
      Md => "dd.MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM.y",
      yMEd => "E, dd.MM.y",
      yMM => "MM.y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd.MM.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ro-MD",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd.MM.y",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Lun",
      "Mar",
      "Mie",
      "Joi",
      "Vin",
      "S\N{U+00e2}m",
      "Dum"
    ],
    day_format_narrow => [
      "L",
      "Ma",
      "Mi",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "luni",
      "mar\N{U+021b}i",
      "miercuri",
      "joi",
      "vineri",
      "s\N{U+00e2}mb\N{U+0103}t\N{U+0103}",
      "duminic\N{U+0103}"
    ],
    day_stand_alone_abbreviated => [
      "Lun",
      "Mar",
      "Mie",
      "Joi",
      "Vin",
      "S\N{U+00e2}m",
      "Dum"
    ],
    day_stand_alone_narrow => [
      "L",
      "Ma",
      "Mi",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "luni",
      "mar\N{U+021b}i",
      "miercuri",
      "joi",
      "vineri",
      "s\N{U+00e2}mb\N{U+0103}t\N{U+0103}",
      "duminic\N{U+0103}"
    ],
    era_abbreviated => [
      "\N{U+00ee}.Hr.",
      "d.Hr."
    ],
    era_narrow => [
      "\N{U+00ee}.Hr.",
      "d.Hr."
    ],
    era_wide => [
      "\N{U+00ee}nainte de Hristos",
      "dup\N{U+0103} Hristos"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Romanian",
    month_format_abbreviated => [
      "ian.",
      "feb.",
      "mar.",
      "apr.",
      "mai",
      "iun.",
      "iul.",
      "aug.",
      "sept.",
      "oct.",
      "nov.",
      "dec."
    ],
    month_format_narrow => [
      "I",
      "F",
      "M",
      "A",
      "M",
      "I",
      "I",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "ianuarie",
      "februarie",
      "martie",
      "aprilie",
      "mai",
      "iunie",
      "iulie",
      "august",
      "septembrie",
      "octombrie",
      "noiembrie",
      "decembrie"
    ],
    month_stand_alone_abbreviated => [
      "ian.",
      "feb.",
      "mar.",
      "apr.",
      "mai",
      "iun.",
      "iul.",
      "aug.",
      "sept.",
      "oct.",
      "nov.",
      "dec."
    ],
    month_stand_alone_narrow => [
      "I",
      "F",
      "M",
      "A",
      "M",
      "I",
      "I",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "ianuarie",
      "februarie",
      "martie",
      "aprilie",
      "mai",
      "iunie",
      "iulie",
      "august",
      "septembrie",
      "octombrie",
      "noiembrie",
      "decembrie"
    ],
    name => "Romanian Moldova",
    native_language => "rom\N{U+00e2}n\N{U+0103}",
    native_name => "rom\N{U+00e2}n\N{U+0103} Republica Moldova",
    native_script => undef,
    native_territory => "Republica Moldova",
    native_variant => undef,
    quarter_format_abbreviated => [
      "trim. 1",
      "trim. 2",
      "trim. 3",
      "trim. 4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "trimestrul 1",
      "trimestrul 2",
      "trimestrul 3",
      "trimestrul 4"
    ],
    quarter_stand_alone_abbreviated => [
      "Trim. 1",
      "Trim. 2",
      "Trim. 3",
      "Trim. 4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Trimestrul 1",
      "Trimestrul 2",
      "Trimestrul 3",
      "Trimestrul 4"
    ],
    script => undef,
    territory => "Moldova",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ro-RO ]__
  {
    am_pm_abbreviated => [
      "a.m.",
      "p.m."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd.MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd.MM",
      Md => "dd.MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM.y",
      yMEd => "E, dd.MM.y",
      yMM => "MM.y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "dd.MM.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ro-RO",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd.MM.y",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "lun.",
      "mar.",
      "mie.",
      "joi",
      "vin.",
      "s\N{U+00e2}m.",
      "dum."
    ],
    day_format_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_format_wide => [
      "luni",
      "mar\N{U+021b}i",
      "miercuri",
      "joi",
      "vineri",
      "s\N{U+00e2}mb\N{U+0103}t\N{U+0103}",
      "duminic\N{U+0103}"
    ],
    day_stand_alone_abbreviated => [
      "lun.",
      "mar.",
      "mie.",
      "joi",
      "vin.",
      "s\N{U+00e2}m.",
      "dum."
    ],
    day_stand_alone_narrow => [
      "L",
      "M",
      "M",
      "J",
      "V",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "luni",
      "mar\N{U+021b}i",
      "miercuri",
      "joi",
      "vineri",
      "s\N{U+00e2}mb\N{U+0103}t\N{U+0103}",
      "duminic\N{U+0103}"
    ],
    era_abbreviated => [
      "\N{U+00ee}.Hr.",
      "d.Hr."
    ],
    era_narrow => [
      "\N{U+00ee}.Hr.",
      "d.Hr."
    ],
    era_wide => [
      "\N{U+00ee}nainte de Hristos",
      "dup\N{U+0103} Hristos"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%A %-e %B %Y, %H:%M:%S %z",
    glibc_date_format => "%d.%m.%Y",
    glibc_datetime_format => "%a %d %b %Y %T %z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Romanian",
    month_format_abbreviated => [
      "ian.",
      "feb.",
      "mar.",
      "apr.",
      "mai",
      "iun.",
      "iul.",
      "aug.",
      "sept.",
      "oct.",
      "nov.",
      "dec."
    ],
    month_format_narrow => [
      "I",
      "F",
      "M",
      "A",
      "M",
      "I",
      "I",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "ianuarie",
      "februarie",
      "martie",
      "aprilie",
      "mai",
      "iunie",
      "iulie",
      "august",
      "septembrie",
      "octombrie",
      "noiembrie",
      "decembrie"
    ],
    month_stand_alone_abbreviated => [
      "ian.",
      "feb.",
      "mar.",
      "apr.",
      "mai",
      "iun.",
      "iul.",
      "aug.",
      "sept.",
      "oct.",
      "nov.",
      "dec."
    ],
    month_stand_alone_narrow => [
      "I",
      "F",
      "M",
      "A",
      "M",
      "I",
      "I",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "ianuarie",
      "februarie",
      "martie",
      "aprilie",
      "mai",
      "iunie",
      "iulie",
      "august",
      "septembrie",
      "octombrie",
      "noiembrie",
      "decembrie"
    ],
    name => "Romanian Romania",
    native_language => "rom\N{U+00e2}n\N{U+0103}",
    native_name => "rom\N{U+00e2}n\N{U+0103} Rom\N{U+00e2}nia",
    native_script => undef,
    native_territory => "Rom\N{U+00e2}nia",
    native_variant => undef,
    quarter_format_abbreviated => [
      "trim. I",
      "trim. II",
      "trim. III",
      "trim. IV"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "trimestrul I",
      "trimestrul al II-lea",
      "trimestrul al III-lea",
      "trimestrul al IV-lea"
    ],
    quarter_stand_alone_abbreviated => [
      "Trim. I",
      "Trim. II",
      "Trim. III",
      "Trim. IV"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Trimestrul I",
      "Trimestrul al II-lea",
      "Trimestrul al III-lea",
      "Trimestrul al IV-lea"
    ],
    script => undef,
    territory => "Romania",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ rof ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "rof",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Ijt",
      "Ijn",
      "Ijtn",
      "Alh",
      "Iju",
      "Ijm",
      "Ijp"
    ],
    day_format_narrow => [
      3,
      4,
      5,
      6,
      7,
      1,
      2
    ],
    day_format_wide => [
      "Ijumatatu",
      "Ijumanne",
      "Ijumatano",
      "Alhamisi",
      "Ijumaa",
      "Ijumamosi",
      "Ijumapili"
    ],
    day_stand_alone_abbreviated => [
      "Ijt",
      "Ijn",
      "Ijtn",
      "Alh",
      "Iju",
      "Ijm",
      "Ijp"
    ],
    day_stand_alone_narrow => [
      3,
      4,
      5,
      6,
      7,
      1,
      2
    ],
    day_stand_alone_wide => [
      "Ijumatatu",
      "Ijumanne",
      "Ijumatano",
      "Alhamisi",
      "Ijumaa",
      "Ijumamosi",
      "Ijumapili"
    ],
    era_abbreviated => [
      "KM",
      "BM"
    ],
    era_narrow => [
      "KM",
      "BM"
    ],
    era_wide => [
      "Kabla ya Mayesu",
      "Baada ya Mayesu"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Rombo",
    month_format_abbreviated => [
      "M1",
      "M2",
      "M3",
      "M4",
      "M5",
      "M6",
      "M7",
      "M8",
      "M9",
      "M10",
      "M11",
      "M12"
    ],
    month_format_narrow => [
      "K",
      "K",
      "K",
      "K",
      "T",
      "S",
      "S",
      "N",
      "T",
      "I",
      "I",
      "I"
    ],
    month_format_wide => [
      "Mweri wa kwanza",
      "Mweri wa kaili",
      "Mweri wa katatu",
      "Mweri wa kaana",
      "Mweri wa tanu",
      "Mweri wa sita",
      "Mweri wa saba",
      "Mweri wa nane",
      "Mweri wa tisa",
      "Mweri wa ikumi",
      "Mweri wa ikumi na moja",
      "Mweri wa ikumi na mbili"
    ],
    month_stand_alone_abbreviated => [
      "M1",
      "M2",
      "M3",
      "M4",
      "M5",
      "M6",
      "M7",
      "M8",
      "M9",
      "M10",
      "M11",
      "M12"
    ],
    month_stand_alone_narrow => [
      "K",
      "K",
      "K",
      "K",
      "T",
      "S",
      "S",
      "N",
      "T",
      "I",
      "I",
      "I"
    ],
    month_stand_alone_wide => [
      "Mweri wa kwanza",
      "Mweri wa kaili",
      "Mweri wa katatu",
      "Mweri wa kaana",
      "Mweri wa tanu",
      "Mweri wa sita",
      "Mweri wa saba",
      "Mweri wa nane",
      "Mweri wa tisa",
      "Mweri wa ikumi",
      "Mweri wa ikumi na moja",
      "Mweri wa ikumi na mbili"
    ],
    name => "Rombo",
    native_language => "Kihorombo",
    native_name => "Kihorombo",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Robo ya kwanza",
      "Robo ya kaili",
      "Robo ya katatu",
      "Robo ya kaana"
    ],
    quarter_stand_alone_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Robo ya kwanza",
      "Robo ya kaili",
      "Robo ya katatu",
      "Robo ya kaana"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ rof-TZ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "rof-TZ",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Ijt",
      "Ijn",
      "Ijtn",
      "Alh",
      "Iju",
      "Ijm",
      "Ijp"
    ],
    day_format_narrow => [
      3,
      4,
      5,
      6,
      7,
      1,
      2
    ],
    day_format_wide => [
      "Ijumatatu",
      "Ijumanne",
      "Ijumatano",
      "Alhamisi",
      "Ijumaa",
      "Ijumamosi",
      "Ijumapili"
    ],
    day_stand_alone_abbreviated => [
      "Ijt",
      "Ijn",
      "Ijtn",
      "Alh",
      "Iju",
      "Ijm",
      "Ijp"
    ],
    day_stand_alone_narrow => [
      3,
      4,
      5,
      6,
      7,
      1,
      2
    ],
    day_stand_alone_wide => [
      "Ijumatatu",
      "Ijumanne",
      "Ijumatano",
      "Alhamisi",
      "Ijumaa",
      "Ijumamosi",
      "Ijumapili"
    ],
    era_abbreviated => [
      "KM",
      "BM"
    ],
    era_narrow => [
      "KM",
      "BM"
    ],
    era_wide => [
      "Kabla ya Mayesu",
      "Baada ya Mayesu"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Rombo",
    month_format_abbreviated => [
      "M1",
      "M2",
      "M3",
      "M4",
      "M5",
      "M6",
      "M7",
      "M8",
      "M9",
      "M10",
      "M11",
      "M12"
    ],
    month_format_narrow => [
      "K",
      "K",
      "K",
      "K",
      "T",
      "S",
      "S",
      "N",
      "T",
      "I",
      "I",
      "I"
    ],
    month_format_wide => [
      "Mweri wa kwanza",
      "Mweri wa kaili",
      "Mweri wa katatu",
      "Mweri wa kaana",
      "Mweri wa tanu",
      "Mweri wa sita",
      "Mweri wa saba",
      "Mweri wa nane",
      "Mweri wa tisa",
      "Mweri wa ikumi",
      "Mweri wa ikumi na moja",
      "Mweri wa ikumi na mbili"
    ],
    month_stand_alone_abbreviated => [
      "M1",
      "M2",
      "M3",
      "M4",
      "M5",
      "M6",
      "M7",
      "M8",
      "M9",
      "M10",
      "M11",
      "M12"
    ],
    month_stand_alone_narrow => [
      "K",
      "K",
      "K",
      "K",
      "T",
      "S",
      "S",
      "N",
      "T",
      "I",
      "I",
      "I"
    ],
    month_stand_alone_wide => [
      "Mweri wa kwanza",
      "Mweri wa kaili",
      "Mweri wa katatu",
      "Mweri wa kaana",
      "Mweri wa tanu",
      "Mweri wa sita",
      "Mweri wa saba",
      "Mweri wa nane",
      "Mweri wa tisa",
      "Mweri wa ikumi",
      "Mweri wa ikumi na moja",
      "Mweri wa ikumi na mbili"
    ],
    name => "Rombo Tanzania",
    native_language => "Kihorombo",
    native_name => "Kihorombo Tanzania",
    native_script => undef,
    native_territory => "Tanzania",
    native_variant => undef,
    quarter_format_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Robo ya kwanza",
      "Robo ya kaili",
      "Robo ya katatu",
      "Robo ya kaana"
    ],
    quarter_stand_alone_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Robo ya kwanza",
      "Robo ya kaili",
      "Robo ya katatu",
      "Robo ya kaana"
    ],
    script => undef,
    territory => "Tanzania",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ root ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "root",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Root",
    month_format_abbreviated => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_stand_alone_abbreviated => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    name => "Root",
    native_language => "root",
    native_name => "root",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ru ]__
  {
    am_pm_abbreviated => [
      "\N{U+0414}\N{U+041f}",
      "\N{U+041f}\N{U+041f}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "ccc, d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y '\N{U+0433}'. G",
      GyMMM => "LLL y G",
      GyMMMEd => "E, d MMM y '\N{U+0433}'. G",
      GyMMMd => "d MMM y '\N{U+0433}'. G",
      H => "H",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, dd.MM",
      MMM => "LLL",
      MMMEd => "ccc, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd.MM",
      Md => "dd.MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM.y",
      yMEd => "ccc, d.MM.y '\N{U+0433}'.",
      yMM => "MM.y",
      yMMM => "LLL y '\N{U+0433}'.",
      yMMMEd => "E, d MMM y '\N{U+0433}'.",
      yMMMM => "LLLL y '\N{U+0433}'.",
      yMMMd => "d MMM y '\N{U+0433}'.",
      yMd => "dd.MM.y",
      yQQQ => "QQQ y '\N{U+0433}'.",
      yQQQQ => "QQQQ y '\N{U+0433}'."
    },
    code => "ru",
    date_format_full => "EEEE, d MMMM y '\N{U+0433}'.",
    date_format_long => "d MMMM y '\N{U+0433}'.",
    date_format_medium => "d MMM y '\N{U+0433}'.",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+043f}\N{U+043d}",
      "\N{U+0432}\N{U+0442}",
      "\N{U+0441}\N{U+0440}",
      "\N{U+0447}\N{U+0442}",
      "\N{U+043f}\N{U+0442}",
      "\N{U+0441}\N{U+0431}",
      "\N{U+0432}\N{U+0441}"
    ],
    day_format_narrow => [
      "\N{U+043f}\N{U+043d}",
      "\N{U+0432}\N{U+0442}",
      "\N{U+0441}\N{U+0440}",
      "\N{U+0447}\N{U+0442}",
      "\N{U+043f}\N{U+0442}",
      "\N{U+0441}\N{U+0431}",
      "\N{U+0432}\N{U+0441}"
    ],
    day_format_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+043b}\N{U+044c}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0432}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0435}\N{U+0440}\N{U+0433}",
      "\N{U+043f}\N{U+044f}\N{U+0442}\N{U+043d}\N{U+0438}\N{U+0446}\N{U+0430}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+0432}\N{U+043e}\N{U+0441}\N{U+043a}\N{U+0440}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+044c}\N{U+0435}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+043f}\N{U+043d}",
      "\N{U+0432}\N{U+0442}",
      "\N{U+0441}\N{U+0440}",
      "\N{U+0447}\N{U+0442}",
      "\N{U+043f}\N{U+0442}",
      "\N{U+0441}\N{U+0431}",
      "\N{U+0432}\N{U+0441}"
    ],
    day_stand_alone_narrow => [
      "\N{U+041f}",
      "\N{U+0412}",
      "\N{U+0421}",
      "\N{U+0427}",
      "\N{U+041f}",
      "\N{U+0421}",
      "\N{U+0412}"
    ],
    day_stand_alone_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+043b}\N{U+044c}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0432}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0435}\N{U+0440}\N{U+0433}",
      "\N{U+043f}\N{U+044f}\N{U+0442}\N{U+043d}\N{U+0438}\N{U+0446}\N{U+0430}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+0432}\N{U+043e}\N{U+0441}\N{U+043a}\N{U+0440}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+044c}\N{U+0435}"
    ],
    era_abbreviated => [
      "\N{U+0434}\N{U+043e} \N{U+043d}. \N{U+044d}.",
      "\N{U+043d}. \N{U+044d}."
    ],
    era_narrow => [
      "\N{U+0434}\N{U+043e} \N{U+043d}.\N{U+044d}.",
      "\N{U+043d}.\N{U+044d}."
    ],
    era_wide => [
      "\N{U+0434}\N{U+043e} \N{U+0420}\N{U+043e}\N{U+0436}\N{U+0434}\N{U+0435}\N{U+0441}\N{U+0442}\N{U+0432}\N{U+0430} \N{U+0425}\N{U+0440}\N{U+0438}\N{U+0441}\N{U+0442}\N{U+043e}\N{U+0432}\N{U+0430}",
      "\N{U+043e}\N{U+0442} \N{U+0420}\N{U+043e}\N{U+0436}\N{U+0434}\N{U+0435}\N{U+0441}\N{U+0442}\N{U+0432}\N{U+0430} \N{U+0425}\N{U+0440}\N{U+0438}\N{U+0441}\N{U+0442}\N{U+043e}\N{U+0432}\N{U+0430}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Russian",
    month_format_abbreviated => [
      "\N{U+044f}\N{U+043d}\N{U+0432}.",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+0440}.",
      "\N{U+0430}\N{U+043f}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+044f}",
      "\N{U+0438}\N{U+044e}\N{U+043d}.",
      "\N{U+0438}\N{U+044e}\N{U+043b}.",
      "\N{U+0430}\N{U+0432}\N{U+0433}.",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}.",
      "\N{U+043e}\N{U+043a}\N{U+0442}.",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}.",
      "\N{U+0434}\N{U+0435}\N{U+043a}."
    ],
    month_format_narrow => [
      "\N{U+042f}",
      "\N{U+0424}",
      "\N{U+041c}",
      "\N{U+0410}",
      "\N{U+041c}",
      "\N{U+0418}",
      "\N{U+0418}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+041e}",
      "\N{U+041d}",
      "\N{U+0414}"
    ],
    month_format_wide => [
      "\N{U+044f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+044f}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}\N{U+044f}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}\N{U+044f}",
      "\N{U+043c}\N{U+0430}\N{U+044f}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044f}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044f}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}\N{U+0430}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044f}",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044f}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}\N{U+044f}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+044f}\N{U+043d}\N{U+0432}.",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044c}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044c}",
      "\N{U+0430}\N{U+0432}\N{U+0433}.",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}.",
      "\N{U+043e}\N{U+043a}\N{U+0442}.",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}.",
      "\N{U+0434}\N{U+0435}\N{U+043a}."
    ],
    month_stand_alone_narrow => [
      "\N{U+042f}",
      "\N{U+0424}",
      "\N{U+041c}",
      "\N{U+0410}",
      "\N{U+041c}",
      "\N{U+0418}",
      "\N{U+0418}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+041e}",
      "\N{U+041d}",
      "\N{U+0414}"
    ],
    month_stand_alone_wide => [
      "\N{U+044f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+044c}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}\N{U+044c}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}\N{U+044c}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044c}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044c}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}\N{U+044c}"
    ],
    name => "Russian",
    native_language => "\N{U+0440}\N{U+0443}\N{U+0441}\N{U+0441}\N{U+043a}\N{U+0438}\N{U+0439}",
    native_name => "\N{U+0440}\N{U+0443}\N{U+0441}\N{U+0441}\N{U+043a}\N{U+0438}\N{U+0439}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    quarter_stand_alone_abbreviated => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "H:mm:ss zzzz",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ ru-BY ]__
  {
    am_pm_abbreviated => [
      "\N{U+0414}\N{U+041f}",
      "\N{U+041f}\N{U+041f}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "ccc, d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y '\N{U+0433}'. G",
      GyMMM => "LLL y G",
      GyMMMEd => "E, d MMM y '\N{U+0433}'. G",
      GyMMMd => "d MMM y '\N{U+0433}'. G",
      H => "H",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, dd.MM",
      MMM => "LLL",
      MMMEd => "ccc, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd.MM",
      Md => "dd.MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM.y",
      yMEd => "ccc, d.MM.y '\N{U+0433}'.",
      yMM => "MM.y",
      yMMM => "LLL y '\N{U+0433}'.",
      yMMMEd => "E, d MMM y '\N{U+0433}'.",
      yMMMM => "LLLL y '\N{U+0433}'.",
      yMMMd => "d MMM y '\N{U+0433}'.",
      yMd => "dd.MM.y",
      yQQQ => "QQQ y '\N{U+0433}'.",
      yQQQQ => "QQQQ y '\N{U+0433}'."
    },
    code => "ru-BY",
    date_format_full => "EEEE, d MMMM y '\N{U+0433}'.",
    date_format_long => "d MMMM y '\N{U+0433}'.",
    date_format_medium => "d MMM y '\N{U+0433}'.",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+043f}\N{U+043d}",
      "\N{U+0432}\N{U+0442}",
      "\N{U+0441}\N{U+0440}",
      "\N{U+0447}\N{U+0442}",
      "\N{U+043f}\N{U+0442}",
      "\N{U+0441}\N{U+0431}",
      "\N{U+0432}\N{U+0441}"
    ],
    day_format_narrow => [
      "\N{U+043f}\N{U+043d}",
      "\N{U+0432}\N{U+0442}",
      "\N{U+0441}\N{U+0440}",
      "\N{U+0447}\N{U+0442}",
      "\N{U+043f}\N{U+0442}",
      "\N{U+0441}\N{U+0431}",
      "\N{U+0432}\N{U+0441}"
    ],
    day_format_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+043b}\N{U+044c}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0432}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0435}\N{U+0440}\N{U+0433}",
      "\N{U+043f}\N{U+044f}\N{U+0442}\N{U+043d}\N{U+0438}\N{U+0446}\N{U+0430}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+0432}\N{U+043e}\N{U+0441}\N{U+043a}\N{U+0440}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+044c}\N{U+0435}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+043f}\N{U+043d}",
      "\N{U+0432}\N{U+0442}",
      "\N{U+0441}\N{U+0440}",
      "\N{U+0447}\N{U+0442}",
      "\N{U+043f}\N{U+0442}",
      "\N{U+0441}\N{U+0431}",
      "\N{U+0432}\N{U+0441}"
    ],
    day_stand_alone_narrow => [
      "\N{U+041f}",
      "\N{U+0412}",
      "\N{U+0421}",
      "\N{U+0427}",
      "\N{U+041f}",
      "\N{U+0421}",
      "\N{U+0412}"
    ],
    day_stand_alone_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+043b}\N{U+044c}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0432}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0435}\N{U+0440}\N{U+0433}",
      "\N{U+043f}\N{U+044f}\N{U+0442}\N{U+043d}\N{U+0438}\N{U+0446}\N{U+0430}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+0432}\N{U+043e}\N{U+0441}\N{U+043a}\N{U+0440}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+044c}\N{U+0435}"
    ],
    era_abbreviated => [
      "\N{U+0434}\N{U+043e} \N{U+043d}. \N{U+044d}.",
      "\N{U+043d}. \N{U+044d}."
    ],
    era_narrow => [
      "\N{U+0434}\N{U+043e} \N{U+043d}.\N{U+044d}.",
      "\N{U+043d}.\N{U+044d}."
    ],
    era_wide => [
      "\N{U+0434}\N{U+043e} \N{U+0420}\N{U+043e}\N{U+0436}\N{U+0434}\N{U+0435}\N{U+0441}\N{U+0442}\N{U+0432}\N{U+0430} \N{U+0425}\N{U+0440}\N{U+0438}\N{U+0441}\N{U+0442}\N{U+043e}\N{U+0432}\N{U+0430}",
      "\N{U+043e}\N{U+0442} \N{U+0420}\N{U+043e}\N{U+0436}\N{U+0434}\N{U+0435}\N{U+0441}\N{U+0442}\N{U+0432}\N{U+0430} \N{U+0425}\N{U+0440}\N{U+0438}\N{U+0441}\N{U+0442}\N{U+043e}\N{U+0432}\N{U+0430}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Russian",
    month_format_abbreviated => [
      "\N{U+044f}\N{U+043d}\N{U+0432}.",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+0440}.",
      "\N{U+0430}\N{U+043f}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+044f}",
      "\N{U+0438}\N{U+044e}\N{U+043d}.",
      "\N{U+0438}\N{U+044e}\N{U+043b}.",
      "\N{U+0430}\N{U+0432}\N{U+0433}.",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}.",
      "\N{U+043e}\N{U+043a}\N{U+0442}.",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}.",
      "\N{U+0434}\N{U+0435}\N{U+043a}."
    ],
    month_format_narrow => [
      "\N{U+042f}",
      "\N{U+0424}",
      "\N{U+041c}",
      "\N{U+0410}",
      "\N{U+041c}",
      "\N{U+0418}",
      "\N{U+0418}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+041e}",
      "\N{U+041d}",
      "\N{U+0414}"
    ],
    month_format_wide => [
      "\N{U+044f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+044f}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}\N{U+044f}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}\N{U+044f}",
      "\N{U+043c}\N{U+0430}\N{U+044f}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044f}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044f}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}\N{U+0430}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044f}",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044f}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}\N{U+044f}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+044f}\N{U+043d}\N{U+0432}.",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044c}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044c}",
      "\N{U+0430}\N{U+0432}\N{U+0433}.",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}.",
      "\N{U+043e}\N{U+043a}\N{U+0442}.",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}.",
      "\N{U+0434}\N{U+0435}\N{U+043a}."
    ],
    month_stand_alone_narrow => [
      "\N{U+042f}",
      "\N{U+0424}",
      "\N{U+041c}",
      "\N{U+0410}",
      "\N{U+041c}",
      "\N{U+0418}",
      "\N{U+0418}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+041e}",
      "\N{U+041d}",
      "\N{U+0414}"
    ],
    month_stand_alone_wide => [
      "\N{U+044f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+044c}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}\N{U+044c}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}\N{U+044c}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044c}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044c}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}\N{U+044c}"
    ],
    name => "Russian Belarus",
    native_language => "\N{U+0440}\N{U+0443}\N{U+0441}\N{U+0441}\N{U+043a}\N{U+0438}\N{U+0439}",
    native_name => "\N{U+0440}\N{U+0443}\N{U+0441}\N{U+0441}\N{U+043a}\N{U+0438}\N{U+0439} \N{U+0411}\N{U+0435}\N{U+043b}\N{U+0430}\N{U+0440}\N{U+0443}\N{U+0441}\N{U+044c}",
    native_script => undef,
    native_territory => "\N{U+0411}\N{U+0435}\N{U+043b}\N{U+0430}\N{U+0440}\N{U+0443}\N{U+0441}\N{U+044c}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    quarter_stand_alone_abbreviated => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    script => undef,
    territory => "Belarus",
    time_format_full => "H:mm:ss zzzz",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ ru-KG ]__
  {
    am_pm_abbreviated => [
      "\N{U+0414}\N{U+041f}",
      "\N{U+041f}\N{U+041f}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "ccc, d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y '\N{U+0433}'. G",
      GyMMM => "LLL y G",
      GyMMMEd => "E, d MMM y '\N{U+0433}'. G",
      GyMMMd => "d MMM y '\N{U+0433}'. G",
      H => "H",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, dd.MM",
      MMM => "LLL",
      MMMEd => "ccc, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd.MM",
      Md => "dd.MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM.y",
      yMEd => "ccc, d.MM.y '\N{U+0433}'.",
      yMM => "MM.y",
      yMMM => "LLL y '\N{U+0433}'.",
      yMMMEd => "E, d MMM y '\N{U+0433}'.",
      yMMMM => "LLLL y '\N{U+0433}'.",
      yMMMd => "d MMM y '\N{U+0433}'.",
      yMd => "dd.MM.y",
      yQQQ => "QQQ y '\N{U+0433}'.",
      yQQQQ => "QQQQ y '\N{U+0433}'."
    },
    code => "ru-KG",
    date_format_full => "EEEE, d MMMM y '\N{U+0433}'.",
    date_format_long => "d MMMM y '\N{U+0433}'.",
    date_format_medium => "d MMM y '\N{U+0433}'.",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+043f}\N{U+043d}",
      "\N{U+0432}\N{U+0442}",
      "\N{U+0441}\N{U+0440}",
      "\N{U+0447}\N{U+0442}",
      "\N{U+043f}\N{U+0442}",
      "\N{U+0441}\N{U+0431}",
      "\N{U+0432}\N{U+0441}"
    ],
    day_format_narrow => [
      "\N{U+043f}\N{U+043d}",
      "\N{U+0432}\N{U+0442}",
      "\N{U+0441}\N{U+0440}",
      "\N{U+0447}\N{U+0442}",
      "\N{U+043f}\N{U+0442}",
      "\N{U+0441}\N{U+0431}",
      "\N{U+0432}\N{U+0441}"
    ],
    day_format_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+043b}\N{U+044c}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0432}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0435}\N{U+0440}\N{U+0433}",
      "\N{U+043f}\N{U+044f}\N{U+0442}\N{U+043d}\N{U+0438}\N{U+0446}\N{U+0430}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+0432}\N{U+043e}\N{U+0441}\N{U+043a}\N{U+0440}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+044c}\N{U+0435}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+043f}\N{U+043d}",
      "\N{U+0432}\N{U+0442}",
      "\N{U+0441}\N{U+0440}",
      "\N{U+0447}\N{U+0442}",
      "\N{U+043f}\N{U+0442}",
      "\N{U+0441}\N{U+0431}",
      "\N{U+0432}\N{U+0441}"
    ],
    day_stand_alone_narrow => [
      "\N{U+041f}",
      "\N{U+0412}",
      "\N{U+0421}",
      "\N{U+0427}",
      "\N{U+041f}",
      "\N{U+0421}",
      "\N{U+0412}"
    ],
    day_stand_alone_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+043b}\N{U+044c}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0432}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0435}\N{U+0440}\N{U+0433}",
      "\N{U+043f}\N{U+044f}\N{U+0442}\N{U+043d}\N{U+0438}\N{U+0446}\N{U+0430}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+0432}\N{U+043e}\N{U+0441}\N{U+043a}\N{U+0440}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+044c}\N{U+0435}"
    ],
    era_abbreviated => [
      "\N{U+0434}\N{U+043e} \N{U+043d}. \N{U+044d}.",
      "\N{U+043d}. \N{U+044d}."
    ],
    era_narrow => [
      "\N{U+0434}\N{U+043e} \N{U+043d}.\N{U+044d}.",
      "\N{U+043d}.\N{U+044d}."
    ],
    era_wide => [
      "\N{U+0434}\N{U+043e} \N{U+0420}\N{U+043e}\N{U+0436}\N{U+0434}\N{U+0435}\N{U+0441}\N{U+0442}\N{U+0432}\N{U+0430} \N{U+0425}\N{U+0440}\N{U+0438}\N{U+0441}\N{U+0442}\N{U+043e}\N{U+0432}\N{U+0430}",
      "\N{U+043e}\N{U+0442} \N{U+0420}\N{U+043e}\N{U+0436}\N{U+0434}\N{U+0435}\N{U+0441}\N{U+0442}\N{U+0432}\N{U+0430} \N{U+0425}\N{U+0440}\N{U+0438}\N{U+0441}\N{U+0442}\N{U+043e}\N{U+0432}\N{U+0430}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Russian",
    month_format_abbreviated => [
      "\N{U+044f}\N{U+043d}\N{U+0432}.",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+0440}.",
      "\N{U+0430}\N{U+043f}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+044f}",
      "\N{U+0438}\N{U+044e}\N{U+043d}.",
      "\N{U+0438}\N{U+044e}\N{U+043b}.",
      "\N{U+0430}\N{U+0432}\N{U+0433}.",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}.",
      "\N{U+043e}\N{U+043a}\N{U+0442}.",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}.",
      "\N{U+0434}\N{U+0435}\N{U+043a}."
    ],
    month_format_narrow => [
      "\N{U+042f}",
      "\N{U+0424}",
      "\N{U+041c}",
      "\N{U+0410}",
      "\N{U+041c}",
      "\N{U+0418}",
      "\N{U+0418}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+041e}",
      "\N{U+041d}",
      "\N{U+0414}"
    ],
    month_format_wide => [
      "\N{U+044f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+044f}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}\N{U+044f}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}\N{U+044f}",
      "\N{U+043c}\N{U+0430}\N{U+044f}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044f}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044f}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}\N{U+0430}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044f}",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044f}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}\N{U+044f}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+044f}\N{U+043d}\N{U+0432}.",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044c}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044c}",
      "\N{U+0430}\N{U+0432}\N{U+0433}.",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}.",
      "\N{U+043e}\N{U+043a}\N{U+0442}.",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}.",
      "\N{U+0434}\N{U+0435}\N{U+043a}."
    ],
    month_stand_alone_narrow => [
      "\N{U+042f}",
      "\N{U+0424}",
      "\N{U+041c}",
      "\N{U+0410}",
      "\N{U+041c}",
      "\N{U+0418}",
      "\N{U+0418}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+041e}",
      "\N{U+041d}",
      "\N{U+0414}"
    ],
    month_stand_alone_wide => [
      "\N{U+044f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+044c}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}\N{U+044c}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}\N{U+044c}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044c}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044c}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}\N{U+044c}"
    ],
    name => "Russian Kyrgyzstan",
    native_language => "\N{U+0440}\N{U+0443}\N{U+0441}\N{U+0441}\N{U+043a}\N{U+0438}\N{U+0439}",
    native_name => "\N{U+0440}\N{U+0443}\N{U+0441}\N{U+0441}\N{U+043a}\N{U+0438}\N{U+0439} \N{U+041a}\N{U+0438}\N{U+0440}\N{U+0433}\N{U+0438}\N{U+0437}\N{U+0438}\N{U+044f}",
    native_script => undef,
    native_territory => "\N{U+041a}\N{U+0438}\N{U+0440}\N{U+0433}\N{U+0438}\N{U+0437}\N{U+0438}\N{U+044f}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    quarter_stand_alone_abbreviated => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    script => undef,
    territory => "Kyrgyzstan",
    time_format_full => "H:mm:ss zzzz",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ ru-KZ ]__
  {
    am_pm_abbreviated => [
      "\N{U+0414}\N{U+041f}",
      "\N{U+041f}\N{U+041f}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "ccc, d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y '\N{U+0433}'. G",
      GyMMM => "LLL y G",
      GyMMMEd => "E, d MMM y '\N{U+0433}'. G",
      GyMMMd => "d MMM y '\N{U+0433}'. G",
      H => "H",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, dd.MM",
      MMM => "LLL",
      MMMEd => "ccc, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd.MM",
      Md => "dd.MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM.y",
      yMEd => "ccc, d.MM.y '\N{U+0433}'.",
      yMM => "MM.y",
      yMMM => "LLL y '\N{U+0433}'.",
      yMMMEd => "E, d MMM y '\N{U+0433}'.",
      yMMMM => "LLLL y '\N{U+0433}'.",
      yMMMd => "d MMM y '\N{U+0433}'.",
      yMd => "dd.MM.y",
      yQQQ => "QQQ y '\N{U+0433}'.",
      yQQQQ => "QQQQ y '\N{U+0433}'."
    },
    code => "ru-KZ",
    date_format_full => "EEEE, d MMMM y '\N{U+0433}'.",
    date_format_long => "d MMMM y '\N{U+0433}'.",
    date_format_medium => "d MMM y '\N{U+0433}'.",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+043f}\N{U+043d}",
      "\N{U+0432}\N{U+0442}",
      "\N{U+0441}\N{U+0440}",
      "\N{U+0447}\N{U+0442}",
      "\N{U+043f}\N{U+0442}",
      "\N{U+0441}\N{U+0431}",
      "\N{U+0432}\N{U+0441}"
    ],
    day_format_narrow => [
      "\N{U+043f}\N{U+043d}",
      "\N{U+0432}\N{U+0442}",
      "\N{U+0441}\N{U+0440}",
      "\N{U+0447}\N{U+0442}",
      "\N{U+043f}\N{U+0442}",
      "\N{U+0441}\N{U+0431}",
      "\N{U+0432}\N{U+0441}"
    ],
    day_format_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+043b}\N{U+044c}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0432}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0435}\N{U+0440}\N{U+0433}",
      "\N{U+043f}\N{U+044f}\N{U+0442}\N{U+043d}\N{U+0438}\N{U+0446}\N{U+0430}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+0432}\N{U+043e}\N{U+0441}\N{U+043a}\N{U+0440}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+044c}\N{U+0435}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+043f}\N{U+043d}",
      "\N{U+0432}\N{U+0442}",
      "\N{U+0441}\N{U+0440}",
      "\N{U+0447}\N{U+0442}",
      "\N{U+043f}\N{U+0442}",
      "\N{U+0441}\N{U+0431}",
      "\N{U+0432}\N{U+0441}"
    ],
    day_stand_alone_narrow => [
      "\N{U+041f}",
      "\N{U+0412}",
      "\N{U+0421}",
      "\N{U+0427}",
      "\N{U+041f}",
      "\N{U+0421}",
      "\N{U+0412}"
    ],
    day_stand_alone_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+043b}\N{U+044c}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0432}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0435}\N{U+0440}\N{U+0433}",
      "\N{U+043f}\N{U+044f}\N{U+0442}\N{U+043d}\N{U+0438}\N{U+0446}\N{U+0430}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+0432}\N{U+043e}\N{U+0441}\N{U+043a}\N{U+0440}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+044c}\N{U+0435}"
    ],
    era_abbreviated => [
      "\N{U+0434}\N{U+043e} \N{U+043d}. \N{U+044d}.",
      "\N{U+043d}. \N{U+044d}."
    ],
    era_narrow => [
      "\N{U+0434}\N{U+043e} \N{U+043d}.\N{U+044d}.",
      "\N{U+043d}.\N{U+044d}."
    ],
    era_wide => [
      "\N{U+0434}\N{U+043e} \N{U+0420}\N{U+043e}\N{U+0436}\N{U+0434}\N{U+0435}\N{U+0441}\N{U+0442}\N{U+0432}\N{U+0430} \N{U+0425}\N{U+0440}\N{U+0438}\N{U+0441}\N{U+0442}\N{U+043e}\N{U+0432}\N{U+0430}",
      "\N{U+043e}\N{U+0442} \N{U+0420}\N{U+043e}\N{U+0436}\N{U+0434}\N{U+0435}\N{U+0441}\N{U+0442}\N{U+0432}\N{U+0430} \N{U+0425}\N{U+0440}\N{U+0438}\N{U+0441}\N{U+0442}\N{U+043e}\N{U+0432}\N{U+0430}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Russian",
    month_format_abbreviated => [
      "\N{U+044f}\N{U+043d}\N{U+0432}.",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+0440}.",
      "\N{U+0430}\N{U+043f}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+044f}",
      "\N{U+0438}\N{U+044e}\N{U+043d}.",
      "\N{U+0438}\N{U+044e}\N{U+043b}.",
      "\N{U+0430}\N{U+0432}\N{U+0433}.",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}.",
      "\N{U+043e}\N{U+043a}\N{U+0442}.",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}.",
      "\N{U+0434}\N{U+0435}\N{U+043a}."
    ],
    month_format_narrow => [
      "\N{U+042f}",
      "\N{U+0424}",
      "\N{U+041c}",
      "\N{U+0410}",
      "\N{U+041c}",
      "\N{U+0418}",
      "\N{U+0418}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+041e}",
      "\N{U+041d}",
      "\N{U+0414}"
    ],
    month_format_wide => [
      "\N{U+044f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+044f}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}\N{U+044f}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}\N{U+044f}",
      "\N{U+043c}\N{U+0430}\N{U+044f}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044f}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044f}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}\N{U+0430}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044f}",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044f}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}\N{U+044f}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+044f}\N{U+043d}\N{U+0432}.",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044c}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044c}",
      "\N{U+0430}\N{U+0432}\N{U+0433}.",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}.",
      "\N{U+043e}\N{U+043a}\N{U+0442}.",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}.",
      "\N{U+0434}\N{U+0435}\N{U+043a}."
    ],
    month_stand_alone_narrow => [
      "\N{U+042f}",
      "\N{U+0424}",
      "\N{U+041c}",
      "\N{U+0410}",
      "\N{U+041c}",
      "\N{U+0418}",
      "\N{U+0418}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+041e}",
      "\N{U+041d}",
      "\N{U+0414}"
    ],
    month_stand_alone_wide => [
      "\N{U+044f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+044c}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}\N{U+044c}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}\N{U+044c}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044c}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044c}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}\N{U+044c}"
    ],
    name => "Russian Kazakhstan",
    native_language => "\N{U+0440}\N{U+0443}\N{U+0441}\N{U+0441}\N{U+043a}\N{U+0438}\N{U+0439}",
    native_name => "\N{U+0440}\N{U+0443}\N{U+0441}\N{U+0441}\N{U+043a}\N{U+0438}\N{U+0439} \N{U+041a}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+0445}\N{U+0441}\N{U+0442}\N{U+0430}\N{U+043d}",
    native_script => undef,
    native_territory => "\N{U+041a}\N{U+0430}\N{U+0437}\N{U+0430}\N{U+0445}\N{U+0441}\N{U+0442}\N{U+0430}\N{U+043d}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    quarter_stand_alone_abbreviated => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    script => undef,
    territory => "Kazakhstan",
    time_format_full => "H:mm:ss zzzz",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ ru-MD ]__
  {
    am_pm_abbreviated => [
      "\N{U+0414}\N{U+041f}",
      "\N{U+041f}\N{U+041f}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "ccc, d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y '\N{U+0433}'. G",
      GyMMM => "LLL y G",
      GyMMMEd => "E, d MMM y '\N{U+0433}'. G",
      GyMMMd => "d MMM y '\N{U+0433}'. G",
      H => "H",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, dd.MM",
      MMM => "LLL",
      MMMEd => "ccc, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd.MM",
      Md => "dd.MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM.y",
      yMEd => "ccc, d.MM.y '\N{U+0433}'.",
      yMM => "MM.y",
      yMMM => "LLL y '\N{U+0433}'.",
      yMMMEd => "E, d MMM y '\N{U+0433}'.",
      yMMMM => "LLLL y '\N{U+0433}'.",
      yMMMd => "d MMM y '\N{U+0433}'.",
      yMd => "dd.MM.y",
      yQQQ => "QQQ y '\N{U+0433}'.",
      yQQQQ => "QQQQ y '\N{U+0433}'."
    },
    code => "ru-MD",
    date_format_full => "EEEE, d MMMM y '\N{U+0433}'.",
    date_format_long => "d MMMM y '\N{U+0433}'.",
    date_format_medium => "d MMM y '\N{U+0433}'.",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+043f}\N{U+043d}",
      "\N{U+0432}\N{U+0442}",
      "\N{U+0441}\N{U+0440}",
      "\N{U+0447}\N{U+0442}",
      "\N{U+043f}\N{U+0442}",
      "\N{U+0441}\N{U+0431}",
      "\N{U+0432}\N{U+0441}"
    ],
    day_format_narrow => [
      "\N{U+043f}\N{U+043d}",
      "\N{U+0432}\N{U+0442}",
      "\N{U+0441}\N{U+0440}",
      "\N{U+0447}\N{U+0442}",
      "\N{U+043f}\N{U+0442}",
      "\N{U+0441}\N{U+0431}",
      "\N{U+0432}\N{U+0441}"
    ],
    day_format_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+043b}\N{U+044c}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0432}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0435}\N{U+0440}\N{U+0433}",
      "\N{U+043f}\N{U+044f}\N{U+0442}\N{U+043d}\N{U+0438}\N{U+0446}\N{U+0430}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+0432}\N{U+043e}\N{U+0441}\N{U+043a}\N{U+0440}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+044c}\N{U+0435}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+043f}\N{U+043d}",
      "\N{U+0432}\N{U+0442}",
      "\N{U+0441}\N{U+0440}",
      "\N{U+0447}\N{U+0442}",
      "\N{U+043f}\N{U+0442}",
      "\N{U+0441}\N{U+0431}",
      "\N{U+0432}\N{U+0441}"
    ],
    day_stand_alone_narrow => [
      "\N{U+041f}",
      "\N{U+0412}",
      "\N{U+0421}",
      "\N{U+0427}",
      "\N{U+041f}",
      "\N{U+0421}",
      "\N{U+0412}"
    ],
    day_stand_alone_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+043b}\N{U+044c}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0432}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0435}\N{U+0440}\N{U+0433}",
      "\N{U+043f}\N{U+044f}\N{U+0442}\N{U+043d}\N{U+0438}\N{U+0446}\N{U+0430}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+0432}\N{U+043e}\N{U+0441}\N{U+043a}\N{U+0440}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+044c}\N{U+0435}"
    ],
    era_abbreviated => [
      "\N{U+0434}\N{U+043e} \N{U+043d}. \N{U+044d}.",
      "\N{U+043d}. \N{U+044d}."
    ],
    era_narrow => [
      "\N{U+0434}\N{U+043e} \N{U+043d}.\N{U+044d}.",
      "\N{U+043d}.\N{U+044d}."
    ],
    era_wide => [
      "\N{U+0434}\N{U+043e} \N{U+0420}\N{U+043e}\N{U+0436}\N{U+0434}\N{U+0435}\N{U+0441}\N{U+0442}\N{U+0432}\N{U+0430} \N{U+0425}\N{U+0440}\N{U+0438}\N{U+0441}\N{U+0442}\N{U+043e}\N{U+0432}\N{U+0430}",
      "\N{U+043e}\N{U+0442} \N{U+0420}\N{U+043e}\N{U+0436}\N{U+0434}\N{U+0435}\N{U+0441}\N{U+0442}\N{U+0432}\N{U+0430} \N{U+0425}\N{U+0440}\N{U+0438}\N{U+0441}\N{U+0442}\N{U+043e}\N{U+0432}\N{U+0430}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Russian",
    month_format_abbreviated => [
      "\N{U+044f}\N{U+043d}\N{U+0432}.",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+0440}.",
      "\N{U+0430}\N{U+043f}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+044f}",
      "\N{U+0438}\N{U+044e}\N{U+043d}.",
      "\N{U+0438}\N{U+044e}\N{U+043b}.",
      "\N{U+0430}\N{U+0432}\N{U+0433}.",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}.",
      "\N{U+043e}\N{U+043a}\N{U+0442}.",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}.",
      "\N{U+0434}\N{U+0435}\N{U+043a}."
    ],
    month_format_narrow => [
      "\N{U+042f}",
      "\N{U+0424}",
      "\N{U+041c}",
      "\N{U+0410}",
      "\N{U+041c}",
      "\N{U+0418}",
      "\N{U+0418}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+041e}",
      "\N{U+041d}",
      "\N{U+0414}"
    ],
    month_format_wide => [
      "\N{U+044f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+044f}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}\N{U+044f}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}\N{U+044f}",
      "\N{U+043c}\N{U+0430}\N{U+044f}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044f}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044f}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}\N{U+0430}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044f}",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044f}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}\N{U+044f}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+044f}\N{U+043d}\N{U+0432}.",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044c}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044c}",
      "\N{U+0430}\N{U+0432}\N{U+0433}.",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}.",
      "\N{U+043e}\N{U+043a}\N{U+0442}.",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}.",
      "\N{U+0434}\N{U+0435}\N{U+043a}."
    ],
    month_stand_alone_narrow => [
      "\N{U+042f}",
      "\N{U+0424}",
      "\N{U+041c}",
      "\N{U+0410}",
      "\N{U+041c}",
      "\N{U+0418}",
      "\N{U+0418}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+041e}",
      "\N{U+041d}",
      "\N{U+0414}"
    ],
    month_stand_alone_wide => [
      "\N{U+044f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+044c}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}\N{U+044c}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}\N{U+044c}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044c}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044c}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}\N{U+044c}"
    ],
    name => "Russian Moldova",
    native_language => "\N{U+0440}\N{U+0443}\N{U+0441}\N{U+0441}\N{U+043a}\N{U+0438}\N{U+0439}",
    native_name => "\N{U+0440}\N{U+0443}\N{U+0441}\N{U+0441}\N{U+043a}\N{U+0438}\N{U+0439} \N{U+041c}\N{U+043e}\N{U+043b}\N{U+0434}\N{U+043e}\N{U+0432}\N{U+0430}",
    native_script => undef,
    native_territory => "\N{U+041c}\N{U+043e}\N{U+043b}\N{U+0434}\N{U+043e}\N{U+0432}\N{U+0430}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    quarter_stand_alone_abbreviated => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    script => undef,
    territory => "Moldova",
    time_format_full => "H:mm:ss zzzz",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ ru-RU ]__
  {
    am_pm_abbreviated => [
      "\N{U+0414}\N{U+041f}",
      "\N{U+041f}\N{U+041f}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "ccc, d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y '\N{U+0433}'. G",
      GyMMM => "LLL y G",
      GyMMMEd => "E, d MMM y '\N{U+0433}'. G",
      GyMMMd => "d MMM y '\N{U+0433}'. G",
      H => "H",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, dd.MM",
      MMM => "LLL",
      MMMEd => "ccc, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd.MM",
      Md => "dd.MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM.y",
      yMEd => "ccc, d.MM.y '\N{U+0433}'.",
      yMM => "MM.y",
      yMMM => "LLL y '\N{U+0433}'.",
      yMMMEd => "E, d MMM y '\N{U+0433}'.",
      yMMMM => "LLLL y '\N{U+0433}'.",
      yMMMd => "d MMM y '\N{U+0433}'.",
      yMd => "dd.MM.y",
      yQQQ => "QQQ y '\N{U+0433}'.",
      yQQQQ => "QQQQ y '\N{U+0433}'."
    },
    code => "ru-RU",
    date_format_full => "EEEE, d MMMM y '\N{U+0433}'.",
    date_format_long => "d MMMM y '\N{U+0433}'.",
    date_format_medium => "d MMM y '\N{U+0433}'.",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+043f}\N{U+043d}",
      "\N{U+0432}\N{U+0442}",
      "\N{U+0441}\N{U+0440}",
      "\N{U+0447}\N{U+0442}",
      "\N{U+043f}\N{U+0442}",
      "\N{U+0441}\N{U+0431}",
      "\N{U+0432}\N{U+0441}"
    ],
    day_format_narrow => [
      "\N{U+043f}\N{U+043d}",
      "\N{U+0432}\N{U+0442}",
      "\N{U+0441}\N{U+0440}",
      "\N{U+0447}\N{U+0442}",
      "\N{U+043f}\N{U+0442}",
      "\N{U+0441}\N{U+0431}",
      "\N{U+0432}\N{U+0441}"
    ],
    day_format_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+043b}\N{U+044c}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0432}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0435}\N{U+0440}\N{U+0433}",
      "\N{U+043f}\N{U+044f}\N{U+0442}\N{U+043d}\N{U+0438}\N{U+0446}\N{U+0430}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+0432}\N{U+043e}\N{U+0441}\N{U+043a}\N{U+0440}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+044c}\N{U+0435}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+043f}\N{U+043d}",
      "\N{U+0432}\N{U+0442}",
      "\N{U+0441}\N{U+0440}",
      "\N{U+0447}\N{U+0442}",
      "\N{U+043f}\N{U+0442}",
      "\N{U+0441}\N{U+0431}",
      "\N{U+0432}\N{U+0441}"
    ],
    day_stand_alone_narrow => [
      "\N{U+041f}",
      "\N{U+0412}",
      "\N{U+0421}",
      "\N{U+0427}",
      "\N{U+041f}",
      "\N{U+0421}",
      "\N{U+0412}"
    ],
    day_stand_alone_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+043b}\N{U+044c}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0432}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0435}\N{U+0440}\N{U+0433}",
      "\N{U+043f}\N{U+044f}\N{U+0442}\N{U+043d}\N{U+0438}\N{U+0446}\N{U+0430}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+0432}\N{U+043e}\N{U+0441}\N{U+043a}\N{U+0440}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+044c}\N{U+0435}"
    ],
    era_abbreviated => [
      "\N{U+0434}\N{U+043e} \N{U+043d}. \N{U+044d}.",
      "\N{U+043d}. \N{U+044d}."
    ],
    era_narrow => [
      "\N{U+0434}\N{U+043e} \N{U+043d}.\N{U+044d}.",
      "\N{U+043d}.\N{U+044d}."
    ],
    era_wide => [
      "\N{U+0434}\N{U+043e} \N{U+0420}\N{U+043e}\N{U+0436}\N{U+0434}\N{U+0435}\N{U+0441}\N{U+0442}\N{U+0432}\N{U+0430} \N{U+0425}\N{U+0440}\N{U+0438}\N{U+0441}\N{U+0442}\N{U+043e}\N{U+0432}\N{U+0430}",
      "\N{U+043e}\N{U+0442} \N{U+0420}\N{U+043e}\N{U+0436}\N{U+0434}\N{U+0435}\N{U+0441}\N{U+0442}\N{U+0432}\N{U+0430} \N{U+0425}\N{U+0440}\N{U+0438}\N{U+0441}\N{U+0442}\N{U+043e}\N{U+0432}\N{U+0430}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d.%m.%Y",
    glibc_datetime_format => "%a %d %b %Y %T",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Russian",
    month_format_abbreviated => [
      "\N{U+044f}\N{U+043d}\N{U+0432}.",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+0440}.",
      "\N{U+0430}\N{U+043f}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+044f}",
      "\N{U+0438}\N{U+044e}\N{U+043d}.",
      "\N{U+0438}\N{U+044e}\N{U+043b}.",
      "\N{U+0430}\N{U+0432}\N{U+0433}.",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}.",
      "\N{U+043e}\N{U+043a}\N{U+0442}.",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}.",
      "\N{U+0434}\N{U+0435}\N{U+043a}."
    ],
    month_format_narrow => [
      "\N{U+042f}",
      "\N{U+0424}",
      "\N{U+041c}",
      "\N{U+0410}",
      "\N{U+041c}",
      "\N{U+0418}",
      "\N{U+0418}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+041e}",
      "\N{U+041d}",
      "\N{U+0414}"
    ],
    month_format_wide => [
      "\N{U+044f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+044f}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}\N{U+044f}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}\N{U+044f}",
      "\N{U+043c}\N{U+0430}\N{U+044f}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044f}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044f}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}\N{U+0430}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044f}",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044f}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}\N{U+044f}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+044f}\N{U+043d}\N{U+0432}.",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044c}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044c}",
      "\N{U+0430}\N{U+0432}\N{U+0433}.",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}.",
      "\N{U+043e}\N{U+043a}\N{U+0442}.",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}.",
      "\N{U+0434}\N{U+0435}\N{U+043a}."
    ],
    month_stand_alone_narrow => [
      "\N{U+042f}",
      "\N{U+0424}",
      "\N{U+041c}",
      "\N{U+0410}",
      "\N{U+041c}",
      "\N{U+0418}",
      "\N{U+0418}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+041e}",
      "\N{U+041d}",
      "\N{U+0414}"
    ],
    month_stand_alone_wide => [
      "\N{U+044f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+044c}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}\N{U+044c}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}\N{U+044c}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044c}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044c}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}\N{U+044c}"
    ],
    name => "Russian Russia",
    native_language => "\N{U+0440}\N{U+0443}\N{U+0441}\N{U+0441}\N{U+043a}\N{U+0438}\N{U+0439}",
    native_name => "\N{U+0440}\N{U+0443}\N{U+0441}\N{U+0441}\N{U+043a}\N{U+0438}\N{U+0439} \N{U+0420}\N{U+043e}\N{U+0441}\N{U+0441}\N{U+0438}\N{U+044f}",
    native_script => undef,
    native_territory => "\N{U+0420}\N{U+043e}\N{U+0441}\N{U+0441}\N{U+0438}\N{U+044f}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    quarter_stand_alone_abbreviated => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    script => undef,
    territory => "Russia",
    time_format_full => "H:mm:ss zzzz",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ ru-UA ]__
  {
    am_pm_abbreviated => [
      "\N{U+0414}\N{U+041f}",
      "\N{U+041f}\N{U+041f}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "ccc, d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y '\N{U+0433}'. G",
      GyMMM => "LLL y G",
      GyMMMEd => "E, d MMM y '\N{U+0433}'. G",
      GyMMMd => "d MMM y '\N{U+0433}'. G",
      H => "H",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmv => "H:mm v",
      M => "L",
      MEd => "E, dd.MM",
      MMM => "LLL",
      MMMEd => "ccc, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd.MM",
      Md => "dd.MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM.y",
      yMEd => "ccc, d.MM.y '\N{U+0433}'.",
      yMM => "MM.y",
      yMMM => "LLL y '\N{U+0433}'.",
      yMMMEd => "E, d MMM y '\N{U+0433}'.",
      yMMMM => "LLLL y '\N{U+0433}'.",
      yMMMd => "d MMM y '\N{U+0433}'.",
      yMd => "dd.MM.y",
      yQQQ => "QQQ y '\N{U+0433}'.",
      yQQQQ => "QQQQ y '\N{U+0433}'."
    },
    code => "ru-UA",
    date_format_full => "EEEE, d MMMM y '\N{U+0433}'.",
    date_format_long => "d MMMM y '\N{U+0433}'.",
    date_format_medium => "d MMM y '\N{U+0433}'.",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+043f}\N{U+043d}",
      "\N{U+0432}\N{U+0442}",
      "\N{U+0441}\N{U+0440}",
      "\N{U+0447}\N{U+0442}",
      "\N{U+043f}\N{U+0442}",
      "\N{U+0441}\N{U+0431}",
      "\N{U+0432}\N{U+0441}"
    ],
    day_format_narrow => [
      "\N{U+043f}\N{U+043d}",
      "\N{U+0432}\N{U+0442}",
      "\N{U+0441}\N{U+0440}",
      "\N{U+0447}\N{U+0442}",
      "\N{U+043f}\N{U+0442}",
      "\N{U+0441}\N{U+0431}",
      "\N{U+0432}\N{U+0441}"
    ],
    day_format_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+043b}\N{U+044c}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0432}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0435}\N{U+0440}\N{U+0433}",
      "\N{U+043f}\N{U+044f}\N{U+0442}\N{U+043d}\N{U+0438}\N{U+0446}\N{U+0430}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+0432}\N{U+043e}\N{U+0441}\N{U+043a}\N{U+0440}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+044c}\N{U+0435}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+043f}\N{U+043d}",
      "\N{U+0432}\N{U+0442}",
      "\N{U+0441}\N{U+0440}",
      "\N{U+0447}\N{U+0442}",
      "\N{U+043f}\N{U+0442}",
      "\N{U+0441}\N{U+0431}",
      "\N{U+0432}\N{U+0441}"
    ],
    day_stand_alone_narrow => [
      "\N{U+041f}",
      "\N{U+0412}",
      "\N{U+0421}",
      "\N{U+0427}",
      "\N{U+041f}",
      "\N{U+0421}",
      "\N{U+0412}"
    ],
    day_stand_alone_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+043b}\N{U+044c}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0432}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+043d}\N{U+0438}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0435}\N{U+0440}\N{U+0433}",
      "\N{U+043f}\N{U+044f}\N{U+0442}\N{U+043d}\N{U+0438}\N{U+0446}\N{U+0430}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+0432}\N{U+043e}\N{U+0441}\N{U+043a}\N{U+0440}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+044c}\N{U+0435}"
    ],
    era_abbreviated => [
      "\N{U+0434}\N{U+043e} \N{U+043d}. \N{U+044d}.",
      "\N{U+043d}. \N{U+044d}."
    ],
    era_narrow => [
      "\N{U+0434}\N{U+043e} \N{U+043d}.\N{U+044d}.",
      "\N{U+043d}.\N{U+044d}."
    ],
    era_wide => [
      "\N{U+0434}\N{U+043e} \N{U+0420}\N{U+043e}\N{U+0436}\N{U+0434}\N{U+0435}\N{U+0441}\N{U+0442}\N{U+0432}\N{U+0430} \N{U+0425}\N{U+0440}\N{U+0438}\N{U+0441}\N{U+0442}\N{U+043e}\N{U+0432}\N{U+0430}",
      "\N{U+043e}\N{U+0442} \N{U+0420}\N{U+043e}\N{U+0436}\N{U+0434}\N{U+0435}\N{U+0441}\N{U+0442}\N{U+0432}\N{U+0430} \N{U+0425}\N{U+0440}\N{U+0438}\N{U+0441}\N{U+0442}\N{U+043e}\N{U+0432}\N{U+0430}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d.%m.%Y",
    glibc_datetime_format => "%a %d %b %Y %T",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Russian",
    month_format_abbreviated => [
      "\N{U+044f}\N{U+043d}\N{U+0432}.",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+0440}.",
      "\N{U+0430}\N{U+043f}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+044f}",
      "\N{U+0438}\N{U+044e}\N{U+043d}.",
      "\N{U+0438}\N{U+044e}\N{U+043b}.",
      "\N{U+0430}\N{U+0432}\N{U+0433}.",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}.",
      "\N{U+043e}\N{U+043a}\N{U+0442}.",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}.",
      "\N{U+0434}\N{U+0435}\N{U+043a}."
    ],
    month_format_narrow => [
      "\N{U+042f}",
      "\N{U+0424}",
      "\N{U+041c}",
      "\N{U+0410}",
      "\N{U+041c}",
      "\N{U+0418}",
      "\N{U+0418}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+041e}",
      "\N{U+041d}",
      "\N{U+0414}"
    ],
    month_format_wide => [
      "\N{U+044f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+044f}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}\N{U+044f}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}\N{U+044f}",
      "\N{U+043c}\N{U+0430}\N{U+044f}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044f}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044f}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}\N{U+0430}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044f}",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044f}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}\N{U+044f}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+044f}\N{U+043d}\N{U+0432}.",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}.",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044c}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044c}",
      "\N{U+0430}\N{U+0432}\N{U+0433}.",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}.",
      "\N{U+043e}\N{U+043a}\N{U+0442}.",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}.",
      "\N{U+0434}\N{U+0435}\N{U+043a}."
    ],
    month_stand_alone_narrow => [
      "\N{U+042f}",
      "\N{U+0424}",
      "\N{U+041c}",
      "\N{U+0410}",
      "\N{U+041c}",
      "\N{U+0418}",
      "\N{U+0418}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+041e}",
      "\N{U+041d}",
      "\N{U+0414}"
    ],
    month_stand_alone_wide => [
      "\N{U+044f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+044c}",
      "\N{U+0444}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}\N{U+044c}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}\N{U+044c}",
      "\N{U+043c}\N{U+0430}\N{U+0439}",
      "\N{U+0438}\N{U+044e}\N{U+043d}\N{U+044c}",
      "\N{U+0438}\N{U+044e}\N{U+043b}\N{U+044c}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+043d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}\N{U+044c}",
      "\N{U+0434}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}\N{U+044c}"
    ],
    name => "Russian Ukraine",
    native_language => "\N{U+0440}\N{U+0443}\N{U+0441}\N{U+0441}\N{U+043a}\N{U+0438}\N{U+0439}",
    native_name => "\N{U+0440}\N{U+0443}\N{U+0441}\N{U+0441}\N{U+043a}\N{U+0438}\N{U+0439} \N{U+0423}\N{U+043a}\N{U+0440}\N{U+0430}\N{U+0438}\N{U+043d}\N{U+0430}",
    native_script => undef,
    native_territory => "\N{U+0423}\N{U+043a}\N{U+0440}\N{U+0430}\N{U+0438}\N{U+043d}\N{U+0430}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    quarter_stand_alone_abbreviated => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    script => undef,
    territory => "Ukraine",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ rw ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "rw",
    date_format_full => "EEEE, y MMMM dd",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "yy/MM/dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "mbe.",
      "kab.",
      "gtu.",
      "kan.",
      "gnu.",
      "gnd.",
      "cyu."
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Kuwa mbere",
      "Kuwa kabiri",
      "Kuwa gatatu",
      "Kuwa kane",
      "Kuwa gatanu",
      "Kuwa gatandatu",
      "Ku cyumweru"
    ],
    day_stand_alone_abbreviated => [
      "mbe.",
      "kab.",
      "gtu.",
      "kan.",
      "gnu.",
      "gnd.",
      "cyu."
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Kuwa mbere",
      "Kuwa kabiri",
      "Kuwa gatatu",
      "Kuwa kane",
      "Kuwa gatanu",
      "Kuwa gatandatu",
      "Ku cyumweru"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Kinyarwanda",
    month_format_abbreviated => [
      "mut.",
      "gas.",
      "wer.",
      "mat.",
      "gic.",
      "kam.",
      "nya.",
      "kan.",
      "nze.",
      "ukw.",
      "ugu.",
      "uku."
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Mutarama",
      "Gashyantare",
      "Werurwe",
      "Mata",
      "Gicuransi",
      "Kamena",
      "Nyakanga",
      "Kanama",
      "Nzeli",
      "Ukwakira",
      "Ugushyingo",
      "Ukuboza"
    ],
    month_stand_alone_abbreviated => [
      "mut.",
      "gas.",
      "wer.",
      "mat.",
      "gic.",
      "kam.",
      "nya.",
      "kan.",
      "nze.",
      "ukw.",
      "ugu.",
      "uku."
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Mutarama",
      "Gashyantare",
      "Werurwe",
      "Mata",
      "Gicuransi",
      "Kamena",
      "Nyakanga",
      "Kanama",
      "Nzeli",
      "Ukwakira",
      "Ugushyingo",
      "Ukuboza"
    ],
    name => "Kinyarwanda",
    native_language => "Kinyarwanda",
    native_name => "Kinyarwanda",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "I1",
      "I2",
      "I3",
      "I4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "igihembwe cya mbere",
      "igihembwe cya kabiri",
      "igihembwe cya gatatu",
      "igihembwe cya kane"
    ],
    quarter_stand_alone_abbreviated => [
      "I1",
      "I2",
      "I3",
      "I4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "igihembwe cya mbere",
      "igihembwe cya kabiri",
      "igihembwe cya gatatu",
      "igihembwe cya kane"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ rw-RW ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "rw-RW",
    date_format_full => "EEEE, y MMMM dd",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "yy/MM/dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "mbe.",
      "kab.",
      "gtu.",
      "kan.",
      "gnu.",
      "gnd.",
      "cyu."
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Kuwa mbere",
      "Kuwa kabiri",
      "Kuwa gatatu",
      "Kuwa kane",
      "Kuwa gatanu",
      "Kuwa gatandatu",
      "Ku cyumweru"
    ],
    day_stand_alone_abbreviated => [
      "mbe.",
      "kab.",
      "gtu.",
      "kan.",
      "gnu.",
      "gnd.",
      "cyu."
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Kuwa mbere",
      "Kuwa kabiri",
      "Kuwa gatatu",
      "Kuwa kane",
      "Kuwa gatanu",
      "Kuwa gatandatu",
      "Ku cyumweru"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d.%m.%Y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Kinyarwanda",
    month_format_abbreviated => [
      "mut.",
      "gas.",
      "wer.",
      "mat.",
      "gic.",
      "kam.",
      "nya.",
      "kan.",
      "nze.",
      "ukw.",
      "ugu.",
      "uku."
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Mutarama",
      "Gashyantare",
      "Werurwe",
      "Mata",
      "Gicuransi",
      "Kamena",
      "Nyakanga",
      "Kanama",
      "Nzeli",
      "Ukwakira",
      "Ugushyingo",
      "Ukuboza"
    ],
    month_stand_alone_abbreviated => [
      "mut.",
      "gas.",
      "wer.",
      "mat.",
      "gic.",
      "kam.",
      "nya.",
      "kan.",
      "nze.",
      "ukw.",
      "ugu.",
      "uku."
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Mutarama",
      "Gashyantare",
      "Werurwe",
      "Mata",
      "Gicuransi",
      "Kamena",
      "Nyakanga",
      "Kanama",
      "Nzeli",
      "Ukwakira",
      "Ugushyingo",
      "Ukuboza"
    ],
    name => "Kinyarwanda Rwanda",
    native_language => "Kinyarwanda",
    native_name => "Kinyarwanda Rwanda",
    native_script => undef,
    native_territory => "Rwanda",
    native_variant => undef,
    quarter_format_abbreviated => [
      "I1",
      "I2",
      "I3",
      "I4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "igihembwe cya mbere",
      "igihembwe cya kabiri",
      "igihembwe cya gatatu",
      "igihembwe cya kane"
    ],
    quarter_stand_alone_abbreviated => [
      "I1",
      "I2",
      "I3",
      "I4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "igihembwe cya mbere",
      "igihembwe cya kabiri",
      "igihembwe cya gatatu",
      "igihembwe cya kane"
    ],
    script => undef,
    territory => "Rwanda",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ rwk ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "rwk",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Jtt",
      "Jnn",
      "Jtn",
      "Alh",
      "Iju",
      "Jmo",
      "Jpi"
    ],
    day_format_narrow => [
      "J",
      "J",
      "J",
      "A",
      "I",
      "J",
      "J"
    ],
    day_format_wide => [
      "Jumatatuu",
      "Jumanne",
      "Jumatanu",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapilyi"
    ],
    day_stand_alone_abbreviated => [
      "Jtt",
      "Jnn",
      "Jtn",
      "Alh",
      "Iju",
      "Jmo",
      "Jpi"
    ],
    day_stand_alone_narrow => [
      "J",
      "J",
      "J",
      "A",
      "I",
      "J",
      "J"
    ],
    day_stand_alone_wide => [
      "Jumatatuu",
      "Jumanne",
      "Jumatanu",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapilyi"
    ],
    era_abbreviated => [
      "KK",
      "BK"
    ],
    era_narrow => [
      "KK",
      "BK"
    ],
    era_wide => [
      "Kabla ya Kristu",
      "Baada ya Kristu"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Rwa",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Aprilyi",
      "Mei",
      "Junyi",
      "Julyai",
      "Agusti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Aprilyi",
      "Mei",
      "Junyi",
      "Julyai",
      "Agusti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    name => "Rwa",
    native_language => "Kiruwa",
    native_name => "Kiruwa",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Robo 1",
      "Robo 2",
      "Robo 3",
      "Robo 4"
    ],
    quarter_stand_alone_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Robo 1",
      "Robo 2",
      "Robo 3",
      "Robo 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ rwk-TZ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "rwk-TZ",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Jtt",
      "Jnn",
      "Jtn",
      "Alh",
      "Iju",
      "Jmo",
      "Jpi"
    ],
    day_format_narrow => [
      "J",
      "J",
      "J",
      "A",
      "I",
      "J",
      "J"
    ],
    day_format_wide => [
      "Jumatatuu",
      "Jumanne",
      "Jumatanu",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapilyi"
    ],
    day_stand_alone_abbreviated => [
      "Jtt",
      "Jnn",
      "Jtn",
      "Alh",
      "Iju",
      "Jmo",
      "Jpi"
    ],
    day_stand_alone_narrow => [
      "J",
      "J",
      "J",
      "A",
      "I",
      "J",
      "J"
    ],
    day_stand_alone_wide => [
      "Jumatatuu",
      "Jumanne",
      "Jumatanu",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapilyi"
    ],
    era_abbreviated => [
      "KK",
      "BK"
    ],
    era_narrow => [
      "KK",
      "BK"
    ],
    era_wide => [
      "Kabla ya Kristu",
      "Baada ya Kristu"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Rwa",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Aprilyi",
      "Mei",
      "Junyi",
      "Julyai",
      "Agusti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Aprilyi",
      "Mei",
      "Junyi",
      "Julyai",
      "Agusti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    name => "Rwa Tanzania",
    native_language => "Kiruwa",
    native_name => "Kiruwa Tanzania",
    native_script => undef,
    native_territory => "Tanzania",
    native_variant => undef,
    quarter_format_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Robo 1",
      "Robo 2",
      "Robo 3",
      "Robo 4"
    ],
    quarter_stand_alone_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Robo 1",
      "Robo 2",
      "Robo 3",
      "Robo 4"
    ],
    script => undef,
    territory => "Tanzania",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ sah ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "sah",
    date_format_full => "y '\N{U+0441}\N{U+044b}\N{U+043b}' MMMM d '\N{U+043a}\N{U+04af}\N{U+043d}\N{U+044d}', EEEE",
    date_format_long => "y, MMMM d",
    date_format_medium => "y, MMM d",
    date_format_short => "yy/M/d",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0411}\N{U+043d}",
      "\N{U+041e}\N{U+043f}",
      "\N{U+0421}\N{U+044d}",
      "\N{U+0427}\N{U+043f}",
      "\N{U+0411}\N{U+044d}",
      "\N{U+0421}\N{U+0431}",
      "\N{U+0411}\N{U+0441}"
    ],
    day_format_narrow => [
      "\N{U+0411}",
      "\N{U+041e}",
      "\N{U+0421}",
      "\N{U+0427}",
      "\N{U+0411}",
      "\N{U+0421}",
      "\N{U+0411}"
    ],
    day_format_wide => [
      "\N{U+0411}\N{U+044d}\N{U+043d}\N{U+0438}\N{U+0434}\N{U+0438}\N{U+044d}\N{U+043b}\N{U+0438}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+0438}\N{U+043a}",
      "\N{U+041e}\N{U+043f}\N{U+0442}\N{U+0443}\N{U+043e}\N{U+0440}\N{U+0443}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+0443}\N{U+043a}",
      "\N{U+0421}\N{U+044d}\N{U+0440}\N{U+044d}\N{U+0434}\N{U+044d}",
      "\N{U+0427}\N{U+044d}\N{U+043f}\N{U+043f}\N{U+0438}\N{U+044d}\N{U+0440}",
      "\N{U+0411}\N{U+044d}\N{U+044d}\N{U+0442}\N{U+0438}\N{U+04a5}\N{U+0441}\N{U+044d}",
      "\N{U+0421}\N{U+0443}\N{U+0431}\N{U+0443}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+0411}\N{U+0430}\N{U+0441}\N{U+043a}\N{U+044b}\N{U+04bb}\N{U+044b}\N{U+0430}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+0430}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0411}\N{U+043d}",
      "\N{U+041e}\N{U+043f}",
      "\N{U+0421}\N{U+044d}",
      "\N{U+0427}\N{U+043f}",
      "\N{U+0411}\N{U+044d}",
      "\N{U+0421}\N{U+0431}",
      "\N{U+0411}\N{U+0441}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0411}",
      "\N{U+041e}",
      "\N{U+0421}",
      "\N{U+0427}",
      "\N{U+0411}",
      "\N{U+0421}",
      "\N{U+0411}"
    ],
    day_stand_alone_wide => [
      "\N{U+0411}\N{U+044d}\N{U+043d}\N{U+0438}\N{U+0434}\N{U+0438}\N{U+044d}\N{U+043b}\N{U+0438}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+0438}\N{U+043a}",
      "\N{U+041e}\N{U+043f}\N{U+0442}\N{U+0443}\N{U+043e}\N{U+0440}\N{U+0443}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+0443}\N{U+043a}",
      "\N{U+0421}\N{U+044d}\N{U+0440}\N{U+044d}\N{U+0434}\N{U+044d}",
      "\N{U+0427}\N{U+044d}\N{U+043f}\N{U+043f}\N{U+0438}\N{U+044d}\N{U+0440}",
      "\N{U+0411}\N{U+044d}\N{U+044d}\N{U+0442}\N{U+0438}\N{U+04a5}\N{U+0441}\N{U+044d}",
      "\N{U+0421}\N{U+0443}\N{U+0431}\N{U+0443}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+0411}\N{U+0430}\N{U+0441}\N{U+043a}\N{U+044b}\N{U+04bb}\N{U+044b}\N{U+0430}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+0430}"
    ],
    era_abbreviated => [
      "\N{U+0431}. \N{U+044d}. \N{U+0438}.",
      "\N{U+0431}. \N{U+044d}"
    ],
    era_narrow => [
      "\N{U+0431}. \N{U+044d}. \N{U+0438}.",
      "\N{U+0431}. \N{U+044d}"
    ],
    era_wide => [
      "\N{U+0431}. \N{U+044d}. \N{U+0438}.",
      "\N{U+0431}. \N{U+044d}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Sakha",
    month_format_abbreviated => [
      "\N{U+0422}\N{U+043e}\N{U+0445}\N{U+0441}",
      "\N{U+041e}\N{U+043b}\N{U+0443}\N{U+043d}",
      "\N{U+041a}\N{U+043b}\N{U+043d}_\N{U+0442}\N{U+0442}\N{U+0440}",
      "\N{U+041c}\N{U+0443}\N{U+0441}_\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+042b}\N{U+0430}\N{U+043c}_\N{U+0439}\N{U+043d}",
      "\N{U+0411}\N{U+044d}\N{U+0441}_\N{U+0439}\N{U+043d}",
      "\N{U+041e}\N{U+0442}_\N{U+0439}\N{U+043d}",
      "\N{U+0410}\N{U+0442}\N{U+0440}\N{U+0434}\N{U+044c}_\N{U+0439}\N{U+043d}",
      "\N{U+0411}\N{U+043b}\N{U+0495}\N{U+043d}_\N{U+0439}\N{U+043d}",
      "\N{U+0410}\N{U+043b}\N{U+0442}",
      "\N{U+0421}\N{U+044d}\N{U+0442}",
      "\N{U+0410}\N{U+0445}\N{U+0441}"
    ],
    month_format_narrow => [
      "\N{U+0422}",
      "\N{U+041e}",
      "\N{U+041a}",
      "\N{U+041c}",
      "\N{U+042b}",
      "\N{U+0411}",
      "\N{U+041e}",
      "\N{U+0410}",
      "\N{U+0411}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+0410}"
    ],
    month_format_wide => [
      "\N{U+0422}\N{U+043e}\N{U+0445}\N{U+0441}\N{U+0443}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+0443}",
      "\N{U+041e}\N{U+043b}\N{U+0443}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+0443}",
      "\N{U+041a}\N{U+0443}\N{U+043b}\N{U+0443}\N{U+043d} \N{U+0442}\N{U+0443}\N{U+0442}\N{U+0430}\N{U+0440}",
      "\N{U+041c}\N{U+0443}\N{U+0443}\N{U+0441} \N{U+0443}\N{U+0441}\N{U+0442}\N{U+0430}\N{U+0440}",
      "\N{U+042b}\N{U+0430}\N{U+043c} \N{U+044b}\N{U+0439}\N{U+044b}\N{U+043d}",
      "\N{U+0411}\N{U+044d}\N{U+0441} \N{U+044b}\N{U+0439}\N{U+044b}\N{U+043d}",
      "\N{U+041e}\N{U+0442} \N{U+044b}\N{U+0439}\N{U+044b}\N{U+043d}",
      "\N{U+0410}\N{U+0442}\N{U+044b}\N{U+0440}\N{U+0434}\N{U+044c}\N{U+044b}\N{U+0445} \N{U+044b}\N{U+0439}\N{U+044b}\N{U+043d}",
      "\N{U+0411}\N{U+0430}\N{U+043b}\N{U+0430}\N{U+0495}\N{U+0430}\N{U+043d} \N{U+044b}\N{U+0439}\N{U+044b}\N{U+043d}",
      "\N{U+0410}\N{U+043b}\N{U+0442}\N{U+044b}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+044b}",
      "\N{U+0421}\N{U+044d}\N{U+0442}\N{U+0438}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+0438}",
      "\N{U+0410}\N{U+0445}\N{U+0441}\N{U+044b}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+044b}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0422}\N{U+043e}\N{U+0445}\N{U+0441}",
      "\N{U+041e}\N{U+043b}\N{U+0443}\N{U+043d}",
      "\N{U+041a}\N{U+043b}\N{U+043d}_\N{U+0442}\N{U+0442}\N{U+0440}",
      "\N{U+041c}\N{U+0443}\N{U+0441}_\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+042b}\N{U+0430}\N{U+043c}_\N{U+0439}\N{U+043d}",
      "\N{U+0411}\N{U+044d}\N{U+0441}_\N{U+0439}\N{U+043d}",
      "\N{U+041e}\N{U+0442}_\N{U+0439}\N{U+043d}",
      "\N{U+0410}\N{U+0442}\N{U+0440}\N{U+0434}\N{U+044c}_\N{U+0439}\N{U+043d}",
      "\N{U+0411}\N{U+043b}\N{U+0495}\N{U+043d}_\N{U+0439}\N{U+043d}",
      "\N{U+0410}\N{U+043b}\N{U+0442}",
      "\N{U+0421}\N{U+044d}\N{U+0442}",
      "\N{U+0410}\N{U+0445}\N{U+0441}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0422}",
      "\N{U+041e}",
      "\N{U+041a}",
      "\N{U+041c}",
      "\N{U+042b}",
      "\N{U+0411}",
      "\N{U+041e}",
      "\N{U+0410}",
      "\N{U+0411}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+0410}"
    ],
    month_stand_alone_wide => [
      "\N{U+0422}\N{U+043e}\N{U+0445}\N{U+0441}\N{U+0443}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+0443}",
      "\N{U+041e}\N{U+043b}\N{U+0443}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+0443}",
      "\N{U+041a}\N{U+0443}\N{U+043b}\N{U+0443}\N{U+043d} \N{U+0442}\N{U+0443}\N{U+0442}\N{U+0430}\N{U+0440}",
      "\N{U+041c}\N{U+0443}\N{U+0443}\N{U+0441} \N{U+0443}\N{U+0441}\N{U+0442}\N{U+0430}\N{U+0440}",
      "\N{U+042b}\N{U+0430}\N{U+043c} \N{U+044b}\N{U+0439}\N{U+044b}\N{U+043d}",
      "\N{U+0411}\N{U+044d}\N{U+0441} \N{U+044b}\N{U+0439}\N{U+044b}\N{U+043d}",
      "\N{U+041e}\N{U+0442} \N{U+044b}\N{U+0439}\N{U+044b}\N{U+043d}",
      "\N{U+0410}\N{U+0442}\N{U+044b}\N{U+0440}\N{U+0434}\N{U+044c}\N{U+044b}\N{U+0445} \N{U+044b}\N{U+0439}\N{U+044b}\N{U+043d}",
      "\N{U+0411}\N{U+0430}\N{U+043b}\N{U+0430}\N{U+0495}\N{U+0430}\N{U+043d} \N{U+044b}\N{U+0439}\N{U+044b}\N{U+043d}",
      "\N{U+0410}\N{U+043b}\N{U+0442}\N{U+044b}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+044b}",
      "\N{U+0421}\N{U+044d}\N{U+0442}\N{U+0438}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+0438}",
      "\N{U+0410}\N{U+0445}\N{U+0441}\N{U+044b}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+044b}"
    ],
    name => "Sakha",
    native_language => "\N{U+0441}\N{U+0430}\N{U+0445}\N{U+0430} \N{U+0442}\N{U+044b}\N{U+043b}\N{U+0430}",
    native_name => "\N{U+0441}\N{U+0430}\N{U+0445}\N{U+0430} \N{U+0442}\N{U+044b}\N{U+043b}\N{U+0430}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "1-\N{U+043a}\N{U+044b} \N{U+043a}\N{U+0431}",
      "2-\N{U+0441} \N{U+043a}\N{U+0431}",
      "3-\N{U+0441} \N{U+043a}\N{U+0431}",
      "4-\N{U+0441} \N{U+043a}\N{U+0431}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1-\N{U+043a}\N{U+044b} \N{U+043a}\N{U+044b}\N{U+0431}\N{U+0430}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0441} \N{U+043a}\N{U+044b}\N{U+0431}\N{U+0430}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0441} \N{U+043a}\N{U+044b}\N{U+0431}\N{U+0430}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+0441} \N{U+043a}\N{U+044b}\N{U+0431}\N{U+0430}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    quarter_stand_alone_abbreviated => [
      "1-\N{U+043a}\N{U+044b} \N{U+043a}\N{U+0431}",
      "2-\N{U+0441} \N{U+043a}\N{U+0431}",
      "3-\N{U+0441} \N{U+043a}\N{U+0431}",
      "4-\N{U+0441} \N{U+043a}\N{U+0431}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-\N{U+043a}\N{U+044b} \N{U+043a}\N{U+044b}\N{U+0431}\N{U+0430}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0441} \N{U+043a}\N{U+044b}\N{U+0431}\N{U+0430}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0441} \N{U+043a}\N{U+044b}\N{U+0431}\N{U+0430}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+0441} \N{U+043a}\N{U+044b}\N{U+0431}\N{U+0430}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ sah-RU ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "sah-RU",
    date_format_full => "y '\N{U+0441}\N{U+044b}\N{U+043b}' MMMM d '\N{U+043a}\N{U+04af}\N{U+043d}\N{U+044d}', EEEE",
    date_format_long => "y, MMMM d",
    date_format_medium => "y, MMM d",
    date_format_short => "yy/M/d",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0411}\N{U+043d}",
      "\N{U+041e}\N{U+043f}",
      "\N{U+0421}\N{U+044d}",
      "\N{U+0427}\N{U+043f}",
      "\N{U+0411}\N{U+044d}",
      "\N{U+0421}\N{U+0431}",
      "\N{U+0411}\N{U+0441}"
    ],
    day_format_narrow => [
      "\N{U+0411}",
      "\N{U+041e}",
      "\N{U+0421}",
      "\N{U+0427}",
      "\N{U+0411}",
      "\N{U+0421}",
      "\N{U+0411}"
    ],
    day_format_wide => [
      "\N{U+0411}\N{U+044d}\N{U+043d}\N{U+0438}\N{U+0434}\N{U+0438}\N{U+044d}\N{U+043b}\N{U+0438}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+0438}\N{U+043a}",
      "\N{U+041e}\N{U+043f}\N{U+0442}\N{U+0443}\N{U+043e}\N{U+0440}\N{U+0443}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+0443}\N{U+043a}",
      "\N{U+0421}\N{U+044d}\N{U+0440}\N{U+044d}\N{U+0434}\N{U+044d}",
      "\N{U+0427}\N{U+044d}\N{U+043f}\N{U+043f}\N{U+0438}\N{U+044d}\N{U+0440}",
      "\N{U+0411}\N{U+044d}\N{U+044d}\N{U+0442}\N{U+0438}\N{U+04a5}\N{U+0441}\N{U+044d}",
      "\N{U+0421}\N{U+0443}\N{U+0431}\N{U+0443}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+0411}\N{U+0430}\N{U+0441}\N{U+043a}\N{U+044b}\N{U+04bb}\N{U+044b}\N{U+0430}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+0430}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0411}\N{U+043d}",
      "\N{U+041e}\N{U+043f}",
      "\N{U+0421}\N{U+044d}",
      "\N{U+0427}\N{U+043f}",
      "\N{U+0411}\N{U+044d}",
      "\N{U+0421}\N{U+0431}",
      "\N{U+0411}\N{U+0441}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0411}",
      "\N{U+041e}",
      "\N{U+0421}",
      "\N{U+0427}",
      "\N{U+0411}",
      "\N{U+0421}",
      "\N{U+0411}"
    ],
    day_stand_alone_wide => [
      "\N{U+0411}\N{U+044d}\N{U+043d}\N{U+0438}\N{U+0434}\N{U+0438}\N{U+044d}\N{U+043b}\N{U+0438}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+0438}\N{U+043a}",
      "\N{U+041e}\N{U+043f}\N{U+0442}\N{U+0443}\N{U+043e}\N{U+0440}\N{U+0443}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+0443}\N{U+043a}",
      "\N{U+0421}\N{U+044d}\N{U+0440}\N{U+044d}\N{U+0434}\N{U+044d}",
      "\N{U+0427}\N{U+044d}\N{U+043f}\N{U+043f}\N{U+0438}\N{U+044d}\N{U+0440}",
      "\N{U+0411}\N{U+044d}\N{U+044d}\N{U+0442}\N{U+0438}\N{U+04a5}\N{U+0441}\N{U+044d}",
      "\N{U+0421}\N{U+0443}\N{U+0431}\N{U+0443}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+0411}\N{U+0430}\N{U+0441}\N{U+043a}\N{U+044b}\N{U+04bb}\N{U+044b}\N{U+0430}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+0430}"
    ],
    era_abbreviated => [
      "\N{U+0431}. \N{U+044d}. \N{U+0438}.",
      "\N{U+0431}. \N{U+044d}"
    ],
    era_narrow => [
      "\N{U+0431}. \N{U+044d}. \N{U+0438}.",
      "\N{U+0431}. \N{U+044d}"
    ],
    era_wide => [
      "\N{U+0431}. \N{U+044d}. \N{U+0438}.",
      "\N{U+0431}. \N{U+044d}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Sakha",
    month_format_abbreviated => [
      "\N{U+0422}\N{U+043e}\N{U+0445}\N{U+0441}",
      "\N{U+041e}\N{U+043b}\N{U+0443}\N{U+043d}",
      "\N{U+041a}\N{U+043b}\N{U+043d}_\N{U+0442}\N{U+0442}\N{U+0440}",
      "\N{U+041c}\N{U+0443}\N{U+0441}_\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+042b}\N{U+0430}\N{U+043c}_\N{U+0439}\N{U+043d}",
      "\N{U+0411}\N{U+044d}\N{U+0441}_\N{U+0439}\N{U+043d}",
      "\N{U+041e}\N{U+0442}_\N{U+0439}\N{U+043d}",
      "\N{U+0410}\N{U+0442}\N{U+0440}\N{U+0434}\N{U+044c}_\N{U+0439}\N{U+043d}",
      "\N{U+0411}\N{U+043b}\N{U+0495}\N{U+043d}_\N{U+0439}\N{U+043d}",
      "\N{U+0410}\N{U+043b}\N{U+0442}",
      "\N{U+0421}\N{U+044d}\N{U+0442}",
      "\N{U+0410}\N{U+0445}\N{U+0441}"
    ],
    month_format_narrow => [
      "\N{U+0422}",
      "\N{U+041e}",
      "\N{U+041a}",
      "\N{U+041c}",
      "\N{U+042b}",
      "\N{U+0411}",
      "\N{U+041e}",
      "\N{U+0410}",
      "\N{U+0411}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+0410}"
    ],
    month_format_wide => [
      "\N{U+0422}\N{U+043e}\N{U+0445}\N{U+0441}\N{U+0443}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+0443}",
      "\N{U+041e}\N{U+043b}\N{U+0443}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+0443}",
      "\N{U+041a}\N{U+0443}\N{U+043b}\N{U+0443}\N{U+043d} \N{U+0442}\N{U+0443}\N{U+0442}\N{U+0430}\N{U+0440}",
      "\N{U+041c}\N{U+0443}\N{U+0443}\N{U+0441} \N{U+0443}\N{U+0441}\N{U+0442}\N{U+0430}\N{U+0440}",
      "\N{U+042b}\N{U+0430}\N{U+043c} \N{U+044b}\N{U+0439}\N{U+044b}\N{U+043d}",
      "\N{U+0411}\N{U+044d}\N{U+0441} \N{U+044b}\N{U+0439}\N{U+044b}\N{U+043d}",
      "\N{U+041e}\N{U+0442} \N{U+044b}\N{U+0439}\N{U+044b}\N{U+043d}",
      "\N{U+0410}\N{U+0442}\N{U+044b}\N{U+0440}\N{U+0434}\N{U+044c}\N{U+044b}\N{U+0445} \N{U+044b}\N{U+0439}\N{U+044b}\N{U+043d}",
      "\N{U+0411}\N{U+0430}\N{U+043b}\N{U+0430}\N{U+0495}\N{U+0430}\N{U+043d} \N{U+044b}\N{U+0439}\N{U+044b}\N{U+043d}",
      "\N{U+0410}\N{U+043b}\N{U+0442}\N{U+044b}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+044b}",
      "\N{U+0421}\N{U+044d}\N{U+0442}\N{U+0438}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+0438}",
      "\N{U+0410}\N{U+0445}\N{U+0441}\N{U+044b}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+044b}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0422}\N{U+043e}\N{U+0445}\N{U+0441}",
      "\N{U+041e}\N{U+043b}\N{U+0443}\N{U+043d}",
      "\N{U+041a}\N{U+043b}\N{U+043d}_\N{U+0442}\N{U+0442}\N{U+0440}",
      "\N{U+041c}\N{U+0443}\N{U+0441}_\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+042b}\N{U+0430}\N{U+043c}_\N{U+0439}\N{U+043d}",
      "\N{U+0411}\N{U+044d}\N{U+0441}_\N{U+0439}\N{U+043d}",
      "\N{U+041e}\N{U+0442}_\N{U+0439}\N{U+043d}",
      "\N{U+0410}\N{U+0442}\N{U+0440}\N{U+0434}\N{U+044c}_\N{U+0439}\N{U+043d}",
      "\N{U+0411}\N{U+043b}\N{U+0495}\N{U+043d}_\N{U+0439}\N{U+043d}",
      "\N{U+0410}\N{U+043b}\N{U+0442}",
      "\N{U+0421}\N{U+044d}\N{U+0442}",
      "\N{U+0410}\N{U+0445}\N{U+0441}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0422}",
      "\N{U+041e}",
      "\N{U+041a}",
      "\N{U+041c}",
      "\N{U+042b}",
      "\N{U+0411}",
      "\N{U+041e}",
      "\N{U+0410}",
      "\N{U+0411}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+0410}"
    ],
    month_stand_alone_wide => [
      "\N{U+0422}\N{U+043e}\N{U+0445}\N{U+0441}\N{U+0443}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+0443}",
      "\N{U+041e}\N{U+043b}\N{U+0443}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+0443}",
      "\N{U+041a}\N{U+0443}\N{U+043b}\N{U+0443}\N{U+043d} \N{U+0442}\N{U+0443}\N{U+0442}\N{U+0430}\N{U+0440}",
      "\N{U+041c}\N{U+0443}\N{U+0443}\N{U+0441} \N{U+0443}\N{U+0441}\N{U+0442}\N{U+0430}\N{U+0440}",
      "\N{U+042b}\N{U+0430}\N{U+043c} \N{U+044b}\N{U+0439}\N{U+044b}\N{U+043d}",
      "\N{U+0411}\N{U+044d}\N{U+0441} \N{U+044b}\N{U+0439}\N{U+044b}\N{U+043d}",
      "\N{U+041e}\N{U+0442} \N{U+044b}\N{U+0439}\N{U+044b}\N{U+043d}",
      "\N{U+0410}\N{U+0442}\N{U+044b}\N{U+0440}\N{U+0434}\N{U+044c}\N{U+044b}\N{U+0445} \N{U+044b}\N{U+0439}\N{U+044b}\N{U+043d}",
      "\N{U+0411}\N{U+0430}\N{U+043b}\N{U+0430}\N{U+0495}\N{U+0430}\N{U+043d} \N{U+044b}\N{U+0439}\N{U+044b}\N{U+043d}",
      "\N{U+0410}\N{U+043b}\N{U+0442}\N{U+044b}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+044b}",
      "\N{U+0421}\N{U+044d}\N{U+0442}\N{U+0438}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+0438}",
      "\N{U+0410}\N{U+0445}\N{U+0441}\N{U+044b}\N{U+043d}\N{U+043d}\N{U+044c}\N{U+044b}"
    ],
    name => "Sakha Russia",
    native_language => "\N{U+0441}\N{U+0430}\N{U+0445}\N{U+0430} \N{U+0442}\N{U+044b}\N{U+043b}\N{U+0430}",
    native_name => "\N{U+0441}\N{U+0430}\N{U+0445}\N{U+0430} \N{U+0442}\N{U+044b}\N{U+043b}\N{U+0430} \N{U+0410}\N{U+0440}\N{U+0430}\N{U+0441}\N{U+0441}\N{U+044b}\N{U+044b}\N{U+0439}\N{U+0430}",
    native_script => undef,
    native_territory => "\N{U+0410}\N{U+0440}\N{U+0430}\N{U+0441}\N{U+0441}\N{U+044b}\N{U+044b}\N{U+0439}\N{U+0430}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1-\N{U+043a}\N{U+044b} \N{U+043a}\N{U+0431}",
      "2-\N{U+0441} \N{U+043a}\N{U+0431}",
      "3-\N{U+0441} \N{U+043a}\N{U+0431}",
      "4-\N{U+0441} \N{U+043a}\N{U+0431}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1-\N{U+043a}\N{U+044b} \N{U+043a}\N{U+044b}\N{U+0431}\N{U+0430}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0441} \N{U+043a}\N{U+044b}\N{U+0431}\N{U+0430}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0441} \N{U+043a}\N{U+044b}\N{U+0431}\N{U+0430}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+0441} \N{U+043a}\N{U+044b}\N{U+0431}\N{U+0430}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    quarter_stand_alone_abbreviated => [
      "1-\N{U+043a}\N{U+044b} \N{U+043a}\N{U+0431}",
      "2-\N{U+0441} \N{U+043a}\N{U+0431}",
      "3-\N{U+0441} \N{U+043a}\N{U+0431}",
      "4-\N{U+0441} \N{U+043a}\N{U+0431}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-\N{U+043a}\N{U+044b} \N{U+043a}\N{U+044b}\N{U+0431}\N{U+0430}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0441} \N{U+043a}\N{U+044b}\N{U+0431}\N{U+0430}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0441} \N{U+043a}\N{U+044b}\N{U+0431}\N{U+0430}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+0441} \N{U+043a}\N{U+044b}\N{U+0431}\N{U+0430}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    script => undef,
    territory => "Russia",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ saq ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "saq",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Kun",
      "Ong",
      "Ine",
      "Ile",
      "Sap",
      "Kwe",
      "Are"
    ],
    day_format_narrow => [
      "K",
      "O",
      "I",
      "I",
      "S",
      "K",
      "A"
    ],
    day_format_wide => [
      "Mderot ee kuni",
      "Mderot ee ong\N{U+2019}wan",
      "Mderot ee inet",
      "Mderot ee ile",
      "Mderot ee sapa",
      "Mderot ee kwe",
      "Mderot ee are"
    ],
    day_stand_alone_abbreviated => [
      "Kun",
      "Ong",
      "Ine",
      "Ile",
      "Sap",
      "Kwe",
      "Are"
    ],
    day_stand_alone_narrow => [
      "K",
      "O",
      "I",
      "I",
      "S",
      "K",
      "A"
    ],
    day_stand_alone_wide => [
      "Mderot ee kuni",
      "Mderot ee ong\N{U+2019}wan",
      "Mderot ee inet",
      "Mderot ee ile",
      "Mderot ee sapa",
      "Mderot ee kwe",
      "Mderot ee are"
    ],
    era_abbreviated => [
      "KK",
      "BK"
    ],
    era_narrow => [
      "KK",
      "BK"
    ],
    era_wide => [
      "Kabla ya Christo",
      "Baada ya Christo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Samburu",
    month_format_abbreviated => [
      "Obo",
      "Waa",
      "Oku",
      "Ong",
      "Ime",
      "Ile",
      "Sap",
      "Isi",
      "Saa",
      "Tom",
      "Tob",
      "Tow"
    ],
    month_format_narrow => [
      "O",
      "W",
      "O",
      "O",
      "I",
      "I",
      "S",
      "I",
      "S",
      "T",
      "T",
      "T"
    ],
    month_format_wide => [
      "Lapa le obo",
      "Lapa le waare",
      "Lapa le okuni",
      "Lapa le ong\N{U+2019}wan",
      "Lapa le imet",
      "Lapa le ile",
      "Lapa le sapa",
      "Lapa le isiet",
      "Lapa le saal",
      "Lapa le tomon",
      "Lapa le tomon obo",
      "Lapa le tomon waare"
    ],
    month_stand_alone_abbreviated => [
      "Obo",
      "Waa",
      "Oku",
      "Ong",
      "Ime",
      "Ile",
      "Sap",
      "Isi",
      "Saa",
      "Tom",
      "Tob",
      "Tow"
    ],
    month_stand_alone_narrow => [
      "O",
      "W",
      "O",
      "O",
      "I",
      "I",
      "S",
      "I",
      "S",
      "T",
      "T",
      "T"
    ],
    month_stand_alone_wide => [
      "Lapa le obo",
      "Lapa le waare",
      "Lapa le okuni",
      "Lapa le ong\N{U+2019}wan",
      "Lapa le imet",
      "Lapa le ile",
      "Lapa le sapa",
      "Lapa le isiet",
      "Lapa le saal",
      "Lapa le tomon",
      "Lapa le tomon obo",
      "Lapa le tomon waare"
    ],
    name => "Samburu",
    native_language => "Kisampur",
    native_name => "Kisampur",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Robo 1",
      "Robo 2",
      "Robo 3",
      "Robo 4"
    ],
    quarter_stand_alone_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Robo 1",
      "Robo 2",
      "Robo 3",
      "Robo 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ saq-KE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "saq-KE",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Kun",
      "Ong",
      "Ine",
      "Ile",
      "Sap",
      "Kwe",
      "Are"
    ],
    day_format_narrow => [
      "K",
      "O",
      "I",
      "I",
      "S",
      "K",
      "A"
    ],
    day_format_wide => [
      "Mderot ee kuni",
      "Mderot ee ong\N{U+2019}wan",
      "Mderot ee inet",
      "Mderot ee ile",
      "Mderot ee sapa",
      "Mderot ee kwe",
      "Mderot ee are"
    ],
    day_stand_alone_abbreviated => [
      "Kun",
      "Ong",
      "Ine",
      "Ile",
      "Sap",
      "Kwe",
      "Are"
    ],
    day_stand_alone_narrow => [
      "K",
      "O",
      "I",
      "I",
      "S",
      "K",
      "A"
    ],
    day_stand_alone_wide => [
      "Mderot ee kuni",
      "Mderot ee ong\N{U+2019}wan",
      "Mderot ee inet",
      "Mderot ee ile",
      "Mderot ee sapa",
      "Mderot ee kwe",
      "Mderot ee are"
    ],
    era_abbreviated => [
      "KK",
      "BK"
    ],
    era_narrow => [
      "KK",
      "BK"
    ],
    era_wide => [
      "Kabla ya Christo",
      "Baada ya Christo"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Samburu",
    month_format_abbreviated => [
      "Obo",
      "Waa",
      "Oku",
      "Ong",
      "Ime",
      "Ile",
      "Sap",
      "Isi",
      "Saa",
      "Tom",
      "Tob",
      "Tow"
    ],
    month_format_narrow => [
      "O",
      "W",
      "O",
      "O",
      "I",
      "I",
      "S",
      "I",
      "S",
      "T",
      "T",
      "T"
    ],
    month_format_wide => [
      "Lapa le obo",
      "Lapa le waare",
      "Lapa le okuni",
      "Lapa le ong\N{U+2019}wan",
      "Lapa le imet",
      "Lapa le ile",
      "Lapa le sapa",
      "Lapa le isiet",
      "Lapa le saal",
      "Lapa le tomon",
      "Lapa le tomon obo",
      "Lapa le tomon waare"
    ],
    month_stand_alone_abbreviated => [
      "Obo",
      "Waa",
      "Oku",
      "Ong",
      "Ime",
      "Ile",
      "Sap",
      "Isi",
      "Saa",
      "Tom",
      "Tob",
      "Tow"
    ],
    month_stand_alone_narrow => [
      "O",
      "W",
      "O",
      "O",
      "I",
      "I",
      "S",
      "I",
      "S",
      "T",
      "T",
      "T"
    ],
    month_stand_alone_wide => [
      "Lapa le obo",
      "Lapa le waare",
      "Lapa le okuni",
      "Lapa le ong\N{U+2019}wan",
      "Lapa le imet",
      "Lapa le ile",
      "Lapa le sapa",
      "Lapa le isiet",
      "Lapa le saal",
      "Lapa le tomon",
      "Lapa le tomon obo",
      "Lapa le tomon waare"
    ],
    name => "Samburu Kenya",
    native_language => "Kisampur",
    native_name => "Kisampur Kenya",
    native_script => undef,
    native_territory => "Kenya",
    native_variant => undef,
    quarter_format_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Robo 1",
      "Robo 2",
      "Robo 3",
      "Robo 4"
    ],
    quarter_stand_alone_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Robo 1",
      "Robo 2",
      "Robo 3",
      "Robo 4"
    ],
    script => undef,
    territory => "Kenya",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ sbp ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "y MMMM",
      yMMMd => "MMM d y",
      yMd => "M/d/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "sbp",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Jtt",
      "Jnn",
      "Jtn",
      "Alh",
      "Iju",
      "Jmo",
      "Mul"
    ],
    day_format_narrow => [
      "J",
      "J",
      "J",
      "A",
      "I",
      "J",
      "M"
    ],
    day_format_wide => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Alahamisi",
      "Ijumaa",
      "Jumamosi",
      "Mulungu"
    ],
    day_stand_alone_abbreviated => [
      "Jtt",
      "Jnn",
      "Jtn",
      "Alh",
      "Iju",
      "Jmo",
      "Mul"
    ],
    day_stand_alone_narrow => [
      "J",
      "J",
      "J",
      "A",
      "I",
      "J",
      "M"
    ],
    day_stand_alone_wide => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Alahamisi",
      "Ijumaa",
      "Jumamosi",
      "Mulungu"
    ],
    era_abbreviated => [
      "AK",
      "PK"
    ],
    era_narrow => [
      "AK",
      "PK"
    ],
    era_wide => [
      "Ashanali uKilisito",
      "Pamwandi ya Kilisto"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Sangu",
    month_format_abbreviated => [
      "Mup",
      "Mwi",
      "Msh",
      "Mun",
      "Mag",
      "Muj",
      "Msp",
      "Mpg",
      "Mye",
      "Mok",
      "Mus",
      "Muh"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Mupalangulwa",
      "Mwitope",
      "Mushende",
      "Munyi",
      "Mushende Magali",
      "Mujimbi",
      "Mushipepo",
      "Mupuguto",
      "Munyense",
      "Mokhu",
      "Musongandembwe",
      "Muhaano"
    ],
    month_stand_alone_abbreviated => [
      "Mup",
      "Mwi",
      "Msh",
      "Mun",
      "Mag",
      "Muj",
      "Msp",
      "Mpg",
      "Mye",
      "Mok",
      "Mus",
      "Muh"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Mupalangulwa",
      "Mwitope",
      "Mushende",
      "Munyi",
      "Mushende Magali",
      "Mujimbi",
      "Mushipepo",
      "Mupuguto",
      "Munyense",
      "Mokhu",
      "Musongandembwe",
      "Muhaano"
    ],
    name => "Sangu",
    native_language => "Ishisangu",
    native_name => "Ishisangu",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "L1",
      "L2",
      "L3",
      "L4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Lobo 1",
      "Lobo 2",
      "Lobo 3",
      "Lobo 4"
    ],
    quarter_stand_alone_abbreviated => [
      "L1",
      "L2",
      "L3",
      "L4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Lobo 1",
      "Lobo 2",
      "Lobo 3",
      "Lobo 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ sbp-TZ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "y MMMM",
      yMMMd => "MMM d y",
      yMd => "M/d/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "sbp-TZ",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Jtt",
      "Jnn",
      "Jtn",
      "Alh",
      "Iju",
      "Jmo",
      "Mul"
    ],
    day_format_narrow => [
      "J",
      "J",
      "J",
      "A",
      "I",
      "J",
      "M"
    ],
    day_format_wide => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Alahamisi",
      "Ijumaa",
      "Jumamosi",
      "Mulungu"
    ],
    day_stand_alone_abbreviated => [
      "Jtt",
      "Jnn",
      "Jtn",
      "Alh",
      "Iju",
      "Jmo",
      "Mul"
    ],
    day_stand_alone_narrow => [
      "J",
      "J",
      "J",
      "A",
      "I",
      "J",
      "M"
    ],
    day_stand_alone_wide => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Alahamisi",
      "Ijumaa",
      "Jumamosi",
      "Mulungu"
    ],
    era_abbreviated => [
      "AK",
      "PK"
    ],
    era_narrow => [
      "AK",
      "PK"
    ],
    era_wide => [
      "Ashanali uKilisito",
      "Pamwandi ya Kilisto"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Sangu",
    month_format_abbreviated => [
      "Mup",
      "Mwi",
      "Msh",
      "Mun",
      "Mag",
      "Muj",
      "Msp",
      "Mpg",
      "Mye",
      "Mok",
      "Mus",
      "Muh"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Mupalangulwa",
      "Mwitope",
      "Mushende",
      "Munyi",
      "Mushende Magali",
      "Mujimbi",
      "Mushipepo",
      "Mupuguto",
      "Munyense",
      "Mokhu",
      "Musongandembwe",
      "Muhaano"
    ],
    month_stand_alone_abbreviated => [
      "Mup",
      "Mwi",
      "Msh",
      "Mun",
      "Mag",
      "Muj",
      "Msp",
      "Mpg",
      "Mye",
      "Mok",
      "Mus",
      "Muh"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Mupalangulwa",
      "Mwitope",
      "Mushende",
      "Munyi",
      "Mushende Magali",
      "Mujimbi",
      "Mushipepo",
      "Mupuguto",
      "Munyense",
      "Mokhu",
      "Musongandembwe",
      "Muhaano"
    ],
    name => "Sangu Tanzania",
    native_language => "Ishisangu",
    native_name => "Ishisangu Tansaniya",
    native_script => undef,
    native_territory => "Tansaniya",
    native_variant => undef,
    quarter_format_abbreviated => [
      "L1",
      "L2",
      "L3",
      "L4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Lobo 1",
      "Lobo 2",
      "Lobo 3",
      "Lobo 4"
    ],
    quarter_stand_alone_abbreviated => [
      "L1",
      "L2",
      "L3",
      "L4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Lobo 1",
      "Lobo 2",
      "Lobo 3",
      "Lobo 4"
    ],
    script => undef,
    territory => "Tanzania",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ se ]__
  {
    am_pm_abbreviated => [
      "i.b.",
      "e.b."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "se",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "vuos",
      "ma\N{U+014b}",
      "gask",
      "duor",
      "bear",
      "l\N{U+00e1}v",
      "sotn"
    ],
    day_format_narrow => [
      "V",
      "M",
      "G",
      "D",
      "B",
      "L",
      "S"
    ],
    day_format_wide => [
      "vuoss\N{U+00e1}rga",
      "ma\N{U+014b}\N{U+014b}eb\N{U+00e1}rga",
      "gaskavahkku",
      "duorasdat",
      "bearjadat",
      "l\N{U+00e1}vvardat",
      "sotnabeaivi"
    ],
    day_stand_alone_abbreviated => [
      "vuos",
      "ma\N{U+014b}",
      "gask",
      "duor",
      "bear",
      "l\N{U+00e1}v",
      "sotn"
    ],
    day_stand_alone_narrow => [
      "V",
      "M",
      "G",
      "D",
      "B",
      "L",
      "S"
    ],
    day_stand_alone_wide => [
      "vuoss\N{U+00e1}rga",
      "ma\N{U+014b}\N{U+014b}eb\N{U+00e1}rga",
      "gaskavahkku",
      "duorasdat",
      "bearjadat",
      "l\N{U+00e1}vvardat",
      "sotnabeaivi"
    ],
    era_abbreviated => [
      "o.Kr.",
      "m.Kr."
    ],
    era_narrow => [
      "o.Kr.",
      "m.Kr."
    ],
    era_wide => [
      "ovdal Kristtusa",
      "ma\N{U+014b}\N{U+014b}el Kristtusa"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Northern Sami",
    month_format_abbreviated => [
      "o\N{U+0111}\N{U+0111}j",
      "guov",
      "njuk",
      "cuo",
      "mies",
      "geas",
      "suoi",
      "borg",
      "\N{U+010d}ak\N{U+010d}",
      "golg",
      "sk\N{U+00e1}b",
      "juov"
    ],
    month_format_narrow => [
      "O",
      "G",
      "N",
      "C",
      "M",
      "G",
      "S",
      "B",
      "\N{U+010c}",
      "G",
      "S",
      "J"
    ],
    month_format_wide => [
      "o\N{U+0111}\N{U+0111}ajagem\N{U+00e1}nnu",
      "guovvam\N{U+00e1}nnu",
      "njuk\N{U+010d}am\N{U+00e1}nnu",
      "cuo\N{U+014b}om\N{U+00e1}nnu",
      "miessem\N{U+00e1}nnu",
      "geassem\N{U+00e1}nnu",
      "suoidnem\N{U+00e1}nnu",
      "borgem\N{U+00e1}nnu",
      "\N{U+010d}ak\N{U+010d}am\N{U+00e1}nnu",
      "golggotm\N{U+00e1}nnu",
      "sk\N{U+00e1}bmam\N{U+00e1}nnu",
      "juovlam\N{U+00e1}nnu"
    ],
    month_stand_alone_abbreviated => [
      "o\N{U+0111}\N{U+0111}j",
      "guov",
      "njuk",
      "cuo",
      "mies",
      "geas",
      "suoi",
      "borg",
      "\N{U+010d}ak\N{U+010d}",
      "golg",
      "sk\N{U+00e1}b",
      "juov"
    ],
    month_stand_alone_narrow => [
      "O",
      "G",
      "N",
      "C",
      "M",
      "G",
      "S",
      "B",
      "\N{U+010c}",
      "G",
      "S",
      "J"
    ],
    month_stand_alone_wide => [
      "o\N{U+0111}\N{U+0111}ajagem\N{U+00e1}nnu",
      "guovvam\N{U+00e1}nnu",
      "njuk\N{U+010d}am\N{U+00e1}nnu",
      "cuo\N{U+014b}om\N{U+00e1}nnu",
      "miessem\N{U+00e1}nnu",
      "geassem\N{U+00e1}nnu",
      "suoidnem\N{U+00e1}nnu",
      "borgem\N{U+00e1}nnu",
      "\N{U+010d}ak\N{U+010d}am\N{U+00e1}nnu",
      "golggotm\N{U+00e1}nnu",
      "sk\N{U+00e1}bmam\N{U+00e1}nnu",
      "juovlam\N{U+00e1}nnu"
    ],
    name => "Northern Sami",
    native_language => "davvis\N{U+00e1}megiella",
    native_name => "davvis\N{U+00e1}megiella",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ se-FI ]__
  {
    am_pm_abbreviated => [
      "i.b.",
      "e.b."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "se-FI",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "vuos",
      "ma\N{U+014b}",
      "gask",
      "duor",
      "bear",
      "l\N{U+00e1}v",
      "sotn"
    ],
    day_format_narrow => [
      "V",
      "M",
      "G",
      "D",
      "B",
      "L",
      "S"
    ],
    day_format_wide => [
      "vuoss\N{U+00e1}rga",
      "ma\N{U+014b}\N{U+014b}eb\N{U+00e1}rga",
      "gaskavahkku",
      "duorasdat",
      "bearjadat",
      "l\N{U+00e1}vvardat",
      "sotnabeaivi"
    ],
    day_stand_alone_abbreviated => [
      "vuos",
      "ma\N{U+014b}",
      "gask",
      "duor",
      "bear",
      "l\N{U+00e1}v",
      "sotn"
    ],
    day_stand_alone_narrow => [
      "V",
      "M",
      "G",
      "D",
      "B",
      "L",
      "S"
    ],
    day_stand_alone_wide => [
      "vuoss\N{U+00e1}rga",
      "ma\N{U+014b}\N{U+014b}eb\N{U+00e1}rga",
      "gaskavahkku",
      "duorasdat",
      "bearjadat",
      "l\N{U+00e1}vvardat",
      "sotnabeaivi"
    ],
    era_abbreviated => [
      "o.Kr.",
      "m.Kr."
    ],
    era_narrow => [
      "o.Kr.",
      "m.Kr."
    ],
    era_wide => [
      "ovdal Kristtusa",
      "ma\N{U+014b}\N{U+014b}el Kristtusa"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Northern Sami",
    month_format_abbreviated => [
      "o\N{U+0111}\N{U+0111}j",
      "guov",
      "njuk",
      "cuo",
      "mies",
      "geas",
      "suoi",
      "borg",
      "\N{U+010d}ak\N{U+010d}",
      "golg",
      "sk\N{U+00e1}b",
      "juov"
    ],
    month_format_narrow => [
      "O",
      "G",
      "N",
      "C",
      "M",
      "G",
      "S",
      "B",
      "\N{U+010c}",
      "G",
      "S",
      "J"
    ],
    month_format_wide => [
      "o\N{U+0111}\N{U+0111}ajagem\N{U+00e1}nnu",
      "guovvam\N{U+00e1}nnu",
      "njuk\N{U+010d}am\N{U+00e1}nnu",
      "cuo\N{U+014b}om\N{U+00e1}nnu",
      "miessem\N{U+00e1}nnu",
      "geassem\N{U+00e1}nnu",
      "suoidnem\N{U+00e1}nnu",
      "borgem\N{U+00e1}nnu",
      "\N{U+010d}ak\N{U+010d}am\N{U+00e1}nnu",
      "golggotm\N{U+00e1}nnu",
      "sk\N{U+00e1}bmam\N{U+00e1}nnu",
      "juovlam\N{U+00e1}nnu"
    ],
    month_stand_alone_abbreviated => [
      "o\N{U+0111}\N{U+0111}j",
      "guov",
      "njuk",
      "cuo",
      "mies",
      "geas",
      "suoi",
      "borg",
      "\N{U+010d}ak\N{U+010d}",
      "golg",
      "sk\N{U+00e1}b",
      "juov"
    ],
    month_stand_alone_narrow => [
      "O",
      "G",
      "N",
      "C",
      "M",
      "G",
      "S",
      "B",
      "\N{U+010c}",
      "G",
      "S",
      "J"
    ],
    month_stand_alone_wide => [
      "o\N{U+0111}\N{U+0111}ajagem\N{U+00e1}nnu",
      "guovvam\N{U+00e1}nnu",
      "njuk\N{U+010d}am\N{U+00e1}nnu",
      "cuo\N{U+014b}om\N{U+00e1}nnu",
      "miessem\N{U+00e1}nnu",
      "geassem\N{U+00e1}nnu",
      "suoidnem\N{U+00e1}nnu",
      "borgem\N{U+00e1}nnu",
      "\N{U+010d}ak\N{U+010d}am\N{U+00e1}nnu",
      "golggotm\N{U+00e1}nnu",
      "sk\N{U+00e1}bmam\N{U+00e1}nnu",
      "juovlam\N{U+00e1}nnu"
    ],
    name => "Northern Sami Finland",
    native_language => "davvis\N{U+00e1}megiella",
    native_name => "davvis\N{U+00e1}megiella Suopma",
    native_script => undef,
    native_territory => "Suopma",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "Finland",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ se-NO ]__
  {
    am_pm_abbreviated => [
      "i.b.",
      "e.b."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "se-NO",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "vuos",
      "ma\N{U+014b}",
      "gask",
      "duor",
      "bear",
      "l\N{U+00e1}v",
      "sotn"
    ],
    day_format_narrow => [
      "V",
      "M",
      "G",
      "D",
      "B",
      "L",
      "S"
    ],
    day_format_wide => [
      "vuoss\N{U+00e1}rga",
      "ma\N{U+014b}\N{U+014b}eb\N{U+00e1}rga",
      "gaskavahkku",
      "duorasdat",
      "bearjadat",
      "l\N{U+00e1}vvardat",
      "sotnabeaivi"
    ],
    day_stand_alone_abbreviated => [
      "vuos",
      "ma\N{U+014b}",
      "gask",
      "duor",
      "bear",
      "l\N{U+00e1}v",
      "sotn"
    ],
    day_stand_alone_narrow => [
      "V",
      "M",
      "G",
      "D",
      "B",
      "L",
      "S"
    ],
    day_stand_alone_wide => [
      "vuoss\N{U+00e1}rga",
      "ma\N{U+014b}\N{U+014b}eb\N{U+00e1}rga",
      "gaskavahkku",
      "duorasdat",
      "bearjadat",
      "l\N{U+00e1}vvardat",
      "sotnabeaivi"
    ],
    era_abbreviated => [
      "o.Kr.",
      "m.Kr."
    ],
    era_narrow => [
      "o.Kr.",
      "m.Kr."
    ],
    era_wide => [
      "ovdal Kristtusa",
      "ma\N{U+014b}\N{U+014b}el Kristtusa"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%A, %B %d. b. %Y %H:%M:%S %Z",
    glibc_date_format => "%Y-%m-%d",
    glibc_datetime_format => "%a, %b %e. b. %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Northern Sami",
    month_format_abbreviated => [
      "o\N{U+0111}\N{U+0111}j",
      "guov",
      "njuk",
      "cuo",
      "mies",
      "geas",
      "suoi",
      "borg",
      "\N{U+010d}ak\N{U+010d}",
      "golg",
      "sk\N{U+00e1}b",
      "juov"
    ],
    month_format_narrow => [
      "O",
      "G",
      "N",
      "C",
      "M",
      "G",
      "S",
      "B",
      "\N{U+010c}",
      "G",
      "S",
      "J"
    ],
    month_format_wide => [
      "o\N{U+0111}\N{U+0111}ajagem\N{U+00e1}nnu",
      "guovvam\N{U+00e1}nnu",
      "njuk\N{U+010d}am\N{U+00e1}nnu",
      "cuo\N{U+014b}om\N{U+00e1}nnu",
      "miessem\N{U+00e1}nnu",
      "geassem\N{U+00e1}nnu",
      "suoidnem\N{U+00e1}nnu",
      "borgem\N{U+00e1}nnu",
      "\N{U+010d}ak\N{U+010d}am\N{U+00e1}nnu",
      "golggotm\N{U+00e1}nnu",
      "sk\N{U+00e1}bmam\N{U+00e1}nnu",
      "juovlam\N{U+00e1}nnu"
    ],
    month_stand_alone_abbreviated => [
      "o\N{U+0111}\N{U+0111}j",
      "guov",
      "njuk",
      "cuo",
      "mies",
      "geas",
      "suoi",
      "borg",
      "\N{U+010d}ak\N{U+010d}",
      "golg",
      "sk\N{U+00e1}b",
      "juov"
    ],
    month_stand_alone_narrow => [
      "O",
      "G",
      "N",
      "C",
      "M",
      "G",
      "S",
      "B",
      "\N{U+010c}",
      "G",
      "S",
      "J"
    ],
    month_stand_alone_wide => [
      "o\N{U+0111}\N{U+0111}ajagem\N{U+00e1}nnu",
      "guovvam\N{U+00e1}nnu",
      "njuk\N{U+010d}am\N{U+00e1}nnu",
      "cuo\N{U+014b}om\N{U+00e1}nnu",
      "miessem\N{U+00e1}nnu",
      "geassem\N{U+00e1}nnu",
      "suoidnem\N{U+00e1}nnu",
      "borgem\N{U+00e1}nnu",
      "\N{U+010d}ak\N{U+010d}am\N{U+00e1}nnu",
      "golggotm\N{U+00e1}nnu",
      "sk\N{U+00e1}bmam\N{U+00e1}nnu",
      "juovlam\N{U+00e1}nnu"
    ],
    name => "Northern Sami Norway",
    native_language => "davvis\N{U+00e1}megiella",
    native_name => "davvis\N{U+00e1}megiella Norga",
    native_script => undef,
    native_territory => "Norga",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "Norway",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ se-SE ]__
  {
    am_pm_abbreviated => [
      "i.b.",
      "e.b."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "se-SE",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "vuos",
      "ma\N{U+014b}",
      "gask",
      "duor",
      "bear",
      "l\N{U+00e1}v",
      "sotn"
    ],
    day_format_narrow => [
      "V",
      "M",
      "G",
      "D",
      "B",
      "L",
      "S"
    ],
    day_format_wide => [
      "vuoss\N{U+00e1}rga",
      "ma\N{U+014b}\N{U+014b}eb\N{U+00e1}rga",
      "gaskavahkku",
      "duorasdat",
      "bearjadat",
      "l\N{U+00e1}vvardat",
      "sotnabeaivi"
    ],
    day_stand_alone_abbreviated => [
      "vuos",
      "ma\N{U+014b}",
      "gask",
      "duor",
      "bear",
      "l\N{U+00e1}v",
      "sotn"
    ],
    day_stand_alone_narrow => [
      "V",
      "M",
      "G",
      "D",
      "B",
      "L",
      "S"
    ],
    day_stand_alone_wide => [
      "vuoss\N{U+00e1}rga",
      "ma\N{U+014b}\N{U+014b}eb\N{U+00e1}rga",
      "gaskavahkku",
      "duorasdat",
      "bearjadat",
      "l\N{U+00e1}vvardat",
      "sotnabeaivi"
    ],
    era_abbreviated => [
      "o.Kr.",
      "m.Kr."
    ],
    era_narrow => [
      "o.Kr.",
      "m.Kr."
    ],
    era_wide => [
      "ovdal Kristtusa",
      "ma\N{U+014b}\N{U+014b}el Kristtusa"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Northern Sami",
    month_format_abbreviated => [
      "o\N{U+0111}\N{U+0111}j",
      "guov",
      "njuk",
      "cuo",
      "mies",
      "geas",
      "suoi",
      "borg",
      "\N{U+010d}ak\N{U+010d}",
      "golg",
      "sk\N{U+00e1}b",
      "juov"
    ],
    month_format_narrow => [
      "O",
      "G",
      "N",
      "C",
      "M",
      "G",
      "S",
      "B",
      "\N{U+010c}",
      "G",
      "S",
      "J"
    ],
    month_format_wide => [
      "o\N{U+0111}\N{U+0111}ajagem\N{U+00e1}nnu",
      "guovvam\N{U+00e1}nnu",
      "njuk\N{U+010d}am\N{U+00e1}nnu",
      "cuo\N{U+014b}om\N{U+00e1}nnu",
      "miessem\N{U+00e1}nnu",
      "geassem\N{U+00e1}nnu",
      "suoidnem\N{U+00e1}nnu",
      "borgem\N{U+00e1}nnu",
      "\N{U+010d}ak\N{U+010d}am\N{U+00e1}nnu",
      "golggotm\N{U+00e1}nnu",
      "sk\N{U+00e1}bmam\N{U+00e1}nnu",
      "juovlam\N{U+00e1}nnu"
    ],
    month_stand_alone_abbreviated => [
      "o\N{U+0111}\N{U+0111}j",
      "guov",
      "njuk",
      "cuo",
      "mies",
      "geas",
      "suoi",
      "borg",
      "\N{U+010d}ak\N{U+010d}",
      "golg",
      "sk\N{U+00e1}b",
      "juov"
    ],
    month_stand_alone_narrow => [
      "O",
      "G",
      "N",
      "C",
      "M",
      "G",
      "S",
      "B",
      "\N{U+010c}",
      "G",
      "S",
      "J"
    ],
    month_stand_alone_wide => [
      "o\N{U+0111}\N{U+0111}ajagem\N{U+00e1}nnu",
      "guovvam\N{U+00e1}nnu",
      "njuk\N{U+010d}am\N{U+00e1}nnu",
      "cuo\N{U+014b}om\N{U+00e1}nnu",
      "miessem\N{U+00e1}nnu",
      "geassem\N{U+00e1}nnu",
      "suoidnem\N{U+00e1}nnu",
      "borgem\N{U+00e1}nnu",
      "\N{U+010d}ak\N{U+010d}am\N{U+00e1}nnu",
      "golggotm\N{U+00e1}nnu",
      "sk\N{U+00e1}bmam\N{U+00e1}nnu",
      "juovlam\N{U+00e1}nnu"
    ],
    name => "Northern Sami Sweden",
    native_language => "davvis\N{U+00e1}megiella",
    native_name => "davvis\N{U+00e1}megiella Ruo\N{U+0167}\N{U+0167}a",
    native_script => undef,
    native_territory => "Ruo\N{U+0167}\N{U+0167}a",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "Sweden",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ seh ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      HHmm => "HH:mm",
      HHmmss => "HH:mm:ss",
      Hm => "H:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMM => "MM/y",
      yMMM => "MMM 'de' y",
      yMMMEd => "E, d 'de' MMM 'de' y",
      yMMMM => "MMMM 'de' y",
      yMMMd => "d 'de' MMM 'de' y",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "seh",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "d 'de' MMM 'de' y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Pos",
      "Pir",
      "Tat",
      "Nai",
      "Sha",
      "Sab",
      "Dim"
    ],
    day_format_narrow => [
      "P",
      "C",
      "T",
      "N",
      "S",
      "S",
      "D"
    ],
    day_format_wide => [
      "Chiposi",
      "Chipiri",
      "Chitatu",
      "Chinai",
      "Chishanu",
      "Sabudu",
      "Dimingu"
    ],
    day_stand_alone_abbreviated => [
      "Pos",
      "Pir",
      "Tat",
      "Nai",
      "Sha",
      "Sab",
      "Dim"
    ],
    day_stand_alone_narrow => [
      "P",
      "C",
      "T",
      "N",
      "S",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "Chiposi",
      "Chipiri",
      "Chitatu",
      "Chinai",
      "Chishanu",
      "Sabudu",
      "Dimingu"
    ],
    era_abbreviated => [
      "AC",
      "AD"
    ],
    era_narrow => [
      "AC",
      "AD"
    ],
    era_wide => [
      "Antes de Cristo",
      "Anno Domini"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Sena",
    month_format_abbreviated => [
      "Jan",
      "Fev",
      "Mar",
      "Abr",
      "Mai",
      "Jun",
      "Jul",
      "Aug",
      "Set",
      "Otu",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Janeiro",
      "Fevreiro",
      "Marco",
      "Abril",
      "Maio",
      "Junho",
      "Julho",
      "Augusto",
      "Setembro",
      "Otubro",
      "Novembro",
      "Decembro"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Fev",
      "Mar",
      "Abr",
      "Mai",
      "Jun",
      "Jul",
      "Aug",
      "Set",
      "Otu",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Janeiro",
      "Fevreiro",
      "Marco",
      "Abril",
      "Maio",
      "Junho",
      "Julho",
      "Augusto",
      "Setembro",
      "Otubro",
      "Novembro",
      "Decembro"
    ],
    name => "Sena",
    native_language => "sena",
    native_name => "sena",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ seh-MZ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      HHmm => "HH:mm",
      HHmmss => "HH:mm:ss",
      Hm => "H:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMM => "MM/y",
      yMMM => "MMM 'de' y",
      yMMMEd => "E, d 'de' MMM 'de' y",
      yMMMM => "MMMM 'de' y",
      yMMMd => "d 'de' MMM 'de' y",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "seh-MZ",
    date_format_full => "EEEE, d 'de' MMMM 'de' y",
    date_format_long => "d 'de' MMMM 'de' y",
    date_format_medium => "d 'de' MMM 'de' y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Pos",
      "Pir",
      "Tat",
      "Nai",
      "Sha",
      "Sab",
      "Dim"
    ],
    day_format_narrow => [
      "P",
      "C",
      "T",
      "N",
      "S",
      "S",
      "D"
    ],
    day_format_wide => [
      "Chiposi",
      "Chipiri",
      "Chitatu",
      "Chinai",
      "Chishanu",
      "Sabudu",
      "Dimingu"
    ],
    day_stand_alone_abbreviated => [
      "Pos",
      "Pir",
      "Tat",
      "Nai",
      "Sha",
      "Sab",
      "Dim"
    ],
    day_stand_alone_narrow => [
      "P",
      "C",
      "T",
      "N",
      "S",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "Chiposi",
      "Chipiri",
      "Chitatu",
      "Chinai",
      "Chishanu",
      "Sabudu",
      "Dimingu"
    ],
    era_abbreviated => [
      "AC",
      "AD"
    ],
    era_narrow => [
      "AC",
      "AD"
    ],
    era_wide => [
      "Antes de Cristo",
      "Anno Domini"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Sena",
    month_format_abbreviated => [
      "Jan",
      "Fev",
      "Mar",
      "Abr",
      "Mai",
      "Jun",
      "Jul",
      "Aug",
      "Set",
      "Otu",
      "Nov",
      "Dec"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Janeiro",
      "Fevreiro",
      "Marco",
      "Abril",
      "Maio",
      "Junho",
      "Julho",
      "Augusto",
      "Setembro",
      "Otubro",
      "Novembro",
      "Decembro"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Fev",
      "Mar",
      "Abr",
      "Mai",
      "Jun",
      "Jul",
      "Aug",
      "Set",
      "Otu",
      "Nov",
      "Dec"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Janeiro",
      "Fevreiro",
      "Marco",
      "Abril",
      "Maio",
      "Junho",
      "Julho",
      "Augusto",
      "Setembro",
      "Otubro",
      "Novembro",
      "Decembro"
    ],
    name => "Sena Mozambique",
    native_language => "sena",
    native_name => "sena Mo\N{U+00e7}ambique",
    native_script => undef,
    native_territory => "Mo\N{U+00e7}ambique",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "Mozambique",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ses ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "M",
      MEd => "MM-dd, E",
      MMM => "MMM",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMd => "d/MM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ses",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Ati",
      "Ata",
      "Ala",
      "Alm",
      "Alz",
      "Asi",
      "Alh"
    ],
    day_format_narrow => [
      "T",
      "T",
      "L",
      "L",
      "L",
      "S",
      "H"
    ],
    day_format_wide => [
      "Atinni",
      "Atalaata",
      "Alarba",
      "Alhamiisa",
      "Alzuma",
      "Asibti",
      "Alhadi"
    ],
    day_stand_alone_abbreviated => [
      "Ati",
      "Ata",
      "Ala",
      "Alm",
      "Alz",
      "Asi",
      "Alh"
    ],
    day_stand_alone_narrow => [
      "T",
      "T",
      "L",
      "L",
      "L",
      "S",
      "H"
    ],
    day_stand_alone_wide => [
      "Atinni",
      "Atalaata",
      "Alarba",
      "Alhamiisa",
      "Alzuma",
      "Asibti",
      "Alhadi"
    ],
    era_abbreviated => [
      "IJ",
      "IZ"
    ],
    era_narrow => [
      "IJ",
      "IZ"
    ],
    era_wide => [
      "Isaa jine",
      "Isaa zamanoo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Koyraboro Senni",
    month_format_abbreviated => [
      "\N{U+017d}an",
      "Fee",
      "Mar",
      "Awi",
      "Me",
      "\N{U+017d}uw",
      "\N{U+017d}uy",
      "Ut",
      "Sek",
      "Okt",
      "Noo",
      "Dee"
    ],
    month_format_narrow => [
      "\N{U+017d}",
      "F",
      "M",
      "A",
      "M",
      "\N{U+017d}",
      "\N{U+017d}",
      "U",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "\N{U+017d}anwiye",
      "Feewiriye",
      "Marsi",
      "Awiril",
      "Me",
      "\N{U+017d}uwe\N{U+014b}",
      "\N{U+017d}uyye",
      "Ut",
      "Sektanbur",
      "Oktoobur",
      "Noowanbur",
      "Deesanbur"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+017d}an",
      "Fee",
      "Mar",
      "Awi",
      "Me",
      "\N{U+017d}uw",
      "\N{U+017d}uy",
      "Ut",
      "Sek",
      "Okt",
      "Noo",
      "Dee"
    ],
    month_stand_alone_narrow => [
      "\N{U+017d}",
      "F",
      "M",
      "A",
      "M",
      "\N{U+017d}",
      "\N{U+017d}",
      "U",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "\N{U+017d}anwiye",
      "Feewiriye",
      "Marsi",
      "Awiril",
      "Me",
      "\N{U+017d}uwe\N{U+014b}",
      "\N{U+017d}uyye",
      "Ut",
      "Sektanbur",
      "Oktoobur",
      "Noowanbur",
      "Deesanbur"
    ],
    name => "Koyraboro Senni",
    native_language => "Koyraboro senni",
    native_name => "Koyraboro senni",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "A1",
      "A2",
      "A3",
      "A4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Arrubu 1",
      "Arrubu 2",
      "Arrubu 3",
      "Arrubu 4"
    ],
    quarter_stand_alone_abbreviated => [
      "A1",
      "A2",
      "A3",
      "A4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Arrubu 1",
      "Arrubu 2",
      "Arrubu 3",
      "Arrubu 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ses-ML ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "M",
      MEd => "MM-dd, E",
      MMM => "MMM",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMd => "d/MM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "MM/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ses-ML",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Ati",
      "Ata",
      "Ala",
      "Alm",
      "Alz",
      "Asi",
      "Alh"
    ],
    day_format_narrow => [
      "T",
      "T",
      "L",
      "L",
      "L",
      "S",
      "H"
    ],
    day_format_wide => [
      "Atinni",
      "Atalaata",
      "Alarba",
      "Alhamiisa",
      "Alzuma",
      "Asibti",
      "Alhadi"
    ],
    day_stand_alone_abbreviated => [
      "Ati",
      "Ata",
      "Ala",
      "Alm",
      "Alz",
      "Asi",
      "Alh"
    ],
    day_stand_alone_narrow => [
      "T",
      "T",
      "L",
      "L",
      "L",
      "S",
      "H"
    ],
    day_stand_alone_wide => [
      "Atinni",
      "Atalaata",
      "Alarba",
      "Alhamiisa",
      "Alzuma",
      "Asibti",
      "Alhadi"
    ],
    era_abbreviated => [
      "IJ",
      "IZ"
    ],
    era_narrow => [
      "IJ",
      "IZ"
    ],
    era_wide => [
      "Isaa jine",
      "Isaa zamanoo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Koyraboro Senni",
    month_format_abbreviated => [
      "\N{U+017d}an",
      "Fee",
      "Mar",
      "Awi",
      "Me",
      "\N{U+017d}uw",
      "\N{U+017d}uy",
      "Ut",
      "Sek",
      "Okt",
      "Noo",
      "Dee"
    ],
    month_format_narrow => [
      "\N{U+017d}",
      "F",
      "M",
      "A",
      "M",
      "\N{U+017d}",
      "\N{U+017d}",
      "U",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "\N{U+017d}anwiye",
      "Feewiriye",
      "Marsi",
      "Awiril",
      "Me",
      "\N{U+017d}uwe\N{U+014b}",
      "\N{U+017d}uyye",
      "Ut",
      "Sektanbur",
      "Oktoobur",
      "Noowanbur",
      "Deesanbur"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+017d}an",
      "Fee",
      "Mar",
      "Awi",
      "Me",
      "\N{U+017d}uw",
      "\N{U+017d}uy",
      "Ut",
      "Sek",
      "Okt",
      "Noo",
      "Dee"
    ],
    month_stand_alone_narrow => [
      "\N{U+017d}",
      "F",
      "M",
      "A",
      "M",
      "\N{U+017d}",
      "\N{U+017d}",
      "U",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "\N{U+017d}anwiye",
      "Feewiriye",
      "Marsi",
      "Awiril",
      "Me",
      "\N{U+017d}uwe\N{U+014b}",
      "\N{U+017d}uyye",
      "Ut",
      "Sektanbur",
      "Oktoobur",
      "Noowanbur",
      "Deesanbur"
    ],
    name => "Koyraboro Senni Mali",
    native_language => "Koyraboro senni",
    native_name => "Koyraboro senni Maali",
    native_script => undef,
    native_territory => "Maali",
    native_variant => undef,
    quarter_format_abbreviated => [
      "A1",
      "A2",
      "A3",
      "A4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Arrubu 1",
      "Arrubu 2",
      "Arrubu 3",
      "Arrubu 4"
    ],
    quarter_stand_alone_abbreviated => [
      "A1",
      "A2",
      "A3",
      "A4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Arrubu 1",
      "Arrubu 2",
      "Arrubu 3",
      "Arrubu 4"
    ],
    script => undef,
    territory => "Mali",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ sg ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "M",
      MEd => "MM-dd, E",
      MMM => "MMM",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMd => "d/MM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "sg",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Bk2",
      "Bk3",
      "Bk4",
      "Bk5",
      "L\N{U+00e2}p",
      "L\N{U+00e2}y",
      "Bk1"
    ],
    day_format_narrow => [
      "S",
      "T",
      "S",
      "K",
      "P",
      "Y",
      "K"
    ],
    day_format_wide => [
      "B\N{U+00ef}kua-\N{U+00fb}se",
      "B\N{U+00ef}kua-pt\N{U+00e2}",
      "B\N{U+00ef}kua-us\N{U+00ef}\N{U+00f6}",
      "B\N{U+00ef}kua-ok\N{U+00fc}",
      "L\N{U+00e2}p\N{U+00f4}s\N{U+00f6}",
      "L\N{U+00e2}yenga",
      "Bikua-\N{U+00f4}ko"
    ],
    day_stand_alone_abbreviated => [
      "Bk2",
      "Bk3",
      "Bk4",
      "Bk5",
      "L\N{U+00e2}p",
      "L\N{U+00e2}y",
      "Bk1"
    ],
    day_stand_alone_narrow => [
      "S",
      "T",
      "S",
      "K",
      "P",
      "Y",
      "K"
    ],
    day_stand_alone_wide => [
      "B\N{U+00ef}kua-\N{U+00fb}se",
      "B\N{U+00ef}kua-pt\N{U+00e2}",
      "B\N{U+00ef}kua-us\N{U+00ef}\N{U+00f6}",
      "B\N{U+00ef}kua-ok\N{U+00fc}",
      "L\N{U+00e2}p\N{U+00f4}s\N{U+00f6}",
      "L\N{U+00e2}yenga",
      "Bikua-\N{U+00f4}ko"
    ],
    era_abbreviated => [
      "KnK",
      "NpK"
    ],
    era_narrow => [
      "KnK",
      "NpK"
    ],
    era_wide => [
      "K\N{U+00f4}zo na Kr\N{U+00ee}stu",
      "Na pek\N{U+00f4} t\N{U+00ee} Kr\N{U+00ee}stu"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Sango",
    month_format_abbreviated => [
      "Nye",
      "Ful",
      "Mb\N{U+00e4}",
      "Ngu",
      "B\N{U+00ea}l",
      "F\N{U+00f6}n",
      "Len",
      "K\N{U+00fc}k",
      "Mvu",
      "Ngb",
      "Nab",
      "Kak"
    ],
    month_format_narrow => [
      "N",
      "F",
      "M",
      "N",
      "B",
      "F",
      "L",
      "K",
      "M",
      "N",
      "N",
      "K"
    ],
    month_format_wide => [
      "Nyenye",
      "Fulund\N{U+00ef}gi",
      "Mb\N{U+00e4}ng\N{U+00fc}",
      "Ngub\N{U+00f9}e",
      "B\N{U+00ea}l\N{U+00e4}w\N{U+00fc}",
      "F\N{U+00f6}ndo",
      "Lengua",
      "K\N{U+00fc}k\N{U+00fc}r\N{U+00fc}",
      "Mvuka",
      "Ngberere",
      "Nab\N{U+00e4}nd\N{U+00fc}ru",
      "Kakauka"
    ],
    month_stand_alone_abbreviated => [
      "Nye",
      "Ful",
      "Mb\N{U+00e4}",
      "Ngu",
      "B\N{U+00ea}l",
      "F\N{U+00f6}n",
      "Len",
      "K\N{U+00fc}k",
      "Mvu",
      "Ngb",
      "Nab",
      "Kak"
    ],
    month_stand_alone_narrow => [
      "N",
      "F",
      "M",
      "N",
      "B",
      "F",
      "L",
      "K",
      "M",
      "N",
      "N",
      "K"
    ],
    month_stand_alone_wide => [
      "Nyenye",
      "Fulund\N{U+00ef}gi",
      "Mb\N{U+00e4}ng\N{U+00fc}",
      "Ngub\N{U+00f9}e",
      "B\N{U+00ea}l\N{U+00e4}w\N{U+00fc}",
      "F\N{U+00f6}ndo",
      "Lengua",
      "K\N{U+00fc}k\N{U+00fc}r\N{U+00fc}",
      "Mvuka",
      "Ngberere",
      "Nab\N{U+00e4}nd\N{U+00fc}ru",
      "Kakauka"
    ],
    name => "Sango",
    native_language => "S\N{U+00e4}ng\N{U+00f6}",
    native_name => "S\N{U+00e4}ng\N{U+00f6}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "F4\N{U+2013}1",
      "F4\N{U+2013}2",
      "F4\N{U+2013}3",
      "F4\N{U+2013}4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "F\N{U+00e2}ngbis\N{U+00ef}\N{U+00f6} \N{U+00f4}ko",
      "F\N{U+00e2}ngbis\N{U+00ef}\N{U+00f6} \N{U+00fb}se",
      "F\N{U+00e2}ngbis\N{U+00ef}\N{U+00f6} ot\N{U+00e2}",
      "F\N{U+00e2}ngbis\N{U+00ef}\N{U+00f6} us\N{U+00ef}\N{U+00f6}"
    ],
    quarter_stand_alone_abbreviated => [
      "F4\N{U+2013}1",
      "F4\N{U+2013}2",
      "F4\N{U+2013}3",
      "F4\N{U+2013}4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "F\N{U+00e2}ngbis\N{U+00ef}\N{U+00f6} \N{U+00f4}ko",
      "F\N{U+00e2}ngbis\N{U+00ef}\N{U+00f6} \N{U+00fb}se",
      "F\N{U+00e2}ngbis\N{U+00ef}\N{U+00f6} ot\N{U+00e2}",
      "F\N{U+00e2}ngbis\N{U+00ef}\N{U+00f6} us\N{U+00ef}\N{U+00f6}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ sg-CF ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "M",
      MEd => "MM-dd, E",
      MMM => "MMM",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMd => "d/MM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "sg-CF",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Bk2",
      "Bk3",
      "Bk4",
      "Bk5",
      "L\N{U+00e2}p",
      "L\N{U+00e2}y",
      "Bk1"
    ],
    day_format_narrow => [
      "S",
      "T",
      "S",
      "K",
      "P",
      "Y",
      "K"
    ],
    day_format_wide => [
      "B\N{U+00ef}kua-\N{U+00fb}se",
      "B\N{U+00ef}kua-pt\N{U+00e2}",
      "B\N{U+00ef}kua-us\N{U+00ef}\N{U+00f6}",
      "B\N{U+00ef}kua-ok\N{U+00fc}",
      "L\N{U+00e2}p\N{U+00f4}s\N{U+00f6}",
      "L\N{U+00e2}yenga",
      "Bikua-\N{U+00f4}ko"
    ],
    day_stand_alone_abbreviated => [
      "Bk2",
      "Bk3",
      "Bk4",
      "Bk5",
      "L\N{U+00e2}p",
      "L\N{U+00e2}y",
      "Bk1"
    ],
    day_stand_alone_narrow => [
      "S",
      "T",
      "S",
      "K",
      "P",
      "Y",
      "K"
    ],
    day_stand_alone_wide => [
      "B\N{U+00ef}kua-\N{U+00fb}se",
      "B\N{U+00ef}kua-pt\N{U+00e2}",
      "B\N{U+00ef}kua-us\N{U+00ef}\N{U+00f6}",
      "B\N{U+00ef}kua-ok\N{U+00fc}",
      "L\N{U+00e2}p\N{U+00f4}s\N{U+00f6}",
      "L\N{U+00e2}yenga",
      "Bikua-\N{U+00f4}ko"
    ],
    era_abbreviated => [
      "KnK",
      "NpK"
    ],
    era_narrow => [
      "KnK",
      "NpK"
    ],
    era_wide => [
      "K\N{U+00f4}zo na Kr\N{U+00ee}stu",
      "Na pek\N{U+00f4} t\N{U+00ee} Kr\N{U+00ee}stu"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Sango",
    month_format_abbreviated => [
      "Nye",
      "Ful",
      "Mb\N{U+00e4}",
      "Ngu",
      "B\N{U+00ea}l",
      "F\N{U+00f6}n",
      "Len",
      "K\N{U+00fc}k",
      "Mvu",
      "Ngb",
      "Nab",
      "Kak"
    ],
    month_format_narrow => [
      "N",
      "F",
      "M",
      "N",
      "B",
      "F",
      "L",
      "K",
      "M",
      "N",
      "N",
      "K"
    ],
    month_format_wide => [
      "Nyenye",
      "Fulund\N{U+00ef}gi",
      "Mb\N{U+00e4}ng\N{U+00fc}",
      "Ngub\N{U+00f9}e",
      "B\N{U+00ea}l\N{U+00e4}w\N{U+00fc}",
      "F\N{U+00f6}ndo",
      "Lengua",
      "K\N{U+00fc}k\N{U+00fc}r\N{U+00fc}",
      "Mvuka",
      "Ngberere",
      "Nab\N{U+00e4}nd\N{U+00fc}ru",
      "Kakauka"
    ],
    month_stand_alone_abbreviated => [
      "Nye",
      "Ful",
      "Mb\N{U+00e4}",
      "Ngu",
      "B\N{U+00ea}l",
      "F\N{U+00f6}n",
      "Len",
      "K\N{U+00fc}k",
      "Mvu",
      "Ngb",
      "Nab",
      "Kak"
    ],
    month_stand_alone_narrow => [
      "N",
      "F",
      "M",
      "N",
      "B",
      "F",
      "L",
      "K",
      "M",
      "N",
      "N",
      "K"
    ],
    month_stand_alone_wide => [
      "Nyenye",
      "Fulund\N{U+00ef}gi",
      "Mb\N{U+00e4}ng\N{U+00fc}",
      "Ngub\N{U+00f9}e",
      "B\N{U+00ea}l\N{U+00e4}w\N{U+00fc}",
      "F\N{U+00f6}ndo",
      "Lengua",
      "K\N{U+00fc}k\N{U+00fc}r\N{U+00fc}",
      "Mvuka",
      "Ngberere",
      "Nab\N{U+00e4}nd\N{U+00fc}ru",
      "Kakauka"
    ],
    name => "Sango Central African Republic",
    native_language => "S\N{U+00e4}ng\N{U+00f6}",
    native_name => "S\N{U+00e4}ng\N{U+00f6} K\N{U+00f6}d\N{U+00f6}r\N{U+00f6}s\N{U+00ea}se t\N{U+00ee} B\N{U+00ea}afr\N{U+00ee}ka",
    native_script => undef,
    native_territory => "K\N{U+00f6}d\N{U+00f6}r\N{U+00f6}s\N{U+00ea}se t\N{U+00ee} B\N{U+00ea}afr\N{U+00ee}ka",
    native_variant => undef,
    quarter_format_abbreviated => [
      "F4\N{U+2013}1",
      "F4\N{U+2013}2",
      "F4\N{U+2013}3",
      "F4\N{U+2013}4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "F\N{U+00e2}ngbis\N{U+00ef}\N{U+00f6} \N{U+00f4}ko",
      "F\N{U+00e2}ngbis\N{U+00ef}\N{U+00f6} \N{U+00fb}se",
      "F\N{U+00e2}ngbis\N{U+00ef}\N{U+00f6} ot\N{U+00e2}",
      "F\N{U+00e2}ngbis\N{U+00ef}\N{U+00f6} us\N{U+00ef}\N{U+00f6}"
    ],
    quarter_stand_alone_abbreviated => [
      "F4\N{U+2013}1",
      "F4\N{U+2013}2",
      "F4\N{U+2013}3",
      "F4\N{U+2013}4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "F\N{U+00e2}ngbis\N{U+00ef}\N{U+00f6} \N{U+00f4}ko",
      "F\N{U+00e2}ngbis\N{U+00ef}\N{U+00f6} \N{U+00fb}se",
      "F\N{U+00e2}ngbis\N{U+00ef}\N{U+00f6} ot\N{U+00e2}",
      "F\N{U+00e2}ngbis\N{U+00ef}\N{U+00f6} us\N{U+00ef}\N{U+00f6}"
    ],
    script => undef,
    territory => "Central African Republic",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ shi ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "M",
      MEd => "MM-dd, E",
      MMM => "MMM",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMd => "d/MM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "shi",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+2d30}\N{U+2d62}\N{U+2d4f}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d61}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d4e}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d39}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d30}"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "\N{U+2d30}\N{U+2d62}\N{U+2d4f}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d4f}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d61}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d59}\N{U+2d49}\N{U+2d4e}\N{U+2d61}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d39}\N{U+2d62}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d30}\N{U+2d4e}\N{U+2d30}\N{U+2d59}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+2d30}\N{U+2d62}\N{U+2d4f}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d61}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d4e}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d39}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d30}"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "\N{U+2d30}\N{U+2d62}\N{U+2d4f}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d4f}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d61}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d59}\N{U+2d49}\N{U+2d4e}\N{U+2d61}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d39}\N{U+2d62}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d30}\N{U+2d4e}\N{U+2d30}\N{U+2d59}"
    ],
    era_abbreviated => [
      "\N{U+2d37}\N{U+2d30}\N{U+2d44}",
      "\N{U+2d37}\N{U+2d3c}\N{U+2d44}"
    ],
    era_narrow => [
      "\N{U+2d37}\N{U+2d30}\N{U+2d44}",
      "\N{U+2d37}\N{U+2d3c}\N{U+2d44}"
    ],
    era_wide => [
      "\N{U+2d37}\N{U+2d30}\N{U+2d5c} \N{U+2d4f} \N{U+2d44}\N{U+2d49}\N{U+2d59}\N{U+2d30}",
      "\N{U+2d37}\N{U+2d3c}\N{U+2d3c}\N{U+2d49}\N{U+2d54} \N{U+2d4f} \N{U+2d44}\N{U+2d49}\N{U+2d59}\N{U+2d30}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Tachelhit",
    month_format_abbreviated => [
      "\N{U+2d49}\N{U+2d4f}\N{U+2d4f}",
      "\N{U+2d31}\N{U+2d55}\N{U+2d30}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d55}",
      "\N{U+2d49}\N{U+2d31}\N{U+2d54}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d62}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4f}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4d}",
      "\N{U+2d56}\N{U+2d53}\N{U+2d5b}",
      "\N{U+2d5b}\N{U+2d53}\N{U+2d5c}",
      "\N{U+2d3d}\N{U+2d5c}\N{U+2d53}",
      "\N{U+2d4f}\N{U+2d53}\N{U+2d61}",
      "\N{U+2d37}\N{U+2d53}\N{U+2d4a}"
    ],
    month_format_narrow => [
      "\N{U+2d49}",
      "\N{U+2d31}",
      "\N{U+2d4e}",
      "\N{U+2d49}",
      "\N{U+2d4e}",
      "\N{U+2d62}",
      "\N{U+2d62}",
      "\N{U+2d56}",
      "\N{U+2d5b}",
      "\N{U+2d3d}",
      "\N{U+2d4f}",
      "\N{U+2d37}"
    ],
    month_format_wide => [
      "\N{U+2d49}\N{U+2d4f}\N{U+2d4f}\N{U+2d30}\N{U+2d62}\N{U+2d54}",
      "\N{U+2d31}\N{U+2d55}\N{U+2d30}\N{U+2d62}\N{U+2d55}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d55}\N{U+2d5a}",
      "\N{U+2d49}\N{U+2d31}\N{U+2d54}\N{U+2d49}\N{U+2d54}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d62}\N{U+2d62}\N{U+2d53}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4f}\N{U+2d62}\N{U+2d53}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4d}\N{U+2d62}\N{U+2d53}\N{U+2d63}",
      "\N{U+2d56}\N{U+2d53}\N{U+2d5b}\N{U+2d5c}",
      "\N{U+2d5b}\N{U+2d53}\N{U+2d5c}\N{U+2d30}\N{U+2d4f}\N{U+2d31}\N{U+2d49}\N{U+2d54}",
      "\N{U+2d3d}\N{U+2d5c}\N{U+2d53}\N{U+2d31}\N{U+2d54}",
      "\N{U+2d4f}\N{U+2d53}\N{U+2d61}\N{U+2d30}\N{U+2d4f}\N{U+2d31}\N{U+2d49}\N{U+2d54}",
      "\N{U+2d37}\N{U+2d53}\N{U+2d4a}\N{U+2d30}\N{U+2d4f}\N{U+2d31}\N{U+2d49}\N{U+2d54}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+2d49}\N{U+2d4f}\N{U+2d4f}",
      "\N{U+2d31}\N{U+2d55}\N{U+2d30}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d55}",
      "\N{U+2d49}\N{U+2d31}\N{U+2d54}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d62}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4f}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4d}",
      "\N{U+2d56}\N{U+2d53}\N{U+2d5b}",
      "\N{U+2d5b}\N{U+2d53}\N{U+2d5c}",
      "\N{U+2d3d}\N{U+2d5c}\N{U+2d53}",
      "\N{U+2d4f}\N{U+2d53}\N{U+2d61}",
      "\N{U+2d37}\N{U+2d53}\N{U+2d4a}"
    ],
    month_stand_alone_narrow => [
      "\N{U+2d49}",
      "\N{U+2d31}",
      "\N{U+2d4e}",
      "\N{U+2d49}",
      "\N{U+2d4e}",
      "\N{U+2d62}",
      "\N{U+2d62}",
      "\N{U+2d56}",
      "\N{U+2d5b}",
      "\N{U+2d3d}",
      "\N{U+2d4f}",
      "\N{U+2d37}"
    ],
    month_stand_alone_wide => [
      "\N{U+2d49}\N{U+2d4f}\N{U+2d4f}\N{U+2d30}\N{U+2d62}\N{U+2d54}",
      "\N{U+2d31}\N{U+2d55}\N{U+2d30}\N{U+2d62}\N{U+2d55}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d55}\N{U+2d5a}",
      "\N{U+2d49}\N{U+2d31}\N{U+2d54}\N{U+2d49}\N{U+2d54}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d62}\N{U+2d62}\N{U+2d53}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4f}\N{U+2d62}\N{U+2d53}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4d}\N{U+2d62}\N{U+2d53}\N{U+2d63}",
      "\N{U+2d56}\N{U+2d53}\N{U+2d5b}\N{U+2d5c}",
      "\N{U+2d5b}\N{U+2d53}\N{U+2d5c}\N{U+2d30}\N{U+2d4f}\N{U+2d31}\N{U+2d49}\N{U+2d54}",
      "\N{U+2d3d}\N{U+2d5c}\N{U+2d53}\N{U+2d31}\N{U+2d54}",
      "\N{U+2d4f}\N{U+2d53}\N{U+2d61}\N{U+2d30}\N{U+2d4f}\N{U+2d31}\N{U+2d49}\N{U+2d54}",
      "\N{U+2d37}\N{U+2d53}\N{U+2d4a}\N{U+2d30}\N{U+2d4f}\N{U+2d31}\N{U+2d49}\N{U+2d54}"
    ],
    name => "Tachelhit",
    native_language => "\N{U+2d5c}\N{U+2d30}\N{U+2d5b}\N{U+2d4d}\N{U+2d43}\N{U+2d49}\N{U+2d5c}",
    native_name => "\N{U+2d5c}\N{U+2d30}\N{U+2d5b}\N{U+2d4d}\N{U+2d43}\N{U+2d49}\N{U+2d5c}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+2d30}\N{U+2d3d} 1",
      "\N{U+2d30}\N{U+2d3d} 2",
      "\N{U+2d30}\N{U+2d3d} 3",
      "\N{U+2d30}\N{U+2d3d} 4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 1",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 2",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 3",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 4"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+2d30}\N{U+2d3d} 1",
      "\N{U+2d30}\N{U+2d3d} 2",
      "\N{U+2d30}\N{U+2d3d} 3",
      "\N{U+2d30}\N{U+2d3d} 4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 1",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 2",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 3",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ shi-Latn ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "M",
      MEd => "MM-dd, E",
      MMM => "MMM",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMd => "d/MM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "shi-Latn",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "ayn",
      "asi",
      "ak\N{U+1e5b}",
      "akw",
      "asim",
      "asi\N{U+1e0d}",
      "asa"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "aynas",
      "asinas",
      "ak\N{U+1e5b}as",
      "akwas",
      "asimwas",
      "asi\N{U+1e0d}yas",
      "asamas"
    ],
    day_stand_alone_abbreviated => [
      "ayn",
      "asi",
      "ak\N{U+1e5b}",
      "akw",
      "asim",
      "asi\N{U+1e0d}",
      "asa"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "aynas",
      "asinas",
      "ak\N{U+1e5b}as",
      "akwas",
      "asimwas",
      "asi\N{U+1e0d}yas",
      "asamas"
    ],
    era_abbreviated => [
      "da\N{U+025b}",
      "df\N{U+025b}"
    ],
    era_narrow => [
      "da\N{U+025b}",
      "df\N{U+025b}"
    ],
    era_wide => [
      "dat n \N{U+025b}isa",
      "dffir n \N{U+025b}isa"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Tachelhit",
    month_format_abbreviated => [
      "inn",
      "b\N{U+1e5b}a",
      "ma\N{U+1e5b}",
      "ibr",
      "may",
      "yun",
      "yul",
      "\N{U+0263}uc",
      "cut",
      "ktu",
      "nuw",
      "duj"
    ],
    month_format_narrow => [
      "i",
      "b",
      "m",
      "i",
      "m",
      "y",
      "y",
      "\N{U+0263}",
      "c",
      "k",
      "n",
      "d"
    ],
    month_format_wide => [
      "innayr",
      "b\N{U+1e5b}ay\N{U+1e5b}",
      "ma\N{U+1e5b}\N{U+1e63}",
      "ibrir",
      "mayyu",
      "yunyu",
      "yulyuz",
      "\N{U+0263}uct",
      "cutanbir",
      "ktubr",
      "nuwanbir",
      "dujanbir"
    ],
    month_stand_alone_abbreviated => [
      "inn",
      "b\N{U+1e5b}a",
      "ma\N{U+1e5b}",
      "ibr",
      "may",
      "yun",
      "yul",
      "\N{U+0263}uc",
      "cut",
      "ktu",
      "nuw",
      "duj"
    ],
    month_stand_alone_narrow => [
      "i",
      "b",
      "m",
      "i",
      "m",
      "y",
      "y",
      "\N{U+0263}",
      "c",
      "k",
      "n",
      "d"
    ],
    month_stand_alone_wide => [
      "innayr",
      "b\N{U+1e5b}ay\N{U+1e5b}",
      "ma\N{U+1e5b}\N{U+1e63}",
      "ibrir",
      "mayyu",
      "yunyu",
      "yulyuz",
      "\N{U+0263}uct",
      "cutanbir",
      "ktubr",
      "nuwanbir",
      "dujanbir"
    ],
    name => "Tachelhit Latin",
    native_language => "Tashel\N{U+1e25}iyt",
    native_name => "Tashel\N{U+1e25}iyt Latn",
    native_script => "Latn",
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "ak 1",
      "ak 2",
      "ak 3",
      "ak 4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "ak\N{U+1e5b}a\N{U+1e0d}yur 1",
      "ak\N{U+1e5b}a\N{U+1e0d}yur 2",
      "ak\N{U+1e5b}a\N{U+1e0d}yur 3",
      "ak\N{U+1e5b}a\N{U+1e0d}yur 4"
    ],
    quarter_stand_alone_abbreviated => [
      "ak 1",
      "ak 2",
      "ak 3",
      "ak 4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "ak\N{U+1e5b}a\N{U+1e0d}yur 1",
      "ak\N{U+1e5b}a\N{U+1e0d}yur 2",
      "ak\N{U+1e5b}a\N{U+1e0d}yur 3",
      "ak\N{U+1e5b}a\N{U+1e0d}yur 4"
    ],
    script => "Latin",
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ shi-Latn-MA ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "M",
      MEd => "MM-dd, E",
      MMM => "MMM",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMd => "d/MM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "shi-Latn-MA",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "ayn",
      "asi",
      "ak\N{U+1e5b}",
      "akw",
      "asim",
      "asi\N{U+1e0d}",
      "asa"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "aynas",
      "asinas",
      "ak\N{U+1e5b}as",
      "akwas",
      "asimwas",
      "asi\N{U+1e0d}yas",
      "asamas"
    ],
    day_stand_alone_abbreviated => [
      "ayn",
      "asi",
      "ak\N{U+1e5b}",
      "akw",
      "asim",
      "asi\N{U+1e0d}",
      "asa"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "aynas",
      "asinas",
      "ak\N{U+1e5b}as",
      "akwas",
      "asimwas",
      "asi\N{U+1e0d}yas",
      "asamas"
    ],
    era_abbreviated => [
      "da\N{U+025b}",
      "df\N{U+025b}"
    ],
    era_narrow => [
      "da\N{U+025b}",
      "df\N{U+025b}"
    ],
    era_wide => [
      "dat n \N{U+025b}isa",
      "dffir n \N{U+025b}isa"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Tachelhit",
    month_format_abbreviated => [
      "inn",
      "b\N{U+1e5b}a",
      "ma\N{U+1e5b}",
      "ibr",
      "may",
      "yun",
      "yul",
      "\N{U+0263}uc",
      "cut",
      "ktu",
      "nuw",
      "duj"
    ],
    month_format_narrow => [
      "i",
      "b",
      "m",
      "i",
      "m",
      "y",
      "y",
      "\N{U+0263}",
      "c",
      "k",
      "n",
      "d"
    ],
    month_format_wide => [
      "innayr",
      "b\N{U+1e5b}ay\N{U+1e5b}",
      "ma\N{U+1e5b}\N{U+1e63}",
      "ibrir",
      "mayyu",
      "yunyu",
      "yulyuz",
      "\N{U+0263}uct",
      "cutanbir",
      "ktubr",
      "nuwanbir",
      "dujanbir"
    ],
    month_stand_alone_abbreviated => [
      "inn",
      "b\N{U+1e5b}a",
      "ma\N{U+1e5b}",
      "ibr",
      "may",
      "yun",
      "yul",
      "\N{U+0263}uc",
      "cut",
      "ktu",
      "nuw",
      "duj"
    ],
    month_stand_alone_narrow => [
      "i",
      "b",
      "m",
      "i",
      "m",
      "y",
      "y",
      "\N{U+0263}",
      "c",
      "k",
      "n",
      "d"
    ],
    month_stand_alone_wide => [
      "innayr",
      "b\N{U+1e5b}ay\N{U+1e5b}",
      "ma\N{U+1e5b}\N{U+1e63}",
      "ibrir",
      "mayyu",
      "yunyu",
      "yulyuz",
      "\N{U+0263}uct",
      "cutanbir",
      "ktubr",
      "nuwanbir",
      "dujanbir"
    ],
    name => "Tachelhit Morocco Latin",
    native_language => "Tashel\N{U+1e25}iyt",
    native_name => "Tashel\N{U+1e25}iyt lm\N{U+0263}rib Latn",
    native_script => "Latn",
    native_territory => "lm\N{U+0263}rib",
    native_variant => undef,
    quarter_format_abbreviated => [
      "ak 1",
      "ak 2",
      "ak 3",
      "ak 4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "ak\N{U+1e5b}a\N{U+1e0d}yur 1",
      "ak\N{U+1e5b}a\N{U+1e0d}yur 2",
      "ak\N{U+1e5b}a\N{U+1e0d}yur 3",
      "ak\N{U+1e5b}a\N{U+1e0d}yur 4"
    ],
    quarter_stand_alone_abbreviated => [
      "ak 1",
      "ak 2",
      "ak 3",
      "ak 4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "ak\N{U+1e5b}a\N{U+1e0d}yur 1",
      "ak\N{U+1e5b}a\N{U+1e0d}yur 2",
      "ak\N{U+1e5b}a\N{U+1e0d}yur 3",
      "ak\N{U+1e5b}a\N{U+1e0d}yur 4"
    ],
    script => "Latin",
    territory => "Morocco",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ shi-Tfng ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "M",
      MEd => "MM-dd, E",
      MMM => "MMM",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMd => "d/MM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "shi-Tfng",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+2d30}\N{U+2d62}\N{U+2d4f}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d61}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d4e}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d39}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d30}"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "\N{U+2d30}\N{U+2d62}\N{U+2d4f}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d4f}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d61}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d59}\N{U+2d49}\N{U+2d4e}\N{U+2d61}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d39}\N{U+2d62}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d30}\N{U+2d4e}\N{U+2d30}\N{U+2d59}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+2d30}\N{U+2d62}\N{U+2d4f}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d61}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d4e}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d39}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d30}"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "\N{U+2d30}\N{U+2d62}\N{U+2d4f}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d4f}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d61}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d59}\N{U+2d49}\N{U+2d4e}\N{U+2d61}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d39}\N{U+2d62}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d30}\N{U+2d4e}\N{U+2d30}\N{U+2d59}"
    ],
    era_abbreviated => [
      "\N{U+2d37}\N{U+2d30}\N{U+2d44}",
      "\N{U+2d37}\N{U+2d3c}\N{U+2d44}"
    ],
    era_narrow => [
      "\N{U+2d37}\N{U+2d30}\N{U+2d44}",
      "\N{U+2d37}\N{U+2d3c}\N{U+2d44}"
    ],
    era_wide => [
      "\N{U+2d37}\N{U+2d30}\N{U+2d5c} \N{U+2d4f} \N{U+2d44}\N{U+2d49}\N{U+2d59}\N{U+2d30}",
      "\N{U+2d37}\N{U+2d3c}\N{U+2d3c}\N{U+2d49}\N{U+2d54} \N{U+2d4f} \N{U+2d44}\N{U+2d49}\N{U+2d59}\N{U+2d30}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Tachelhit",
    month_format_abbreviated => [
      "\N{U+2d49}\N{U+2d4f}\N{U+2d4f}",
      "\N{U+2d31}\N{U+2d55}\N{U+2d30}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d55}",
      "\N{U+2d49}\N{U+2d31}\N{U+2d54}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d62}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4f}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4d}",
      "\N{U+2d56}\N{U+2d53}\N{U+2d5b}",
      "\N{U+2d5b}\N{U+2d53}\N{U+2d5c}",
      "\N{U+2d3d}\N{U+2d5c}\N{U+2d53}",
      "\N{U+2d4f}\N{U+2d53}\N{U+2d61}",
      "\N{U+2d37}\N{U+2d53}\N{U+2d4a}"
    ],
    month_format_narrow => [
      "\N{U+2d49}",
      "\N{U+2d31}",
      "\N{U+2d4e}",
      "\N{U+2d49}",
      "\N{U+2d4e}",
      "\N{U+2d62}",
      "\N{U+2d62}",
      "\N{U+2d56}",
      "\N{U+2d5b}",
      "\N{U+2d3d}",
      "\N{U+2d4f}",
      "\N{U+2d37}"
    ],
    month_format_wide => [
      "\N{U+2d49}\N{U+2d4f}\N{U+2d4f}\N{U+2d30}\N{U+2d62}\N{U+2d54}",
      "\N{U+2d31}\N{U+2d55}\N{U+2d30}\N{U+2d62}\N{U+2d55}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d55}\N{U+2d5a}",
      "\N{U+2d49}\N{U+2d31}\N{U+2d54}\N{U+2d49}\N{U+2d54}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d62}\N{U+2d62}\N{U+2d53}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4f}\N{U+2d62}\N{U+2d53}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4d}\N{U+2d62}\N{U+2d53}\N{U+2d63}",
      "\N{U+2d56}\N{U+2d53}\N{U+2d5b}\N{U+2d5c}",
      "\N{U+2d5b}\N{U+2d53}\N{U+2d5c}\N{U+2d30}\N{U+2d4f}\N{U+2d31}\N{U+2d49}\N{U+2d54}",
      "\N{U+2d3d}\N{U+2d5c}\N{U+2d53}\N{U+2d31}\N{U+2d54}",
      "\N{U+2d4f}\N{U+2d53}\N{U+2d61}\N{U+2d30}\N{U+2d4f}\N{U+2d31}\N{U+2d49}\N{U+2d54}",
      "\N{U+2d37}\N{U+2d53}\N{U+2d4a}\N{U+2d30}\N{U+2d4f}\N{U+2d31}\N{U+2d49}\N{U+2d54}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+2d49}\N{U+2d4f}\N{U+2d4f}",
      "\N{U+2d31}\N{U+2d55}\N{U+2d30}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d55}",
      "\N{U+2d49}\N{U+2d31}\N{U+2d54}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d62}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4f}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4d}",
      "\N{U+2d56}\N{U+2d53}\N{U+2d5b}",
      "\N{U+2d5b}\N{U+2d53}\N{U+2d5c}",
      "\N{U+2d3d}\N{U+2d5c}\N{U+2d53}",
      "\N{U+2d4f}\N{U+2d53}\N{U+2d61}",
      "\N{U+2d37}\N{U+2d53}\N{U+2d4a}"
    ],
    month_stand_alone_narrow => [
      "\N{U+2d49}",
      "\N{U+2d31}",
      "\N{U+2d4e}",
      "\N{U+2d49}",
      "\N{U+2d4e}",
      "\N{U+2d62}",
      "\N{U+2d62}",
      "\N{U+2d56}",
      "\N{U+2d5b}",
      "\N{U+2d3d}",
      "\N{U+2d4f}",
      "\N{U+2d37}"
    ],
    month_stand_alone_wide => [
      "\N{U+2d49}\N{U+2d4f}\N{U+2d4f}\N{U+2d30}\N{U+2d62}\N{U+2d54}",
      "\N{U+2d31}\N{U+2d55}\N{U+2d30}\N{U+2d62}\N{U+2d55}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d55}\N{U+2d5a}",
      "\N{U+2d49}\N{U+2d31}\N{U+2d54}\N{U+2d49}\N{U+2d54}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d62}\N{U+2d62}\N{U+2d53}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4f}\N{U+2d62}\N{U+2d53}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4d}\N{U+2d62}\N{U+2d53}\N{U+2d63}",
      "\N{U+2d56}\N{U+2d53}\N{U+2d5b}\N{U+2d5c}",
      "\N{U+2d5b}\N{U+2d53}\N{U+2d5c}\N{U+2d30}\N{U+2d4f}\N{U+2d31}\N{U+2d49}\N{U+2d54}",
      "\N{U+2d3d}\N{U+2d5c}\N{U+2d53}\N{U+2d31}\N{U+2d54}",
      "\N{U+2d4f}\N{U+2d53}\N{U+2d61}\N{U+2d30}\N{U+2d4f}\N{U+2d31}\N{U+2d49}\N{U+2d54}",
      "\N{U+2d37}\N{U+2d53}\N{U+2d4a}\N{U+2d30}\N{U+2d4f}\N{U+2d31}\N{U+2d49}\N{U+2d54}"
    ],
    name => "Tachelhit Tifinagh",
    native_language => "\N{U+2d5c}\N{U+2d30}\N{U+2d5b}\N{U+2d4d}\N{U+2d43}\N{U+2d49}\N{U+2d5c}",
    native_name => "\N{U+2d5c}\N{U+2d30}\N{U+2d5b}\N{U+2d4d}\N{U+2d43}\N{U+2d49}\N{U+2d5c} Tfng",
    native_script => "Tfng",
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+2d30}\N{U+2d3d} 1",
      "\N{U+2d30}\N{U+2d3d} 2",
      "\N{U+2d30}\N{U+2d3d} 3",
      "\N{U+2d30}\N{U+2d3d} 4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 1",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 2",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 3",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 4"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+2d30}\N{U+2d3d} 1",
      "\N{U+2d30}\N{U+2d3d} 2",
      "\N{U+2d30}\N{U+2d3d} 3",
      "\N{U+2d30}\N{U+2d3d} 4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 1",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 2",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 3",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 4"
    ],
    script => "Tifinagh",
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ shi-Tfng-MA ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "M",
      MEd => "MM-dd, E",
      MMM => "MMM",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMd => "d/MM",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "shi-Tfng-MA",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+2d30}\N{U+2d62}\N{U+2d4f}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d61}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d4e}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d39}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d30}"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "\N{U+2d30}\N{U+2d62}\N{U+2d4f}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d4f}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d61}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d59}\N{U+2d49}\N{U+2d4e}\N{U+2d61}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d39}\N{U+2d62}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d30}\N{U+2d4e}\N{U+2d30}\N{U+2d59}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+2d30}\N{U+2d62}\N{U+2d4f}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d61}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d4e}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d39}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d30}"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "\N{U+2d30}\N{U+2d62}\N{U+2d4f}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d4f}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d61}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d59}\N{U+2d49}\N{U+2d4e}\N{U+2d61}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d39}\N{U+2d62}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d30}\N{U+2d4e}\N{U+2d30}\N{U+2d59}"
    ],
    era_abbreviated => [
      "\N{U+2d37}\N{U+2d30}\N{U+2d44}",
      "\N{U+2d37}\N{U+2d3c}\N{U+2d44}"
    ],
    era_narrow => [
      "\N{U+2d37}\N{U+2d30}\N{U+2d44}",
      "\N{U+2d37}\N{U+2d3c}\N{U+2d44}"
    ],
    era_wide => [
      "\N{U+2d37}\N{U+2d30}\N{U+2d5c} \N{U+2d4f} \N{U+2d44}\N{U+2d49}\N{U+2d59}\N{U+2d30}",
      "\N{U+2d37}\N{U+2d3c}\N{U+2d3c}\N{U+2d49}\N{U+2d54} \N{U+2d4f} \N{U+2d44}\N{U+2d49}\N{U+2d59}\N{U+2d30}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Tachelhit",
    month_format_abbreviated => [
      "\N{U+2d49}\N{U+2d4f}\N{U+2d4f}",
      "\N{U+2d31}\N{U+2d55}\N{U+2d30}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d55}",
      "\N{U+2d49}\N{U+2d31}\N{U+2d54}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d62}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4f}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4d}",
      "\N{U+2d56}\N{U+2d53}\N{U+2d5b}",
      "\N{U+2d5b}\N{U+2d53}\N{U+2d5c}",
      "\N{U+2d3d}\N{U+2d5c}\N{U+2d53}",
      "\N{U+2d4f}\N{U+2d53}\N{U+2d61}",
      "\N{U+2d37}\N{U+2d53}\N{U+2d4a}"
    ],
    month_format_narrow => [
      "\N{U+2d49}",
      "\N{U+2d31}",
      "\N{U+2d4e}",
      "\N{U+2d49}",
      "\N{U+2d4e}",
      "\N{U+2d62}",
      "\N{U+2d62}",
      "\N{U+2d56}",
      "\N{U+2d5b}",
      "\N{U+2d3d}",
      "\N{U+2d4f}",
      "\N{U+2d37}"
    ],
    month_format_wide => [
      "\N{U+2d49}\N{U+2d4f}\N{U+2d4f}\N{U+2d30}\N{U+2d62}\N{U+2d54}",
      "\N{U+2d31}\N{U+2d55}\N{U+2d30}\N{U+2d62}\N{U+2d55}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d55}\N{U+2d5a}",
      "\N{U+2d49}\N{U+2d31}\N{U+2d54}\N{U+2d49}\N{U+2d54}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d62}\N{U+2d62}\N{U+2d53}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4f}\N{U+2d62}\N{U+2d53}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4d}\N{U+2d62}\N{U+2d53}\N{U+2d63}",
      "\N{U+2d56}\N{U+2d53}\N{U+2d5b}\N{U+2d5c}",
      "\N{U+2d5b}\N{U+2d53}\N{U+2d5c}\N{U+2d30}\N{U+2d4f}\N{U+2d31}\N{U+2d49}\N{U+2d54}",
      "\N{U+2d3d}\N{U+2d5c}\N{U+2d53}\N{U+2d31}\N{U+2d54}",
      "\N{U+2d4f}\N{U+2d53}\N{U+2d61}\N{U+2d30}\N{U+2d4f}\N{U+2d31}\N{U+2d49}\N{U+2d54}",
      "\N{U+2d37}\N{U+2d53}\N{U+2d4a}\N{U+2d30}\N{U+2d4f}\N{U+2d31}\N{U+2d49}\N{U+2d54}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+2d49}\N{U+2d4f}\N{U+2d4f}",
      "\N{U+2d31}\N{U+2d55}\N{U+2d30}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d55}",
      "\N{U+2d49}\N{U+2d31}\N{U+2d54}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d62}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4f}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4d}",
      "\N{U+2d56}\N{U+2d53}\N{U+2d5b}",
      "\N{U+2d5b}\N{U+2d53}\N{U+2d5c}",
      "\N{U+2d3d}\N{U+2d5c}\N{U+2d53}",
      "\N{U+2d4f}\N{U+2d53}\N{U+2d61}",
      "\N{U+2d37}\N{U+2d53}\N{U+2d4a}"
    ],
    month_stand_alone_narrow => [
      "\N{U+2d49}",
      "\N{U+2d31}",
      "\N{U+2d4e}",
      "\N{U+2d49}",
      "\N{U+2d4e}",
      "\N{U+2d62}",
      "\N{U+2d62}",
      "\N{U+2d56}",
      "\N{U+2d5b}",
      "\N{U+2d3d}",
      "\N{U+2d4f}",
      "\N{U+2d37}"
    ],
    month_stand_alone_wide => [
      "\N{U+2d49}\N{U+2d4f}\N{U+2d4f}\N{U+2d30}\N{U+2d62}\N{U+2d54}",
      "\N{U+2d31}\N{U+2d55}\N{U+2d30}\N{U+2d62}\N{U+2d55}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d55}\N{U+2d5a}",
      "\N{U+2d49}\N{U+2d31}\N{U+2d54}\N{U+2d49}\N{U+2d54}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d62}\N{U+2d62}\N{U+2d53}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4f}\N{U+2d62}\N{U+2d53}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4d}\N{U+2d62}\N{U+2d53}\N{U+2d63}",
      "\N{U+2d56}\N{U+2d53}\N{U+2d5b}\N{U+2d5c}",
      "\N{U+2d5b}\N{U+2d53}\N{U+2d5c}\N{U+2d30}\N{U+2d4f}\N{U+2d31}\N{U+2d49}\N{U+2d54}",
      "\N{U+2d3d}\N{U+2d5c}\N{U+2d53}\N{U+2d31}\N{U+2d54}",
      "\N{U+2d4f}\N{U+2d53}\N{U+2d61}\N{U+2d30}\N{U+2d4f}\N{U+2d31}\N{U+2d49}\N{U+2d54}",
      "\N{U+2d37}\N{U+2d53}\N{U+2d4a}\N{U+2d30}\N{U+2d4f}\N{U+2d31}\N{U+2d49}\N{U+2d54}"
    ],
    name => "Tachelhit Morocco Tifinagh",
    native_language => "\N{U+2d5c}\N{U+2d30}\N{U+2d5b}\N{U+2d4d}\N{U+2d43}\N{U+2d49}\N{U+2d5c}",
    native_name => "\N{U+2d5c}\N{U+2d30}\N{U+2d5b}\N{U+2d4d}\N{U+2d43}\N{U+2d49}\N{U+2d5c} \N{U+2d4d}\N{U+2d4e}\N{U+2d56}\N{U+2d54}\N{U+2d49}\N{U+2d31} Tfng",
    native_script => "Tfng",
    native_territory => "\N{U+2d4d}\N{U+2d4e}\N{U+2d56}\N{U+2d54}\N{U+2d49}\N{U+2d31}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+2d30}\N{U+2d3d} 1",
      "\N{U+2d30}\N{U+2d3d} 2",
      "\N{U+2d30}\N{U+2d3d} 3",
      "\N{U+2d30}\N{U+2d3d} 4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 1",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 2",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 3",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 4"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+2d30}\N{U+2d3d} 1",
      "\N{U+2d30}\N{U+2d3d} 2",
      "\N{U+2d30}\N{U+2d3d} 3",
      "\N{U+2d30}\N{U+2d3d} 4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 1",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 2",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 3",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 4"
    ],
    script => "Tifinagh",
    territory => "Morocco",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ si ]__
  {
    am_pm_abbreviated => [
      "\N{U+0db4}\N{U+0dd9}.\N{U+0dc0}.",
      "\N{U+0db4}.\N{U+0dc0}."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH.mm",
      EHms => "E HH.mm.ss",
      Ed => "d E",
      Ehm => "E a h.mm",
      Ehms => "E a h.mm.ss",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH.mm",
      Hms => "HH.mm.ss",
      Hmsv => "HH.mm.ss v",
      Hmv => "HH.mm v",
      M => "L",
      MEd => "M-d, E",
      MMM => "LLL",
      MMMEd => "MMM d E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M-d",
      d => "d",
      h => "a h",
      hm => "a h.mm",
      hms => "a h.mm.ss",
      hmsv => "h.mm.ss a v",
      hmv => "h.mm a v",
      ms => "mm.ss",
      y => "y",
      yM => "y-M",
      yMEd => "y-M-d, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-M-d",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "si",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0dc3}\N{U+0db3}\N{U+0dd4}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0d85}\N{U+0d9f}\N{U+0dc4}",
      "\N{U+0db6}\N{U+0daf}\N{U+0dcf}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0db6}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dc4}\N{U+0dc3}\N{U+0dca}",
      "\N{U+0dc3}\N{U+0dd2}\N{U+0d9a}\N{U+0dd4}",
      "\N{U+0dc3}\N{U+0dd9}\N{U+0db1}",
      "\N{U+0d89}\N{U+0dbb}\N{U+0dd2}\N{U+0daf}\N{U+0dcf}"
    ],
    day_format_narrow => [
      "\N{U+0dc3}",
      "\N{U+0d85}",
      "\N{U+0db6}",
      "\N{U+0db6}\N{U+0dca}\N{U+200d}\N{U+0dbb}",
      "\N{U+0dc3}\N{U+0dd2}",
      "\N{U+0dc3}\N{U+0dd9}",
      "\N{U+0d89}"
    ],
    day_format_wide => [
      "\N{U+0dc3}\N{U+0db3}\N{U+0dd4}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0d85}\N{U+0d9f}\N{U+0dc4}\N{U+0dbb}\N{U+0dd4}\N{U+0dc0}\N{U+0dcf}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0db6}\N{U+0daf}\N{U+0dcf}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0db6}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dc4}\N{U+0dc3}\N{U+0dca}\N{U+0db4}\N{U+0dad}\N{U+0dd2}\N{U+0db1}\N{U+0dca}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0dc3}\N{U+0dd2}\N{U+0d9a}\N{U+0dd4}\N{U+0dbb}\N{U+0dcf}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0dc3}\N{U+0dd9}\N{U+0db1}\N{U+0dc3}\N{U+0dd4}\N{U+0dbb}\N{U+0dcf}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0d89}\N{U+0dbb}\N{U+0dd2}\N{U+0daf}\N{U+0dcf}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0dc3}\N{U+0db3}\N{U+0dd4}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0d85}\N{U+0d9f}\N{U+0dc4}",
      "\N{U+0db6}\N{U+0daf}\N{U+0dcf}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0db6}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dc4}\N{U+0dc3}\N{U+0dca}",
      "\N{U+0dc3}\N{U+0dd2}\N{U+0d9a}\N{U+0dd4}",
      "\N{U+0dc3}\N{U+0dd9}\N{U+0db1}",
      "\N{U+0d89}\N{U+0dbb}\N{U+0dd2}\N{U+0daf}\N{U+0dcf}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0dc3}",
      "\N{U+0d85}",
      "\N{U+0db6}",
      "\N{U+0db6}\N{U+0dca}\N{U+200d}\N{U+0dbb}",
      "\N{U+0dc3}\N{U+0dd2}",
      "\N{U+0dc3}\N{U+0dd9}",
      "\N{U+0d89}"
    ],
    day_stand_alone_wide => [
      "\N{U+0dc3}\N{U+0db3}\N{U+0dd4}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0d85}\N{U+0d9f}\N{U+0dc4}\N{U+0dbb}\N{U+0dd4}\N{U+0dc0}\N{U+0dcf}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0db6}\N{U+0daf}\N{U+0dcf}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0db6}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dc4}\N{U+0dc3}\N{U+0dca}\N{U+0db4}\N{U+0dad}\N{U+0dd2}\N{U+0db1}\N{U+0dca}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0dc3}\N{U+0dd2}\N{U+0d9a}\N{U+0dd4}\N{U+0dbb}\N{U+0dcf}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0dc3}\N{U+0dd9}\N{U+0db1}\N{U+0dc3}\N{U+0dd4}\N{U+0dbb}\N{U+0dcf}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0d89}\N{U+0dbb}\N{U+0dd2}\N{U+0daf}\N{U+0dcf}"
    ],
    era_abbreviated => [
      "\N{U+0d9a}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dd2}.\N{U+0db4}\N{U+0dd6}.",
      "\N{U+0d9a}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dd2}.\N{U+0dc0}."
    ],
    era_narrow => [
      "\N{U+0d9a}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dd2}.\N{U+0db4}\N{U+0dd6}.",
      "\N{U+0d9a}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dd2}.\N{U+0dc0}."
    ],
    era_wide => [
      "\N{U+0d9a}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dd2}\N{U+0dc3}\N{U+0dca}\N{U+0dad}\N{U+0dd4} \N{U+0db4}\N{U+0dd6}\N{U+0dbb}\N{U+0dca}\N{U+0dc0}",
      "\N{U+0d9a}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dd2}\N{U+0dc3}\N{U+0dca}\N{U+0dad}\N{U+0dd4} \N{U+0dc0}\N{U+0dbb}\N{U+0dca}\N{U+0dc2}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Sinhala",
    month_format_abbreviated => [
      "\N{U+0da2}\N{U+0db1}",
      "\N{U+0db4}\N{U+0dd9}\N{U+0db6}",
      "\N{U+0db8}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}\N{U+0dad}\N{U+0dd4}",
      "\N{U+0d85}\N{U+0db4}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dda}\N{U+0dbd}\N{U+0dca}",
      "\N{U+0db8}\N{U+0dd0}\N{U+0dba}\N{U+0dd2}",
      "\N{U+0da2}\N{U+0dd6}\N{U+0db1}\N{U+0dd2}",
      "\N{U+0da2}\N{U+0dd6}\N{U+0dbd}\N{U+0dd2}",
      "\N{U+0d85}\N{U+0d9c}\N{U+0ddd}",
      "\N{U+0dc3}\N{U+0dd0}\N{U+0db4}\N{U+0dca}",
      "\N{U+0d94}\N{U+0d9a}\N{U+0dca}",
      "\N{U+0db1}\N{U+0ddc}\N{U+0dc0}\N{U+0dd0}",
      "\N{U+0daf}\N{U+0dd9}\N{U+0dc3}\N{U+0dd0}"
    ],
    month_format_narrow => [
      "\N{U+0da2}",
      "\N{U+0db4}\N{U+0dd9}",
      "\N{U+0db8}\N{U+0dcf}",
      "\N{U+0d85}",
      "\N{U+0db8}\N{U+0dd0}",
      "\N{U+0da2}\N{U+0dd6}",
      "\N{U+0da2}\N{U+0dd6}",
      "\N{U+0d85}",
      "\N{U+0dc3}\N{U+0dd0}",
      "\N{U+0d94}",
      "\N{U+0db1}\N{U+0dd9}",
      "\N{U+0daf}\N{U+0dd9}"
    ],
    month_format_wide => [
      "\N{U+0da2}\N{U+0db1}\N{U+0dc0}\N{U+0dcf}\N{U+0dbb}\N{U+0dd2}",
      "\N{U+0db4}\N{U+0dd9}\N{U+0db6}\N{U+0dbb}\N{U+0dc0}\N{U+0dcf}\N{U+0dbb}\N{U+0dd2}",
      "\N{U+0db8}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}\N{U+0dad}\N{U+0dd4}",
      "\N{U+0d85}\N{U+0db4}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dda}\N{U+0dbd}\N{U+0dca}",
      "\N{U+0db8}\N{U+0dd0}\N{U+0dba}\N{U+0dd2}",
      "\N{U+0da2}\N{U+0dd6}\N{U+0db1}\N{U+0dd2}",
      "\N{U+0da2}\N{U+0dd6}\N{U+0dbd}\N{U+0dd2}",
      "\N{U+0d85}\N{U+0d9c}\N{U+0ddd}\N{U+0dc3}\N{U+0dca}\N{U+0dad}\N{U+0dd4}",
      "\N{U+0dc3}\N{U+0dd0}\N{U+0db4}\N{U+0dca}\N{U+0dad}\N{U+0dd0}\N{U+0db8}\N{U+0dca}\N{U+0db6}\N{U+0dbb}\N{U+0dca}",
      "\N{U+0d94}\N{U+0d9a}\N{U+0dca}\N{U+0dad}\N{U+0ddd}\N{U+0db6}\N{U+0dbb}\N{U+0dca}",
      "\N{U+0db1}\N{U+0ddc}\N{U+0dc0}\N{U+0dd0}\N{U+0db8}\N{U+0dca}\N{U+0db6}\N{U+0dbb}\N{U+0dca}",
      "\N{U+0daf}\N{U+0dd9}\N{U+0dc3}\N{U+0dd0}\N{U+0db8}\N{U+0dca}\N{U+0db6}\N{U+0dbb}\N{U+0dca}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0da2}\N{U+0db1}",
      "\N{U+0db4}\N{U+0dd9}\N{U+0db6}",
      "\N{U+0db8}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}",
      "\N{U+0d85}\N{U+0db4}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dda}\N{U+0dbd}\N{U+0dca}",
      "\N{U+0db8}\N{U+0dd0}\N{U+0dba}\N{U+0dd2}",
      "\N{U+0da2}\N{U+0dd6}\N{U+0db1}\N{U+0dd2}",
      "\N{U+0da2}\N{U+0dd6}\N{U+0dbd}\N{U+0dd2}",
      "\N{U+0d85}\N{U+0d9c}\N{U+0ddd}",
      "\N{U+0dc3}\N{U+0dd0}\N{U+0db4}\N{U+0dca}",
      "\N{U+0d94}\N{U+0d9a}\N{U+0dca}",
      "\N{U+0db1}\N{U+0ddc}\N{U+0dc0}\N{U+0dd0}",
      "\N{U+0daf}\N{U+0dd9}\N{U+0dc3}\N{U+0dd0}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0da2}",
      "\N{U+0db4}\N{U+0dd9}",
      "\N{U+0db8}\N{U+0dcf}",
      "\N{U+0d85}",
      "\N{U+0db8}\N{U+0dd0}",
      "\N{U+0da2}\N{U+0dd6}",
      "\N{U+0da2}\N{U+0dd6}",
      "\N{U+0d85}",
      "\N{U+0dc3}\N{U+0dd0}",
      "\N{U+0d94}",
      "\N{U+0db1}\N{U+0dd9}",
      "\N{U+0daf}\N{U+0dd9}"
    ],
    month_stand_alone_wide => [
      "\N{U+0da2}\N{U+0db1}\N{U+0dc0}\N{U+0dcf}\N{U+0dbb}\N{U+0dd2}",
      "\N{U+0db4}\N{U+0dd9}\N{U+0db6}\N{U+0dbb}\N{U+0dc0}\N{U+0dcf}\N{U+0dbb}\N{U+0dd2}",
      "\N{U+0db8}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}\N{U+0dad}\N{U+0dd4}",
      "\N{U+0d85}\N{U+0db4}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dda}\N{U+0dbd}\N{U+0dca}",
      "\N{U+0db8}\N{U+0dd0}\N{U+0dba}\N{U+0dd2}",
      "\N{U+0da2}\N{U+0dd6}\N{U+0db1}\N{U+0dd2}",
      "\N{U+0da2}\N{U+0dd6}\N{U+0dbd}\N{U+0dd2}",
      "\N{U+0d85}\N{U+0d9c}\N{U+0ddd}\N{U+0dc3}\N{U+0dca}\N{U+0dad}\N{U+0dd4}",
      "\N{U+0dc3}\N{U+0dd0}\N{U+0db4}\N{U+0dca}\N{U+0dad}\N{U+0dd0}\N{U+0db8}\N{U+0dca}\N{U+0db6}\N{U+0dbb}\N{U+0dca}",
      "\N{U+0d94}\N{U+0d9a}\N{U+0dca}\N{U+0dad}\N{U+0ddd}\N{U+0db6}\N{U+0dbb}\N{U+0dca}",
      "\N{U+0db1}\N{U+0ddc}\N{U+0dc0}\N{U+0dd0}\N{U+0db8}\N{U+0dca}\N{U+0db6}\N{U+0dbb}\N{U+0dca}",
      "\N{U+0daf}\N{U+0dd9}\N{U+0dc3}\N{U+0dd0}\N{U+0db8}\N{U+0dca}\N{U+0db6}\N{U+0dbb}\N{U+0dca}"
    ],
    name => "Sinhala",
    native_language => "\N{U+0dc3}\N{U+0dd2}\N{U+0d82}\N{U+0dc4}\N{U+0dbd}",
    native_name => "\N{U+0dc3}\N{U+0dd2}\N{U+0d82}\N{U+0dc4}\N{U+0dbd}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}:1",
      "\N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}:2",
      "\N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}:3",
      "\N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}:4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1 \N{U+0dc0}\N{U+0db1} \N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}\N{U+0dad}\N{U+0dd4}\N{U+0dc0}",
      "2 \N{U+0dc0}\N{U+0db1} \N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}\N{U+0dad}\N{U+0dd4}\N{U+0dc0}",
      "3 \N{U+0dc0}\N{U+0db1} \N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}\N{U+0dad}\N{U+0dd4}\N{U+0dc0}",
      "4 \N{U+0dc0}\N{U+0db1} \N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}\N{U+0dad}\N{U+0dd4}\N{U+0dc0}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}:1",
      "\N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}:2",
      "\N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}:3",
      "\N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}:4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1 \N{U+0dc0}\N{U+0db1} \N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}\N{U+0dad}\N{U+0dd4}\N{U+0dc0}",
      "2 \N{U+0dc0}\N{U+0db1} \N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}\N{U+0dad}\N{U+0dd4}\N{U+0dc0}",
      "3 \N{U+0dc0}\N{U+0db1} \N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}\N{U+0dad}\N{U+0dd4}\N{U+0dc0}",
      "4 \N{U+0dc0}\N{U+0db1} \N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}\N{U+0dad}\N{U+0dd4}\N{U+0dc0}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH.mm.ss zzzz",
    time_format_long => "HH.mm.ss z",
    time_format_medium => "HH.mm.ss",
    time_format_short => "HH.mm",
    variant => undef,
    version => 28
  }
  __[ si-LK ]__
  {
    am_pm_abbreviated => [
      "\N{U+0db4}\N{U+0dd9}.\N{U+0dc0}.",
      "\N{U+0db4}.\N{U+0dc0}."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH.mm",
      EHms => "E HH.mm.ss",
      Ed => "d E",
      Ehm => "E a h.mm",
      Ehms => "E a h.mm.ss",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH.mm",
      Hms => "HH.mm.ss",
      Hmsv => "HH.mm.ss v",
      Hmv => "HH.mm v",
      M => "L",
      MEd => "M-d, E",
      MMM => "LLL",
      MMMEd => "MMM d E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M-d",
      d => "d",
      h => "a h",
      hm => "a h.mm",
      hms => "a h.mm.ss",
      hmsv => "h.mm.ss a v",
      hmv => "h.mm a v",
      ms => "mm.ss",
      y => "y",
      yM => "y-M",
      yMEd => "y-M-d, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-M-d",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "si-LK",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0dc3}\N{U+0db3}\N{U+0dd4}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0d85}\N{U+0d9f}\N{U+0dc4}",
      "\N{U+0db6}\N{U+0daf}\N{U+0dcf}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0db6}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dc4}\N{U+0dc3}\N{U+0dca}",
      "\N{U+0dc3}\N{U+0dd2}\N{U+0d9a}\N{U+0dd4}",
      "\N{U+0dc3}\N{U+0dd9}\N{U+0db1}",
      "\N{U+0d89}\N{U+0dbb}\N{U+0dd2}\N{U+0daf}\N{U+0dcf}"
    ],
    day_format_narrow => [
      "\N{U+0dc3}",
      "\N{U+0d85}",
      "\N{U+0db6}",
      "\N{U+0db6}\N{U+0dca}\N{U+200d}\N{U+0dbb}",
      "\N{U+0dc3}\N{U+0dd2}",
      "\N{U+0dc3}\N{U+0dd9}",
      "\N{U+0d89}"
    ],
    day_format_wide => [
      "\N{U+0dc3}\N{U+0db3}\N{U+0dd4}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0d85}\N{U+0d9f}\N{U+0dc4}\N{U+0dbb}\N{U+0dd4}\N{U+0dc0}\N{U+0dcf}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0db6}\N{U+0daf}\N{U+0dcf}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0db6}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dc4}\N{U+0dc3}\N{U+0dca}\N{U+0db4}\N{U+0dad}\N{U+0dd2}\N{U+0db1}\N{U+0dca}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0dc3}\N{U+0dd2}\N{U+0d9a}\N{U+0dd4}\N{U+0dbb}\N{U+0dcf}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0dc3}\N{U+0dd9}\N{U+0db1}\N{U+0dc3}\N{U+0dd4}\N{U+0dbb}\N{U+0dcf}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0d89}\N{U+0dbb}\N{U+0dd2}\N{U+0daf}\N{U+0dcf}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0dc3}\N{U+0db3}\N{U+0dd4}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0d85}\N{U+0d9f}\N{U+0dc4}",
      "\N{U+0db6}\N{U+0daf}\N{U+0dcf}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0db6}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dc4}\N{U+0dc3}\N{U+0dca}",
      "\N{U+0dc3}\N{U+0dd2}\N{U+0d9a}\N{U+0dd4}",
      "\N{U+0dc3}\N{U+0dd9}\N{U+0db1}",
      "\N{U+0d89}\N{U+0dbb}\N{U+0dd2}\N{U+0daf}\N{U+0dcf}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0dc3}",
      "\N{U+0d85}",
      "\N{U+0db6}",
      "\N{U+0db6}\N{U+0dca}\N{U+200d}\N{U+0dbb}",
      "\N{U+0dc3}\N{U+0dd2}",
      "\N{U+0dc3}\N{U+0dd9}",
      "\N{U+0d89}"
    ],
    day_stand_alone_wide => [
      "\N{U+0dc3}\N{U+0db3}\N{U+0dd4}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0d85}\N{U+0d9f}\N{U+0dc4}\N{U+0dbb}\N{U+0dd4}\N{U+0dc0}\N{U+0dcf}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0db6}\N{U+0daf}\N{U+0dcf}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0db6}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dc4}\N{U+0dc3}\N{U+0dca}\N{U+0db4}\N{U+0dad}\N{U+0dd2}\N{U+0db1}\N{U+0dca}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0dc3}\N{U+0dd2}\N{U+0d9a}\N{U+0dd4}\N{U+0dbb}\N{U+0dcf}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0dc3}\N{U+0dd9}\N{U+0db1}\N{U+0dc3}\N{U+0dd4}\N{U+0dbb}\N{U+0dcf}\N{U+0daf}\N{U+0dcf}",
      "\N{U+0d89}\N{U+0dbb}\N{U+0dd2}\N{U+0daf}\N{U+0dcf}"
    ],
    era_abbreviated => [
      "\N{U+0d9a}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dd2}.\N{U+0db4}\N{U+0dd6}.",
      "\N{U+0d9a}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dd2}.\N{U+0dc0}."
    ],
    era_narrow => [
      "\N{U+0d9a}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dd2}.\N{U+0db4}\N{U+0dd6}.",
      "\N{U+0d9a}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dd2}.\N{U+0dc0}."
    ],
    era_wide => [
      "\N{U+0d9a}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dd2}\N{U+0dc3}\N{U+0dca}\N{U+0dad}\N{U+0dd4} \N{U+0db4}\N{U+0dd6}\N{U+0dbb}\N{U+0dca}\N{U+0dc0}",
      "\N{U+0d9a}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dd2}\N{U+0dc3}\N{U+0dca}\N{U+0dad}\N{U+0dd4} \N{U+0dc0}\N{U+0dbb}\N{U+0dca}\N{U+0dc2}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%Y %B %e \N{U+0dc0}\N{U+0dd0}\N{U+0db1}\N{U+0dd2} %A %H:%M:%S %z",
    glibc_date_format => "%Y-%m-%d",
    glibc_datetime_format => "%Y-%m-%d %H:%M:%S %z",
    glibc_time_12_format => "%p %I:%M:%S",
    glibc_time_format => "%H:%M:%S",
    language => "Sinhala",
    month_format_abbreviated => [
      "\N{U+0da2}\N{U+0db1}",
      "\N{U+0db4}\N{U+0dd9}\N{U+0db6}",
      "\N{U+0db8}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}\N{U+0dad}\N{U+0dd4}",
      "\N{U+0d85}\N{U+0db4}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dda}\N{U+0dbd}\N{U+0dca}",
      "\N{U+0db8}\N{U+0dd0}\N{U+0dba}\N{U+0dd2}",
      "\N{U+0da2}\N{U+0dd6}\N{U+0db1}\N{U+0dd2}",
      "\N{U+0da2}\N{U+0dd6}\N{U+0dbd}\N{U+0dd2}",
      "\N{U+0d85}\N{U+0d9c}\N{U+0ddd}",
      "\N{U+0dc3}\N{U+0dd0}\N{U+0db4}\N{U+0dca}",
      "\N{U+0d94}\N{U+0d9a}\N{U+0dca}",
      "\N{U+0db1}\N{U+0ddc}\N{U+0dc0}\N{U+0dd0}",
      "\N{U+0daf}\N{U+0dd9}\N{U+0dc3}\N{U+0dd0}"
    ],
    month_format_narrow => [
      "\N{U+0da2}",
      "\N{U+0db4}\N{U+0dd9}",
      "\N{U+0db8}\N{U+0dcf}",
      "\N{U+0d85}",
      "\N{U+0db8}\N{U+0dd0}",
      "\N{U+0da2}\N{U+0dd6}",
      "\N{U+0da2}\N{U+0dd6}",
      "\N{U+0d85}",
      "\N{U+0dc3}\N{U+0dd0}",
      "\N{U+0d94}",
      "\N{U+0db1}\N{U+0dd9}",
      "\N{U+0daf}\N{U+0dd9}"
    ],
    month_format_wide => [
      "\N{U+0da2}\N{U+0db1}\N{U+0dc0}\N{U+0dcf}\N{U+0dbb}\N{U+0dd2}",
      "\N{U+0db4}\N{U+0dd9}\N{U+0db6}\N{U+0dbb}\N{U+0dc0}\N{U+0dcf}\N{U+0dbb}\N{U+0dd2}",
      "\N{U+0db8}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}\N{U+0dad}\N{U+0dd4}",
      "\N{U+0d85}\N{U+0db4}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dda}\N{U+0dbd}\N{U+0dca}",
      "\N{U+0db8}\N{U+0dd0}\N{U+0dba}\N{U+0dd2}",
      "\N{U+0da2}\N{U+0dd6}\N{U+0db1}\N{U+0dd2}",
      "\N{U+0da2}\N{U+0dd6}\N{U+0dbd}\N{U+0dd2}",
      "\N{U+0d85}\N{U+0d9c}\N{U+0ddd}\N{U+0dc3}\N{U+0dca}\N{U+0dad}\N{U+0dd4}",
      "\N{U+0dc3}\N{U+0dd0}\N{U+0db4}\N{U+0dca}\N{U+0dad}\N{U+0dd0}\N{U+0db8}\N{U+0dca}\N{U+0db6}\N{U+0dbb}\N{U+0dca}",
      "\N{U+0d94}\N{U+0d9a}\N{U+0dca}\N{U+0dad}\N{U+0ddd}\N{U+0db6}\N{U+0dbb}\N{U+0dca}",
      "\N{U+0db1}\N{U+0ddc}\N{U+0dc0}\N{U+0dd0}\N{U+0db8}\N{U+0dca}\N{U+0db6}\N{U+0dbb}\N{U+0dca}",
      "\N{U+0daf}\N{U+0dd9}\N{U+0dc3}\N{U+0dd0}\N{U+0db8}\N{U+0dca}\N{U+0db6}\N{U+0dbb}\N{U+0dca}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0da2}\N{U+0db1}",
      "\N{U+0db4}\N{U+0dd9}\N{U+0db6}",
      "\N{U+0db8}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}",
      "\N{U+0d85}\N{U+0db4}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dda}\N{U+0dbd}\N{U+0dca}",
      "\N{U+0db8}\N{U+0dd0}\N{U+0dba}\N{U+0dd2}",
      "\N{U+0da2}\N{U+0dd6}\N{U+0db1}\N{U+0dd2}",
      "\N{U+0da2}\N{U+0dd6}\N{U+0dbd}\N{U+0dd2}",
      "\N{U+0d85}\N{U+0d9c}\N{U+0ddd}",
      "\N{U+0dc3}\N{U+0dd0}\N{U+0db4}\N{U+0dca}",
      "\N{U+0d94}\N{U+0d9a}\N{U+0dca}",
      "\N{U+0db1}\N{U+0ddc}\N{U+0dc0}\N{U+0dd0}",
      "\N{U+0daf}\N{U+0dd9}\N{U+0dc3}\N{U+0dd0}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0da2}",
      "\N{U+0db4}\N{U+0dd9}",
      "\N{U+0db8}\N{U+0dcf}",
      "\N{U+0d85}",
      "\N{U+0db8}\N{U+0dd0}",
      "\N{U+0da2}\N{U+0dd6}",
      "\N{U+0da2}\N{U+0dd6}",
      "\N{U+0d85}",
      "\N{U+0dc3}\N{U+0dd0}",
      "\N{U+0d94}",
      "\N{U+0db1}\N{U+0dd9}",
      "\N{U+0daf}\N{U+0dd9}"
    ],
    month_stand_alone_wide => [
      "\N{U+0da2}\N{U+0db1}\N{U+0dc0}\N{U+0dcf}\N{U+0dbb}\N{U+0dd2}",
      "\N{U+0db4}\N{U+0dd9}\N{U+0db6}\N{U+0dbb}\N{U+0dc0}\N{U+0dcf}\N{U+0dbb}\N{U+0dd2}",
      "\N{U+0db8}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}\N{U+0dad}\N{U+0dd4}",
      "\N{U+0d85}\N{U+0db4}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dda}\N{U+0dbd}\N{U+0dca}",
      "\N{U+0db8}\N{U+0dd0}\N{U+0dba}\N{U+0dd2}",
      "\N{U+0da2}\N{U+0dd6}\N{U+0db1}\N{U+0dd2}",
      "\N{U+0da2}\N{U+0dd6}\N{U+0dbd}\N{U+0dd2}",
      "\N{U+0d85}\N{U+0d9c}\N{U+0ddd}\N{U+0dc3}\N{U+0dca}\N{U+0dad}\N{U+0dd4}",
      "\N{U+0dc3}\N{U+0dd0}\N{U+0db4}\N{U+0dca}\N{U+0dad}\N{U+0dd0}\N{U+0db8}\N{U+0dca}\N{U+0db6}\N{U+0dbb}\N{U+0dca}",
      "\N{U+0d94}\N{U+0d9a}\N{U+0dca}\N{U+0dad}\N{U+0ddd}\N{U+0db6}\N{U+0dbb}\N{U+0dca}",
      "\N{U+0db1}\N{U+0ddc}\N{U+0dc0}\N{U+0dd0}\N{U+0db8}\N{U+0dca}\N{U+0db6}\N{U+0dbb}\N{U+0dca}",
      "\N{U+0daf}\N{U+0dd9}\N{U+0dc3}\N{U+0dd0}\N{U+0db8}\N{U+0dca}\N{U+0db6}\N{U+0dbb}\N{U+0dca}"
    ],
    name => "Sinhala Sri Lanka",
    native_language => "\N{U+0dc3}\N{U+0dd2}\N{U+0d82}\N{U+0dc4}\N{U+0dbd}",
    native_name => "\N{U+0dc3}\N{U+0dd2}\N{U+0d82}\N{U+0dc4}\N{U+0dbd} \N{U+0dc1}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dd3} \N{U+0dbd}\N{U+0d82}\N{U+0d9a}\N{U+0dcf}\N{U+0dc0}",
    native_script => undef,
    native_territory => "\N{U+0dc1}\N{U+0dca}\N{U+200d}\N{U+0dbb}\N{U+0dd3} \N{U+0dbd}\N{U+0d82}\N{U+0d9a}\N{U+0dcf}\N{U+0dc0}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}:1",
      "\N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}:2",
      "\N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}:3",
      "\N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}:4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1 \N{U+0dc0}\N{U+0db1} \N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}\N{U+0dad}\N{U+0dd4}\N{U+0dc0}",
      "2 \N{U+0dc0}\N{U+0db1} \N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}\N{U+0dad}\N{U+0dd4}\N{U+0dc0}",
      "3 \N{U+0dc0}\N{U+0db1} \N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}\N{U+0dad}\N{U+0dd4}\N{U+0dc0}",
      "4 \N{U+0dc0}\N{U+0db1} \N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}\N{U+0dad}\N{U+0dd4}\N{U+0dc0}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}:1",
      "\N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}:2",
      "\N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}:3",
      "\N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}:4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1 \N{U+0dc0}\N{U+0db1} \N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}\N{U+0dad}\N{U+0dd4}\N{U+0dc0}",
      "2 \N{U+0dc0}\N{U+0db1} \N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}\N{U+0dad}\N{U+0dd4}\N{U+0dc0}",
      "3 \N{U+0dc0}\N{U+0db1} \N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}\N{U+0dad}\N{U+0dd4}\N{U+0dc0}",
      "4 \N{U+0dc0}\N{U+0db1} \N{U+0d9a}\N{U+0dcf}\N{U+0dbb}\N{U+0dca}\N{U+0dad}\N{U+0dd4}\N{U+0dc0}"
    ],
    script => undef,
    territory => "Sri Lanka",
    time_format_full => "HH.mm.ss zzzz",
    time_format_long => "HH.mm.ss z",
    time_format_medium => "HH.mm.ss",
    time_format_short => "HH.mm",
    variant => undef,
    version => 28
  }
  __[ sk ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d.",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "LLLL y G",
      GyMMMEd => "E, d. M. y G",
      GyMMMMd => "d. M. y G",
      GyMMMd => "d. M. y G",
      H => "H",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmv => "H:mm v",
      M => "L.",
      MEd => "E d. M.",
      MMM => "LLL",
      MMMEd => "E d. M.",
      MMMMEd => "E d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. M.",
      Md => "d. M.",
      d => "d.",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d. M. y",
      yMMM => "M/y",
      yMMMEd => "E d. M. y",
      yMMMM => "LLLL y",
      yMMMMd => "d. MMMM y",
      yMMMd => "d. M. y",
      yMd => "d. M. y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "sk",
    date_format_full => "EEEE, d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "d. M. y",
    date_format_short => "d.M.yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "po",
      "ut",
      "st",
      "\N{U+0161}t",
      "pi",
      "so",
      "ne"
    ],
    day_format_narrow => [
      "p",
      "u",
      "s",
      "\N{U+0161}",
      "p",
      "s",
      "n"
    ],
    day_format_wide => [
      "pondelok",
      "utorok",
      "streda",
      "\N{U+0161}tvrtok",
      "piatok",
      "sobota",
      "nede\N{U+013e}a"
    ],
    day_stand_alone_abbreviated => [
      "po",
      "ut",
      "st",
      "\N{U+0161}t",
      "pi",
      "so",
      "ne"
    ],
    day_stand_alone_narrow => [
      "p",
      "u",
      "s",
      "\N{U+0161}",
      "p",
      "s",
      "n"
    ],
    day_stand_alone_wide => [
      "pondelok",
      "utorok",
      "streda",
      "\N{U+0161}tvrtok",
      "piatok",
      "sobota",
      "nede\N{U+013e}a"
    ],
    era_abbreviated => [
      "pred Kr.",
      "po Kr."
    ],
    era_narrow => [
      "pred Kr.",
      "po Kr."
    ],
    era_wide => [
      "pred Kristom",
      "po Kristovi"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Slovak",
    month_format_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "m\N{U+00e1}j",
      "j\N{U+00fa}n",
      "j\N{U+00fa}l",
      "aug",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_format_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "janu\N{U+00e1}ra",
      "febru\N{U+00e1}ra",
      "marca",
      "apr\N{U+00ed}la",
      "m\N{U+00e1}ja",
      "j\N{U+00fa}na",
      "j\N{U+00fa}la",
      "augusta",
      "septembra",
      "okt\N{U+00f3}bra",
      "novembra",
      "decembra"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "m\N{U+00e1}j",
      "j\N{U+00fa}n",
      "j\N{U+00fa}l",
      "aug",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_stand_alone_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_stand_alone_wide => [
      "janu\N{U+00e1}r",
      "febru\N{U+00e1}r",
      "marec",
      "apr\N{U+00ed}l",
      "m\N{U+00e1}j",
      "j\N{U+00fa}n",
      "j\N{U+00fa}l",
      "august",
      "september",
      "okt\N{U+00f3}ber",
      "november",
      "december"
    ],
    name => "Slovak",
    native_language => "sloven\N{U+010d}ina",
    native_name => "sloven\N{U+010d}ina",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. \N{U+0161}tvr\N{U+0165}rok",
      "2. \N{U+0161}tvr\N{U+0165}rok",
      "3. \N{U+0161}tvr\N{U+0165}rok",
      "4. \N{U+0161}tvr\N{U+0165}rok"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. \N{U+0161}tvr\N{U+0165}rok",
      "2. \N{U+0161}tvr\N{U+0165}rok",
      "3. \N{U+0161}tvr\N{U+0165}rok",
      "4. \N{U+0161}tvr\N{U+0165}rok"
    ],
    script => undef,
    territory => undef,
    time_format_full => "H:mm:ss zzzz",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ sk-SK ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d.",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "LLLL y G",
      GyMMMEd => "E, d. M. y G",
      GyMMMMd => "d. M. y G",
      GyMMMd => "d. M. y G",
      H => "H",
      Hm => "H:mm",
      Hms => "H:mm:ss",
      Hmsv => "H:mm:ss v",
      Hmv => "H:mm v",
      M => "L.",
      MEd => "E d. M.",
      MMM => "LLL",
      MMMEd => "E d. M.",
      MMMMEd => "E d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. M.",
      Md => "d. M.",
      d => "d.",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d. M. y",
      yMMM => "M/y",
      yMMMEd => "E d. M. y",
      yMMMM => "LLLL y",
      yMMMMd => "d. MMMM y",
      yMMMd => "d. M. y",
      yMd => "d. M. y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "sk-SK",
    date_format_full => "EEEE, d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "d. M. y",
    date_format_short => "d.M.yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "po",
      "ut",
      "st",
      "\N{U+0161}t",
      "pi",
      "so",
      "ne"
    ],
    day_format_narrow => [
      "p",
      "u",
      "s",
      "\N{U+0161}",
      "p",
      "s",
      "n"
    ],
    day_format_wide => [
      "pondelok",
      "utorok",
      "streda",
      "\N{U+0161}tvrtok",
      "piatok",
      "sobota",
      "nede\N{U+013e}a"
    ],
    day_stand_alone_abbreviated => [
      "po",
      "ut",
      "st",
      "\N{U+0161}t",
      "pi",
      "so",
      "ne"
    ],
    day_stand_alone_narrow => [
      "p",
      "u",
      "s",
      "\N{U+0161}",
      "p",
      "s",
      "n"
    ],
    day_stand_alone_wide => [
      "pondelok",
      "utorok",
      "streda",
      "\N{U+0161}tvrtok",
      "piatok",
      "sobota",
      "nede\N{U+013e}a"
    ],
    era_abbreviated => [
      "pred Kr.",
      "po Kr."
    ],
    era_narrow => [
      "pred Kr.",
      "po Kr."
    ],
    era_wide => [
      "pred Kristom",
      "po Kristovi"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d.%m.%Y",
    glibc_datetime_format => "%a\240%e.\240%B\240%Y,\240%H:%M:%S\240%Z",
    glibc_time_12_format => "%I:%M:%S",
    glibc_time_format => "%H:%M:%S",
    language => "Slovak",
    month_format_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "m\N{U+00e1}j",
      "j\N{U+00fa}n",
      "j\N{U+00fa}l",
      "aug",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_format_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "janu\N{U+00e1}ra",
      "febru\N{U+00e1}ra",
      "marca",
      "apr\N{U+00ed}la",
      "m\N{U+00e1}ja",
      "j\N{U+00fa}na",
      "j\N{U+00fa}la",
      "augusta",
      "septembra",
      "okt\N{U+00f3}bra",
      "novembra",
      "decembra"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "m\N{U+00e1}j",
      "j\N{U+00fa}n",
      "j\N{U+00fa}l",
      "aug",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_stand_alone_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_stand_alone_wide => [
      "janu\N{U+00e1}r",
      "febru\N{U+00e1}r",
      "marec",
      "apr\N{U+00ed}l",
      "m\N{U+00e1}j",
      "j\N{U+00fa}n",
      "j\N{U+00fa}l",
      "august",
      "september",
      "okt\N{U+00f3}ber",
      "november",
      "december"
    ],
    name => "Slovak Slovakia",
    native_language => "sloven\N{U+010d}ina",
    native_name => "sloven\N{U+010d}ina Slovensko",
    native_script => undef,
    native_territory => "Slovensko",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. \N{U+0161}tvr\N{U+0165}rok",
      "2. \N{U+0161}tvr\N{U+0165}rok",
      "3. \N{U+0161}tvr\N{U+0165}rok",
      "4. \N{U+0161}tvr\N{U+0165}rok"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. \N{U+0161}tvr\N{U+0165}rok",
      "2. \N{U+0161}tvr\N{U+0165}rok",
      "3. \N{U+0161}tvr\N{U+0165}rok",
      "4. \N{U+0161}tvr\N{U+0165}rok"
    ],
    script => undef,
    territory => "Slovakia",
    time_format_full => "H:mm:ss zzzz",
    time_format_long => "H:mm:ss z",
    time_format_medium => "H:mm:ss",
    time_format_short => "H:mm",
    variant => undef,
    version => 28
  }
  __[ sl ]__
  {
    am_pm_abbreviated => [
      "dop.",
      "pop."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E, d.",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyM => "MMM y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d. MMM y G",
      GyMMMd => "d. MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d. M.",
      MMM => "LLL",
      MMMEd => "E, d. MMM",
      MMMMd => "d MMMM",
      MMMd => "d. MMM",
      Md => "d. M.",
      d => "d.",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d. M. y",
      yMMM => "MMM y",
      yMMMEd => "E, d. MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d. MMM y",
      yMd => "d. M. y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "sl",
    date_format_full => "EEEE, dd. MMMM y",
    date_format_long => "dd. MMMM y",
    date_format_medium => "d. MMM y",
    date_format_short => "d. MM. yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "pon.",
      "tor.",
      "sre.",
      "\N{U+010d}et.",
      "pet.",
      "sob.",
      "ned."
    ],
    day_format_narrow => [
      "p",
      "t",
      "s",
      "\N{U+010d}",
      "p",
      "s",
      "n"
    ],
    day_format_wide => [
      "ponedeljek",
      "torek",
      "sreda",
      "\N{U+010d}etrtek",
      "petek",
      "sobota",
      "nedelja"
    ],
    day_stand_alone_abbreviated => [
      "pon",
      "tor",
      "sre",
      "\N{U+010d}et",
      "pet",
      "sob",
      "ned"
    ],
    day_stand_alone_narrow => [
      "p",
      "t",
      "s",
      "\N{U+010d}",
      "p",
      "s",
      "n"
    ],
    day_stand_alone_wide => [
      "ponedeljek",
      "torek",
      "sreda",
      "\N{U+010d}etrtek",
      "petek",
      "sobota",
      "nedelja"
    ],
    era_abbreviated => [
      "pr. Kr.",
      "po n. \N{U+0161}t."
    ],
    era_narrow => [
      "pr. Kr.",
      "po n. \N{U+0161}t."
    ],
    era_wide => [
      "pred Kristusom",
      "na\N{U+0161}e \N{U+0161}tetje"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Slovenian",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "mar.",
      "apr.",
      "maj",
      "jun.",
      "jul.",
      "avg.",
      "sep.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_format_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "januar",
      "februar",
      "marec",
      "april",
      "maj",
      "junij",
      "julij",
      "avgust",
      "september",
      "oktober",
      "november",
      "december"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "maj",
      "jun",
      "jul",
      "avg",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_stand_alone_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_stand_alone_wide => [
      "januar",
      "februar",
      "marec",
      "april",
      "maj",
      "junij",
      "julij",
      "avgust",
      "september",
      "oktober",
      "november",
      "december"
    ],
    name => "Slovenian",
    native_language => "sloven\N{U+0161}\N{U+010d}ina",
    native_name => "sloven\N{U+0161}\N{U+010d}ina",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "1. \N{U+010d}et.",
      "2. \N{U+010d}et.",
      "3. \N{U+010d}et.",
      "4. \N{U+010d}et."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. \N{U+010d}etrtletje",
      "2. \N{U+010d}etrtletje",
      "3. \N{U+010d}etrtletje",
      "4. \N{U+010d}etrtletje"
    ],
    quarter_stand_alone_abbreviated => [
      "1. \N{U+010d}et.",
      "2. \N{U+010d}et.",
      "3. \N{U+010d}et.",
      "4. \N{U+010d}et."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. \N{U+010d}etrtletje",
      "2. \N{U+010d}etrtletje",
      "3. \N{U+010d}etrtletje",
      "4. \N{U+010d}etrtletje"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ sl-SI ]__
  {
    am_pm_abbreviated => [
      "dop.",
      "pop."
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E, d.",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyM => "MMM y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d. MMM y G",
      GyMMMd => "d. MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d. M.",
      MMM => "LLL",
      MMMEd => "E, d. MMM",
      MMMMd => "d MMMM",
      MMMd => "d. MMM",
      Md => "d. M.",
      d => "d.",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d. M. y",
      yMMM => "MMM y",
      yMMMEd => "E, d. MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d. MMM y",
      yMd => "d. M. y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "sl-SI",
    date_format_full => "EEEE, dd. MMMM y",
    date_format_long => "dd. MMMM y",
    date_format_medium => "d. MMM y",
    date_format_short => "d. MM. yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "pon.",
      "tor.",
      "sre.",
      "\N{U+010d}et.",
      "pet.",
      "sob.",
      "ned."
    ],
    day_format_narrow => [
      "p",
      "t",
      "s",
      "\N{U+010d}",
      "p",
      "s",
      "n"
    ],
    day_format_wide => [
      "ponedeljek",
      "torek",
      "sreda",
      "\N{U+010d}etrtek",
      "petek",
      "sobota",
      "nedelja"
    ],
    day_stand_alone_abbreviated => [
      "pon",
      "tor",
      "sre",
      "\N{U+010d}et",
      "pet",
      "sob",
      "ned"
    ],
    day_stand_alone_narrow => [
      "p",
      "t",
      "s",
      "\N{U+010d}",
      "p",
      "s",
      "n"
    ],
    day_stand_alone_wide => [
      "ponedeljek",
      "torek",
      "sreda",
      "\N{U+010d}etrtek",
      "petek",
      "sobota",
      "nedelja"
    ],
    era_abbreviated => [
      "pr. Kr.",
      "po n. \N{U+0161}t."
    ],
    era_narrow => [
      "pr. Kr.",
      "po n. \N{U+0161}t."
    ],
    era_wide => [
      "pred Kristusom",
      "na\N{U+0161}e \N{U+0161}tetje"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d. %m. %Y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Slovenian",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "mar.",
      "apr.",
      "maj",
      "jun.",
      "jul.",
      "avg.",
      "sep.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_format_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "januar",
      "februar",
      "marec",
      "april",
      "maj",
      "junij",
      "julij",
      "avgust",
      "september",
      "oktober",
      "november",
      "december"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "maj",
      "jun",
      "jul",
      "avg",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_stand_alone_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_stand_alone_wide => [
      "januar",
      "februar",
      "marec",
      "april",
      "maj",
      "junij",
      "julij",
      "avgust",
      "september",
      "oktober",
      "november",
      "december"
    ],
    name => "Slovenian Slovenia",
    native_language => "sloven\N{U+0161}\N{U+010d}ina",
    native_name => "sloven\N{U+0161}\N{U+010d}ina Slovenija",
    native_script => undef,
    native_territory => "Slovenija",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1. \N{U+010d}et.",
      "2. \N{U+010d}et.",
      "3. \N{U+010d}et.",
      "4. \N{U+010d}et."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. \N{U+010d}etrtletje",
      "2. \N{U+010d}etrtletje",
      "3. \N{U+010d}etrtletje",
      "4. \N{U+010d}etrtletje"
    ],
    quarter_stand_alone_abbreviated => [
      "1. \N{U+010d}et.",
      "2. \N{U+010d}et.",
      "3. \N{U+010d}et.",
      "4. \N{U+010d}et."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. \N{U+010d}etrtletje",
      "2. \N{U+010d}etrtletje",
      "3. \N{U+010d}etrtletje",
      "4. \N{U+010d}etrtletje"
    ],
    script => undef,
    territory => "Slovenia",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ smn ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "smn",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "vu",
      "ma",
      "ko",
      "tu",
      "v\N{U+00e1}",
      "l\N{U+00e1}",
      "pa"
    ],
    day_format_narrow => [
      "V",
      "M",
      "K",
      "T",
      "V",
      "L",
      "P"
    ],
    day_format_wide => [
      "vuossaarg\N{U+00e2}",
      "majebaarg\N{U+00e2}",
      "koskoho",
      "tuor\N{U+00e2}stuv",
      "v\N{U+00e1}stuppeeivi",
      "l\N{U+00e1}vurduv",
      "pasepeeivi"
    ],
    day_stand_alone_abbreviated => [
      "vu",
      "ma",
      "ko",
      "tu",
      "v\N{U+00e1}",
      "l\N{U+00e1}",
      "pa"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "vuossarg\N{U+00e2}",
      "majebarg\N{U+00e2}",
      "koskokko",
      "tuor\N{U+00e2}st\N{U+00e2}h",
      "v\N{U+00e1}stuppeivi",
      "l\N{U+00e1}vurd\N{U+00e2}h",
      "pasepeivi"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Inari Sami",
    month_format_abbreviated => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_stand_alone_abbreviated => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "u\N{U+0111}\N{U+0111}\N{U+00e2}ivem\N{U+00e1}\N{U+00e1}nu",
      "kuov\N{U+00e2}m\N{U+00e1}\N{U+00e1}nu",
      "njuh\N{U+010d}\N{U+00e2}m\N{U+00e1}\N{U+00e1}nu",
      "cu\N{U+00e1}\N{U+014b}uim\N{U+00e1}\N{U+00e1}nu",
      "vyesim\N{U+00e1}\N{U+00e1}nu",
      "kesim\N{U+00e1}\N{U+00e1}nu",
      "syeinim\N{U+00e1}\N{U+00e1}nu",
      "porgem\N{U+00e1}\N{U+00e1}nu",
      "\N{U+010d}oh\N{U+010d}\N{U+00e2}m\N{U+00e1}\N{U+00e1}nu",
      "roovv\N{U+00e2}dm\N{U+00e1}\N{U+00e1}nu",
      "skamm\N{U+00e2}m\N{U+00e1}\N{U+00e1}nu",
      "juovl\N{U+00e2}m\N{U+00e1}\N{U+00e1}nu"
    ],
    name => "Inari Sami",
    native_language => "anar\N{U+00e2}\N{U+0161}kiel\N{U+00e2}",
    native_name => "anar\N{U+00e2}\N{U+0161}kiel\N{U+00e2}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "1. ni\N{U+00e4}lj.",
      "2. ni\N{U+00e4}lj.",
      "3. ni\N{U+00e4}lj.",
      "4. ni\N{U+00e4}lj."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. ni\N{U+00e4}lj\N{U+00e1}d\N{U+00e2}s",
      "2. ni\N{U+00e4}lj\N{U+00e1}d\N{U+00e2}s",
      "3. ni\N{U+00e4}lj\N{U+00e1}d\N{U+00e2}s",
      "4. ni\N{U+00e4}lj\N{U+00e1}d\N{U+00e2}s"
    ],
    quarter_stand_alone_abbreviated => [
      "1. ni\N{U+00e4}lj.",
      "2. ni\N{U+00e4}lj.",
      "3. ni\N{U+00e4}lj.",
      "4. ni\N{U+00e4}lj."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. ni\N{U+00e4}lj\N{U+00e1}d\N{U+00e2}s",
      "2. ni\N{U+00e4}lj\N{U+00e1}d\N{U+00e2}s",
      "3. ni\N{U+00e4}lj\N{U+00e1}d\N{U+00e2}s",
      "4. ni\N{U+00e4}lj\N{U+00e1}d\N{U+00e2}s"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ smn-FI ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "smn-FI",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "vu",
      "ma",
      "ko",
      "tu",
      "v\N{U+00e1}",
      "l\N{U+00e1}",
      "pa"
    ],
    day_format_narrow => [
      "V",
      "M",
      "K",
      "T",
      "V",
      "L",
      "P"
    ],
    day_format_wide => [
      "vuossaarg\N{U+00e2}",
      "majebaarg\N{U+00e2}",
      "koskoho",
      "tuor\N{U+00e2}stuv",
      "v\N{U+00e1}stuppeeivi",
      "l\N{U+00e1}vurduv",
      "pasepeeivi"
    ],
    day_stand_alone_abbreviated => [
      "vu",
      "ma",
      "ko",
      "tu",
      "v\N{U+00e1}",
      "l\N{U+00e1}",
      "pa"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "vuossarg\N{U+00e2}",
      "majebarg\N{U+00e2}",
      "koskokko",
      "tuor\N{U+00e2}st\N{U+00e2}h",
      "v\N{U+00e1}stuppeivi",
      "l\N{U+00e1}vurd\N{U+00e2}h",
      "pasepeivi"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Inari Sami",
    month_format_abbreviated => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_stand_alone_abbreviated => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "u\N{U+0111}\N{U+0111}\N{U+00e2}ivem\N{U+00e1}\N{U+00e1}nu",
      "kuov\N{U+00e2}m\N{U+00e1}\N{U+00e1}nu",
      "njuh\N{U+010d}\N{U+00e2}m\N{U+00e1}\N{U+00e1}nu",
      "cu\N{U+00e1}\N{U+014b}uim\N{U+00e1}\N{U+00e1}nu",
      "vyesim\N{U+00e1}\N{U+00e1}nu",
      "kesim\N{U+00e1}\N{U+00e1}nu",
      "syeinim\N{U+00e1}\N{U+00e1}nu",
      "porgem\N{U+00e1}\N{U+00e1}nu",
      "\N{U+010d}oh\N{U+010d}\N{U+00e2}m\N{U+00e1}\N{U+00e1}nu",
      "roovv\N{U+00e2}dm\N{U+00e1}\N{U+00e1}nu",
      "skamm\N{U+00e2}m\N{U+00e1}\N{U+00e1}nu",
      "juovl\N{U+00e2}m\N{U+00e1}\N{U+00e1}nu"
    ],
    name => "Inari Sami Finland",
    native_language => "anar\N{U+00e2}\N{U+0161}kiel\N{U+00e2}",
    native_name => "anar\N{U+00e2}\N{U+0161}kiel\N{U+00e2} Suom\N{U+00e2}",
    native_script => undef,
    native_territory => "Suom\N{U+00e2}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1. ni\N{U+00e4}lj.",
      "2. ni\N{U+00e4}lj.",
      "3. ni\N{U+00e4}lj.",
      "4. ni\N{U+00e4}lj."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. ni\N{U+00e4}lj\N{U+00e1}d\N{U+00e2}s",
      "2. ni\N{U+00e4}lj\N{U+00e1}d\N{U+00e2}s",
      "3. ni\N{U+00e4}lj\N{U+00e1}d\N{U+00e2}s",
      "4. ni\N{U+00e4}lj\N{U+00e1}d\N{U+00e2}s"
    ],
    quarter_stand_alone_abbreviated => [
      "1. ni\N{U+00e4}lj.",
      "2. ni\N{U+00e4}lj.",
      "3. ni\N{U+00e4}lj.",
      "4. ni\N{U+00e4}lj."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. ni\N{U+00e4}lj\N{U+00e1}d\N{U+00e2}s",
      "2. ni\N{U+00e4}lj\N{U+00e1}d\N{U+00e2}s",
      "3. ni\N{U+00e4}lj\N{U+00e1}d\N{U+00e2}s",
      "4. ni\N{U+00e4}lj\N{U+00e1}d\N{U+00e2}s"
    ],
    script => undef,
    territory => "Finland",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ sn ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "sn",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Muv",
      "Chip",
      "Chit",
      "Chin",
      "Chis",
      "Mug",
      "Svo"
    ],
    day_format_narrow => [
      "M",
      "C",
      "C",
      "C",
      "C",
      "M",
      "S"
    ],
    day_format_wide => [
      "Muvhuro",
      "Chipiri",
      "Chitatu",
      "China",
      "Chishanu",
      "Mugovera",
      "Svondo"
    ],
    day_stand_alone_abbreviated => [
      "Muv",
      "Chip",
      "Chit",
      "Chin",
      "Chis",
      "Mug",
      "Svo"
    ],
    day_stand_alone_narrow => [
      "M",
      "C",
      "C",
      "C",
      "C",
      "M",
      "S"
    ],
    day_stand_alone_wide => [
      "Muvhuro",
      "Chipiri",
      "Chitatu",
      "China",
      "Chishanu",
      "Mugovera",
      "Svondo"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "Kristo asati auya",
      "Kristo ashaya"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Shona",
    month_format_abbreviated => [
      "Ndi",
      "Kuk",
      "Kur",
      "Kub",
      "Chv",
      "Chk",
      "Chg",
      "Nya",
      "Gun",
      "Gum",
      "Mb",
      "Zvi"
    ],
    month_format_narrow => [
      "N",
      "K",
      "K",
      "K",
      "C",
      "C",
      "C",
      "N",
      "G",
      "G",
      "M",
      "Z"
    ],
    month_format_wide => [
      "Ndira",
      "Kukadzi",
      "Kurume",
      "Kubvumbi",
      "Chivabvu",
      "Chikumi",
      "Chikunguru",
      "Nyamavhuvhu",
      "Gunyana",
      "Gumiguru",
      "Mbudzi",
      "Zvita"
    ],
    month_stand_alone_abbreviated => [
      "Ndi",
      "Kuk",
      "Kur",
      "Kub",
      "Chv",
      "Chk",
      "Chg",
      "Nya",
      "Gun",
      "Gum",
      "Mb",
      "Zvi"
    ],
    month_stand_alone_narrow => [
      "N",
      "K",
      "K",
      "K",
      "C",
      "C",
      "C",
      "N",
      "G",
      "G",
      "M",
      "Z"
    ],
    month_stand_alone_wide => [
      "Ndira",
      "Kukadzi",
      "Kurume",
      "Kubvumbi",
      "Chivabvu",
      "Chikumi",
      "Chikunguru",
      "Nyamavhuvhu",
      "Gunyana",
      "Gumiguru",
      "Mbudzi",
      "Zvita"
    ],
    name => "Shona",
    native_language => "chiShona",
    native_name => "chiShona",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Kota 1",
      "Kota 2",
      "Kota 3",
      "Kota 4"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Kota 1",
      "Kota 2",
      "Kota 3",
      "Kota 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ sn-ZW ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "sn-ZW",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Muv",
      "Chip",
      "Chit",
      "Chin",
      "Chis",
      "Mug",
      "Svo"
    ],
    day_format_narrow => [
      "M",
      "C",
      "C",
      "C",
      "C",
      "M",
      "S"
    ],
    day_format_wide => [
      "Muvhuro",
      "Chipiri",
      "Chitatu",
      "China",
      "Chishanu",
      "Mugovera",
      "Svondo"
    ],
    day_stand_alone_abbreviated => [
      "Muv",
      "Chip",
      "Chit",
      "Chin",
      "Chis",
      "Mug",
      "Svo"
    ],
    day_stand_alone_narrow => [
      "M",
      "C",
      "C",
      "C",
      "C",
      "M",
      "S"
    ],
    day_stand_alone_wide => [
      "Muvhuro",
      "Chipiri",
      "Chitatu",
      "China",
      "Chishanu",
      "Mugovera",
      "Svondo"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "Kristo asati auya",
      "Kristo ashaya"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Shona",
    month_format_abbreviated => [
      "Ndi",
      "Kuk",
      "Kur",
      "Kub",
      "Chv",
      "Chk",
      "Chg",
      "Nya",
      "Gun",
      "Gum",
      "Mb",
      "Zvi"
    ],
    month_format_narrow => [
      "N",
      "K",
      "K",
      "K",
      "C",
      "C",
      "C",
      "N",
      "G",
      "G",
      "M",
      "Z"
    ],
    month_format_wide => [
      "Ndira",
      "Kukadzi",
      "Kurume",
      "Kubvumbi",
      "Chivabvu",
      "Chikumi",
      "Chikunguru",
      "Nyamavhuvhu",
      "Gunyana",
      "Gumiguru",
      "Mbudzi",
      "Zvita"
    ],
    month_stand_alone_abbreviated => [
      "Ndi",
      "Kuk",
      "Kur",
      "Kub",
      "Chv",
      "Chk",
      "Chg",
      "Nya",
      "Gun",
      "Gum",
      "Mb",
      "Zvi"
    ],
    month_stand_alone_narrow => [
      "N",
      "K",
      "K",
      "K",
      "C",
      "C",
      "C",
      "N",
      "G",
      "G",
      "M",
      "Z"
    ],
    month_stand_alone_wide => [
      "Ndira",
      "Kukadzi",
      "Kurume",
      "Kubvumbi",
      "Chivabvu",
      "Chikumi",
      "Chikunguru",
      "Nyamavhuvhu",
      "Gunyana",
      "Gumiguru",
      "Mbudzi",
      "Zvita"
    ],
    name => "Shona Zimbabwe",
    native_language => "chiShona",
    native_name => "chiShona Zimbabwe",
    native_script => undef,
    native_territory => "Zimbabwe",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Kota 1",
      "Kota 2",
      "Kota 3",
      "Kota 4"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Kota 1",
      "Kota 2",
      "Kota 3",
      "Kota 4"
    ],
    script => undef,
    territory => "Zimbabwe",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ so ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "so",
    date_format_full => "EEEE, MMMM dd, y",
    date_format_long => "dd MMMM y",
    date_format_medium => "dd-MMM-y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Isn",
      "Tal",
      "Arb",
      "Kha",
      "Jim",
      "Sab",
      "Axd"
    ],
    day_format_narrow => [
      "I",
      "T",
      "A",
      "K",
      "J",
      "S",
      "A"
    ],
    day_format_wide => [
      "Isniin",
      "Talaado",
      "Arbaco",
      "Khamiis",
      "Jimco",
      "Sabti",
      "Axad"
    ],
    day_stand_alone_abbreviated => [
      "Isn",
      "Tal",
      "Arb",
      "Kha",
      "Jim",
      "Sab",
      "Axd"
    ],
    day_stand_alone_narrow => [
      "I",
      "T",
      "A",
      "K",
      "J",
      "S",
      "A"
    ],
    day_stand_alone_wide => [
      "Isniin",
      "Talaado",
      "Arbaco",
      "Khamiis",
      "Jimco",
      "Sabti",
      "Axad"
    ],
    era_abbreviated => [
      "CK",
      "CD"
    ],
    era_narrow => [
      "CK",
      "CD"
    ],
    era_wide => [
      "Ciise ka hor (CS)",
      "Ciise ka dib (CS)"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Somali",
    month_format_abbreviated => [
      "Kob",
      "Lab",
      "Sad",
      "Afr",
      "Sha",
      "Lix",
      "Tod",
      "Sid",
      "Sag",
      "Tob",
      "KIT",
      "LIT"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Bisha Koobaad",
      "Bisha Labaad",
      "Bisha Saddexaad",
      "Bisha Afraad",
      "Bisha Shanaad",
      "Bisha Lixaad",
      "Bisha Todobaad",
      "Bisha Sideedaad",
      "Bisha Sagaalaad",
      "Bisha Tobnaad",
      "Bisha Kow iyo Tobnaad",
      "Bisha Laba iyo Tobnaad"
    ],
    month_stand_alone_abbreviated => [
      "Kob",
      "Lab",
      "Sad",
      "Afr",
      "Sha",
      "Lix",
      "Tod",
      "Sid",
      "Sag",
      "Tob",
      "KIT",
      "LIT"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Bisha Koobaad",
      "Bisha Labaad",
      "Bisha Saddexaad",
      "Bisha Afraad",
      "Bisha Shanaad",
      "Bisha Lixaad",
      "Bisha Todobaad",
      "Bisha Sideedaad",
      "Bisha Sagaalaad",
      "Bisha Tobnaad",
      "Bisha Kow iyo Tobnaad",
      "Bisha Laba iyo Tobnaad"
    ],
    name => "Somali",
    native_language => "Soomaali",
    native_name => "Soomaali",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Rubaca 1aad",
      "Rubaca 2aad",
      "Rubaca 3aad",
      "Rubaca 4aad"
    ],
    quarter_stand_alone_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Rubaca 1aad",
      "Rubaca 2aad",
      "Rubaca 3aad",
      "Rubaca 4aad"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ so-DJ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "so-DJ",
    date_format_full => "EEEE, MMMM dd, y",
    date_format_long => "dd MMMM y",
    date_format_medium => "dd-MMM-y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Isn",
      "Tal",
      "Arb",
      "Kha",
      "Jim",
      "Sab",
      "Axd"
    ],
    day_format_narrow => [
      "I",
      "T",
      "A",
      "K",
      "J",
      "S",
      "A"
    ],
    day_format_wide => [
      "Isniin",
      "Talaado",
      "Arbaco",
      "Khamiis",
      "Jimco",
      "Sabti",
      "Axad"
    ],
    day_stand_alone_abbreviated => [
      "Isn",
      "Tal",
      "Arb",
      "Kha",
      "Jim",
      "Sab",
      "Axd"
    ],
    day_stand_alone_narrow => [
      "I",
      "T",
      "A",
      "K",
      "J",
      "S",
      "A"
    ],
    day_stand_alone_wide => [
      "Isniin",
      "Talaado",
      "Arbaco",
      "Khamiis",
      "Jimco",
      "Sabti",
      "Axad"
    ],
    era_abbreviated => [
      "CK",
      "CD"
    ],
    era_narrow => [
      "CK",
      "CD"
    ],
    era_wide => [
      "Ciise ka hor (CS)",
      "Ciise ka dib (CS)"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %r %Z %Y",
    glibc_date_format => "%d.%m.%Y",
    glibc_datetime_format => "%a %d %b %Y %r %Z",
    glibc_time_12_format => "%X %p",
    glibc_time_format => "%l:%M:%S",
    language => "Somali",
    month_format_abbreviated => [
      "Kob",
      "Lab",
      "Sad",
      "Afr",
      "Sha",
      "Lix",
      "Tod",
      "Sid",
      "Sag",
      "Tob",
      "KIT",
      "LIT"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Bisha Koobaad",
      "Bisha Labaad",
      "Bisha Saddexaad",
      "Bisha Afraad",
      "Bisha Shanaad",
      "Bisha Lixaad",
      "Bisha Todobaad",
      "Bisha Sideedaad",
      "Bisha Sagaalaad",
      "Bisha Tobnaad",
      "Bisha Kow iyo Tobnaad",
      "Bisha Laba iyo Tobnaad"
    ],
    month_stand_alone_abbreviated => [
      "Kob",
      "Lab",
      "Sad",
      "Afr",
      "Sha",
      "Lix",
      "Tod",
      "Sid",
      "Sag",
      "Tob",
      "KIT",
      "LIT"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Bisha Koobaad",
      "Bisha Labaad",
      "Bisha Saddexaad",
      "Bisha Afraad",
      "Bisha Shanaad",
      "Bisha Lixaad",
      "Bisha Todobaad",
      "Bisha Sideedaad",
      "Bisha Sagaalaad",
      "Bisha Tobnaad",
      "Bisha Kow iyo Tobnaad",
      "Bisha Laba iyo Tobnaad"
    ],
    name => "Somali Djibouti",
    native_language => "Soomaali",
    native_name => "Soomaali Jabuuti",
    native_script => undef,
    native_territory => "Jabuuti",
    native_variant => undef,
    quarter_format_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Rubaca 1aad",
      "Rubaca 2aad",
      "Rubaca 3aad",
      "Rubaca 4aad"
    ],
    quarter_stand_alone_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Rubaca 1aad",
      "Rubaca 2aad",
      "Rubaca 3aad",
      "Rubaca 4aad"
    ],
    script => undef,
    territory => "Djibouti",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ so-ET ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "so-ET",
    date_format_full => "EEEE, MMMM dd, y",
    date_format_long => "dd MMMM y",
    date_format_medium => "dd-MMM-y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Isn",
      "Tal",
      "Arb",
      "Kha",
      "Jim",
      "Sab",
      "Axd"
    ],
    day_format_narrow => [
      "I",
      "T",
      "A",
      "K",
      "J",
      "S",
      "A"
    ],
    day_format_wide => [
      "Isniin",
      "Talaado",
      "Arbaco",
      "Khamiis",
      "Jimco",
      "Sabti",
      "Axad"
    ],
    day_stand_alone_abbreviated => [
      "Isn",
      "Tal",
      "Arb",
      "Kha",
      "Jim",
      "Sab",
      "Axd"
    ],
    day_stand_alone_narrow => [
      "I",
      "T",
      "A",
      "K",
      "J",
      "S",
      "A"
    ],
    day_stand_alone_wide => [
      "Isniin",
      "Talaado",
      "Arbaco",
      "Khamiis",
      "Jimco",
      "Sabti",
      "Axad"
    ],
    era_abbreviated => [
      "CK",
      "CD"
    ],
    era_narrow => [
      "CK",
      "CD"
    ],
    era_wide => [
      "Ciise ka hor (CS)",
      "Ciise ka dib (CS)"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%A, %B %e, %r %Z %Y",
    glibc_date_format => "%d/%m/%Y",
    glibc_datetime_format => "%A, %B %e, %Y %r %Z",
    glibc_time_12_format => "%X %p",
    glibc_time_format => "%l:%M:%S",
    language => "Somali",
    month_format_abbreviated => [
      "Kob",
      "Lab",
      "Sad",
      "Afr",
      "Sha",
      "Lix",
      "Tod",
      "Sid",
      "Sag",
      "Tob",
      "KIT",
      "LIT"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Bisha Koobaad",
      "Bisha Labaad",
      "Bisha Saddexaad",
      "Bisha Afraad",
      "Bisha Shanaad",
      "Bisha Lixaad",
      "Bisha Todobaad",
      "Bisha Sideedaad",
      "Bisha Sagaalaad",
      "Bisha Tobnaad",
      "Bisha Kow iyo Tobnaad",
      "Bisha Laba iyo Tobnaad"
    ],
    month_stand_alone_abbreviated => [
      "Kob",
      "Lab",
      "Sad",
      "Afr",
      "Sha",
      "Lix",
      "Tod",
      "Sid",
      "Sag",
      "Tob",
      "KIT",
      "LIT"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Bisha Koobaad",
      "Bisha Labaad",
      "Bisha Saddexaad",
      "Bisha Afraad",
      "Bisha Shanaad",
      "Bisha Lixaad",
      "Bisha Todobaad",
      "Bisha Sideedaad",
      "Bisha Sagaalaad",
      "Bisha Tobnaad",
      "Bisha Kow iyo Tobnaad",
      "Bisha Laba iyo Tobnaad"
    ],
    name => "Somali Ethiopia",
    native_language => "Soomaali",
    native_name => "Soomaali Itoobiya",
    native_script => undef,
    native_territory => "Itoobiya",
    native_variant => undef,
    quarter_format_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Rubaca 1aad",
      "Rubaca 2aad",
      "Rubaca 3aad",
      "Rubaca 4aad"
    ],
    quarter_stand_alone_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Rubaca 1aad",
      "Rubaca 2aad",
      "Rubaca 3aad",
      "Rubaca 4aad"
    ],
    script => undef,
    territory => "Ethiopia",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ so-KE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "so-KE",
    date_format_full => "EEEE, MMMM dd, y",
    date_format_long => "dd MMMM y",
    date_format_medium => "dd-MMM-y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Isn",
      "Tal",
      "Arb",
      "Kha",
      "Jim",
      "Sab",
      "Axd"
    ],
    day_format_narrow => [
      "I",
      "T",
      "A",
      "K",
      "J",
      "S",
      "A"
    ],
    day_format_wide => [
      "Isniin",
      "Talaado",
      "Arbaco",
      "Khamiis",
      "Jimco",
      "Sabti",
      "Axad"
    ],
    day_stand_alone_abbreviated => [
      "Isn",
      "Tal",
      "Arb",
      "Kha",
      "Jim",
      "Sab",
      "Axd"
    ],
    day_stand_alone_narrow => [
      "I",
      "T",
      "A",
      "K",
      "J",
      "S",
      "A"
    ],
    day_stand_alone_wide => [
      "Isniin",
      "Talaado",
      "Arbaco",
      "Khamiis",
      "Jimco",
      "Sabti",
      "Axad"
    ],
    era_abbreviated => [
      "CK",
      "CD"
    ],
    era_narrow => [
      "CK",
      "CD"
    ],
    era_wide => [
      "Ciise ka hor (CS)",
      "Ciise ka dib (CS)"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%A, %B %e, %r %Z %Y",
    glibc_date_format => "%d/%m/%Y",
    glibc_datetime_format => "%A, %B %e, %Y %r %Z",
    glibc_time_12_format => "%X %p",
    glibc_time_format => "%l:%M:%S",
    language => "Somali",
    month_format_abbreviated => [
      "Kob",
      "Lab",
      "Sad",
      "Afr",
      "Sha",
      "Lix",
      "Tod",
      "Sid",
      "Sag",
      "Tob",
      "KIT",
      "LIT"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Bisha Koobaad",
      "Bisha Labaad",
      "Bisha Saddexaad",
      "Bisha Afraad",
      "Bisha Shanaad",
      "Bisha Lixaad",
      "Bisha Todobaad",
      "Bisha Sideedaad",
      "Bisha Sagaalaad",
      "Bisha Tobnaad",
      "Bisha Kow iyo Tobnaad",
      "Bisha Laba iyo Tobnaad"
    ],
    month_stand_alone_abbreviated => [
      "Kob",
      "Lab",
      "Sad",
      "Afr",
      "Sha",
      "Lix",
      "Tod",
      "Sid",
      "Sag",
      "Tob",
      "KIT",
      "LIT"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Bisha Koobaad",
      "Bisha Labaad",
      "Bisha Saddexaad",
      "Bisha Afraad",
      "Bisha Shanaad",
      "Bisha Lixaad",
      "Bisha Todobaad",
      "Bisha Sideedaad",
      "Bisha Sagaalaad",
      "Bisha Tobnaad",
      "Bisha Kow iyo Tobnaad",
      "Bisha Laba iyo Tobnaad"
    ],
    name => "Somali Kenya",
    native_language => "Soomaali",
    native_name => "Soomaali Kiiniya",
    native_script => undef,
    native_territory => "Kiiniya",
    native_variant => undef,
    quarter_format_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Rubaca 1aad",
      "Rubaca 2aad",
      "Rubaca 3aad",
      "Rubaca 4aad"
    ],
    quarter_stand_alone_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Rubaca 1aad",
      "Rubaca 2aad",
      "Rubaca 3aad",
      "Rubaca 4aad"
    ],
    script => undef,
    territory => "Kenya",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ so-SO ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "so-SO",
    date_format_full => "EEEE, MMMM dd, y",
    date_format_long => "dd MMMM y",
    date_format_medium => "dd-MMM-y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Isn",
      "Tal",
      "Arb",
      "Kha",
      "Jim",
      "Sab",
      "Axd"
    ],
    day_format_narrow => [
      "I",
      "T",
      "A",
      "K",
      "J",
      "S",
      "A"
    ],
    day_format_wide => [
      "Isniin",
      "Talaado",
      "Arbaco",
      "Khamiis",
      "Jimco",
      "Sabti",
      "Axad"
    ],
    day_stand_alone_abbreviated => [
      "Isn",
      "Tal",
      "Arb",
      "Kha",
      "Jim",
      "Sab",
      "Axd"
    ],
    day_stand_alone_narrow => [
      "I",
      "T",
      "A",
      "K",
      "J",
      "S",
      "A"
    ],
    day_stand_alone_wide => [
      "Isniin",
      "Talaado",
      "Arbaco",
      "Khamiis",
      "Jimco",
      "Sabti",
      "Axad"
    ],
    era_abbreviated => [
      "CK",
      "CD"
    ],
    era_narrow => [
      "CK",
      "CD"
    ],
    era_wide => [
      "Ciise ka hor (CS)",
      "Ciise ka dib (CS)"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%A, %B %e, %r %Z %Y",
    glibc_date_format => "%d/%m/%Y",
    glibc_datetime_format => "%A, %B %e, %Y %r %Z",
    glibc_time_12_format => "%X %p",
    glibc_time_format => "%l:%M:%S",
    language => "Somali",
    month_format_abbreviated => [
      "Kob",
      "Lab",
      "Sad",
      "Afr",
      "Sha",
      "Lix",
      "Tod",
      "Sid",
      "Sag",
      "Tob",
      "KIT",
      "LIT"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Bisha Koobaad",
      "Bisha Labaad",
      "Bisha Saddexaad",
      "Bisha Afraad",
      "Bisha Shanaad",
      "Bisha Lixaad",
      "Bisha Todobaad",
      "Bisha Sideedaad",
      "Bisha Sagaalaad",
      "Bisha Tobnaad",
      "Bisha Kow iyo Tobnaad",
      "Bisha Laba iyo Tobnaad"
    ],
    month_stand_alone_abbreviated => [
      "Kob",
      "Lab",
      "Sad",
      "Afr",
      "Sha",
      "Lix",
      "Tod",
      "Sid",
      "Sag",
      "Tob",
      "KIT",
      "LIT"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Bisha Koobaad",
      "Bisha Labaad",
      "Bisha Saddexaad",
      "Bisha Afraad",
      "Bisha Shanaad",
      "Bisha Lixaad",
      "Bisha Todobaad",
      "Bisha Sideedaad",
      "Bisha Sagaalaad",
      "Bisha Tobnaad",
      "Bisha Kow iyo Tobnaad",
      "Bisha Laba iyo Tobnaad"
    ],
    name => "Somali Somalia",
    native_language => "Soomaali",
    native_name => "Soomaali Soomaaliya",
    native_script => undef,
    native_territory => "Soomaaliya",
    native_variant => undef,
    quarter_format_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Rubaca 1aad",
      "Rubaca 2aad",
      "Rubaca 3aad",
      "Rubaca 4aad"
    ],
    quarter_stand_alone_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Rubaca 1aad",
      "Rubaca 2aad",
      "Rubaca 3aad",
      "Rubaca 4aad"
    ],
    script => undef,
    territory => "Somalia",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ sq ]__
  {
    am_pm_abbreviated => [
      "e paradites",
      "e pasdites"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss, v",
      Hmv => "HH:mm, v",
      M => "L",
      MEd => "E, d.M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "d.M",
      Md => "d.M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a, v",
      hmv => "h:mm a, v",
      ms => "mm:ss",
      y => "y",
      yM => "M.y",
      yMEd => "E, d.M.y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d.M.y",
      yQQQ => "QQQ, y",
      yQQQQ => "QQQQ, y"
    },
    code => "sq",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d.M.yy",
    datetime_format_full => "{1} 'n\N{U+00eb}' {0}",
    datetime_format_long => "{1} 'n\N{U+00eb}' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "H\N{U+00eb}n",
      "Mar",
      "M\N{U+00eb}r",
      "Enj",
      "Pre",
      "Sht",
      "Die"
    ],
    day_format_narrow => [
      "H",
      "M",
      "M",
      "E",
      "P",
      "S",
      "D"
    ],
    day_format_wide => [
      "e h\N{U+00eb}n\N{U+00eb}",
      "e mart\N{U+00eb}",
      "e m\N{U+00eb}rkur\N{U+00eb}",
      "e enjte",
      "e premte",
      "e shtun\N{U+00eb}",
      "e diel"
    ],
    day_stand_alone_abbreviated => [
      "H\N{U+00eb}n",
      "Mar",
      "M\N{U+00eb}r",
      "Enj",
      "Pre",
      "Sht",
      "Die"
    ],
    day_stand_alone_narrow => [
      "H",
      "M",
      "M",
      "E",
      "P",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "E h\N{U+00eb}n\N{U+00eb}",
      "E mart\N{U+00eb}",
      "E m\N{U+00eb}rkur\N{U+00eb}",
      "E enjte",
      "E premte",
      "E shtun\N{U+00eb}",
      "E diel"
    ],
    era_abbreviated => [
      "p.e.r.",
      "e.r."
    ],
    era_narrow => [
      "p.e.r.",
      "e.r."
    ],
    era_wide => [
      "para er\N{U+00eb}s s\N{U+00eb} re",
      "er\N{U+00eb}s s\N{U+00eb} re"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Albanian",
    month_format_abbreviated => [
      "Jan",
      "Shk",
      "Mar",
      "Pri",
      "Maj",
      "Qer",
      "Kor",
      "Gsh",
      "Sht",
      "Tet",
      "N\N{U+00eb}n",
      "Dhj"
    ],
    month_format_narrow => [
      "J",
      "S",
      "M",
      "P",
      "M",
      "Q",
      "K",
      "G",
      "S",
      "T",
      "N",
      "D"
    ],
    month_format_wide => [
      "janar",
      "shkurt",
      "mars",
      "prill",
      "maj",
      "qershor",
      "korrik",
      "gusht",
      "shtator",
      "tetor",
      "n\N{U+00eb}ntor",
      "dhjetor"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Shk",
      "Mar",
      "Pri",
      "Maj",
      "Qer",
      "Kor",
      "Gsh",
      "Sht",
      "Tet",
      "N\N{U+00eb}n",
      "Dhj"
    ],
    month_stand_alone_narrow => [
      "J",
      "S",
      "M",
      "P",
      "M",
      "Q",
      "K",
      "G",
      "S",
      "T",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Janar",
      "Shkurt",
      "Mars",
      "Prill",
      "Maj",
      "Qershor",
      "Korrik",
      "Gusht",
      "Shtator",
      "Tetor",
      "N\N{U+00eb}ntor",
      "Dhjetor"
    ],
    name => "Albanian",
    native_language => "shqip",
    native_name => "shqip",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "tremujori I",
      "tremujori II",
      "tremujori III",
      "tremujori IV"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "tremujori i par\N{U+00eb}",
      "tremujori i dyt\N{U+00eb}",
      "tremujori i tret\N{U+00eb}",
      "tremujori i kat\N{U+00eb}rt"
    ],
    quarter_stand_alone_abbreviated => [
      "Tremujori I",
      "Tremujori II",
      "Tremujori III",
      "Tremujori IV"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Tremujori i 1-r\N{U+00eb}",
      "Tremujori i 2-t\N{U+00eb}",
      "Tremujori i 3-t\N{U+00eb}",
      "Tremujori i 4-t"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a, zzzz",
    time_format_long => "h:mm:ss a, z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ sq-AL ]__
  {
    am_pm_abbreviated => [
      "e paradites",
      "e pasdites"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss, v",
      Hmv => "HH:mm, v",
      M => "L",
      MEd => "E, d.M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "d.M",
      Md => "d.M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a, v",
      hmv => "h:mm a, v",
      ms => "mm:ss",
      y => "y",
      yM => "M.y",
      yMEd => "E, d.M.y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d.M.y",
      yQQQ => "QQQ, y",
      yQQQQ => "QQQQ, y"
    },
    code => "sq-AL",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d.M.yy",
    datetime_format_full => "{1} 'n\N{U+00eb}' {0}",
    datetime_format_long => "{1} 'n\N{U+00eb}' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "H\N{U+00eb}n",
      "Mar",
      "M\N{U+00eb}r",
      "Enj",
      "Pre",
      "Sht",
      "Die"
    ],
    day_format_narrow => [
      "H",
      "M",
      "M",
      "E",
      "P",
      "S",
      "D"
    ],
    day_format_wide => [
      "e h\N{U+00eb}n\N{U+00eb}",
      "e mart\N{U+00eb}",
      "e m\N{U+00eb}rkur\N{U+00eb}",
      "e enjte",
      "e premte",
      "e shtun\N{U+00eb}",
      "e diel"
    ],
    day_stand_alone_abbreviated => [
      "H\N{U+00eb}n",
      "Mar",
      "M\N{U+00eb}r",
      "Enj",
      "Pre",
      "Sht",
      "Die"
    ],
    day_stand_alone_narrow => [
      "H",
      "M",
      "M",
      "E",
      "P",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "E h\N{U+00eb}n\N{U+00eb}",
      "E mart\N{U+00eb}",
      "E m\N{U+00eb}rkur\N{U+00eb}",
      "E enjte",
      "E premte",
      "E shtun\N{U+00eb}",
      "E diel"
    ],
    era_abbreviated => [
      "p.e.r.",
      "e.r."
    ],
    era_narrow => [
      "p.e.r.",
      "e.r."
    ],
    era_wide => [
      "para er\N{U+00eb}s s\N{U+00eb} re",
      "er\N{U+00eb}s s\N{U+00eb} re"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%Y-%b-%d",
    glibc_datetime_format => "%Y-%b-%d %I.%M.%S.%p %Z",
    glibc_time_12_format => "%I.%M.%S.%p %Z",
    glibc_time_format => "%I.%M.%S. %Z",
    language => "Albanian",
    month_format_abbreviated => [
      "Jan",
      "Shk",
      "Mar",
      "Pri",
      "Maj",
      "Qer",
      "Kor",
      "Gsh",
      "Sht",
      "Tet",
      "N\N{U+00eb}n",
      "Dhj"
    ],
    month_format_narrow => [
      "J",
      "S",
      "M",
      "P",
      "M",
      "Q",
      "K",
      "G",
      "S",
      "T",
      "N",
      "D"
    ],
    month_format_wide => [
      "janar",
      "shkurt",
      "mars",
      "prill",
      "maj",
      "qershor",
      "korrik",
      "gusht",
      "shtator",
      "tetor",
      "n\N{U+00eb}ntor",
      "dhjetor"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Shk",
      "Mar",
      "Pri",
      "Maj",
      "Qer",
      "Kor",
      "Gsh",
      "Sht",
      "Tet",
      "N\N{U+00eb}n",
      "Dhj"
    ],
    month_stand_alone_narrow => [
      "J",
      "S",
      "M",
      "P",
      "M",
      "Q",
      "K",
      "G",
      "S",
      "T",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Janar",
      "Shkurt",
      "Mars",
      "Prill",
      "Maj",
      "Qershor",
      "Korrik",
      "Gusht",
      "Shtator",
      "Tetor",
      "N\N{U+00eb}ntor",
      "Dhjetor"
    ],
    name => "Albanian Albania",
    native_language => "shqip",
    native_name => "shqip Shqip\N{U+00eb}ri",
    native_script => undef,
    native_territory => "Shqip\N{U+00eb}ri",
    native_variant => undef,
    quarter_format_abbreviated => [
      "tremujori I",
      "tremujori II",
      "tremujori III",
      "tremujori IV"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "tremujori i par\N{U+00eb}",
      "tremujori i dyt\N{U+00eb}",
      "tremujori i tret\N{U+00eb}",
      "tremujori i kat\N{U+00eb}rt"
    ],
    quarter_stand_alone_abbreviated => [
      "Tremujori I",
      "Tremujori II",
      "Tremujori III",
      "Tremujori IV"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Tremujori i 1-r\N{U+00eb}",
      "Tremujori i 2-t\N{U+00eb}",
      "Tremujori i 3-t\N{U+00eb}",
      "Tremujori i 4-t"
    ],
    script => undef,
    territory => "Albania",
    time_format_full => "h:mm:ss a, zzzz",
    time_format_long => "h:mm:ss a, z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ sq-MK ]__
  {
    am_pm_abbreviated => [
      "e paradites",
      "e pasdites"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss, v",
      Hmv => "HH:mm, v",
      M => "L",
      MEd => "E, d.M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "d.M",
      Md => "d.M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a, v",
      hmv => "h:mm a, v",
      ms => "mm:ss",
      y => "y",
      yM => "M.y",
      yMEd => "E, d.M.y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d.M.y",
      yQQQ => "QQQ, y",
      yQQQQ => "QQQQ, y"
    },
    code => "sq-MK",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d.M.yy",
    datetime_format_full => "{1} 'n\N{U+00eb}' {0}",
    datetime_format_long => "{1} 'n\N{U+00eb}' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "H\N{U+00eb}n",
      "Mar",
      "M\N{U+00eb}r",
      "Enj",
      "Pre",
      "Sht",
      "Die"
    ],
    day_format_narrow => [
      "H",
      "M",
      "M",
      "E",
      "P",
      "S",
      "D"
    ],
    day_format_wide => [
      "e h\N{U+00eb}n\N{U+00eb}",
      "e mart\N{U+00eb}",
      "e m\N{U+00eb}rkur\N{U+00eb}",
      "e enjte",
      "e premte",
      "e shtun\N{U+00eb}",
      "e diel"
    ],
    day_stand_alone_abbreviated => [
      "H\N{U+00eb}n",
      "Mar",
      "M\N{U+00eb}r",
      "Enj",
      "Pre",
      "Sht",
      "Die"
    ],
    day_stand_alone_narrow => [
      "H",
      "M",
      "M",
      "E",
      "P",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "E h\N{U+00eb}n\N{U+00eb}",
      "E mart\N{U+00eb}",
      "E m\N{U+00eb}rkur\N{U+00eb}",
      "E enjte",
      "E premte",
      "E shtun\N{U+00eb}",
      "E diel"
    ],
    era_abbreviated => [
      "p.e.r.",
      "e.r."
    ],
    era_narrow => [
      "p.e.r.",
      "e.r."
    ],
    era_wide => [
      "para er\N{U+00eb}s s\N{U+00eb} re",
      "er\N{U+00eb}s s\N{U+00eb} re"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Albanian",
    month_format_abbreviated => [
      "Jan",
      "Shk",
      "Mar",
      "Pri",
      "Maj",
      "Qer",
      "Kor",
      "Gsh",
      "Sht",
      "Tet",
      "N\N{U+00eb}n",
      "Dhj"
    ],
    month_format_narrow => [
      "J",
      "S",
      "M",
      "P",
      "M",
      "Q",
      "K",
      "G",
      "S",
      "T",
      "N",
      "D"
    ],
    month_format_wide => [
      "janar",
      "shkurt",
      "mars",
      "prill",
      "maj",
      "qershor",
      "korrik",
      "gusht",
      "shtator",
      "tetor",
      "n\N{U+00eb}ntor",
      "dhjetor"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Shk",
      "Mar",
      "Pri",
      "Maj",
      "Qer",
      "Kor",
      "Gsh",
      "Sht",
      "Tet",
      "N\N{U+00eb}n",
      "Dhj"
    ],
    month_stand_alone_narrow => [
      "J",
      "S",
      "M",
      "P",
      "M",
      "Q",
      "K",
      "G",
      "S",
      "T",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Janar",
      "Shkurt",
      "Mars",
      "Prill",
      "Maj",
      "Qershor",
      "Korrik",
      "Gusht",
      "Shtator",
      "Tetor",
      "N\N{U+00eb}ntor",
      "Dhjetor"
    ],
    name => "Albanian Macedonia",
    native_language => "shqip",
    native_name => "shqip Maqedoni",
    native_script => undef,
    native_territory => "Maqedoni",
    native_variant => undef,
    quarter_format_abbreviated => [
      "tremujori I",
      "tremujori II",
      "tremujori III",
      "tremujori IV"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "tremujori i par\N{U+00eb}",
      "tremujori i dyt\N{U+00eb}",
      "tremujori i tret\N{U+00eb}",
      "tremujori i kat\N{U+00eb}rt"
    ],
    quarter_stand_alone_abbreviated => [
      "Tremujori I",
      "Tremujori II",
      "Tremujori III",
      "Tremujori IV"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Tremujori i 1-r\N{U+00eb}",
      "Tremujori i 2-t\N{U+00eb}",
      "Tremujori i 3-t\N{U+00eb}",
      "Tremujori i 4-t"
    ],
    script => undef,
    territory => "Macedonia",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ sq-XK ]__
  {
    am_pm_abbreviated => [
      "e paradites",
      "e pasdites"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "E, d",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss, v",
      Hmv => "HH:mm, v",
      M => "L",
      MEd => "E, d.M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "d.M",
      Md => "d.M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a, v",
      hmv => "h:mm a, v",
      ms => "mm:ss",
      y => "y",
      yM => "M.y",
      yMEd => "E, d.M.y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d.M.y",
      yQQQ => "QQQ, y",
      yQQQQ => "QQQQ, y"
    },
    code => "sq-XK",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d.M.yy",
    datetime_format_full => "{1} 'n\N{U+00eb}' {0}",
    datetime_format_long => "{1} 'n\N{U+00eb}' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "H\N{U+00eb}n",
      "Mar",
      "M\N{U+00eb}r",
      "Enj",
      "Pre",
      "Sht",
      "Die"
    ],
    day_format_narrow => [
      "H",
      "M",
      "M",
      "E",
      "P",
      "S",
      "D"
    ],
    day_format_wide => [
      "e h\N{U+00eb}n\N{U+00eb}",
      "e mart\N{U+00eb}",
      "e m\N{U+00eb}rkur\N{U+00eb}",
      "e enjte",
      "e premte",
      "e shtun\N{U+00eb}",
      "e diel"
    ],
    day_stand_alone_abbreviated => [
      "H\N{U+00eb}n",
      "Mar",
      "M\N{U+00eb}r",
      "Enj",
      "Pre",
      "Sht",
      "Die"
    ],
    day_stand_alone_narrow => [
      "H",
      "M",
      "M",
      "E",
      "P",
      "S",
      "D"
    ],
    day_stand_alone_wide => [
      "E h\N{U+00eb}n\N{U+00eb}",
      "E mart\N{U+00eb}",
      "E m\N{U+00eb}rkur\N{U+00eb}",
      "E enjte",
      "E premte",
      "E shtun\N{U+00eb}",
      "E diel"
    ],
    era_abbreviated => [
      "p.e.r.",
      "e.r."
    ],
    era_narrow => [
      "p.e.r.",
      "e.r."
    ],
    era_wide => [
      "para er\N{U+00eb}s s\N{U+00eb} re",
      "er\N{U+00eb}s s\N{U+00eb} re"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Albanian",
    month_format_abbreviated => [
      "Jan",
      "Shk",
      "Mar",
      "Pri",
      "Maj",
      "Qer",
      "Kor",
      "Gsh",
      "Sht",
      "Tet",
      "N\N{U+00eb}n",
      "Dhj"
    ],
    month_format_narrow => [
      "J",
      "S",
      "M",
      "P",
      "M",
      "Q",
      "K",
      "G",
      "S",
      "T",
      "N",
      "D"
    ],
    month_format_wide => [
      "janar",
      "shkurt",
      "mars",
      "prill",
      "maj",
      "qershor",
      "korrik",
      "gusht",
      "shtator",
      "tetor",
      "n\N{U+00eb}ntor",
      "dhjetor"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Shk",
      "Mar",
      "Pri",
      "Maj",
      "Qer",
      "Kor",
      "Gsh",
      "Sht",
      "Tet",
      "N\N{U+00eb}n",
      "Dhj"
    ],
    month_stand_alone_narrow => [
      "J",
      "S",
      "M",
      "P",
      "M",
      "Q",
      "K",
      "G",
      "S",
      "T",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Janar",
      "Shkurt",
      "Mars",
      "Prill",
      "Maj",
      "Qershor",
      "Korrik",
      "Gusht",
      "Shtator",
      "Tetor",
      "N\N{U+00eb}ntor",
      "Dhjetor"
    ],
    name => "Albanian Kosovo",
    native_language => "shqip",
    native_name => "shqip Kosov\N{U+00eb}",
    native_script => undef,
    native_territory => "Kosov\N{U+00eb}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "tremujori I",
      "tremujori II",
      "tremujori III",
      "tremujori IV"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "tremujori i par\N{U+00eb}",
      "tremujori i dyt\N{U+00eb}",
      "tremujori i tret\N{U+00eb}",
      "tremujori i kat\N{U+00eb}rt"
    ],
    quarter_stand_alone_abbreviated => [
      "Tremujori I",
      "Tremujori II",
      "Tremujori III",
      "Tremujori IV"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Tremujori i 1-r\N{U+00eb}",
      "Tremujori i 2-t\N{U+00eb}",
      "Tremujori i 3-t\N{U+00eb}",
      "Tremujori i 4-t"
    ],
    script => undef,
    territory => "Kosovo",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ sr ]__
  {
    am_pm_abbreviated => [
      "\N{U+043f}\N{U+0440}\N{U+0435} \N{U+043f}\N{U+043e}\N{U+0434}\N{U+043d}\N{U+0435}",
      "\N{U+043f}\N{U+043e} \N{U+043f}\N{U+043e}\N{U+0434}\N{U+043d}\N{U+0435}"
    ],
    available_formats => {
      E => "E",
      EHm => "E, HH.mm",
      EHms => "E, HH.mm.ss",
      Ed => "E d.",
      Ehm => "E, h.mm a",
      Ehms => "E, h.mm.ss a",
      Gy => "y. G",
      GyMMM => "MMM y. G",
      GyMMMEd => "E, d. MMM y. G",
      GyMMMd => "d. MMM y. G",
      H => "HH",
      Hm => "HH.mm",
      Hms => "HH.mm.ss",
      Hmsv => "HH.mm.ss v",
      Hmv => "HH.mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E d. MMM",
      MMMMEd => "E, d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMMdd => "dd.MMM",
      MMdd => "MM-dd",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "hh.mm a",
      hms => "hh.mm.ss a",
      hmsv => "h.mm.ss a v",
      hmv => "h.mm a v",
      ms => "mm.ss",
      y => "y.",
      yM => "M.y.",
      yMEd => "E, d.M.y.",
      yMM => "MM.y.",
      yMMM => "MMM y.",
      yMMMEd => "E, d. MMM y.",
      yMMMM => "MMMM y.",
      yMMMd => "d. MMM y.",
      yMMdd => "dd.MM.y.",
      yMd => "d.M.y.",
      yQQQ => "QQQ. y",
      yQQQQ => "QQQQ. y"
    },
    code => "sr",
    date_format_full => "EEEE, dd. MMMM y.",
    date_format_long => "dd. MMMM y.",
    date_format_medium => "dd.MM.y.",
    date_format_short => "d.M.yy.",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+043f}\N{U+043e}\N{U+043d}",
      "\N{U+0443}\N{U+0442}\N{U+043e}",
      "\N{U+0441}\N{U+0440}\N{U+0435}",
      "\N{U+0447}\N{U+0435}\N{U+0442}",
      "\N{U+043f}\N{U+0435}\N{U+0442}",
      "\N{U+0441}\N{U+0443}\N{U+0431}",
      "\N{U+043d}\N{U+0435}\N{U+0434}"
    ],
    day_format_narrow => [
      "\N{U+043f}",
      "\N{U+0443}",
      "\N{U+0441}",
      "\N{U+0447}",
      "\N{U+043f}",
      "\N{U+0441}",
      "\N{U+043d}"
    ],
    day_format_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}\N{U+043a}",
      "\N{U+0443}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+043f}\N{U+0435}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+043f}\N{U+043e}\N{U+043d}",
      "\N{U+0443}\N{U+0442}\N{U+043e}",
      "\N{U+0441}\N{U+0440}\N{U+0435}",
      "\N{U+0447}\N{U+0435}\N{U+0442}",
      "\N{U+043f}\N{U+0435}\N{U+0442}",
      "\N{U+0441}\N{U+0443}\N{U+0431}",
      "\N{U+043d}\N{U+0435}\N{U+0434}"
    ],
    day_stand_alone_narrow => [
      "\N{U+043f}",
      "\N{U+0443}",
      "\N{U+0441}",
      "\N{U+0447}",
      "\N{U+043f}",
      "\N{U+0441}",
      "\N{U+043d}"
    ],
    day_stand_alone_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}\N{U+043a}",
      "\N{U+0443}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+043f}\N{U+0435}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}"
    ],
    era_abbreviated => [
      "\N{U+043f}. \N{U+043d}. \N{U+0435}.",
      "\N{U+043d}. \N{U+0435}."
    ],
    era_narrow => [
      "\N{U+043f}.\N{U+043d}.\N{U+0435}.",
      "\N{U+043d}.\N{U+0435}."
    ],
    era_wide => [
      "\N{U+043f}\N{U+0440}\N{U+0435} \N{U+043d}\N{U+043e}\N{U+0432}\N{U+0435} \N{U+0435}\N{U+0440}\N{U+0435}",
      "\N{U+043d}\N{U+043e}\N{U+0432}\N{U+0435} \N{U+0435}\N{U+0440}\N{U+0435}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Serbian",
    month_format_abbreviated => [
      "\N{U+0458}\N{U+0430}\N{U+043d}",
      "\N{U+0444}\N{U+0435}\N{U+0431}",
      "\N{U+043c}\N{U+0430}\N{U+0440}",
      "\N{U+0430}\N{U+043f}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}",
      "\N{U+0441}\N{U+0435}\N{U+043f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}",
      "\N{U+043d}\N{U+043e}\N{U+0432}",
      "\N{U+0434}\N{U+0435}\N{U+0446}"
    ],
    month_format_narrow => [
      "\N{U+0458}",
      "\N{U+0444}",
      "\N{U+043c}",
      "\N{U+0430}",
      "\N{U+043c}",
      "\N{U+0458}",
      "\N{U+0458}",
      "\N{U+0430}",
      "\N{U+0441}",
      "\N{U+043e}",
      "\N{U+043d}",
      "\N{U+0434}"
    ],
    month_format_wide => [
      "\N{U+0458}\N{U+0430}\N{U+043d}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+0444}\N{U+0435}\N{U+0431}\N{U+0440}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0438}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043f}\N{U+0442}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+043e}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043d}\N{U+043e}\N{U+0432}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+0434}\N{U+0435}\N{U+0446}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0458}\N{U+0430}\N{U+043d}",
      "\N{U+0444}\N{U+0435}\N{U+0431}",
      "\N{U+043c}\N{U+0430}\N{U+0440}",
      "\N{U+0430}\N{U+043f}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}",
      "\N{U+0441}\N{U+0435}\N{U+043f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}",
      "\N{U+043d}\N{U+043e}\N{U+0432}",
      "\N{U+0434}\N{U+0435}\N{U+0446}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0458}",
      "\N{U+0444}",
      "\N{U+043c}",
      "\N{U+0430}",
      "\N{U+043c}",
      "\N{U+0458}",
      "\N{U+0458}",
      "\N{U+0430}",
      "\N{U+0441}",
      "\N{U+043e}",
      "\N{U+043d}",
      "\N{U+0434}"
    ],
    month_stand_alone_wide => [
      "\N{U+0458}\N{U+0430}\N{U+043d}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+0444}\N{U+0435}\N{U+0431}\N{U+0440}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0438}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043f}\N{U+0442}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+043e}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043d}\N{U+043e}\N{U+0432}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+0434}\N{U+0435}\N{U+0446}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}"
    ],
    name => "Serbian",
    native_language => "\N{U+0441}\N{U+0440}\N{U+043f}\N{U+0441}\N{U+043a}\N{U+0438}",
    native_name => "\N{U+0441}\N{U+0440}\N{U+043f}\N{U+0441}\N{U+043a}\N{U+0438}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+041a}1",
      "\N{U+041a}2",
      "\N{U+041a}3",
      "\N{U+041a}4"
    ],
    quarter_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_format_wide => [
      "\N{U+043f}\N{U+0440}\N{U+0432}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0434}\N{U+0440}\N{U+0443}\N{U+0433}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0442}\N{U+0440}\N{U+0435}\N{U+045b}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+041a}1",
      "\N{U+041a}2",
      "\N{U+041a}3",
      "\N{U+041a}4"
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "\N{U+043f}\N{U+0440}\N{U+0432}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0434}\N{U+0440}\N{U+0443}\N{U+0433}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0442}\N{U+0440}\N{U+0435}\N{U+045b}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH.mm.ss zzzz",
    time_format_long => "HH.mm.ss z",
    time_format_medium => "HH.mm.ss",
    time_format_short => "HH.mm",
    variant => undef,
    version => 28
  }
  __[ sr-Cyrl ]__
  {
    am_pm_abbreviated => [
      "\N{U+043f}\N{U+0440}\N{U+0435} \N{U+043f}\N{U+043e}\N{U+0434}\N{U+043d}\N{U+0435}",
      "\N{U+043f}\N{U+043e} \N{U+043f}\N{U+043e}\N{U+0434}\N{U+043d}\N{U+0435}"
    ],
    available_formats => {
      E => "E",
      EHm => "E, HH.mm",
      EHms => "E, HH.mm.ss",
      Ed => "E d.",
      Ehm => "E, h.mm a",
      Ehms => "E, h.mm.ss a",
      Gy => "y. G",
      GyMMM => "MMM y. G",
      GyMMMEd => "E, d. MMM y. G",
      GyMMMd => "d. MMM y. G",
      H => "HH",
      Hm => "HH.mm",
      Hms => "HH.mm.ss",
      Hmsv => "HH.mm.ss v",
      Hmv => "HH.mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E d. MMM",
      MMMMEd => "E, d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMMdd => "dd.MMM",
      MMdd => "MM-dd",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "hh.mm a",
      hms => "hh.mm.ss a",
      hmsv => "h.mm.ss a v",
      hmv => "h.mm a v",
      ms => "mm.ss",
      y => "y.",
      yM => "M.y.",
      yMEd => "E, d.M.y.",
      yMM => "MM.y.",
      yMMM => "MMM y.",
      yMMMEd => "E, d. MMM y.",
      yMMMM => "MMMM y.",
      yMMMd => "d. MMM y.",
      yMMdd => "dd.MM.y.",
      yMd => "d.M.y.",
      yQQQ => "QQQ. y",
      yQQQQ => "QQQQ. y"
    },
    code => "sr-Cyrl",
    date_format_full => "EEEE, dd. MMMM y.",
    date_format_long => "dd. MMMM y.",
    date_format_medium => "dd.MM.y.",
    date_format_short => "d.M.yy.",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+043f}\N{U+043e}\N{U+043d}",
      "\N{U+0443}\N{U+0442}\N{U+043e}",
      "\N{U+0441}\N{U+0440}\N{U+0435}",
      "\N{U+0447}\N{U+0435}\N{U+0442}",
      "\N{U+043f}\N{U+0435}\N{U+0442}",
      "\N{U+0441}\N{U+0443}\N{U+0431}",
      "\N{U+043d}\N{U+0435}\N{U+0434}"
    ],
    day_format_narrow => [
      "\N{U+043f}",
      "\N{U+0443}",
      "\N{U+0441}",
      "\N{U+0447}",
      "\N{U+043f}",
      "\N{U+0441}",
      "\N{U+043d}"
    ],
    day_format_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}\N{U+043a}",
      "\N{U+0443}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+043f}\N{U+0435}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+043f}\N{U+043e}\N{U+043d}",
      "\N{U+0443}\N{U+0442}\N{U+043e}",
      "\N{U+0441}\N{U+0440}\N{U+0435}",
      "\N{U+0447}\N{U+0435}\N{U+0442}",
      "\N{U+043f}\N{U+0435}\N{U+0442}",
      "\N{U+0441}\N{U+0443}\N{U+0431}",
      "\N{U+043d}\N{U+0435}\N{U+0434}"
    ],
    day_stand_alone_narrow => [
      "\N{U+043f}",
      "\N{U+0443}",
      "\N{U+0441}",
      "\N{U+0447}",
      "\N{U+043f}",
      "\N{U+0441}",
      "\N{U+043d}"
    ],
    day_stand_alone_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}\N{U+043a}",
      "\N{U+0443}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+043f}\N{U+0435}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}"
    ],
    era_abbreviated => [
      "\N{U+043f}. \N{U+043d}. \N{U+0435}.",
      "\N{U+043d}. \N{U+0435}."
    ],
    era_narrow => [
      "\N{U+043f}.\N{U+043d}.\N{U+0435}.",
      "\N{U+043d}.\N{U+0435}."
    ],
    era_wide => [
      "\N{U+043f}\N{U+0440}\N{U+0435} \N{U+043d}\N{U+043e}\N{U+0432}\N{U+0435} \N{U+0435}\N{U+0440}\N{U+0435}",
      "\N{U+043d}\N{U+043e}\N{U+0432}\N{U+0435} \N{U+0435}\N{U+0440}\N{U+0435}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Serbian",
    month_format_abbreviated => [
      "\N{U+0458}\N{U+0430}\N{U+043d}",
      "\N{U+0444}\N{U+0435}\N{U+0431}",
      "\N{U+043c}\N{U+0430}\N{U+0440}",
      "\N{U+0430}\N{U+043f}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}",
      "\N{U+0441}\N{U+0435}\N{U+043f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}",
      "\N{U+043d}\N{U+043e}\N{U+0432}",
      "\N{U+0434}\N{U+0435}\N{U+0446}"
    ],
    month_format_narrow => [
      "\N{U+0458}",
      "\N{U+0444}",
      "\N{U+043c}",
      "\N{U+0430}",
      "\N{U+043c}",
      "\N{U+0458}",
      "\N{U+0458}",
      "\N{U+0430}",
      "\N{U+0441}",
      "\N{U+043e}",
      "\N{U+043d}",
      "\N{U+0434}"
    ],
    month_format_wide => [
      "\N{U+0458}\N{U+0430}\N{U+043d}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+0444}\N{U+0435}\N{U+0431}\N{U+0440}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0438}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043f}\N{U+0442}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+043e}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043d}\N{U+043e}\N{U+0432}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+0434}\N{U+0435}\N{U+0446}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0458}\N{U+0430}\N{U+043d}",
      "\N{U+0444}\N{U+0435}\N{U+0431}",
      "\N{U+043c}\N{U+0430}\N{U+0440}",
      "\N{U+0430}\N{U+043f}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}",
      "\N{U+0441}\N{U+0435}\N{U+043f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}",
      "\N{U+043d}\N{U+043e}\N{U+0432}",
      "\N{U+0434}\N{U+0435}\N{U+0446}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0458}",
      "\N{U+0444}",
      "\N{U+043c}",
      "\N{U+0430}",
      "\N{U+043c}",
      "\N{U+0458}",
      "\N{U+0458}",
      "\N{U+0430}",
      "\N{U+0441}",
      "\N{U+043e}",
      "\N{U+043d}",
      "\N{U+0434}"
    ],
    month_stand_alone_wide => [
      "\N{U+0458}\N{U+0430}\N{U+043d}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+0444}\N{U+0435}\N{U+0431}\N{U+0440}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0438}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043f}\N{U+0442}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+043e}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043d}\N{U+043e}\N{U+0432}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+0434}\N{U+0435}\N{U+0446}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}"
    ],
    name => "Serbian Cyrillic",
    native_language => "\N{U+0441}\N{U+0440}\N{U+043f}\N{U+0441}\N{U+043a}\N{U+0438}",
    native_name => "\N{U+0441}\N{U+0440}\N{U+043f}\N{U+0441}\N{U+043a}\N{U+0438} \N{U+045b}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}\N{U+0438}\N{U+0446}\N{U+0430}",
    native_script => "\N{U+045b}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}\N{U+0438}\N{U+0446}\N{U+0430}",
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+041a}1",
      "\N{U+041a}2",
      "\N{U+041a}3",
      "\N{U+041a}4"
    ],
    quarter_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_format_wide => [
      "\N{U+043f}\N{U+0440}\N{U+0432}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0434}\N{U+0440}\N{U+0443}\N{U+0433}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0442}\N{U+0440}\N{U+0435}\N{U+045b}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+041a}1",
      "\N{U+041a}2",
      "\N{U+041a}3",
      "\N{U+041a}4"
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "\N{U+043f}\N{U+0440}\N{U+0432}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0434}\N{U+0440}\N{U+0443}\N{U+0433}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0442}\N{U+0440}\N{U+0435}\N{U+045b}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    script => "Cyrillic",
    territory => undef,
    time_format_full => "HH.mm.ss zzzz",
    time_format_long => "HH.mm.ss z",
    time_format_medium => "HH.mm.ss",
    time_format_short => "HH.mm",
    variant => undef,
    version => 28
  }
  __[ sr-Cyrl-BA ]__
  {
    am_pm_abbreviated => [
      "\N{U+043f}\N{U+0440}\N{U+0435} \N{U+043f}\N{U+043e}\N{U+0434}\N{U+043d}\N{U+0435}",
      "\N{U+043f}\N{U+043e} \N{U+043f}\N{U+043e}\N{U+0434}\N{U+043d}\N{U+0435}"
    ],
    available_formats => {
      E => "E",
      EHm => "E, HH.mm",
      EHms => "E, HH.mm.ss",
      Ed => "E d.",
      Ehm => "E, h.mm a",
      Ehms => "E, h.mm.ss a",
      Gy => "y. G",
      GyMMM => "MMM y. G",
      GyMMMEd => "E, d. MMM y. G",
      GyMMMd => "d. MMM y. G",
      H => "HH",
      Hm => "HH.mm",
      Hms => "HH.mm.ss",
      Hmsv => "HH.mm.ss v",
      Hmv => "HH.mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E d. MMM",
      MMMMEd => "E, d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMMdd => "dd.MMM",
      MMdd => "MM-dd",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "hh.mm a",
      hms => "hh.mm.ss a",
      hmsv => "h.mm.ss a v",
      hmv => "h.mm a v",
      ms => "mm.ss",
      y => "y.",
      yM => "M.y.",
      yMEd => "E, d.M.y.",
      yMM => "MM.y.",
      yMMM => "MMM y.",
      yMMMEd => "E, d. MMM y.",
      yMMMM => "MMMM y.",
      yMMMd => "d. MMM y.",
      yMMdd => "dd.MM.y.",
      yMd => "d.M.y.",
      yQQQ => "QQQ. y",
      yQQQQ => "QQQQ. y"
    },
    code => "sr-Cyrl-BA",
    date_format_full => "EEEE, dd. MMMM y.",
    date_format_long => "dd. MMMM y.",
    date_format_medium => "dd.MM.y.",
    date_format_short => "d.M.yy.",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+043f}\N{U+043e}\N{U+043d}",
      "\N{U+0443}\N{U+0442}\N{U+043e}",
      "\N{U+0441}\N{U+0440}\N{U+0435}",
      "\N{U+0447}\N{U+0435}\N{U+0442}",
      "\N{U+043f}\N{U+0435}\N{U+0442}",
      "\N{U+0441}\N{U+0443}\N{U+0431}",
      "\N{U+043d}\N{U+0435}\N{U+0434}"
    ],
    day_format_narrow => [
      "\N{U+043f}",
      "\N{U+0443}",
      "\N{U+0441}",
      "\N{U+0447}",
      "\N{U+043f}",
      "\N{U+0441}",
      "\N{U+043d}"
    ],
    day_format_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}\N{U+043a}",
      "\N{U+0443}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+043f}\N{U+0435}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+043f}\N{U+043e}\N{U+043d}",
      "\N{U+0443}\N{U+0442}\N{U+043e}",
      "\N{U+0441}\N{U+0440}\N{U+0435}",
      "\N{U+0447}\N{U+0435}\N{U+0442}",
      "\N{U+043f}\N{U+0435}\N{U+0442}",
      "\N{U+0441}\N{U+0443}\N{U+0431}",
      "\N{U+043d}\N{U+0435}\N{U+0434}"
    ],
    day_stand_alone_narrow => [
      "\N{U+043f}",
      "\N{U+0443}",
      "\N{U+0441}",
      "\N{U+0447}",
      "\N{U+043f}",
      "\N{U+0441}",
      "\N{U+043d}"
    ],
    day_stand_alone_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}\N{U+043a}",
      "\N{U+0443}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+043f}\N{U+0435}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}"
    ],
    era_abbreviated => [
      "\N{U+043f}. \N{U+043d}. \N{U+0435}.",
      "\N{U+043d}. \N{U+0435}."
    ],
    era_narrow => [
      "\N{U+043f}.\N{U+043d}.\N{U+0435}.",
      "\N{U+043d}.\N{U+0435}."
    ],
    era_wide => [
      "\N{U+043f}\N{U+0440}\N{U+0435} \N{U+043d}\N{U+043e}\N{U+0432}\N{U+0435} \N{U+0435}\N{U+0440}\N{U+0435}",
      "\N{U+043d}\N{U+043e}\N{U+0432}\N{U+0435} \N{U+0435}\N{U+0440}\N{U+0435}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Serbian",
    month_format_abbreviated => [
      "\N{U+0458}\N{U+0430}\N{U+043d}",
      "\N{U+0444}\N{U+0435}\N{U+0431}",
      "\N{U+043c}\N{U+0430}\N{U+0440}",
      "\N{U+0430}\N{U+043f}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}",
      "\N{U+0441}\N{U+0435}\N{U+043f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}",
      "\N{U+043d}\N{U+043e}\N{U+0432}",
      "\N{U+0434}\N{U+0435}\N{U+0446}"
    ],
    month_format_narrow => [
      "\N{U+0458}",
      "\N{U+0444}",
      "\N{U+043c}",
      "\N{U+0430}",
      "\N{U+043c}",
      "\N{U+0458}",
      "\N{U+0458}",
      "\N{U+0430}",
      "\N{U+0441}",
      "\N{U+043e}",
      "\N{U+043d}",
      "\N{U+0434}"
    ],
    month_format_wide => [
      "\N{U+0458}\N{U+0430}\N{U+043d}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+0444}\N{U+0435}\N{U+0431}\N{U+0440}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0438}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043f}\N{U+0442}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+043e}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043d}\N{U+043e}\N{U+0432}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+0434}\N{U+0435}\N{U+0446}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0458}\N{U+0430}\N{U+043d}",
      "\N{U+0444}\N{U+0435}\N{U+0431}",
      "\N{U+043c}\N{U+0430}\N{U+0440}",
      "\N{U+0430}\N{U+043f}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}",
      "\N{U+0441}\N{U+0435}\N{U+043f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}",
      "\N{U+043d}\N{U+043e}\N{U+0432}",
      "\N{U+0434}\N{U+0435}\N{U+0446}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0458}",
      "\N{U+0444}",
      "\N{U+043c}",
      "\N{U+0430}",
      "\N{U+043c}",
      "\N{U+0458}",
      "\N{U+0458}",
      "\N{U+0430}",
      "\N{U+0441}",
      "\N{U+043e}",
      "\N{U+043d}",
      "\N{U+0434}"
    ],
    month_stand_alone_wide => [
      "\N{U+0458}\N{U+0430}\N{U+043d}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+0444}\N{U+0435}\N{U+0431}\N{U+0440}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0438}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043f}\N{U+0442}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+043e}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043d}\N{U+043e}\N{U+0432}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+0434}\N{U+0435}\N{U+0446}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}"
    ],
    name => "Serbian Bosnia & Herzegovina Cyrillic",
    native_language => "\N{U+0441}\N{U+0440}\N{U+043f}\N{U+0441}\N{U+043a}\N{U+0438}",
    native_name => "\N{U+0441}\N{U+0440}\N{U+043f}\N{U+0441}\N{U+043a}\N{U+0438} \N{U+0411}\N{U+043e}\N{U+0441}\N{U+043d}\N{U+0430} \N{U+0438} \N{U+0425}\N{U+0435}\N{U+0440}\N{U+0446}\N{U+0435}\N{U+0433}\N{U+043e}\N{U+0432}\N{U+0438}\N{U+043d}\N{U+0430} \N{U+045b}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}\N{U+0438}\N{U+0446}\N{U+0430}",
    native_script => "\N{U+045b}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}\N{U+0438}\N{U+0446}\N{U+0430}",
    native_territory => "\N{U+0411}\N{U+043e}\N{U+0441}\N{U+043d}\N{U+0430} \N{U+0438} \N{U+0425}\N{U+0435}\N{U+0440}\N{U+0446}\N{U+0435}\N{U+0433}\N{U+043e}\N{U+0432}\N{U+0438}\N{U+043d}\N{U+0430}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+041a}1",
      "\N{U+041a}2",
      "\N{U+041a}3",
      "\N{U+041a}4"
    ],
    quarter_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_format_wide => [
      "\N{U+043f}\N{U+0440}\N{U+0432}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0434}\N{U+0440}\N{U+0443}\N{U+0433}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0442}\N{U+0440}\N{U+0435}\N{U+045b}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+041a}1",
      "\N{U+041a}2",
      "\N{U+041a}3",
      "\N{U+041a}4"
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "\N{U+043f}\N{U+0440}\N{U+0432}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0434}\N{U+0440}\N{U+0443}\N{U+0433}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0442}\N{U+0440}\N{U+0435}\N{U+045b}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    script => "Cyrillic",
    territory => "Bosnia & Herzegovina",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ sr-Cyrl-ME ]__
  {
    am_pm_abbreviated => [
      "\N{U+043f}\N{U+0440}\N{U+0435} \N{U+043f}\N{U+043e}\N{U+0434}\N{U+043d}\N{U+0435}",
      "\N{U+043f}\N{U+043e} \N{U+043f}\N{U+043e}\N{U+0434}\N{U+043d}\N{U+0435}"
    ],
    available_formats => {
      E => "E",
      EHm => "E, HH.mm",
      EHms => "E, HH.mm.ss",
      Ed => "E d.",
      Ehm => "E, h.mm a",
      Ehms => "E, h.mm.ss a",
      Gy => "y. G",
      GyMMM => "MMM y. G",
      GyMMMEd => "E, d. MMM y. G",
      GyMMMd => "d. MMM y. G",
      H => "HH",
      Hm => "HH.mm",
      Hms => "HH.mm.ss",
      Hmsv => "HH.mm.ss v",
      Hmv => "HH.mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E d. MMM",
      MMMMEd => "E, d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMMdd => "dd.MMM",
      MMdd => "MM-dd",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "hh.mm a",
      hms => "hh.mm.ss a",
      hmsv => "h.mm.ss a v",
      hmv => "h.mm a v",
      ms => "mm.ss",
      y => "y.",
      yM => "M.y.",
      yMEd => "E, d.M.y.",
      yMM => "MM.y.",
      yMMM => "MMM y.",
      yMMMEd => "E, d. MMM y.",
      yMMMM => "MMMM y.",
      yMMMd => "d. MMM y.",
      yMMdd => "dd.MM.y.",
      yMd => "d.M.y.",
      yQQQ => "QQQ. y",
      yQQQQ => "QQQQ. y"
    },
    code => "sr-Cyrl-ME",
    date_format_full => "EEEE, dd. MMMM y.",
    date_format_long => "dd. MMMM y.",
    date_format_medium => "dd.MM.y.",
    date_format_short => "d.M.yy.",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+043f}\N{U+043e}\N{U+043d}",
      "\N{U+0443}\N{U+0442}\N{U+043e}",
      "\N{U+0441}\N{U+0440}\N{U+0435}",
      "\N{U+0447}\N{U+0435}\N{U+0442}",
      "\N{U+043f}\N{U+0435}\N{U+0442}",
      "\N{U+0441}\N{U+0443}\N{U+0431}",
      "\N{U+043d}\N{U+0435}\N{U+0434}"
    ],
    day_format_narrow => [
      "\N{U+043f}",
      "\N{U+0443}",
      "\N{U+0441}",
      "\N{U+0447}",
      "\N{U+043f}",
      "\N{U+0441}",
      "\N{U+043d}"
    ],
    day_format_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}\N{U+043a}",
      "\N{U+0443}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+043f}\N{U+0435}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+043f}\N{U+043e}\N{U+043d}",
      "\N{U+0443}\N{U+0442}\N{U+043e}",
      "\N{U+0441}\N{U+0440}\N{U+0435}",
      "\N{U+0447}\N{U+0435}\N{U+0442}",
      "\N{U+043f}\N{U+0435}\N{U+0442}",
      "\N{U+0441}\N{U+0443}\N{U+0431}",
      "\N{U+043d}\N{U+0435}\N{U+0434}"
    ],
    day_stand_alone_narrow => [
      "\N{U+043f}",
      "\N{U+0443}",
      "\N{U+0441}",
      "\N{U+0447}",
      "\N{U+043f}",
      "\N{U+0441}",
      "\N{U+043d}"
    ],
    day_stand_alone_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}\N{U+043a}",
      "\N{U+0443}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+043f}\N{U+0435}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}"
    ],
    era_abbreviated => [
      "\N{U+043f}. \N{U+043d}. \N{U+0435}.",
      "\N{U+043d}. \N{U+0435}."
    ],
    era_narrow => [
      "\N{U+043f}.\N{U+043d}.\N{U+0435}.",
      "\N{U+043d}.\N{U+0435}."
    ],
    era_wide => [
      "\N{U+043f}\N{U+0440}\N{U+0435} \N{U+043d}\N{U+043e}\N{U+0432}\N{U+0435} \N{U+0435}\N{U+0440}\N{U+0435}",
      "\N{U+043d}\N{U+043e}\N{U+0432}\N{U+0435} \N{U+0435}\N{U+0440}\N{U+0435}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Serbian",
    month_format_abbreviated => [
      "\N{U+0458}\N{U+0430}\N{U+043d}",
      "\N{U+0444}\N{U+0435}\N{U+0431}",
      "\N{U+043c}\N{U+0430}\N{U+0440}",
      "\N{U+0430}\N{U+043f}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}",
      "\N{U+0441}\N{U+0435}\N{U+043f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}",
      "\N{U+043d}\N{U+043e}\N{U+0432}",
      "\N{U+0434}\N{U+0435}\N{U+0446}"
    ],
    month_format_narrow => [
      "\N{U+0458}",
      "\N{U+0444}",
      "\N{U+043c}",
      "\N{U+0430}",
      "\N{U+043c}",
      "\N{U+0458}",
      "\N{U+0458}",
      "\N{U+0430}",
      "\N{U+0441}",
      "\N{U+043e}",
      "\N{U+043d}",
      "\N{U+0434}"
    ],
    month_format_wide => [
      "\N{U+0458}\N{U+0430}\N{U+043d}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+0444}\N{U+0435}\N{U+0431}\N{U+0440}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0438}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043f}\N{U+0442}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+043e}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043d}\N{U+043e}\N{U+0432}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+0434}\N{U+0435}\N{U+0446}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0458}\N{U+0430}\N{U+043d}",
      "\N{U+0444}\N{U+0435}\N{U+0431}",
      "\N{U+043c}\N{U+0430}\N{U+0440}",
      "\N{U+0430}\N{U+043f}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}",
      "\N{U+0441}\N{U+0435}\N{U+043f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}",
      "\N{U+043d}\N{U+043e}\N{U+0432}",
      "\N{U+0434}\N{U+0435}\N{U+0446}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0458}",
      "\N{U+0444}",
      "\N{U+043c}",
      "\N{U+0430}",
      "\N{U+043c}",
      "\N{U+0458}",
      "\N{U+0458}",
      "\N{U+0430}",
      "\N{U+0441}",
      "\N{U+043e}",
      "\N{U+043d}",
      "\N{U+0434}"
    ],
    month_stand_alone_wide => [
      "\N{U+0458}\N{U+0430}\N{U+043d}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+0444}\N{U+0435}\N{U+0431}\N{U+0440}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0438}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043f}\N{U+0442}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+043e}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043d}\N{U+043e}\N{U+0432}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+0434}\N{U+0435}\N{U+0446}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}"
    ],
    name => "Serbian Montenegro Cyrillic",
    native_language => "\N{U+0441}\N{U+0440}\N{U+043f}\N{U+0441}\N{U+043a}\N{U+0438}",
    native_name => "\N{U+0441}\N{U+0440}\N{U+043f}\N{U+0441}\N{U+043a}\N{U+0438} \N{U+0426}\N{U+0440}\N{U+043d}\N{U+0430} \N{U+0413}\N{U+043e}\N{U+0440}\N{U+0430} \N{U+045b}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}\N{U+0438}\N{U+0446}\N{U+0430}",
    native_script => "\N{U+045b}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}\N{U+0438}\N{U+0446}\N{U+0430}",
    native_territory => "\N{U+0426}\N{U+0440}\N{U+043d}\N{U+0430} \N{U+0413}\N{U+043e}\N{U+0440}\N{U+0430}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+041a}1",
      "\N{U+041a}2",
      "\N{U+041a}3",
      "\N{U+041a}4"
    ],
    quarter_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_format_wide => [
      "\N{U+043f}\N{U+0440}\N{U+0432}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0434}\N{U+0440}\N{U+0443}\N{U+0433}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0442}\N{U+0440}\N{U+0435}\N{U+045b}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+041a}1",
      "\N{U+041a}2",
      "\N{U+041a}3",
      "\N{U+041a}4"
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "\N{U+043f}\N{U+0440}\N{U+0432}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0434}\N{U+0440}\N{U+0443}\N{U+0433}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0442}\N{U+0440}\N{U+0435}\N{U+045b}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    script => "Cyrillic",
    territory => "Montenegro",
    time_format_full => "HH.mm.ss zzzz",
    time_format_long => "HH.mm.ss z",
    time_format_medium => "HH.mm.ss",
    time_format_short => "HH.mm",
    variant => undef,
    version => 28
  }
  __[ sr-Cyrl-RS ]__
  {
    am_pm_abbreviated => [
      "\N{U+043f}\N{U+0440}\N{U+0435} \N{U+043f}\N{U+043e}\N{U+0434}\N{U+043d}\N{U+0435}",
      "\N{U+043f}\N{U+043e} \N{U+043f}\N{U+043e}\N{U+0434}\N{U+043d}\N{U+0435}"
    ],
    available_formats => {
      E => "E",
      EHm => "E, HH.mm",
      EHms => "E, HH.mm.ss",
      Ed => "E d.",
      Ehm => "E, h.mm a",
      Ehms => "E, h.mm.ss a",
      Gy => "y. G",
      GyMMM => "MMM y. G",
      GyMMMEd => "E, d. MMM y. G",
      GyMMMd => "d. MMM y. G",
      H => "HH",
      Hm => "HH.mm",
      Hms => "HH.mm.ss",
      Hmsv => "HH.mm.ss v",
      Hmv => "HH.mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E d. MMM",
      MMMMEd => "E, d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMMdd => "dd.MMM",
      MMdd => "MM-dd",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "hh.mm a",
      hms => "hh.mm.ss a",
      hmsv => "h.mm.ss a v",
      hmv => "h.mm a v",
      ms => "mm.ss",
      y => "y.",
      yM => "M.y.",
      yMEd => "E, d.M.y.",
      yMM => "MM.y.",
      yMMM => "MMM y.",
      yMMMEd => "E, d. MMM y.",
      yMMMM => "MMMM y.",
      yMMMd => "d. MMM y.",
      yMMdd => "dd.MM.y.",
      yMd => "d.M.y.",
      yQQQ => "QQQ. y",
      yQQQQ => "QQQQ. y"
    },
    code => "sr-Cyrl-RS",
    date_format_full => "EEEE, dd. MMMM y.",
    date_format_long => "dd. MMMM y.",
    date_format_medium => "dd.MM.y.",
    date_format_short => "d.M.yy.",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+043f}\N{U+043e}\N{U+043d}",
      "\N{U+0443}\N{U+0442}\N{U+043e}",
      "\N{U+0441}\N{U+0440}\N{U+0435}",
      "\N{U+0447}\N{U+0435}\N{U+0442}",
      "\N{U+043f}\N{U+0435}\N{U+0442}",
      "\N{U+0441}\N{U+0443}\N{U+0431}",
      "\N{U+043d}\N{U+0435}\N{U+0434}"
    ],
    day_format_narrow => [
      "\N{U+043f}",
      "\N{U+0443}",
      "\N{U+0441}",
      "\N{U+0447}",
      "\N{U+043f}",
      "\N{U+0441}",
      "\N{U+043d}"
    ],
    day_format_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}\N{U+043a}",
      "\N{U+0443}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+043f}\N{U+0435}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+043f}\N{U+043e}\N{U+043d}",
      "\N{U+0443}\N{U+0442}\N{U+043e}",
      "\N{U+0441}\N{U+0440}\N{U+0435}",
      "\N{U+0447}\N{U+0435}\N{U+0442}",
      "\N{U+043f}\N{U+0435}\N{U+0442}",
      "\N{U+0441}\N{U+0443}\N{U+0431}",
      "\N{U+043d}\N{U+0435}\N{U+0434}"
    ],
    day_stand_alone_narrow => [
      "\N{U+043f}",
      "\N{U+0443}",
      "\N{U+0441}",
      "\N{U+0447}",
      "\N{U+043f}",
      "\N{U+0441}",
      "\N{U+043d}"
    ],
    day_stand_alone_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}\N{U+043a}",
      "\N{U+0443}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+043f}\N{U+0435}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}"
    ],
    era_abbreviated => [
      "\N{U+043f}. \N{U+043d}. \N{U+0435}.",
      "\N{U+043d}. \N{U+0435}."
    ],
    era_narrow => [
      "\N{U+043f}.\N{U+043d}.\N{U+0435}.",
      "\N{U+043d}.\N{U+0435}."
    ],
    era_wide => [
      "\N{U+043f}\N{U+0440}\N{U+0435} \N{U+043d}\N{U+043e}\N{U+0432}\N{U+0435} \N{U+0435}\N{U+0440}\N{U+0435}",
      "\N{U+043d}\N{U+043e}\N{U+0432}\N{U+0435} \N{U+0435}\N{U+0440}\N{U+0435}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Serbian",
    month_format_abbreviated => [
      "\N{U+0458}\N{U+0430}\N{U+043d}",
      "\N{U+0444}\N{U+0435}\N{U+0431}",
      "\N{U+043c}\N{U+0430}\N{U+0440}",
      "\N{U+0430}\N{U+043f}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}",
      "\N{U+0441}\N{U+0435}\N{U+043f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}",
      "\N{U+043d}\N{U+043e}\N{U+0432}",
      "\N{U+0434}\N{U+0435}\N{U+0446}"
    ],
    month_format_narrow => [
      "\N{U+0458}",
      "\N{U+0444}",
      "\N{U+043c}",
      "\N{U+0430}",
      "\N{U+043c}",
      "\N{U+0458}",
      "\N{U+0458}",
      "\N{U+0430}",
      "\N{U+0441}",
      "\N{U+043e}",
      "\N{U+043d}",
      "\N{U+0434}"
    ],
    month_format_wide => [
      "\N{U+0458}\N{U+0430}\N{U+043d}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+0444}\N{U+0435}\N{U+0431}\N{U+0440}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0438}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043f}\N{U+0442}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+043e}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043d}\N{U+043e}\N{U+0432}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+0434}\N{U+0435}\N{U+0446}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0458}\N{U+0430}\N{U+043d}",
      "\N{U+0444}\N{U+0435}\N{U+0431}",
      "\N{U+043c}\N{U+0430}\N{U+0440}",
      "\N{U+0430}\N{U+043f}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}",
      "\N{U+0441}\N{U+0435}\N{U+043f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}",
      "\N{U+043d}\N{U+043e}\N{U+0432}",
      "\N{U+0434}\N{U+0435}\N{U+0446}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0458}",
      "\N{U+0444}",
      "\N{U+043c}",
      "\N{U+0430}",
      "\N{U+043c}",
      "\N{U+0458}",
      "\N{U+0458}",
      "\N{U+0430}",
      "\N{U+0441}",
      "\N{U+043e}",
      "\N{U+043d}",
      "\N{U+0434}"
    ],
    month_stand_alone_wide => [
      "\N{U+0458}\N{U+0430}\N{U+043d}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+0444}\N{U+0435}\N{U+0431}\N{U+0440}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0438}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043f}\N{U+0442}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+043e}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043d}\N{U+043e}\N{U+0432}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+0434}\N{U+0435}\N{U+0446}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}"
    ],
    name => "Serbian Serbia Cyrillic",
    native_language => "\N{U+0441}\N{U+0440}\N{U+043f}\N{U+0441}\N{U+043a}\N{U+0438}",
    native_name => "\N{U+0441}\N{U+0440}\N{U+043f}\N{U+0441}\N{U+043a}\N{U+0438} \N{U+0421}\N{U+0440}\N{U+0431}\N{U+0438}\N{U+0458}\N{U+0430} \N{U+045b}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}\N{U+0438}\N{U+0446}\N{U+0430}",
    native_script => "\N{U+045b}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}\N{U+0438}\N{U+0446}\N{U+0430}",
    native_territory => "\N{U+0421}\N{U+0440}\N{U+0431}\N{U+0438}\N{U+0458}\N{U+0430}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+041a}1",
      "\N{U+041a}2",
      "\N{U+041a}3",
      "\N{U+041a}4"
    ],
    quarter_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_format_wide => [
      "\N{U+043f}\N{U+0440}\N{U+0432}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0434}\N{U+0440}\N{U+0443}\N{U+0433}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0442}\N{U+0440}\N{U+0435}\N{U+045b}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+041a}1",
      "\N{U+041a}2",
      "\N{U+041a}3",
      "\N{U+041a}4"
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "\N{U+043f}\N{U+0440}\N{U+0432}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0434}\N{U+0440}\N{U+0443}\N{U+0433}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0442}\N{U+0440}\N{U+0435}\N{U+045b}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    script => "Cyrillic",
    territory => "Serbia",
    time_format_full => "HH.mm.ss zzzz",
    time_format_long => "HH.mm.ss z",
    time_format_medium => "HH.mm.ss",
    time_format_short => "HH.mm",
    variant => undef,
    version => 28
  }
  __[ sr-Cyrl-XK ]__
  {
    am_pm_abbreviated => [
      "\N{U+043f}\N{U+0440}\N{U+0435} \N{U+043f}\N{U+043e}\N{U+0434}\N{U+043d}\N{U+0435}",
      "\N{U+043f}\N{U+043e} \N{U+043f}\N{U+043e}\N{U+0434}\N{U+043d}\N{U+0435}"
    ],
    available_formats => {
      E => "E",
      EHm => "E, HH.mm",
      EHms => "E, HH.mm.ss",
      Ed => "E d.",
      Ehm => "E, h.mm a",
      Ehms => "E, h.mm.ss a",
      Gy => "y. G",
      GyMMM => "MMM y. G",
      GyMMMEd => "E, d. MMM y. G",
      GyMMMd => "d. MMM y. G",
      H => "HH",
      Hm => "HH.mm",
      Hms => "HH.mm.ss",
      Hmsv => "HH.mm.ss v",
      Hmv => "HH.mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E d. MMM",
      MMMMEd => "E, d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMMdd => "dd.MMM",
      MMdd => "MM-dd",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "hh.mm a",
      hms => "hh.mm.ss a",
      hmsv => "h.mm.ss a v",
      hmv => "h.mm a v",
      ms => "mm.ss",
      y => "y.",
      yM => "M.y.",
      yMEd => "E, d.M.y.",
      yMM => "MM.y.",
      yMMM => "MMM y.",
      yMMMEd => "E, d. MMM y.",
      yMMMM => "MMMM y.",
      yMMMd => "d. MMM y.",
      yMMdd => "dd.MM.y.",
      yMd => "d.M.y.",
      yQQQ => "QQQ. y",
      yQQQQ => "QQQQ. y"
    },
    code => "sr-Cyrl-XK",
    date_format_full => "EEEE, dd. MMMM y.",
    date_format_long => "dd. MMMM y.",
    date_format_medium => "dd.MM.y.",
    date_format_short => "d.M.yy.",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+043f}\N{U+043e}\N{U+043d}",
      "\N{U+0443}\N{U+0442}\N{U+043e}",
      "\N{U+0441}\N{U+0440}\N{U+0435}",
      "\N{U+0447}\N{U+0435}\N{U+0442}",
      "\N{U+043f}\N{U+0435}\N{U+0442}",
      "\N{U+0441}\N{U+0443}\N{U+0431}",
      "\N{U+043d}\N{U+0435}\N{U+0434}"
    ],
    day_format_narrow => [
      "\N{U+043f}",
      "\N{U+0443}",
      "\N{U+0441}",
      "\N{U+0447}",
      "\N{U+043f}",
      "\N{U+0441}",
      "\N{U+043d}"
    ],
    day_format_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}\N{U+043a}",
      "\N{U+0443}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+043f}\N{U+0435}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+043f}\N{U+043e}\N{U+043d}",
      "\N{U+0443}\N{U+0442}\N{U+043e}",
      "\N{U+0441}\N{U+0440}\N{U+0435}",
      "\N{U+0447}\N{U+0435}\N{U+0442}",
      "\N{U+043f}\N{U+0435}\N{U+0442}",
      "\N{U+0441}\N{U+0443}\N{U+0431}",
      "\N{U+043d}\N{U+0435}\N{U+0434}"
    ],
    day_stand_alone_narrow => [
      "\N{U+043f}",
      "\N{U+0443}",
      "\N{U+0441}",
      "\N{U+0447}",
      "\N{U+043f}",
      "\N{U+0441}",
      "\N{U+043d}"
    ],
    day_stand_alone_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}\N{U+043a}",
      "\N{U+0443}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+043f}\N{U+0435}\N{U+0442}\N{U+0430}\N{U+043a}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0435}\N{U+0459}\N{U+0430}"
    ],
    era_abbreviated => [
      "\N{U+043f}. \N{U+043d}. \N{U+0435}.",
      "\N{U+043d}. \N{U+0435}."
    ],
    era_narrow => [
      "\N{U+043f}.\N{U+043d}.\N{U+0435}.",
      "\N{U+043d}.\N{U+0435}."
    ],
    era_wide => [
      "\N{U+043f}\N{U+0440}\N{U+0435} \N{U+043d}\N{U+043e}\N{U+0432}\N{U+0435} \N{U+0435}\N{U+0440}\N{U+0435}",
      "\N{U+043d}\N{U+043e}\N{U+0432}\N{U+0435} \N{U+0435}\N{U+0440}\N{U+0435}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Serbian",
    month_format_abbreviated => [
      "\N{U+0458}\N{U+0430}\N{U+043d}",
      "\N{U+0444}\N{U+0435}\N{U+0431}",
      "\N{U+043c}\N{U+0430}\N{U+0440}",
      "\N{U+0430}\N{U+043f}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}",
      "\N{U+0441}\N{U+0435}\N{U+043f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}",
      "\N{U+043d}\N{U+043e}\N{U+0432}",
      "\N{U+0434}\N{U+0435}\N{U+0446}"
    ],
    month_format_narrow => [
      "\N{U+0458}",
      "\N{U+0444}",
      "\N{U+043c}",
      "\N{U+0430}",
      "\N{U+043c}",
      "\N{U+0458}",
      "\N{U+0458}",
      "\N{U+0430}",
      "\N{U+0441}",
      "\N{U+043e}",
      "\N{U+043d}",
      "\N{U+0434}"
    ],
    month_format_wide => [
      "\N{U+0458}\N{U+0430}\N{U+043d}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+0444}\N{U+0435}\N{U+0431}\N{U+0440}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0438}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043f}\N{U+0442}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+043e}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043d}\N{U+043e}\N{U+0432}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+0434}\N{U+0435}\N{U+0446}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0458}\N{U+0430}\N{U+043d}",
      "\N{U+0444}\N{U+0435}\N{U+0431}",
      "\N{U+043c}\N{U+0430}\N{U+0440}",
      "\N{U+0430}\N{U+043f}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}",
      "\N{U+0441}\N{U+0435}\N{U+043f}",
      "\N{U+043e}\N{U+043a}\N{U+0442}",
      "\N{U+043d}\N{U+043e}\N{U+0432}",
      "\N{U+0434}\N{U+0435}\N{U+0446}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0458}",
      "\N{U+0444}",
      "\N{U+043c}",
      "\N{U+0430}",
      "\N{U+043c}",
      "\N{U+0458}",
      "\N{U+0458}",
      "\N{U+0430}",
      "\N{U+0441}",
      "\N{U+043e}",
      "\N{U+043d}",
      "\N{U+0434}"
    ],
    month_stand_alone_wide => [
      "\N{U+0458}\N{U+0430}\N{U+043d}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+0444}\N{U+0435}\N{U+0431}\N{U+0440}\N{U+0443}\N{U+0430}\N{U+0440}",
      "\N{U+043c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0430}\N{U+043f}\N{U+0440}\N{U+0438}\N{U+043b}",
      "\N{U+043c}\N{U+0430}\N{U+0458}",
      "\N{U+0458}\N{U+0443}\N{U+043d}",
      "\N{U+0458}\N{U+0443}\N{U+043b}",
      "\N{U+0430}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0441}\N{U+0435}\N{U+043f}\N{U+0442}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043e}\N{U+043a}\N{U+0442}\N{U+043e}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+043d}\N{U+043e}\N{U+0432}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}",
      "\N{U+0434}\N{U+0435}\N{U+0446}\N{U+0435}\N{U+043c}\N{U+0431}\N{U+0430}\N{U+0440}"
    ],
    name => "Serbian Kosovo Cyrillic",
    native_language => "\N{U+0441}\N{U+0440}\N{U+043f}\N{U+0441}\N{U+043a}\N{U+0438}",
    native_name => "\N{U+0441}\N{U+0440}\N{U+043f}\N{U+0441}\N{U+043a}\N{U+0438} \N{U+041a}\N{U+043e}\N{U+0441}\N{U+043e}\N{U+0432}\N{U+043e} \N{U+045b}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}\N{U+0438}\N{U+0446}\N{U+0430}",
    native_script => "\N{U+045b}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}\N{U+0438}\N{U+0446}\N{U+0430}",
    native_territory => "\N{U+041a}\N{U+043e}\N{U+0441}\N{U+043e}\N{U+0432}\N{U+043e}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+041a}1",
      "\N{U+041a}2",
      "\N{U+041a}3",
      "\N{U+041a}4"
    ],
    quarter_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_format_wide => [
      "\N{U+043f}\N{U+0440}\N{U+0432}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0434}\N{U+0440}\N{U+0443}\N{U+0433}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0442}\N{U+0440}\N{U+0435}\N{U+045b}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+041a}1",
      "\N{U+041a}2",
      "\N{U+041a}3",
      "\N{U+041a}4"
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "\N{U+043f}\N{U+0440}\N{U+0432}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0434}\N{U+0440}\N{U+0443}\N{U+0433}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0442}\N{U+0440}\N{U+0435}\N{U+045b}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0440}\N{U+0442}\N{U+0438} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    script => "Cyrillic",
    territory => "Kosovo",
    time_format_full => "HH.mm.ss zzzz",
    time_format_long => "HH.mm.ss z",
    time_format_medium => "HH.mm.ss",
    time_format_short => "HH.mm",
    variant => undef,
    version => 28
  }
  __[ sr-Latn ]__
  {
    am_pm_abbreviated => [
      "pre podne",
      "po podne"
    ],
    available_formats => {
      E => "E",
      EHm => "E, HH.mm",
      EHms => "E, HH.mm.ss",
      Ed => "E d.",
      Ehm => "E, h.mm a",
      Ehms => "E, h.mm.ss a",
      Gy => "y. G",
      GyMMM => "MMM y. G",
      GyMMMEd => "E, d. MMM y. G",
      GyMMMd => "d. MMM y. G",
      H => "HH",
      Hm => "HH.mm",
      Hms => "HH.mm.ss",
      Hmsv => "HH.mm.ss v",
      Hmv => "HH.mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E d. MMM",
      MMMMEd => "E, d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMMdd => "dd.MMM",
      MMdd => "MM-dd",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "hh.mm a",
      hms => "hh.mm.ss a",
      hmsv => "h.mm.ss a v",
      hmv => "h.mm a v",
      ms => "mm.ss",
      y => "y.",
      yM => "M.y.",
      yMEd => "E, d.M.y.",
      yMM => "MM.y.",
      yMMM => "MMM y.",
      yMMMEd => "E, d. MMM y.",
      yMMMM => "MMMM y.",
      yMMMd => "d. MMM y.",
      yMMdd => "dd.MM.y.",
      yMd => "d.M.y.",
      yQQQ => "QQQ. y",
      yQQQQ => "QQQQ. y"
    },
    code => "sr-Latn",
    date_format_full => "EEEE, dd. MMMM y.",
    date_format_long => "dd. MMMM y.",
    date_format_medium => "dd.MM.y.",
    date_format_short => "d.M.yy.",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "pon",
      "uto",
      "sre",
      "\N{U+010d}et",
      "pet",
      "sub",
      "ned"
    ],
    day_format_narrow => [
      "p",
      "u",
      "s",
      "\N{U+010d}",
      "p",
      "s",
      "n"
    ],
    day_format_wide => [
      "ponedeljak",
      "utorak",
      "sreda",
      "\N{U+010d}etvrtak",
      "petak",
      "subota",
      "nedelja"
    ],
    day_stand_alone_abbreviated => [
      "pon",
      "uto",
      "sre",
      "\N{U+010d}et",
      "pet",
      "sub",
      "ned"
    ],
    day_stand_alone_narrow => [
      "p",
      "u",
      "s",
      "\N{U+010d}",
      "p",
      "s",
      "n"
    ],
    day_stand_alone_wide => [
      "ponedeljak",
      "utorak",
      "sreda",
      "\N{U+010d}etvrtak",
      "petak",
      "subota",
      "nedelja"
    ],
    era_abbreviated => [
      "p. n. e.",
      "n. e."
    ],
    era_narrow => [
      "p.n.e.",
      "n.e."
    ],
    era_wide => [
      "pre nove ere",
      "nove ere"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Serbian",
    month_format_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "maj",
      "jun",
      "jul",
      "avg",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_format_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "januar",
      "februar",
      "mart",
      "april",
      "maj",
      "jun",
      "jul",
      "avgust",
      "septembar",
      "oktobar",
      "novembar",
      "decembar"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "maj",
      "jun",
      "jul",
      "avg",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_stand_alone_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_stand_alone_wide => [
      "januar",
      "februar",
      "mart",
      "april",
      "maj",
      "jun",
      "jul",
      "avgust",
      "septembar",
      "oktobar",
      "novembar",
      "decembar"
    ],
    name => "Serbian Latin",
    native_language => "srpski",
    native_name => "srpski latinica",
    native_script => "latinica",
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_format_wide => [
      "prvi kvartal",
      "drugi kvartal",
      "tre\N{U+0107}i kvartal",
      "\N{U+010d}etvrti kvartal"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "prvi kvartal",
      "drugi kvartal",
      "tre\N{U+0107}i kvartal",
      "\N{U+010d}etvrti kvartal"
    ],
    script => "Latin",
    territory => undef,
    time_format_full => "HH.mm.ss zzzz",
    time_format_long => "HH.mm.ss z",
    time_format_medium => "HH.mm.ss",
    time_format_short => "HH.mm",
    variant => undef,
    version => 28
  }
  __[ sr-Latn-BA ]__
  {
    am_pm_abbreviated => [
      "pre podne",
      "po podne"
    ],
    available_formats => {
      E => "E",
      EHm => "E, HH.mm",
      EHms => "E, HH.mm.ss",
      Ed => "E d.",
      Ehm => "E, h.mm a",
      Ehms => "E, h.mm.ss a",
      Gy => "y. G",
      GyMMM => "MMM y. G",
      GyMMMEd => "E, d. MMM y. G",
      GyMMMd => "d. MMM y. G",
      H => "HH",
      Hm => "HH.mm",
      Hms => "HH.mm.ss",
      Hmsv => "HH.mm.ss v",
      Hmv => "HH.mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E d. MMM",
      MMMMEd => "E, d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMMdd => "dd.MMM",
      MMdd => "MM-dd",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "hh.mm a",
      hms => "hh.mm.ss a",
      hmsv => "h.mm.ss a v",
      hmv => "h.mm a v",
      ms => "mm.ss",
      y => "y.",
      yM => "M.y.",
      yMEd => "E, d.M.y.",
      yMM => "MM.y.",
      yMMM => "MMM y.",
      yMMMEd => "E, d. MMM y.",
      yMMMM => "MMMM y.",
      yMMMd => "d. MMM y.",
      yMMdd => "dd.MM.y.",
      yMd => "d.M.y.",
      yQQQ => "QQQ. y",
      yQQQQ => "QQQQ. y"
    },
    code => "sr-Latn-BA",
    date_format_full => "EEEE, dd. MMMM y.",
    date_format_long => "dd. MMMM y.",
    date_format_medium => "dd.MM.y.",
    date_format_short => "d.M.yy.",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "pon",
      "uto",
      "sre",
      "\N{U+010d}et",
      "pet",
      "sub",
      "ned"
    ],
    day_format_narrow => [
      "p",
      "u",
      "s",
      "\N{U+010d}",
      "p",
      "s",
      "n"
    ],
    day_format_wide => [
      "ponedeljak",
      "utorak",
      "sreda",
      "\N{U+010d}etvrtak",
      "petak",
      "subota",
      "nedelja"
    ],
    day_stand_alone_abbreviated => [
      "pon",
      "uto",
      "sre",
      "\N{U+010d}et",
      "pet",
      "sub",
      "ned"
    ],
    day_stand_alone_narrow => [
      "p",
      "u",
      "s",
      "\N{U+010d}",
      "p",
      "s",
      "n"
    ],
    day_stand_alone_wide => [
      "ponedeljak",
      "utorak",
      "sreda",
      "\N{U+010d}etvrtak",
      "petak",
      "subota",
      "nedelja"
    ],
    era_abbreviated => [
      "p. n. e.",
      "n. e."
    ],
    era_narrow => [
      "p.n.e.",
      "n.e."
    ],
    era_wide => [
      "pre nove ere",
      "nove ere"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Serbian",
    month_format_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "maj",
      "jun",
      "jul",
      "avg",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_format_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "januar",
      "februar",
      "mart",
      "april",
      "maj",
      "jun",
      "jul",
      "avgust",
      "septembar",
      "oktobar",
      "novembar",
      "decembar"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "maj",
      "jun",
      "jul",
      "avg",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_stand_alone_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_stand_alone_wide => [
      "januar",
      "februar",
      "mart",
      "april",
      "maj",
      "jun",
      "jul",
      "avgust",
      "septembar",
      "oktobar",
      "novembar",
      "decembar"
    ],
    name => "Serbian Bosnia & Herzegovina Latin",
    native_language => "srpski",
    native_name => "srpski Bosna i Hercegovina latinica",
    native_script => "latinica",
    native_territory => "Bosna i Hercegovina",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_format_wide => [
      "prvi kvartal",
      "drugi kvartal",
      "tre\N{U+0107}i kvartal",
      "\N{U+010d}etvrti kvartal"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "prvi kvartal",
      "drugi kvartal",
      "tre\N{U+0107}i kvartal",
      "\N{U+010d}etvrti kvartal"
    ],
    script => "Latin",
    territory => "Bosnia & Herzegovina",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ sr-Latn-ME ]__
  {
    am_pm_abbreviated => [
      "pre podne",
      "po podne"
    ],
    available_formats => {
      E => "E",
      EHm => "E, HH.mm",
      EHms => "E, HH.mm.ss",
      Ed => "E d.",
      Ehm => "E, h.mm a",
      Ehms => "E, h.mm.ss a",
      Gy => "y. G",
      GyMMM => "MMM y. G",
      GyMMMEd => "E, d. MMM y. G",
      GyMMMd => "d. MMM y. G",
      H => "HH",
      Hm => "HH.mm",
      Hms => "HH.mm.ss",
      Hmsv => "HH.mm.ss v",
      Hmv => "HH.mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E d. MMM",
      MMMMEd => "E, d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMMdd => "dd.MMM",
      MMdd => "MM-dd",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "hh.mm a",
      hms => "hh.mm.ss a",
      hmsv => "h.mm.ss a v",
      hmv => "h.mm a v",
      ms => "mm.ss",
      y => "y.",
      yM => "M.y.",
      yMEd => "E, d.M.y.",
      yMM => "MM.y.",
      yMMM => "MMM y.",
      yMMMEd => "E, d. MMM y.",
      yMMMM => "MMMM y.",
      yMMMd => "d. MMM y.",
      yMMdd => "dd.MM.y.",
      yMd => "d.M.y.",
      yQQQ => "QQQ. y",
      yQQQQ => "QQQQ. y"
    },
    code => "sr-Latn-ME",
    date_format_full => "EEEE, dd. MMMM y.",
    date_format_long => "dd. MMMM y.",
    date_format_medium => "dd.MM.y.",
    date_format_short => "d.M.yy.",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "pon",
      "uto",
      "sre",
      "\N{U+010d}et",
      "pet",
      "sub",
      "ned"
    ],
    day_format_narrow => [
      "p",
      "u",
      "s",
      "\N{U+010d}",
      "p",
      "s",
      "n"
    ],
    day_format_wide => [
      "ponedeljak",
      "utorak",
      "sreda",
      "\N{U+010d}etvrtak",
      "petak",
      "subota",
      "nedelja"
    ],
    day_stand_alone_abbreviated => [
      "pon",
      "uto",
      "sre",
      "\N{U+010d}et",
      "pet",
      "sub",
      "ned"
    ],
    day_stand_alone_narrow => [
      "p",
      "u",
      "s",
      "\N{U+010d}",
      "p",
      "s",
      "n"
    ],
    day_stand_alone_wide => [
      "ponedeljak",
      "utorak",
      "sreda",
      "\N{U+010d}etvrtak",
      "petak",
      "subota",
      "nedelja"
    ],
    era_abbreviated => [
      "p. n. e.",
      "n. e."
    ],
    era_narrow => [
      "p.n.e.",
      "n.e."
    ],
    era_wide => [
      "pre nove ere",
      "nove ere"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Serbian",
    month_format_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "maj",
      "jun",
      "jul",
      "avg",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_format_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "januar",
      "februar",
      "mart",
      "april",
      "maj",
      "jun",
      "jul",
      "avgust",
      "septembar",
      "oktobar",
      "novembar",
      "decembar"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "maj",
      "jun",
      "jul",
      "avg",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_stand_alone_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_stand_alone_wide => [
      "januar",
      "februar",
      "mart",
      "april",
      "maj",
      "jun",
      "jul",
      "avgust",
      "septembar",
      "oktobar",
      "novembar",
      "decembar"
    ],
    name => "Serbian Montenegro Latin",
    native_language => "srpski",
    native_name => "srpski Crna Gora latinica",
    native_script => "latinica",
    native_territory => "Crna Gora",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_format_wide => [
      "prvi kvartal",
      "drugi kvartal",
      "tre\N{U+0107}i kvartal",
      "\N{U+010d}etvrti kvartal"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "prvi kvartal",
      "drugi kvartal",
      "tre\N{U+0107}i kvartal",
      "\N{U+010d}etvrti kvartal"
    ],
    script => "Latin",
    territory => "Montenegro",
    time_format_full => "HH.mm.ss zzzz",
    time_format_long => "HH.mm.ss z",
    time_format_medium => "HH.mm.ss",
    time_format_short => "HH.mm",
    variant => undef,
    version => 28
  }
  __[ sr-Latn-RS ]__
  {
    am_pm_abbreviated => [
      "pre podne",
      "po podne"
    ],
    available_formats => {
      E => "E",
      EHm => "E, HH.mm",
      EHms => "E, HH.mm.ss",
      Ed => "E d.",
      Ehm => "E, h.mm a",
      Ehms => "E, h.mm.ss a",
      Gy => "y. G",
      GyMMM => "MMM y. G",
      GyMMMEd => "E, d. MMM y. G",
      GyMMMd => "d. MMM y. G",
      H => "HH",
      Hm => "HH.mm",
      Hms => "HH.mm.ss",
      Hmsv => "HH.mm.ss v",
      Hmv => "HH.mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E d. MMM",
      MMMMEd => "E, d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMMdd => "dd.MMM",
      MMdd => "MM-dd",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "hh.mm a",
      hms => "hh.mm.ss a",
      hmsv => "h.mm.ss a v",
      hmv => "h.mm a v",
      ms => "mm.ss",
      y => "y.",
      yM => "M.y.",
      yMEd => "E, d.M.y.",
      yMM => "MM.y.",
      yMMM => "MMM y.",
      yMMMEd => "E, d. MMM y.",
      yMMMM => "MMMM y.",
      yMMMd => "d. MMM y.",
      yMMdd => "dd.MM.y.",
      yMd => "d.M.y.",
      yQQQ => "QQQ. y",
      yQQQQ => "QQQQ. y"
    },
    code => "sr-Latn-RS",
    date_format_full => "EEEE, dd. MMMM y.",
    date_format_long => "dd. MMMM y.",
    date_format_medium => "dd.MM.y.",
    date_format_short => "d.M.yy.",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "pon",
      "uto",
      "sre",
      "\N{U+010d}et",
      "pet",
      "sub",
      "ned"
    ],
    day_format_narrow => [
      "p",
      "u",
      "s",
      "\N{U+010d}",
      "p",
      "s",
      "n"
    ],
    day_format_wide => [
      "ponedeljak",
      "utorak",
      "sreda",
      "\N{U+010d}etvrtak",
      "petak",
      "subota",
      "nedelja"
    ],
    day_stand_alone_abbreviated => [
      "pon",
      "uto",
      "sre",
      "\N{U+010d}et",
      "pet",
      "sub",
      "ned"
    ],
    day_stand_alone_narrow => [
      "p",
      "u",
      "s",
      "\N{U+010d}",
      "p",
      "s",
      "n"
    ],
    day_stand_alone_wide => [
      "ponedeljak",
      "utorak",
      "sreda",
      "\N{U+010d}etvrtak",
      "petak",
      "subota",
      "nedelja"
    ],
    era_abbreviated => [
      "p. n. e.",
      "n. e."
    ],
    era_narrow => [
      "p.n.e.",
      "n.e."
    ],
    era_wide => [
      "pre nove ere",
      "nove ere"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a<U002c> %e. %b %Y.  %H:%M:%S %Z\n",
    glibc_date_format => "%d.%m.%Y.",
    glibc_datetime_format => "%A, %d. %B %Y. %T %Z",
    glibc_time_12_format => "%T",
    glibc_time_format => "%T",
    language => "Serbian",
    month_format_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "maj",
      "jun",
      "jul",
      "avg",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_format_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "januar",
      "februar",
      "mart",
      "april",
      "maj",
      "jun",
      "jul",
      "avgust",
      "septembar",
      "oktobar",
      "novembar",
      "decembar"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "maj",
      "jun",
      "jul",
      "avg",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_stand_alone_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_stand_alone_wide => [
      "januar",
      "februar",
      "mart",
      "april",
      "maj",
      "jun",
      "jul",
      "avgust",
      "septembar",
      "oktobar",
      "novembar",
      "decembar"
    ],
    name => "Serbian Serbia Latin",
    native_language => "srpski",
    native_name => "srpski Srbija latinica",
    native_script => "latinica",
    native_territory => "Srbija",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_format_wide => [
      "prvi kvartal",
      "drugi kvartal",
      "tre\N{U+0107}i kvartal",
      "\N{U+010d}etvrti kvartal"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "prvi kvartal",
      "drugi kvartal",
      "tre\N{U+0107}i kvartal",
      "\N{U+010d}etvrti kvartal"
    ],
    script => "Latin",
    territory => "Serbia",
    time_format_full => "HH.mm.ss zzzz",
    time_format_long => "HH.mm.ss z",
    time_format_medium => "HH.mm.ss",
    time_format_short => "HH.mm",
    variant => undef,
    version => 28
  }
  __[ sr-Latn-XK ]__
  {
    am_pm_abbreviated => [
      "pre podne",
      "po podne"
    ],
    available_formats => {
      E => "E",
      EHm => "E, HH.mm",
      EHms => "E, HH.mm.ss",
      Ed => "E d.",
      Ehm => "E, h.mm a",
      Ehms => "E, h.mm.ss a",
      Gy => "y. G",
      GyMMM => "MMM y. G",
      GyMMMEd => "E, d. MMM y. G",
      GyMMMd => "d. MMM y. G",
      H => "HH",
      Hm => "HH.mm",
      Hms => "HH.mm.ss",
      Hmsv => "HH.mm.ss v",
      Hmv => "HH.mm v",
      M => "L",
      MEd => "E, d.M.",
      MMM => "LLL",
      MMMEd => "E d. MMM",
      MMMMEd => "E, d. MMMM",
      MMMMd => "d. MMMM",
      MMMd => "d. MMM",
      MMMdd => "dd.MMM",
      MMdd => "MM-dd",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "hh.mm a",
      hms => "hh.mm.ss a",
      hmsv => "h.mm.ss a v",
      hmv => "h.mm a v",
      ms => "mm.ss",
      y => "y.",
      yM => "M.y.",
      yMEd => "E, d.M.y.",
      yMM => "MM.y.",
      yMMM => "MMM y.",
      yMMMEd => "E, d. MMM y.",
      yMMMM => "MMMM y.",
      yMMMd => "d. MMM y.",
      yMMdd => "dd.MM.y.",
      yMd => "d.M.y.",
      yQQQ => "QQQ. y",
      yQQQQ => "QQQQ. y"
    },
    code => "sr-Latn-XK",
    date_format_full => "EEEE, dd. MMMM y.",
    date_format_long => "dd. MMMM y.",
    date_format_medium => "dd.MM.y.",
    date_format_short => "d.M.yy.",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "pon",
      "uto",
      "sre",
      "\N{U+010d}et",
      "pet",
      "sub",
      "ned"
    ],
    day_format_narrow => [
      "p",
      "u",
      "s",
      "\N{U+010d}",
      "p",
      "s",
      "n"
    ],
    day_format_wide => [
      "ponedeljak",
      "utorak",
      "sreda",
      "\N{U+010d}etvrtak",
      "petak",
      "subota",
      "nedelja"
    ],
    day_stand_alone_abbreviated => [
      "pon",
      "uto",
      "sre",
      "\N{U+010d}et",
      "pet",
      "sub",
      "ned"
    ],
    day_stand_alone_narrow => [
      "p",
      "u",
      "s",
      "\N{U+010d}",
      "p",
      "s",
      "n"
    ],
    day_stand_alone_wide => [
      "ponedeljak",
      "utorak",
      "sreda",
      "\N{U+010d}etvrtak",
      "petak",
      "subota",
      "nedelja"
    ],
    era_abbreviated => [
      "p. n. e.",
      "n. e."
    ],
    era_narrow => [
      "p.n.e.",
      "n.e."
    ],
    era_wide => [
      "pre nove ere",
      "nove ere"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Serbian",
    month_format_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "maj",
      "jun",
      "jul",
      "avg",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_format_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_format_wide => [
      "januar",
      "februar",
      "mart",
      "april",
      "maj",
      "jun",
      "jul",
      "avgust",
      "septembar",
      "oktobar",
      "novembar",
      "decembar"
    ],
    month_stand_alone_abbreviated => [
      "jan",
      "feb",
      "mar",
      "apr",
      "maj",
      "jun",
      "jul",
      "avg",
      "sep",
      "okt",
      "nov",
      "dec"
    ],
    month_stand_alone_narrow => [
      "j",
      "f",
      "m",
      "a",
      "m",
      "j",
      "j",
      "a",
      "s",
      "o",
      "n",
      "d"
    ],
    month_stand_alone_wide => [
      "januar",
      "februar",
      "mart",
      "april",
      "maj",
      "jun",
      "jul",
      "avgust",
      "septembar",
      "oktobar",
      "novembar",
      "decembar"
    ],
    name => "Serbian Kosovo Latin",
    native_language => "srpski",
    native_name => "srpski Kosovo latinica",
    native_script => "latinica",
    native_territory => "Kosovo",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_format_wide => [
      "prvi kvartal",
      "drugi kvartal",
      "tre\N{U+0107}i kvartal",
      "\N{U+010d}etvrti kvartal"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "prvi kvartal",
      "drugi kvartal",
      "tre\N{U+0107}i kvartal",
      "\N{U+010d}etvrti kvartal"
    ],
    script => "Latin",
    territory => "Kosovo",
    time_format_full => "HH.mm.ss zzzz",
    time_format_long => "HH.mm.ss z",
    time_format_medium => "HH.mm.ss",
    time_format_short => "HH.mm",
    variant => undef,
    version => 28
  }
  __[ sv ]__
  {
    am_pm_abbreviated => [
      "fm",
      "em"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMd => "d/M",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "E, y-MM-dd",
      yMM => "y-MM",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "sv",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "m\N{U+00e5}n",
      "tis",
      "ons",
      "tors",
      "fre",
      "l\N{U+00f6}r",
      "s\N{U+00f6}n"
    ],
    day_format_narrow => [
      "M",
      "T",
      "O",
      "T",
      "F",
      "L",
      "S"
    ],
    day_format_wide => [
      "m\N{U+00e5}ndag",
      "tisdag",
      "onsdag",
      "torsdag",
      "fredag",
      "l\N{U+00f6}rdag",
      "s\N{U+00f6}ndag"
    ],
    day_stand_alone_abbreviated => [
      "m\N{U+00e5}n",
      "tis",
      "ons",
      "tors",
      "fre",
      "l\N{U+00f6}r",
      "s\N{U+00f6}n"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "O",
      "T",
      "F",
      "L",
      "S"
    ],
    day_stand_alone_wide => [
      "m\N{U+00e5}ndag",
      "tisdag",
      "onsdag",
      "torsdag",
      "fredag",
      "l\N{U+00f6}rdag",
      "s\N{U+00f6}ndag"
    ],
    era_abbreviated => [
      "f.Kr.",
      "e.Kr."
    ],
    era_narrow => [
      "f.Kr.",
      "e.Kr."
    ],
    era_wide => [
      "f\N{U+00f6}re Kristus",
      "efter Kristus"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Swedish",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "mars",
      "apr.",
      "maj",
      "juni",
      "juli",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "januari",
      "februari",
      "mars",
      "april",
      "maj",
      "juni",
      "juli",
      "augusti",
      "september",
      "oktober",
      "november",
      "december"
    ],
    month_stand_alone_abbreviated => [
      "jan.",
      "feb.",
      "mars",
      "apr.",
      "maj",
      "juni",
      "juli",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "januari",
      "februari",
      "mars",
      "april",
      "maj",
      "juni",
      "juli",
      "augusti",
      "september",
      "oktober",
      "november",
      "december"
    ],
    name => "Swedish",
    native_language => "svenska",
    native_name => "svenska",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1:a kvartalet",
      "2:a kvartalet",
      "3:e kvartalet",
      "4:e kvartalet"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1:a kvartalet",
      "2:a kvartalet",
      "3:e kvartalet",
      "4:e kvartalet"
    ],
    script => undef,
    territory => undef,
    time_format_full => "'kl'. HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ sv-AX ]__
  {
    am_pm_abbreviated => [
      "fm",
      "em"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMd => "d/M",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "E, y-MM-dd",
      yMM => "y-MM",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "sv-AX",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "m\N{U+00e5}n",
      "tis",
      "ons",
      "tors",
      "fre",
      "l\N{U+00f6}r",
      "s\N{U+00f6}n"
    ],
    day_format_narrow => [
      "M",
      "T",
      "O",
      "T",
      "F",
      "L",
      "S"
    ],
    day_format_wide => [
      "m\N{U+00e5}ndag",
      "tisdag",
      "onsdag",
      "torsdag",
      "fredag",
      "l\N{U+00f6}rdag",
      "s\N{U+00f6}ndag"
    ],
    day_stand_alone_abbreviated => [
      "m\N{U+00e5}n",
      "tis",
      "ons",
      "tors",
      "fre",
      "l\N{U+00f6}r",
      "s\N{U+00f6}n"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "O",
      "T",
      "F",
      "L",
      "S"
    ],
    day_stand_alone_wide => [
      "m\N{U+00e5}ndag",
      "tisdag",
      "onsdag",
      "torsdag",
      "fredag",
      "l\N{U+00f6}rdag",
      "s\N{U+00f6}ndag"
    ],
    era_abbreviated => [
      "f.Kr.",
      "e.Kr."
    ],
    era_narrow => [
      "f.Kr.",
      "e.Kr."
    ],
    era_wide => [
      "f\N{U+00f6}re Kristus",
      "efter Kristus"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Swedish",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "mars",
      "apr.",
      "maj",
      "juni",
      "juli",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "januari",
      "februari",
      "mars",
      "april",
      "maj",
      "juni",
      "juli",
      "augusti",
      "september",
      "oktober",
      "november",
      "december"
    ],
    month_stand_alone_abbreviated => [
      "jan.",
      "feb.",
      "mars",
      "apr.",
      "maj",
      "juni",
      "juli",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "januari",
      "februari",
      "mars",
      "april",
      "maj",
      "juni",
      "juli",
      "augusti",
      "september",
      "oktober",
      "november",
      "december"
    ],
    name => "Swedish \N{U+00c5}land Islands",
    native_language => "svenska",
    native_name => "svenska \N{U+00c5}land",
    native_script => undef,
    native_territory => "\N{U+00c5}land",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1:a kvartalet",
      "2:a kvartalet",
      "3:e kvartalet",
      "4:e kvartalet"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1:a kvartalet",
      "2:a kvartalet",
      "3:e kvartalet",
      "4:e kvartalet"
    ],
    script => undef,
    territory => "\N{U+00c5}land Islands",
    time_format_full => "'kl'. HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ sv-FI ]__
  {
    am_pm_abbreviated => [
      "fm",
      "em"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMd => "d/M",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "E, y-MM-dd",
      yMM => "y-MM",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "sv-FI",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd-MM-y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "m\N{U+00e5}n",
      "tis",
      "ons",
      "tors",
      "fre",
      "l\N{U+00f6}r",
      "s\N{U+00f6}n"
    ],
    day_format_narrow => [
      "M",
      "T",
      "O",
      "T",
      "F",
      "L",
      "S"
    ],
    day_format_wide => [
      "m\N{U+00e5}ndag",
      "tisdag",
      "onsdag",
      "torsdag",
      "fredag",
      "l\N{U+00f6}rdag",
      "s\N{U+00f6}ndag"
    ],
    day_stand_alone_abbreviated => [
      "m\N{U+00e5}n",
      "tis",
      "ons",
      "tors",
      "fre",
      "l\N{U+00f6}r",
      "s\N{U+00f6}n"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "O",
      "T",
      "F",
      "L",
      "S"
    ],
    day_stand_alone_wide => [
      "m\N{U+00e5}ndag",
      "tisdag",
      "onsdag",
      "torsdag",
      "fredag",
      "l\N{U+00f6}rdag",
      "s\N{U+00f6}ndag"
    ],
    era_abbreviated => [
      "f.Kr.",
      "e.Kr."
    ],
    era_narrow => [
      "f.Kr.",
      "e.Kr."
    ],
    era_wide => [
      "f\N{U+00f6}re Kristus",
      "efter Kristus"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %-d.%-m.%Y %H.%M.%S %z",
    glibc_date_format => "%d.%m.%Y",
    glibc_datetime_format => "%a %e. %B %Y %H.%M.%S",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H.%M.%S",
    language => "Swedish",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "mars",
      "apr.",
      "maj",
      "juni",
      "juli",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "januari",
      "februari",
      "mars",
      "april",
      "maj",
      "juni",
      "juli",
      "augusti",
      "september",
      "oktober",
      "november",
      "december"
    ],
    month_stand_alone_abbreviated => [
      "jan.",
      "feb.",
      "mars",
      "apr.",
      "maj",
      "juni",
      "juli",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "januari",
      "februari",
      "mars",
      "april",
      "maj",
      "juni",
      "juli",
      "augusti",
      "september",
      "oktober",
      "november",
      "december"
    ],
    name => "Swedish Finland",
    native_language => "svenska",
    native_name => "svenska Finland",
    native_script => undef,
    native_territory => "Finland",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1:a kvartalet",
      "2:a kvartalet",
      "3:e kvartalet",
      "4:e kvartalet"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1:a kvartalet",
      "2:a kvartalet",
      "3:e kvartalet",
      "4:e kvartalet"
    ],
    script => undef,
    territory => "Finland",
    time_format_full => "'kl'. HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ sv-SE ]__
  {
    am_pm_abbreviated => [
      "fm",
      "em"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMd => "d/M",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "E, y-MM-dd",
      yMM => "y-MM",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "sv-SE",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "m\N{U+00e5}n",
      "tis",
      "ons",
      "tors",
      "fre",
      "l\N{U+00f6}r",
      "s\N{U+00f6}n"
    ],
    day_format_narrow => [
      "M",
      "T",
      "O",
      "T",
      "F",
      "L",
      "S"
    ],
    day_format_wide => [
      "m\N{U+00e5}ndag",
      "tisdag",
      "onsdag",
      "torsdag",
      "fredag",
      "l\N{U+00f6}rdag",
      "s\N{U+00f6}ndag"
    ],
    day_stand_alone_abbreviated => [
      "m\N{U+00e5}n",
      "tis",
      "ons",
      "tors",
      "fre",
      "l\N{U+00f6}r",
      "s\N{U+00f6}n"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "O",
      "T",
      "F",
      "L",
      "S"
    ],
    day_stand_alone_wide => [
      "m\N{U+00e5}ndag",
      "tisdag",
      "onsdag",
      "torsdag",
      "fredag",
      "l\N{U+00f6}rdag",
      "s\N{U+00f6}ndag"
    ],
    era_abbreviated => [
      "f.Kr.",
      "e.Kr."
    ],
    era_narrow => [
      "f.Kr.",
      "e.Kr."
    ],
    era_wide => [
      "f\N{U+00f6}re Kristus",
      "efter Kristus"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%Y-%m-%d",
    glibc_datetime_format => "%a %e %b %Y %H:%M:%S",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Swedish",
    month_format_abbreviated => [
      "jan.",
      "feb.",
      "mars",
      "apr.",
      "maj",
      "juni",
      "juli",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "januari",
      "februari",
      "mars",
      "april",
      "maj",
      "juni",
      "juli",
      "augusti",
      "september",
      "oktober",
      "november",
      "december"
    ],
    month_stand_alone_abbreviated => [
      "jan.",
      "feb.",
      "mars",
      "apr.",
      "maj",
      "juni",
      "juli",
      "aug.",
      "sep.",
      "okt.",
      "nov.",
      "dec."
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "januari",
      "februari",
      "mars",
      "april",
      "maj",
      "juni",
      "juli",
      "augusti",
      "september",
      "oktober",
      "november",
      "december"
    ],
    name => "Swedish Sweden",
    native_language => "svenska",
    native_name => "svenska Sverige",
    native_script => undef,
    native_territory => "Sverige",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1:a kvartalet",
      "2:a kvartalet",
      "3:e kvartalet",
      "4:e kvartalet"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1:a kvartalet",
      "2:a kvartalet",
      "3:e kvartalet",
      "4:e kvartalet"
    ],
    script => undef,
    territory => "Sweden",
    time_format_full => "'kl'. HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ sw ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, MMM d, y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "y QQQ",
      yQQQQ => "QQQQ y"
    },
    code => "sw",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapili"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapili"
    ],
    day_stand_alone_abbreviated => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapili"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapili"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "Kabla ya Kristo",
      "Baada ya Kristo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Swahili",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Aprili",
      "Mei",
      "Juni",
      "Julai",
      "Agosti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Aprili",
      "Mei",
      "Juni",
      "Julai",
      "Agosti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    name => "Swahili",
    native_language => "Kiswahili",
    native_name => "Kiswahili",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Robo ya 1",
      "Robo ya 2",
      "Robo ya 3",
      "Robo ya 4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Robo ya 1",
      "Robo ya 2",
      "Robo ya 3",
      "Robo ya 4"
    ],
    quarter_stand_alone_abbreviated => [
      "Robo ya 1",
      "Robo ya 2",
      "Robo ya 3",
      "Robo ya 4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Robo ya 1",
      "Robo ya 2",
      "Robo ya 3",
      "Robo ya 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ sw-CD ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, MMM d, y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "y QQQ",
      yQQQQ => "QQQQ y"
    },
    code => "sw-CD",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "kwa",
      "pil",
      "tat",
      "ine",
      "tan",
      "sit",
      "yen"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "siku ya kwanza",
      "siku ya pili",
      "siku ya tatu",
      "siku ya ine",
      "siku ya tanu",
      "siku ya sita",
      "siku ya yenga"
    ],
    day_stand_alone_abbreviated => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapili"
    ],
    day_stand_alone_narrow => [
      "k",
      "p",
      "t",
      "i",
      "t",
      "s",
      "y"
    ],
    day_stand_alone_wide => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapili"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "Kabla ya Kristo",
      "Baada ya Kristo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Swahili",
    month_format_abbreviated => [
      "mkw",
      "mpi",
      "mtu",
      "min",
      "mtn",
      "mst",
      "msb",
      "mun",
      "mts",
      "mku",
      "mkm",
      "mkb"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "mwezi ya kwanja",
      "mwezi ya pili",
      "mwezi ya tatu",
      "mwezi ya ine",
      "mwezi ya tanu",
      "mwezi ya sita",
      "mwezi ya saba",
      "mwezi ya munane",
      "mwezi ya tisa",
      "mwezi ya kumi",
      "mwezi ya kumi na moya",
      "mwezi ya kumi ya mbili"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_stand_alone_narrow => [
      "k",
      "p",
      "t",
      "i",
      "t",
      "s",
      "s",
      "m",
      "t",
      "k",
      "m",
      "m"
    ],
    month_stand_alone_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Aprili",
      "Mei",
      "Juni",
      "Julai",
      "Agosti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    name => "Swahili Congo - Kinshasa",
    native_language => "Kiswahili",
    native_name => "Kiswahili Jamhuri ya Kidemokrasia ya Kongo",
    native_script => undef,
    native_territory => "Jamhuri ya Kidemokrasia ya Kongo",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Robo ya 1",
      "Robo ya 2",
      "Robo ya 3",
      "Robo ya 4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Robo ya 1",
      "Robo ya 2",
      "Robo ya 3",
      "Robo ya 4"
    ],
    quarter_stand_alone_abbreviated => [
      "Robo ya 1",
      "Robo ya 2",
      "Robo ya 3",
      "Robo ya 4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Robo ya 1",
      "Robo ya 2",
      "Robo ya 3",
      "Robo ya 4"
    ],
    script => undef,
    territory => "Congo - Kinshasa",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ sw-KE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, MMM d, y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "y QQQ",
      yQQQQ => "QQQQ y"
    },
    code => "sw-KE",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapili"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapili"
    ],
    day_stand_alone_abbreviated => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapili"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapili"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "Kabla ya Kristo",
      "Baada ya Kristo"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%Y",
    glibc_datetime_format => "%e %B %Y %I:%M:%S %p %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%I:%M:%S %p",
    language => "Swahili",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Aprili",
      "Mei",
      "Juni",
      "Julai",
      "Agosti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Aprili",
      "Mei",
      "Juni",
      "Julai",
      "Agosti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    name => "Swahili Kenya",
    native_language => "Kiswahili",
    native_name => "Kiswahili Kenya",
    native_script => undef,
    native_territory => "Kenya",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Robo ya 1",
      "Robo ya 2",
      "Robo ya 3",
      "Robo ya 4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Robo ya 1",
      "Robo ya 2",
      "Robo ya 3",
      "Robo ya 4"
    ],
    quarter_stand_alone_abbreviated => [
      "Robo ya 1",
      "Robo ya 2",
      "Robo ya 3",
      "Robo ya 4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Robo ya 1",
      "Robo ya 2",
      "Robo ya 3",
      "Robo ya 4"
    ],
    script => undef,
    territory => "Kenya",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ sw-TZ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, MMM d, y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "y QQQ",
      yQQQQ => "QQQQ y"
    },
    code => "sw-TZ",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapili"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapili"
    ],
    day_stand_alone_abbreviated => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapili"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapili"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "Kabla ya Kristo",
      "Baada ya Kristo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Swahili",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Aprili",
      "Mei",
      "Juni",
      "Julai",
      "Agosti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Aprili",
      "Mei",
      "Juni",
      "Julai",
      "Agosti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    name => "Swahili Tanzania",
    native_language => "Kiswahili",
    native_name => "Kiswahili Tanzania",
    native_script => undef,
    native_territory => "Tanzania",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Robo ya 1",
      "Robo ya 2",
      "Robo ya 3",
      "Robo ya 4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Robo ya 1",
      "Robo ya 2",
      "Robo ya 3",
      "Robo ya 4"
    ],
    quarter_stand_alone_abbreviated => [
      "Robo ya 1",
      "Robo ya 2",
      "Robo ya 3",
      "Robo ya 4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Robo ya 1",
      "Robo ya 2",
      "Robo ya 3",
      "Robo ya 4"
    ],
    script => undef,
    territory => "Tanzania",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ sw-UG ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, MMM d, y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "y QQQ",
      yQQQQ => "QQQQ y"
    },
    code => "sw-UG",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapili"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapili"
    ],
    day_stand_alone_abbreviated => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapili"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Jumatatu",
      "Jumanne",
      "Jumatano",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapili"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "Kabla ya Kristo",
      "Baada ya Kristo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Swahili",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Aprili",
      "Mei",
      "Juni",
      "Julai",
      "Agosti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Aprili",
      "Mei",
      "Juni",
      "Julai",
      "Agosti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    name => "Swahili Uganda",
    native_language => "Kiswahili",
    native_name => "Kiswahili Uganda",
    native_script => undef,
    native_territory => "Uganda",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Robo ya 1",
      "Robo ya 2",
      "Robo ya 3",
      "Robo ya 4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Robo ya 1",
      "Robo ya 2",
      "Robo ya 3",
      "Robo ya 4"
    ],
    quarter_stand_alone_abbreviated => [
      "Robo ya 1",
      "Robo ya 2",
      "Robo ya 3",
      "Robo ya 4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Robo ya 1",
      "Robo ya 2",
      "Robo ya 3",
      "Robo ya 4"
    ],
    script => undef,
    territory => "Uganda",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ta ]__
  {
    am_pm_abbreviated => [
      "\N{U+0bae}\N{U+0bc1}\N{U+0bb1}\N{U+0bcd}\N{U+0baa}\N{U+0b95}\N{U+0bb2}\N{U+0bcd}",
      "\N{U+0baa}\N{U+0bbf}\N{U+0bb1}\N{U+0bcd}\N{U+0baa}\N{U+0b95}\N{U+0bb2}\N{U+0bcd}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E a h:mm",
      Ehms => "E a h:mm:ss",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "d MMMM",
      MMMd => "MMM d",
      MMdd => "dd-MM",
      Md => "d/M",
      d => "d",
      h => "a h",
      hm => "a h:mm",
      hms => "a h:mm:ss",
      hmsv => "a h:mm:ss v",
      hmv => "a h:mm v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMM => "MM-y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM, y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM, y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ta",
    date_format_full => "EEEE, d MMMM, y",
    date_format_long => "d MMMM, y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} \N{U+2019}\N{U+0b85}\N{U+0ba9}\N{U+0bcd}\N{U+0bb1}\N{U+0bc1}\N{U+2019} {0}",
    datetime_format_long => "{1} \N{U+2019}\N{U+0b85}\N{U+0ba9}\N{U+0bcd}\N{U+0bb1}\N{U+0bc1}\N{U+2019} {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+0ba4}\N{U+0bbf}\N{U+0b99}\N{U+0bcd}.",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0bb5}\N{U+0bcd}.",
      "\N{U+0baa}\N{U+0bc1}\N{U+0ba4}.",
      "\N{U+0bb5}\N{U+0bbf}\N{U+0baf}\N{U+0bbe}.",
      "\N{U+0bb5}\N{U+0bc6}\N{U+0bb3}\N{U+0bcd}.",
      "\N{U+0b9a}\N{U+0ba9}\N{U+0bbf}",
      "\N{U+0b9e}\N{U+0bbe}\N{U+0baf}\N{U+0bbf}."
    ],
    day_format_narrow => [
      "\N{U+0ba4}\N{U+0bbf}",
      "\N{U+0b9a}\N{U+0bc6}",
      "\N{U+0baa}\N{U+0bc1}",
      "\N{U+0bb5}\N{U+0bbf}",
      "\N{U+0bb5}\N{U+0bc6}",
      "\N{U+0b9a}",
      "\N{U+0b9e}\N{U+0bbe}"
    ],
    day_format_wide => [
      "\N{U+0ba4}\N{U+0bbf}\N{U+0b99}\N{U+0bcd}\N{U+0b95}\N{U+0bb3}\N{U+0bcd}",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0bb5}\N{U+0bcd}\N{U+0bb5}\N{U+0bbe}\N{U+0baf}\N{U+0bcd}",
      "\N{U+0baa}\N{U+0bc1}\N{U+0ba4}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0bb5}\N{U+0bbf}\N{U+0baf}\N{U+0bbe}\N{U+0bb4}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0bb5}\N{U+0bc6}\N{U+0bb3}\N{U+0bcd}\N{U+0bb3}\N{U+0bbf}",
      "\N{U+0b9a}\N{U+0ba9}\N{U+0bbf}",
      "\N{U+0b9e}\N{U+0bbe}\N{U+0baf}\N{U+0bbf}\N{U+0bb1}\N{U+0bc1}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0ba4}\N{U+0bbf}\N{U+0b99}\N{U+0bcd}.",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0bb5}\N{U+0bcd}.",
      "\N{U+0baa}\N{U+0bc1}\N{U+0ba4}.",
      "\N{U+0bb5}\N{U+0bbf}\N{U+0baf}\N{U+0bbe}.",
      "\N{U+0bb5}\N{U+0bc6}\N{U+0bb3}\N{U+0bcd}.",
      "\N{U+0b9a}\N{U+0ba9}\N{U+0bbf}",
      "\N{U+0b9e}\N{U+0bbe}\N{U+0baf}\N{U+0bbf}."
    ],
    day_stand_alone_narrow => [
      "\N{U+0ba4}\N{U+0bbf}",
      "\N{U+0b9a}\N{U+0bc6}",
      "\N{U+0baa}\N{U+0bc1}",
      "\N{U+0bb5}\N{U+0bbf}",
      "\N{U+0bb5}\N{U+0bc6}",
      "\N{U+0b9a}",
      "\N{U+0b9e}\N{U+0bbe}"
    ],
    day_stand_alone_wide => [
      "\N{U+0ba4}\N{U+0bbf}\N{U+0b99}\N{U+0bcd}\N{U+0b95}\N{U+0bb3}\N{U+0bcd}",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0bb5}\N{U+0bcd}\N{U+0bb5}\N{U+0bbe}\N{U+0baf}\N{U+0bcd}",
      "\N{U+0baa}\N{U+0bc1}\N{U+0ba4}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0bb5}\N{U+0bbf}\N{U+0baf}\N{U+0bbe}\N{U+0bb4}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0bb5}\N{U+0bc6}\N{U+0bb3}\N{U+0bcd}\N{U+0bb3}\N{U+0bbf}",
      "\N{U+0b9a}\N{U+0ba9}\N{U+0bbf}",
      "\N{U+0b9e}\N{U+0bbe}\N{U+0baf}\N{U+0bbf}\N{U+0bb1}\N{U+0bc1}"
    ],
    era_abbreviated => [
      "\N{U+0b95}\N{U+0bbf}.\N{U+0bae}\N{U+0bc1}.",
      "\N{U+0b95}\N{U+0bbf}.\N{U+0baa}\N{U+0bbf}."
    ],
    era_narrow => [
      "\N{U+0b95}\N{U+0bbf}.\N{U+0bae}\N{U+0bc1}.",
      "\N{U+0b95}\N{U+0bbf}.\N{U+0baa}\N{U+0bbf}."
    ],
    era_wide => [
      "\N{U+0b95}\N{U+0bbf}\N{U+0bb1}\N{U+0bbf}\N{U+0bb8}\N{U+0bcd}\N{U+0ba4}\N{U+0bc1}\N{U+0bb5}\N{U+0bc1}\N{U+0b95}\N{U+0bcd}\N{U+0b95}\N{U+0bc1} \N{U+0bae}\N{U+0bc1}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0b85}\N{U+0ba9}\N{U+0bcd}\N{U+0ba9}\N{U+0bcb} \N{U+0b9f}\N{U+0bcb}\N{U+0bae}\N{U+0bbf}\N{U+0ba9}\N{U+0bbf}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Tamil",
    month_format_abbreviated => [
      "\N{U+0b9c}\N{U+0ba9}.",
      "\N{U+0baa}\N{U+0bbf}\N{U+0baa}\N{U+0bcd}.",
      "\N{U+0bae}\N{U+0bbe}\N{U+0bb0}\N{U+0bcd}.",
      "\N{U+0b8f}\N{U+0baa}\N{U+0bcd}.",
      "\N{U+0bae}\N{U+0bc7}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0bb2}\N{U+0bc8}",
      "\N{U+0b86}\N{U+0b95}.",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0baa}\N{U+0bcd}.",
      "\N{U+0b85}\N{U+0b95}\N{U+0bcd}.",
      "\N{U+0ba8}\N{U+0bb5}.",
      "\N{U+0b9f}\N{U+0bbf}\N{U+0b9a}."
    ],
    month_format_narrow => [
      "\N{U+0b9c}",
      "\N{U+0baa}\N{U+0bbf}",
      "\N{U+0bae}\N{U+0bbe}",
      "\N{U+0b8f}",
      "\N{U+0bae}\N{U+0bc7}",
      "\N{U+0b9c}\N{U+0bc2}",
      "\N{U+0b9c}\N{U+0bc2}",
      "\N{U+0b86}",
      "\N{U+0b9a}\N{U+0bc6}",
      "\N{U+0b85}",
      "\N{U+0ba8}",
      "\N{U+0b9f}\N{U+0bbf}"
    ],
    month_format_wide => [
      "\N{U+0b9c}\N{U+0ba9}\N{U+0bb5}\N{U+0bb0}\N{U+0bbf}",
      "\N{U+0baa}\N{U+0bbf}\N{U+0baa}\N{U+0bcd}\N{U+0bb0}\N{U+0bb5}\N{U+0bb0}\N{U+0bbf}",
      "\N{U+0bae}\N{U+0bbe}\N{U+0bb0}\N{U+0bcd}\N{U+0b9a}\N{U+0bcd}",
      "\N{U+0b8f}\N{U+0baa}\N{U+0bcd}\N{U+0bb0}\N{U+0bb2}\N{U+0bcd}",
      "\N{U+0bae}\N{U+0bc7}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0bb2}\N{U+0bc8}",
      "\N{U+0b86}\N{U+0b95}\N{U+0bb8}\N{U+0bcd}\N{U+0b9f}\N{U+0bcd}",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0baa}\N{U+0bcd}\N{U+0b9f}\N{U+0bae}\N{U+0bcd}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}",
      "\N{U+0b85}\N{U+0b95}\N{U+0bcd}\N{U+0b9f}\N{U+0bcb}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}",
      "\N{U+0ba8}\N{U+0bb5}\N{U+0bae}\N{U+0bcd}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}",
      "\N{U+0b9f}\N{U+0bbf}\N{U+0b9a}\N{U+0bae}\N{U+0bcd}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0b9c}\N{U+0ba9}.",
      "\N{U+0baa}\N{U+0bbf}\N{U+0baa}\N{U+0bcd}.",
      "\N{U+0bae}\N{U+0bbe}\N{U+0bb0}\N{U+0bcd}.",
      "\N{U+0b8f}\N{U+0baa}\N{U+0bcd}.",
      "\N{U+0bae}\N{U+0bc7}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0bb2}\N{U+0bc8}",
      "\N{U+0b86}\N{U+0b95}.",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0baa}\N{U+0bcd}.",
      "\N{U+0b85}\N{U+0b95}\N{U+0bcd}.",
      "\N{U+0ba8}\N{U+0bb5}.",
      "\N{U+0b9f}\N{U+0bbf}\N{U+0b9a}."
    ],
    month_stand_alone_narrow => [
      "\N{U+0b9c}",
      "\N{U+0baa}\N{U+0bbf}",
      "\N{U+0bae}\N{U+0bbe}",
      "\N{U+0b8f}",
      "\N{U+0bae}\N{U+0bc7}",
      "\N{U+0b9c}\N{U+0bc2}",
      "\N{U+0b9c}\N{U+0bc2}",
      "\N{U+0b86}",
      "\N{U+0b9a}\N{U+0bc6}",
      "\N{U+0b85}",
      "\N{U+0ba8}",
      "\N{U+0b9f}\N{U+0bbf}"
    ],
    month_stand_alone_wide => [
      "\N{U+0b9c}\N{U+0ba9}\N{U+0bb5}\N{U+0bb0}\N{U+0bbf}",
      "\N{U+0baa}\N{U+0bbf}\N{U+0baa}\N{U+0bcd}\N{U+0bb0}\N{U+0bb5}\N{U+0bb0}\N{U+0bbf}",
      "\N{U+0bae}\N{U+0bbe}\N{U+0bb0}\N{U+0bcd}\N{U+0b9a}\N{U+0bcd}",
      "\N{U+0b8f}\N{U+0baa}\N{U+0bcd}\N{U+0bb0}\N{U+0bb2}\N{U+0bcd}",
      "\N{U+0bae}\N{U+0bc7}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0bb2}\N{U+0bc8}",
      "\N{U+0b86}\N{U+0b95}\N{U+0bb8}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0baa}\N{U+0bcd}\N{U+0b9f}\N{U+0bae}\N{U+0bcd}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}",
      "\N{U+0b85}\N{U+0b95}\N{U+0bcd}\N{U+0b9f}\N{U+0bcb}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}",
      "\N{U+0ba8}\N{U+0bb5}\N{U+0bae}\N{U+0bcd}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}",
      "\N{U+0b9f}\N{U+0bbf}\N{U+0b9a}\N{U+0bae}\N{U+0bcd}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}"
    ],
    name => "Tamil",
    native_language => "\N{U+0ba4}\N{U+0bae}\N{U+0bbf}\N{U+0bb4}\N{U+0bcd}",
    native_name => "\N{U+0ba4}\N{U+0bae}\N{U+0bbf}\N{U+0bb4}\N{U+0bcd}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.1",
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.2",
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.3",
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "2\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "3\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "4\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.1",
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.2",
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.3",
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "2\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "3\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "4\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "a h:mm:ss zzzz",
    time_format_long => "a h:mm:ss z",
    time_format_medium => "a h:mm:ss",
    time_format_short => "a h:mm",
    variant => undef,
    version => 28
  }
  __[ ta-IN ]__
  {
    am_pm_abbreviated => [
      "\N{U+0bae}\N{U+0bc1}\N{U+0bb1}\N{U+0bcd}\N{U+0baa}\N{U+0b95}\N{U+0bb2}\N{U+0bcd}",
      "\N{U+0baa}\N{U+0bbf}\N{U+0bb1}\N{U+0bcd}\N{U+0baa}\N{U+0b95}\N{U+0bb2}\N{U+0bcd}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E a h:mm",
      Ehms => "E a h:mm:ss",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "d MMMM",
      MMMd => "MMM d",
      MMdd => "dd-MM",
      Md => "d/M",
      d => "d",
      h => "a h",
      hm => "a h:mm",
      hms => "a h:mm:ss",
      hmsv => "a h:mm:ss v",
      hmv => "a h:mm v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMM => "MM-y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM, y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM, y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ta-IN",
    date_format_full => "EEEE, d MMMM, y",
    date_format_long => "d MMMM, y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} \N{U+2019}\N{U+0b85}\N{U+0ba9}\N{U+0bcd}\N{U+0bb1}\N{U+0bc1}\N{U+2019} {0}",
    datetime_format_long => "{1} \N{U+2019}\N{U+0b85}\N{U+0ba9}\N{U+0bcd}\N{U+0bb1}\N{U+0bc1}\N{U+2019} {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+0ba4}\N{U+0bbf}\N{U+0b99}\N{U+0bcd}.",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0bb5}\N{U+0bcd}.",
      "\N{U+0baa}\N{U+0bc1}\N{U+0ba4}.",
      "\N{U+0bb5}\N{U+0bbf}\N{U+0baf}\N{U+0bbe}.",
      "\N{U+0bb5}\N{U+0bc6}\N{U+0bb3}\N{U+0bcd}.",
      "\N{U+0b9a}\N{U+0ba9}\N{U+0bbf}",
      "\N{U+0b9e}\N{U+0bbe}\N{U+0baf}\N{U+0bbf}."
    ],
    day_format_narrow => [
      "\N{U+0ba4}\N{U+0bbf}",
      "\N{U+0b9a}\N{U+0bc6}",
      "\N{U+0baa}\N{U+0bc1}",
      "\N{U+0bb5}\N{U+0bbf}",
      "\N{U+0bb5}\N{U+0bc6}",
      "\N{U+0b9a}",
      "\N{U+0b9e}\N{U+0bbe}"
    ],
    day_format_wide => [
      "\N{U+0ba4}\N{U+0bbf}\N{U+0b99}\N{U+0bcd}\N{U+0b95}\N{U+0bb3}\N{U+0bcd}",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0bb5}\N{U+0bcd}\N{U+0bb5}\N{U+0bbe}\N{U+0baf}\N{U+0bcd}",
      "\N{U+0baa}\N{U+0bc1}\N{U+0ba4}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0bb5}\N{U+0bbf}\N{U+0baf}\N{U+0bbe}\N{U+0bb4}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0bb5}\N{U+0bc6}\N{U+0bb3}\N{U+0bcd}\N{U+0bb3}\N{U+0bbf}",
      "\N{U+0b9a}\N{U+0ba9}\N{U+0bbf}",
      "\N{U+0b9e}\N{U+0bbe}\N{U+0baf}\N{U+0bbf}\N{U+0bb1}\N{U+0bc1}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0ba4}\N{U+0bbf}\N{U+0b99}\N{U+0bcd}.",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0bb5}\N{U+0bcd}.",
      "\N{U+0baa}\N{U+0bc1}\N{U+0ba4}.",
      "\N{U+0bb5}\N{U+0bbf}\N{U+0baf}\N{U+0bbe}.",
      "\N{U+0bb5}\N{U+0bc6}\N{U+0bb3}\N{U+0bcd}.",
      "\N{U+0b9a}\N{U+0ba9}\N{U+0bbf}",
      "\N{U+0b9e}\N{U+0bbe}\N{U+0baf}\N{U+0bbf}."
    ],
    day_stand_alone_narrow => [
      "\N{U+0ba4}\N{U+0bbf}",
      "\N{U+0b9a}\N{U+0bc6}",
      "\N{U+0baa}\N{U+0bc1}",
      "\N{U+0bb5}\N{U+0bbf}",
      "\N{U+0bb5}\N{U+0bc6}",
      "\N{U+0b9a}",
      "\N{U+0b9e}\N{U+0bbe}"
    ],
    day_stand_alone_wide => [
      "\N{U+0ba4}\N{U+0bbf}\N{U+0b99}\N{U+0bcd}\N{U+0b95}\N{U+0bb3}\N{U+0bcd}",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0bb5}\N{U+0bcd}\N{U+0bb5}\N{U+0bbe}\N{U+0baf}\N{U+0bcd}",
      "\N{U+0baa}\N{U+0bc1}\N{U+0ba4}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0bb5}\N{U+0bbf}\N{U+0baf}\N{U+0bbe}\N{U+0bb4}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0bb5}\N{U+0bc6}\N{U+0bb3}\N{U+0bcd}\N{U+0bb3}\N{U+0bbf}",
      "\N{U+0b9a}\N{U+0ba9}\N{U+0bbf}",
      "\N{U+0b9e}\N{U+0bbe}\N{U+0baf}\N{U+0bbf}\N{U+0bb1}\N{U+0bc1}"
    ],
    era_abbreviated => [
      "\N{U+0b95}\N{U+0bbf}.\N{U+0bae}\N{U+0bc1}.",
      "\N{U+0b95}\N{U+0bbf}.\N{U+0baa}\N{U+0bbf}."
    ],
    era_narrow => [
      "\N{U+0b95}\N{U+0bbf}.\N{U+0bae}\N{U+0bc1}.",
      "\N{U+0b95}\N{U+0bbf}.\N{U+0baa}\N{U+0bbf}."
    ],
    era_wide => [
      "\N{U+0b95}\N{U+0bbf}\N{U+0bb1}\N{U+0bbf}\N{U+0bb8}\N{U+0bcd}\N{U+0ba4}\N{U+0bc1}\N{U+0bb5}\N{U+0bc1}\N{U+0b95}\N{U+0bcd}\N{U+0b95}\N{U+0bc1} \N{U+0bae}\N{U+0bc1}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0b85}\N{U+0ba9}\N{U+0bcd}\N{U+0ba9}\N{U+0bcb} \N{U+0b9f}\N{U+0bcb}\N{U+0bae}\N{U+0bbf}\N{U+0ba9}\N{U+0bbf}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%A %d %B %Y",
    glibc_datetime_format => "%A %d %B %Y %I:%M:%S %p %Z",
    glibc_time_12_format => "%I:%M:%S %p %Z",
    glibc_time_format => "%I:%M:%S  %Z",
    language => "Tamil",
    month_format_abbreviated => [
      "\N{U+0b9c}\N{U+0ba9}.",
      "\N{U+0baa}\N{U+0bbf}\N{U+0baa}\N{U+0bcd}.",
      "\N{U+0bae}\N{U+0bbe}\N{U+0bb0}\N{U+0bcd}.",
      "\N{U+0b8f}\N{U+0baa}\N{U+0bcd}.",
      "\N{U+0bae}\N{U+0bc7}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0bb2}\N{U+0bc8}",
      "\N{U+0b86}\N{U+0b95}.",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0baa}\N{U+0bcd}.",
      "\N{U+0b85}\N{U+0b95}\N{U+0bcd}.",
      "\N{U+0ba8}\N{U+0bb5}.",
      "\N{U+0b9f}\N{U+0bbf}\N{U+0b9a}."
    ],
    month_format_narrow => [
      "\N{U+0b9c}",
      "\N{U+0baa}\N{U+0bbf}",
      "\N{U+0bae}\N{U+0bbe}",
      "\N{U+0b8f}",
      "\N{U+0bae}\N{U+0bc7}",
      "\N{U+0b9c}\N{U+0bc2}",
      "\N{U+0b9c}\N{U+0bc2}",
      "\N{U+0b86}",
      "\N{U+0b9a}\N{U+0bc6}",
      "\N{U+0b85}",
      "\N{U+0ba8}",
      "\N{U+0b9f}\N{U+0bbf}"
    ],
    month_format_wide => [
      "\N{U+0b9c}\N{U+0ba9}\N{U+0bb5}\N{U+0bb0}\N{U+0bbf}",
      "\N{U+0baa}\N{U+0bbf}\N{U+0baa}\N{U+0bcd}\N{U+0bb0}\N{U+0bb5}\N{U+0bb0}\N{U+0bbf}",
      "\N{U+0bae}\N{U+0bbe}\N{U+0bb0}\N{U+0bcd}\N{U+0b9a}\N{U+0bcd}",
      "\N{U+0b8f}\N{U+0baa}\N{U+0bcd}\N{U+0bb0}\N{U+0bb2}\N{U+0bcd}",
      "\N{U+0bae}\N{U+0bc7}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0bb2}\N{U+0bc8}",
      "\N{U+0b86}\N{U+0b95}\N{U+0bb8}\N{U+0bcd}\N{U+0b9f}\N{U+0bcd}",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0baa}\N{U+0bcd}\N{U+0b9f}\N{U+0bae}\N{U+0bcd}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}",
      "\N{U+0b85}\N{U+0b95}\N{U+0bcd}\N{U+0b9f}\N{U+0bcb}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}",
      "\N{U+0ba8}\N{U+0bb5}\N{U+0bae}\N{U+0bcd}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}",
      "\N{U+0b9f}\N{U+0bbf}\N{U+0b9a}\N{U+0bae}\N{U+0bcd}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0b9c}\N{U+0ba9}.",
      "\N{U+0baa}\N{U+0bbf}\N{U+0baa}\N{U+0bcd}.",
      "\N{U+0bae}\N{U+0bbe}\N{U+0bb0}\N{U+0bcd}.",
      "\N{U+0b8f}\N{U+0baa}\N{U+0bcd}.",
      "\N{U+0bae}\N{U+0bc7}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0bb2}\N{U+0bc8}",
      "\N{U+0b86}\N{U+0b95}.",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0baa}\N{U+0bcd}.",
      "\N{U+0b85}\N{U+0b95}\N{U+0bcd}.",
      "\N{U+0ba8}\N{U+0bb5}.",
      "\N{U+0b9f}\N{U+0bbf}\N{U+0b9a}."
    ],
    month_stand_alone_narrow => [
      "\N{U+0b9c}",
      "\N{U+0baa}\N{U+0bbf}",
      "\N{U+0bae}\N{U+0bbe}",
      "\N{U+0b8f}",
      "\N{U+0bae}\N{U+0bc7}",
      "\N{U+0b9c}\N{U+0bc2}",
      "\N{U+0b9c}\N{U+0bc2}",
      "\N{U+0b86}",
      "\N{U+0b9a}\N{U+0bc6}",
      "\N{U+0b85}",
      "\N{U+0ba8}",
      "\N{U+0b9f}\N{U+0bbf}"
    ],
    month_stand_alone_wide => [
      "\N{U+0b9c}\N{U+0ba9}\N{U+0bb5}\N{U+0bb0}\N{U+0bbf}",
      "\N{U+0baa}\N{U+0bbf}\N{U+0baa}\N{U+0bcd}\N{U+0bb0}\N{U+0bb5}\N{U+0bb0}\N{U+0bbf}",
      "\N{U+0bae}\N{U+0bbe}\N{U+0bb0}\N{U+0bcd}\N{U+0b9a}\N{U+0bcd}",
      "\N{U+0b8f}\N{U+0baa}\N{U+0bcd}\N{U+0bb0}\N{U+0bb2}\N{U+0bcd}",
      "\N{U+0bae}\N{U+0bc7}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0bb2}\N{U+0bc8}",
      "\N{U+0b86}\N{U+0b95}\N{U+0bb8}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0baa}\N{U+0bcd}\N{U+0b9f}\N{U+0bae}\N{U+0bcd}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}",
      "\N{U+0b85}\N{U+0b95}\N{U+0bcd}\N{U+0b9f}\N{U+0bcb}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}",
      "\N{U+0ba8}\N{U+0bb5}\N{U+0bae}\N{U+0bcd}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}",
      "\N{U+0b9f}\N{U+0bbf}\N{U+0b9a}\N{U+0bae}\N{U+0bcd}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}"
    ],
    name => "Tamil India",
    native_language => "\N{U+0ba4}\N{U+0bae}\N{U+0bbf}\N{U+0bb4}\N{U+0bcd}",
    native_name => "\N{U+0ba4}\N{U+0bae}\N{U+0bbf}\N{U+0bb4}\N{U+0bcd} \N{U+0b87}\N{U+0ba8}\N{U+0bcd}\N{U+0ba4}\N{U+0bbf}\N{U+0baf}\N{U+0bbe}",
    native_script => undef,
    native_territory => "\N{U+0b87}\N{U+0ba8}\N{U+0bcd}\N{U+0ba4}\N{U+0bbf}\N{U+0baf}\N{U+0bbe}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.1",
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.2",
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.3",
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "2\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "3\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "4\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.1",
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.2",
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.3",
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "2\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "3\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "4\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}"
    ],
    script => undef,
    territory => "India",
    time_format_full => "a h:mm:ss zzzz",
    time_format_long => "a h:mm:ss z",
    time_format_medium => "a h:mm:ss",
    time_format_short => "a h:mm",
    variant => undef,
    version => 28
  }
  __[ ta-LK ]__
  {
    am_pm_abbreviated => [
      "\N{U+0bae}\N{U+0bc1}\N{U+0bb1}\N{U+0bcd}\N{U+0baa}\N{U+0b95}\N{U+0bb2}\N{U+0bcd}",
      "\N{U+0baa}\N{U+0bbf}\N{U+0bb1}\N{U+0bcd}\N{U+0baa}\N{U+0b95}\N{U+0bb2}\N{U+0bcd}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E a h:mm",
      Ehms => "E a h:mm:ss",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "d MMMM",
      MMMd => "MMM d",
      MMdd => "dd-MM",
      Md => "d/M",
      d => "d",
      h => "a h",
      hm => "a h:mm",
      hms => "a h:mm:ss",
      hmsv => "a h:mm:ss v",
      hmv => "a h:mm v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMM => "MM-y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM, y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM, y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ta-LK",
    date_format_full => "EEEE, d MMMM, y",
    date_format_long => "d MMMM, y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} \N{U+2019}\N{U+0b85}\N{U+0ba9}\N{U+0bcd}\N{U+0bb1}\N{U+0bc1}\N{U+2019} {0}",
    datetime_format_long => "{1} \N{U+2019}\N{U+0b85}\N{U+0ba9}\N{U+0bcd}\N{U+0bb1}\N{U+0bc1}\N{U+2019} {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+0ba4}\N{U+0bbf}\N{U+0b99}\N{U+0bcd}.",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0bb5}\N{U+0bcd}.",
      "\N{U+0baa}\N{U+0bc1}\N{U+0ba4}.",
      "\N{U+0bb5}\N{U+0bbf}\N{U+0baf}\N{U+0bbe}.",
      "\N{U+0bb5}\N{U+0bc6}\N{U+0bb3}\N{U+0bcd}.",
      "\N{U+0b9a}\N{U+0ba9}\N{U+0bbf}",
      "\N{U+0b9e}\N{U+0bbe}\N{U+0baf}\N{U+0bbf}."
    ],
    day_format_narrow => [
      "\N{U+0ba4}\N{U+0bbf}",
      "\N{U+0b9a}\N{U+0bc6}",
      "\N{U+0baa}\N{U+0bc1}",
      "\N{U+0bb5}\N{U+0bbf}",
      "\N{U+0bb5}\N{U+0bc6}",
      "\N{U+0b9a}",
      "\N{U+0b9e}\N{U+0bbe}"
    ],
    day_format_wide => [
      "\N{U+0ba4}\N{U+0bbf}\N{U+0b99}\N{U+0bcd}\N{U+0b95}\N{U+0bb3}\N{U+0bcd}",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0bb5}\N{U+0bcd}\N{U+0bb5}\N{U+0bbe}\N{U+0baf}\N{U+0bcd}",
      "\N{U+0baa}\N{U+0bc1}\N{U+0ba4}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0bb5}\N{U+0bbf}\N{U+0baf}\N{U+0bbe}\N{U+0bb4}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0bb5}\N{U+0bc6}\N{U+0bb3}\N{U+0bcd}\N{U+0bb3}\N{U+0bbf}",
      "\N{U+0b9a}\N{U+0ba9}\N{U+0bbf}",
      "\N{U+0b9e}\N{U+0bbe}\N{U+0baf}\N{U+0bbf}\N{U+0bb1}\N{U+0bc1}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0ba4}\N{U+0bbf}\N{U+0b99}\N{U+0bcd}.",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0bb5}\N{U+0bcd}.",
      "\N{U+0baa}\N{U+0bc1}\N{U+0ba4}.",
      "\N{U+0bb5}\N{U+0bbf}\N{U+0baf}\N{U+0bbe}.",
      "\N{U+0bb5}\N{U+0bc6}\N{U+0bb3}\N{U+0bcd}.",
      "\N{U+0b9a}\N{U+0ba9}\N{U+0bbf}",
      "\N{U+0b9e}\N{U+0bbe}\N{U+0baf}\N{U+0bbf}."
    ],
    day_stand_alone_narrow => [
      "\N{U+0ba4}\N{U+0bbf}",
      "\N{U+0b9a}\N{U+0bc6}",
      "\N{U+0baa}\N{U+0bc1}",
      "\N{U+0bb5}\N{U+0bbf}",
      "\N{U+0bb5}\N{U+0bc6}",
      "\N{U+0b9a}",
      "\N{U+0b9e}\N{U+0bbe}"
    ],
    day_stand_alone_wide => [
      "\N{U+0ba4}\N{U+0bbf}\N{U+0b99}\N{U+0bcd}\N{U+0b95}\N{U+0bb3}\N{U+0bcd}",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0bb5}\N{U+0bcd}\N{U+0bb5}\N{U+0bbe}\N{U+0baf}\N{U+0bcd}",
      "\N{U+0baa}\N{U+0bc1}\N{U+0ba4}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0bb5}\N{U+0bbf}\N{U+0baf}\N{U+0bbe}\N{U+0bb4}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0bb5}\N{U+0bc6}\N{U+0bb3}\N{U+0bcd}\N{U+0bb3}\N{U+0bbf}",
      "\N{U+0b9a}\N{U+0ba9}\N{U+0bbf}",
      "\N{U+0b9e}\N{U+0bbe}\N{U+0baf}\N{U+0bbf}\N{U+0bb1}\N{U+0bc1}"
    ],
    era_abbreviated => [
      "\N{U+0b95}\N{U+0bbf}.\N{U+0bae}\N{U+0bc1}.",
      "\N{U+0b95}\N{U+0bbf}.\N{U+0baa}\N{U+0bbf}."
    ],
    era_narrow => [
      "\N{U+0b95}\N{U+0bbf}.\N{U+0bae}\N{U+0bc1}.",
      "\N{U+0b95}\N{U+0bbf}.\N{U+0baa}\N{U+0bbf}."
    ],
    era_wide => [
      "\N{U+0b95}\N{U+0bbf}\N{U+0bb1}\N{U+0bbf}\N{U+0bb8}\N{U+0bcd}\N{U+0ba4}\N{U+0bc1}\N{U+0bb5}\N{U+0bc1}\N{U+0b95}\N{U+0bcd}\N{U+0b95}\N{U+0bc1} \N{U+0bae}\N{U+0bc1}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0b85}\N{U+0ba9}\N{U+0bcd}\N{U+0ba9}\N{U+0bcb} \N{U+0b9f}\N{U+0bcb}\N{U+0bae}\N{U+0bbf}\N{U+0ba9}\N{U+0bbf}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Tamil",
    month_format_abbreviated => [
      "\N{U+0b9c}\N{U+0ba9}.",
      "\N{U+0baa}\N{U+0bbf}\N{U+0baa}\N{U+0bcd}.",
      "\N{U+0bae}\N{U+0bbe}\N{U+0bb0}\N{U+0bcd}.",
      "\N{U+0b8f}\N{U+0baa}\N{U+0bcd}.",
      "\N{U+0bae}\N{U+0bc7}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0bb2}\N{U+0bc8}",
      "\N{U+0b86}\N{U+0b95}.",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0baa}\N{U+0bcd}.",
      "\N{U+0b85}\N{U+0b95}\N{U+0bcd}.",
      "\N{U+0ba8}\N{U+0bb5}.",
      "\N{U+0b9f}\N{U+0bbf}\N{U+0b9a}."
    ],
    month_format_narrow => [
      "\N{U+0b9c}",
      "\N{U+0baa}\N{U+0bbf}",
      "\N{U+0bae}\N{U+0bbe}",
      "\N{U+0b8f}",
      "\N{U+0bae}\N{U+0bc7}",
      "\N{U+0b9c}\N{U+0bc2}",
      "\N{U+0b9c}\N{U+0bc2}",
      "\N{U+0b86}",
      "\N{U+0b9a}\N{U+0bc6}",
      "\N{U+0b85}",
      "\N{U+0ba8}",
      "\N{U+0b9f}\N{U+0bbf}"
    ],
    month_format_wide => [
      "\N{U+0b9c}\N{U+0ba9}\N{U+0bb5}\N{U+0bb0}\N{U+0bbf}",
      "\N{U+0baa}\N{U+0bbf}\N{U+0baa}\N{U+0bcd}\N{U+0bb0}\N{U+0bb5}\N{U+0bb0}\N{U+0bbf}",
      "\N{U+0bae}\N{U+0bbe}\N{U+0bb0}\N{U+0bcd}\N{U+0b9a}\N{U+0bcd}",
      "\N{U+0b8f}\N{U+0baa}\N{U+0bcd}\N{U+0bb0}\N{U+0bb2}\N{U+0bcd}",
      "\N{U+0bae}\N{U+0bc7}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0bb2}\N{U+0bc8}",
      "\N{U+0b86}\N{U+0b95}\N{U+0bb8}\N{U+0bcd}\N{U+0b9f}\N{U+0bcd}",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0baa}\N{U+0bcd}\N{U+0b9f}\N{U+0bae}\N{U+0bcd}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}",
      "\N{U+0b85}\N{U+0b95}\N{U+0bcd}\N{U+0b9f}\N{U+0bcb}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}",
      "\N{U+0ba8}\N{U+0bb5}\N{U+0bae}\N{U+0bcd}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}",
      "\N{U+0b9f}\N{U+0bbf}\N{U+0b9a}\N{U+0bae}\N{U+0bcd}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0b9c}\N{U+0ba9}.",
      "\N{U+0baa}\N{U+0bbf}\N{U+0baa}\N{U+0bcd}.",
      "\N{U+0bae}\N{U+0bbe}\N{U+0bb0}\N{U+0bcd}.",
      "\N{U+0b8f}\N{U+0baa}\N{U+0bcd}.",
      "\N{U+0bae}\N{U+0bc7}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0bb2}\N{U+0bc8}",
      "\N{U+0b86}\N{U+0b95}.",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0baa}\N{U+0bcd}.",
      "\N{U+0b85}\N{U+0b95}\N{U+0bcd}.",
      "\N{U+0ba8}\N{U+0bb5}.",
      "\N{U+0b9f}\N{U+0bbf}\N{U+0b9a}."
    ],
    month_stand_alone_narrow => [
      "\N{U+0b9c}",
      "\N{U+0baa}\N{U+0bbf}",
      "\N{U+0bae}\N{U+0bbe}",
      "\N{U+0b8f}",
      "\N{U+0bae}\N{U+0bc7}",
      "\N{U+0b9c}\N{U+0bc2}",
      "\N{U+0b9c}\N{U+0bc2}",
      "\N{U+0b86}",
      "\N{U+0b9a}\N{U+0bc6}",
      "\N{U+0b85}",
      "\N{U+0ba8}",
      "\N{U+0b9f}\N{U+0bbf}"
    ],
    month_stand_alone_wide => [
      "\N{U+0b9c}\N{U+0ba9}\N{U+0bb5}\N{U+0bb0}\N{U+0bbf}",
      "\N{U+0baa}\N{U+0bbf}\N{U+0baa}\N{U+0bcd}\N{U+0bb0}\N{U+0bb5}\N{U+0bb0}\N{U+0bbf}",
      "\N{U+0bae}\N{U+0bbe}\N{U+0bb0}\N{U+0bcd}\N{U+0b9a}\N{U+0bcd}",
      "\N{U+0b8f}\N{U+0baa}\N{U+0bcd}\N{U+0bb0}\N{U+0bb2}\N{U+0bcd}",
      "\N{U+0bae}\N{U+0bc7}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0bb2}\N{U+0bc8}",
      "\N{U+0b86}\N{U+0b95}\N{U+0bb8}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0baa}\N{U+0bcd}\N{U+0b9f}\N{U+0bae}\N{U+0bcd}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}",
      "\N{U+0b85}\N{U+0b95}\N{U+0bcd}\N{U+0b9f}\N{U+0bcb}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}",
      "\N{U+0ba8}\N{U+0bb5}\N{U+0bae}\N{U+0bcd}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}",
      "\N{U+0b9f}\N{U+0bbf}\N{U+0b9a}\N{U+0bae}\N{U+0bcd}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}"
    ],
    name => "Tamil Sri Lanka",
    native_language => "\N{U+0ba4}\N{U+0bae}\N{U+0bbf}\N{U+0bb4}\N{U+0bcd}",
    native_name => "\N{U+0ba4}\N{U+0bae}\N{U+0bbf}\N{U+0bb4}\N{U+0bcd} \N{U+0b87}\N{U+0bb2}\N{U+0b99}\N{U+0bcd}\N{U+0b95}\N{U+0bc8}",
    native_script => undef,
    native_territory => "\N{U+0b87}\N{U+0bb2}\N{U+0b99}\N{U+0bcd}\N{U+0b95}\N{U+0bc8}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.1",
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.2",
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.3",
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "2\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "3\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "4\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.1",
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.2",
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.3",
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "2\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "3\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "4\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}"
    ],
    script => undef,
    territory => "Sri Lanka",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ta-MY ]__
  {
    am_pm_abbreviated => [
      "\N{U+0bae}\N{U+0bc1}\N{U+0bb1}\N{U+0bcd}\N{U+0baa}\N{U+0b95}\N{U+0bb2}\N{U+0bcd}",
      "\N{U+0baa}\N{U+0bbf}\N{U+0bb1}\N{U+0bcd}\N{U+0baa}\N{U+0b95}\N{U+0bb2}\N{U+0bcd}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E a h:mm",
      Ehms => "E a h:mm:ss",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "d MMMM",
      MMMd => "MMM d",
      MMdd => "dd-MM",
      Md => "d/M",
      d => "d",
      h => "a h",
      hm => "a h:mm",
      hms => "a h:mm:ss",
      hmsv => "a h:mm:ss v",
      hmv => "a h:mm v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMM => "MM-y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM, y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM, y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ta-MY",
    date_format_full => "EEEE, d MMMM, y",
    date_format_long => "d MMMM, y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} \N{U+2019}\N{U+0b85}\N{U+0ba9}\N{U+0bcd}\N{U+0bb1}\N{U+0bc1}\N{U+2019} {0}",
    datetime_format_long => "{1} \N{U+2019}\N{U+0b85}\N{U+0ba9}\N{U+0bcd}\N{U+0bb1}\N{U+0bc1}\N{U+2019} {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+0ba4}\N{U+0bbf}\N{U+0b99}\N{U+0bcd}.",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0bb5}\N{U+0bcd}.",
      "\N{U+0baa}\N{U+0bc1}\N{U+0ba4}.",
      "\N{U+0bb5}\N{U+0bbf}\N{U+0baf}\N{U+0bbe}.",
      "\N{U+0bb5}\N{U+0bc6}\N{U+0bb3}\N{U+0bcd}.",
      "\N{U+0b9a}\N{U+0ba9}\N{U+0bbf}",
      "\N{U+0b9e}\N{U+0bbe}\N{U+0baf}\N{U+0bbf}."
    ],
    day_format_narrow => [
      "\N{U+0ba4}\N{U+0bbf}",
      "\N{U+0b9a}\N{U+0bc6}",
      "\N{U+0baa}\N{U+0bc1}",
      "\N{U+0bb5}\N{U+0bbf}",
      "\N{U+0bb5}\N{U+0bc6}",
      "\N{U+0b9a}",
      "\N{U+0b9e}\N{U+0bbe}"
    ],
    day_format_wide => [
      "\N{U+0ba4}\N{U+0bbf}\N{U+0b99}\N{U+0bcd}\N{U+0b95}\N{U+0bb3}\N{U+0bcd}",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0bb5}\N{U+0bcd}\N{U+0bb5}\N{U+0bbe}\N{U+0baf}\N{U+0bcd}",
      "\N{U+0baa}\N{U+0bc1}\N{U+0ba4}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0bb5}\N{U+0bbf}\N{U+0baf}\N{U+0bbe}\N{U+0bb4}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0bb5}\N{U+0bc6}\N{U+0bb3}\N{U+0bcd}\N{U+0bb3}\N{U+0bbf}",
      "\N{U+0b9a}\N{U+0ba9}\N{U+0bbf}",
      "\N{U+0b9e}\N{U+0bbe}\N{U+0baf}\N{U+0bbf}\N{U+0bb1}\N{U+0bc1}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0ba4}\N{U+0bbf}\N{U+0b99}\N{U+0bcd}.",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0bb5}\N{U+0bcd}.",
      "\N{U+0baa}\N{U+0bc1}\N{U+0ba4}.",
      "\N{U+0bb5}\N{U+0bbf}\N{U+0baf}\N{U+0bbe}.",
      "\N{U+0bb5}\N{U+0bc6}\N{U+0bb3}\N{U+0bcd}.",
      "\N{U+0b9a}\N{U+0ba9}\N{U+0bbf}",
      "\N{U+0b9e}\N{U+0bbe}\N{U+0baf}\N{U+0bbf}."
    ],
    day_stand_alone_narrow => [
      "\N{U+0ba4}\N{U+0bbf}",
      "\N{U+0b9a}\N{U+0bc6}",
      "\N{U+0baa}\N{U+0bc1}",
      "\N{U+0bb5}\N{U+0bbf}",
      "\N{U+0bb5}\N{U+0bc6}",
      "\N{U+0b9a}",
      "\N{U+0b9e}\N{U+0bbe}"
    ],
    day_stand_alone_wide => [
      "\N{U+0ba4}\N{U+0bbf}\N{U+0b99}\N{U+0bcd}\N{U+0b95}\N{U+0bb3}\N{U+0bcd}",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0bb5}\N{U+0bcd}\N{U+0bb5}\N{U+0bbe}\N{U+0baf}\N{U+0bcd}",
      "\N{U+0baa}\N{U+0bc1}\N{U+0ba4}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0bb5}\N{U+0bbf}\N{U+0baf}\N{U+0bbe}\N{U+0bb4}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0bb5}\N{U+0bc6}\N{U+0bb3}\N{U+0bcd}\N{U+0bb3}\N{U+0bbf}",
      "\N{U+0b9a}\N{U+0ba9}\N{U+0bbf}",
      "\N{U+0b9e}\N{U+0bbe}\N{U+0baf}\N{U+0bbf}\N{U+0bb1}\N{U+0bc1}"
    ],
    era_abbreviated => [
      "\N{U+0b95}\N{U+0bbf}.\N{U+0bae}\N{U+0bc1}.",
      "\N{U+0b95}\N{U+0bbf}.\N{U+0baa}\N{U+0bbf}."
    ],
    era_narrow => [
      "\N{U+0b95}\N{U+0bbf}.\N{U+0bae}\N{U+0bc1}.",
      "\N{U+0b95}\N{U+0bbf}.\N{U+0baa}\N{U+0bbf}."
    ],
    era_wide => [
      "\N{U+0b95}\N{U+0bbf}\N{U+0bb1}\N{U+0bbf}\N{U+0bb8}\N{U+0bcd}\N{U+0ba4}\N{U+0bc1}\N{U+0bb5}\N{U+0bc1}\N{U+0b95}\N{U+0bcd}\N{U+0b95}\N{U+0bc1} \N{U+0bae}\N{U+0bc1}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0b85}\N{U+0ba9}\N{U+0bcd}\N{U+0ba9}\N{U+0bcb} \N{U+0b9f}\N{U+0bcb}\N{U+0bae}\N{U+0bbf}\N{U+0ba9}\N{U+0bbf}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Tamil",
    month_format_abbreviated => [
      "\N{U+0b9c}\N{U+0ba9}.",
      "\N{U+0baa}\N{U+0bbf}\N{U+0baa}\N{U+0bcd}.",
      "\N{U+0bae}\N{U+0bbe}\N{U+0bb0}\N{U+0bcd}.",
      "\N{U+0b8f}\N{U+0baa}\N{U+0bcd}.",
      "\N{U+0bae}\N{U+0bc7}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0bb2}\N{U+0bc8}",
      "\N{U+0b86}\N{U+0b95}.",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0baa}\N{U+0bcd}.",
      "\N{U+0b85}\N{U+0b95}\N{U+0bcd}.",
      "\N{U+0ba8}\N{U+0bb5}.",
      "\N{U+0b9f}\N{U+0bbf}\N{U+0b9a}."
    ],
    month_format_narrow => [
      "\N{U+0b9c}",
      "\N{U+0baa}\N{U+0bbf}",
      "\N{U+0bae}\N{U+0bbe}",
      "\N{U+0b8f}",
      "\N{U+0bae}\N{U+0bc7}",
      "\N{U+0b9c}\N{U+0bc2}",
      "\N{U+0b9c}\N{U+0bc2}",
      "\N{U+0b86}",
      "\N{U+0b9a}\N{U+0bc6}",
      "\N{U+0b85}",
      "\N{U+0ba8}",
      "\N{U+0b9f}\N{U+0bbf}"
    ],
    month_format_wide => [
      "\N{U+0b9c}\N{U+0ba9}\N{U+0bb5}\N{U+0bb0}\N{U+0bbf}",
      "\N{U+0baa}\N{U+0bbf}\N{U+0baa}\N{U+0bcd}\N{U+0bb0}\N{U+0bb5}\N{U+0bb0}\N{U+0bbf}",
      "\N{U+0bae}\N{U+0bbe}\N{U+0bb0}\N{U+0bcd}\N{U+0b9a}\N{U+0bcd}",
      "\N{U+0b8f}\N{U+0baa}\N{U+0bcd}\N{U+0bb0}\N{U+0bb2}\N{U+0bcd}",
      "\N{U+0bae}\N{U+0bc7}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0bb2}\N{U+0bc8}",
      "\N{U+0b86}\N{U+0b95}\N{U+0bb8}\N{U+0bcd}\N{U+0b9f}\N{U+0bcd}",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0baa}\N{U+0bcd}\N{U+0b9f}\N{U+0bae}\N{U+0bcd}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}",
      "\N{U+0b85}\N{U+0b95}\N{U+0bcd}\N{U+0b9f}\N{U+0bcb}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}",
      "\N{U+0ba8}\N{U+0bb5}\N{U+0bae}\N{U+0bcd}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}",
      "\N{U+0b9f}\N{U+0bbf}\N{U+0b9a}\N{U+0bae}\N{U+0bcd}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0b9c}\N{U+0ba9}.",
      "\N{U+0baa}\N{U+0bbf}\N{U+0baa}\N{U+0bcd}.",
      "\N{U+0bae}\N{U+0bbe}\N{U+0bb0}\N{U+0bcd}.",
      "\N{U+0b8f}\N{U+0baa}\N{U+0bcd}.",
      "\N{U+0bae}\N{U+0bc7}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0bb2}\N{U+0bc8}",
      "\N{U+0b86}\N{U+0b95}.",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0baa}\N{U+0bcd}.",
      "\N{U+0b85}\N{U+0b95}\N{U+0bcd}.",
      "\N{U+0ba8}\N{U+0bb5}.",
      "\N{U+0b9f}\N{U+0bbf}\N{U+0b9a}."
    ],
    month_stand_alone_narrow => [
      "\N{U+0b9c}",
      "\N{U+0baa}\N{U+0bbf}",
      "\N{U+0bae}\N{U+0bbe}",
      "\N{U+0b8f}",
      "\N{U+0bae}\N{U+0bc7}",
      "\N{U+0b9c}\N{U+0bc2}",
      "\N{U+0b9c}\N{U+0bc2}",
      "\N{U+0b86}",
      "\N{U+0b9a}\N{U+0bc6}",
      "\N{U+0b85}",
      "\N{U+0ba8}",
      "\N{U+0b9f}\N{U+0bbf}"
    ],
    month_stand_alone_wide => [
      "\N{U+0b9c}\N{U+0ba9}\N{U+0bb5}\N{U+0bb0}\N{U+0bbf}",
      "\N{U+0baa}\N{U+0bbf}\N{U+0baa}\N{U+0bcd}\N{U+0bb0}\N{U+0bb5}\N{U+0bb0}\N{U+0bbf}",
      "\N{U+0bae}\N{U+0bbe}\N{U+0bb0}\N{U+0bcd}\N{U+0b9a}\N{U+0bcd}",
      "\N{U+0b8f}\N{U+0baa}\N{U+0bcd}\N{U+0bb0}\N{U+0bb2}\N{U+0bcd}",
      "\N{U+0bae}\N{U+0bc7}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0bb2}\N{U+0bc8}",
      "\N{U+0b86}\N{U+0b95}\N{U+0bb8}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0baa}\N{U+0bcd}\N{U+0b9f}\N{U+0bae}\N{U+0bcd}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}",
      "\N{U+0b85}\N{U+0b95}\N{U+0bcd}\N{U+0b9f}\N{U+0bcb}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}",
      "\N{U+0ba8}\N{U+0bb5}\N{U+0bae}\N{U+0bcd}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}",
      "\N{U+0b9f}\N{U+0bbf}\N{U+0b9a}\N{U+0bae}\N{U+0bcd}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}"
    ],
    name => "Tamil Malaysia",
    native_language => "\N{U+0ba4}\N{U+0bae}\N{U+0bbf}\N{U+0bb4}\N{U+0bcd}",
    native_name => "\N{U+0ba4}\N{U+0bae}\N{U+0bbf}\N{U+0bb4}\N{U+0bcd} \N{U+0bae}\N{U+0bb2}\N{U+0bc7}\N{U+0b9a}\N{U+0bbf}\N{U+0baf}\N{U+0bbe}",
    native_script => undef,
    native_territory => "\N{U+0bae}\N{U+0bb2}\N{U+0bc7}\N{U+0b9a}\N{U+0bbf}\N{U+0baf}\N{U+0bbe}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.1",
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.2",
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.3",
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "2\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "3\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "4\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.1",
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.2",
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.3",
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "2\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "3\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "4\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}"
    ],
    script => undef,
    territory => "Malaysia",
    time_format_full => "a h:mm:ss zzzz",
    time_format_long => "a h:mm:ss z",
    time_format_medium => "a h:mm:ss",
    time_format_short => "a h:mm",
    variant => undef,
    version => 28
  }
  __[ ta-SG ]__
  {
    am_pm_abbreviated => [
      "\N{U+0bae}\N{U+0bc1}\N{U+0bb1}\N{U+0bcd}\N{U+0baa}\N{U+0b95}\N{U+0bb2}\N{U+0bcd}",
      "\N{U+0baa}\N{U+0bbf}\N{U+0bb1}\N{U+0bcd}\N{U+0baa}\N{U+0b95}\N{U+0bb2}\N{U+0bcd}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E a h:mm",
      Ehms => "E a h:mm:ss",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "d MMMM",
      MMMd => "MMM d",
      MMdd => "dd-MM",
      Md => "d/M",
      d => "d",
      h => "a h",
      hm => "a h:mm",
      hms => "a h:mm:ss",
      hmsv => "a h:mm:ss v",
      hmv => "a h:mm v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMM => "MM-y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM, y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM, y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ta-SG",
    date_format_full => "EEEE, d MMMM, y",
    date_format_long => "d MMMM, y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} \N{U+2019}\N{U+0b85}\N{U+0ba9}\N{U+0bcd}\N{U+0bb1}\N{U+0bc1}\N{U+2019} {0}",
    datetime_format_long => "{1} \N{U+2019}\N{U+0b85}\N{U+0ba9}\N{U+0bcd}\N{U+0bb1}\N{U+0bc1}\N{U+2019} {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+0ba4}\N{U+0bbf}\N{U+0b99}\N{U+0bcd}.",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0bb5}\N{U+0bcd}.",
      "\N{U+0baa}\N{U+0bc1}\N{U+0ba4}.",
      "\N{U+0bb5}\N{U+0bbf}\N{U+0baf}\N{U+0bbe}.",
      "\N{U+0bb5}\N{U+0bc6}\N{U+0bb3}\N{U+0bcd}.",
      "\N{U+0b9a}\N{U+0ba9}\N{U+0bbf}",
      "\N{U+0b9e}\N{U+0bbe}\N{U+0baf}\N{U+0bbf}."
    ],
    day_format_narrow => [
      "\N{U+0ba4}\N{U+0bbf}",
      "\N{U+0b9a}\N{U+0bc6}",
      "\N{U+0baa}\N{U+0bc1}",
      "\N{U+0bb5}\N{U+0bbf}",
      "\N{U+0bb5}\N{U+0bc6}",
      "\N{U+0b9a}",
      "\N{U+0b9e}\N{U+0bbe}"
    ],
    day_format_wide => [
      "\N{U+0ba4}\N{U+0bbf}\N{U+0b99}\N{U+0bcd}\N{U+0b95}\N{U+0bb3}\N{U+0bcd}",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0bb5}\N{U+0bcd}\N{U+0bb5}\N{U+0bbe}\N{U+0baf}\N{U+0bcd}",
      "\N{U+0baa}\N{U+0bc1}\N{U+0ba4}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0bb5}\N{U+0bbf}\N{U+0baf}\N{U+0bbe}\N{U+0bb4}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0bb5}\N{U+0bc6}\N{U+0bb3}\N{U+0bcd}\N{U+0bb3}\N{U+0bbf}",
      "\N{U+0b9a}\N{U+0ba9}\N{U+0bbf}",
      "\N{U+0b9e}\N{U+0bbe}\N{U+0baf}\N{U+0bbf}\N{U+0bb1}\N{U+0bc1}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0ba4}\N{U+0bbf}\N{U+0b99}\N{U+0bcd}.",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0bb5}\N{U+0bcd}.",
      "\N{U+0baa}\N{U+0bc1}\N{U+0ba4}.",
      "\N{U+0bb5}\N{U+0bbf}\N{U+0baf}\N{U+0bbe}.",
      "\N{U+0bb5}\N{U+0bc6}\N{U+0bb3}\N{U+0bcd}.",
      "\N{U+0b9a}\N{U+0ba9}\N{U+0bbf}",
      "\N{U+0b9e}\N{U+0bbe}\N{U+0baf}\N{U+0bbf}."
    ],
    day_stand_alone_narrow => [
      "\N{U+0ba4}\N{U+0bbf}",
      "\N{U+0b9a}\N{U+0bc6}",
      "\N{U+0baa}\N{U+0bc1}",
      "\N{U+0bb5}\N{U+0bbf}",
      "\N{U+0bb5}\N{U+0bc6}",
      "\N{U+0b9a}",
      "\N{U+0b9e}\N{U+0bbe}"
    ],
    day_stand_alone_wide => [
      "\N{U+0ba4}\N{U+0bbf}\N{U+0b99}\N{U+0bcd}\N{U+0b95}\N{U+0bb3}\N{U+0bcd}",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0bb5}\N{U+0bcd}\N{U+0bb5}\N{U+0bbe}\N{U+0baf}\N{U+0bcd}",
      "\N{U+0baa}\N{U+0bc1}\N{U+0ba4}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0bb5}\N{U+0bbf}\N{U+0baf}\N{U+0bbe}\N{U+0bb4}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0bb5}\N{U+0bc6}\N{U+0bb3}\N{U+0bcd}\N{U+0bb3}\N{U+0bbf}",
      "\N{U+0b9a}\N{U+0ba9}\N{U+0bbf}",
      "\N{U+0b9e}\N{U+0bbe}\N{U+0baf}\N{U+0bbf}\N{U+0bb1}\N{U+0bc1}"
    ],
    era_abbreviated => [
      "\N{U+0b95}\N{U+0bbf}.\N{U+0bae}\N{U+0bc1}.",
      "\N{U+0b95}\N{U+0bbf}.\N{U+0baa}\N{U+0bbf}."
    ],
    era_narrow => [
      "\N{U+0b95}\N{U+0bbf}.\N{U+0bae}\N{U+0bc1}.",
      "\N{U+0b95}\N{U+0bbf}.\N{U+0baa}\N{U+0bbf}."
    ],
    era_wide => [
      "\N{U+0b95}\N{U+0bbf}\N{U+0bb1}\N{U+0bbf}\N{U+0bb8}\N{U+0bcd}\N{U+0ba4}\N{U+0bc1}\N{U+0bb5}\N{U+0bc1}\N{U+0b95}\N{U+0bcd}\N{U+0b95}\N{U+0bc1} \N{U+0bae}\N{U+0bc1}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0b85}\N{U+0ba9}\N{U+0bcd}\N{U+0ba9}\N{U+0bcb} \N{U+0b9f}\N{U+0bcb}\N{U+0bae}\N{U+0bbf}\N{U+0ba9}\N{U+0bbf}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Tamil",
    month_format_abbreviated => [
      "\N{U+0b9c}\N{U+0ba9}.",
      "\N{U+0baa}\N{U+0bbf}\N{U+0baa}\N{U+0bcd}.",
      "\N{U+0bae}\N{U+0bbe}\N{U+0bb0}\N{U+0bcd}.",
      "\N{U+0b8f}\N{U+0baa}\N{U+0bcd}.",
      "\N{U+0bae}\N{U+0bc7}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0bb2}\N{U+0bc8}",
      "\N{U+0b86}\N{U+0b95}.",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0baa}\N{U+0bcd}.",
      "\N{U+0b85}\N{U+0b95}\N{U+0bcd}.",
      "\N{U+0ba8}\N{U+0bb5}.",
      "\N{U+0b9f}\N{U+0bbf}\N{U+0b9a}."
    ],
    month_format_narrow => [
      "\N{U+0b9c}",
      "\N{U+0baa}\N{U+0bbf}",
      "\N{U+0bae}\N{U+0bbe}",
      "\N{U+0b8f}",
      "\N{U+0bae}\N{U+0bc7}",
      "\N{U+0b9c}\N{U+0bc2}",
      "\N{U+0b9c}\N{U+0bc2}",
      "\N{U+0b86}",
      "\N{U+0b9a}\N{U+0bc6}",
      "\N{U+0b85}",
      "\N{U+0ba8}",
      "\N{U+0b9f}\N{U+0bbf}"
    ],
    month_format_wide => [
      "\N{U+0b9c}\N{U+0ba9}\N{U+0bb5}\N{U+0bb0}\N{U+0bbf}",
      "\N{U+0baa}\N{U+0bbf}\N{U+0baa}\N{U+0bcd}\N{U+0bb0}\N{U+0bb5}\N{U+0bb0}\N{U+0bbf}",
      "\N{U+0bae}\N{U+0bbe}\N{U+0bb0}\N{U+0bcd}\N{U+0b9a}\N{U+0bcd}",
      "\N{U+0b8f}\N{U+0baa}\N{U+0bcd}\N{U+0bb0}\N{U+0bb2}\N{U+0bcd}",
      "\N{U+0bae}\N{U+0bc7}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0bb2}\N{U+0bc8}",
      "\N{U+0b86}\N{U+0b95}\N{U+0bb8}\N{U+0bcd}\N{U+0b9f}\N{U+0bcd}",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0baa}\N{U+0bcd}\N{U+0b9f}\N{U+0bae}\N{U+0bcd}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}",
      "\N{U+0b85}\N{U+0b95}\N{U+0bcd}\N{U+0b9f}\N{U+0bcb}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}",
      "\N{U+0ba8}\N{U+0bb5}\N{U+0bae}\N{U+0bcd}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}",
      "\N{U+0b9f}\N{U+0bbf}\N{U+0b9a}\N{U+0bae}\N{U+0bcd}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0b9c}\N{U+0ba9}.",
      "\N{U+0baa}\N{U+0bbf}\N{U+0baa}\N{U+0bcd}.",
      "\N{U+0bae}\N{U+0bbe}\N{U+0bb0}\N{U+0bcd}.",
      "\N{U+0b8f}\N{U+0baa}\N{U+0bcd}.",
      "\N{U+0bae}\N{U+0bc7}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0bb2}\N{U+0bc8}",
      "\N{U+0b86}\N{U+0b95}.",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0baa}\N{U+0bcd}.",
      "\N{U+0b85}\N{U+0b95}\N{U+0bcd}.",
      "\N{U+0ba8}\N{U+0bb5}.",
      "\N{U+0b9f}\N{U+0bbf}\N{U+0b9a}."
    ],
    month_stand_alone_narrow => [
      "\N{U+0b9c}",
      "\N{U+0baa}\N{U+0bbf}",
      "\N{U+0bae}\N{U+0bbe}",
      "\N{U+0b8f}",
      "\N{U+0bae}\N{U+0bc7}",
      "\N{U+0b9c}\N{U+0bc2}",
      "\N{U+0b9c}\N{U+0bc2}",
      "\N{U+0b86}",
      "\N{U+0b9a}\N{U+0bc6}",
      "\N{U+0b85}",
      "\N{U+0ba8}",
      "\N{U+0b9f}\N{U+0bbf}"
    ],
    month_stand_alone_wide => [
      "\N{U+0b9c}\N{U+0ba9}\N{U+0bb5}\N{U+0bb0}\N{U+0bbf}",
      "\N{U+0baa}\N{U+0bbf}\N{U+0baa}\N{U+0bcd}\N{U+0bb0}\N{U+0bb5}\N{U+0bb0}\N{U+0bbf}",
      "\N{U+0bae}\N{U+0bbe}\N{U+0bb0}\N{U+0bcd}\N{U+0b9a}\N{U+0bcd}",
      "\N{U+0b8f}\N{U+0baa}\N{U+0bcd}\N{U+0bb0}\N{U+0bb2}\N{U+0bcd}",
      "\N{U+0bae}\N{U+0bc7}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0ba9}\N{U+0bcd}",
      "\N{U+0b9c}\N{U+0bc2}\N{U+0bb2}\N{U+0bc8}",
      "\N{U+0b86}\N{U+0b95}\N{U+0bb8}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "\N{U+0b9a}\N{U+0bc6}\N{U+0baa}\N{U+0bcd}\N{U+0b9f}\N{U+0bae}\N{U+0bcd}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}",
      "\N{U+0b85}\N{U+0b95}\N{U+0bcd}\N{U+0b9f}\N{U+0bcb}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}",
      "\N{U+0ba8}\N{U+0bb5}\N{U+0bae}\N{U+0bcd}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}",
      "\N{U+0b9f}\N{U+0bbf}\N{U+0b9a}\N{U+0bae}\N{U+0bcd}\N{U+0baa}\N{U+0bb0}\N{U+0bcd}"
    ],
    name => "Tamil Singapore",
    native_language => "\N{U+0ba4}\N{U+0bae}\N{U+0bbf}\N{U+0bb4}\N{U+0bcd}",
    native_name => "\N{U+0ba4}\N{U+0bae}\N{U+0bbf}\N{U+0bb4}\N{U+0bcd} \N{U+0b9a}\N{U+0bbf}\N{U+0b99}\N{U+0bcd}\N{U+0b95}\N{U+0baa}\N{U+0bcd}\N{U+0baa}\N{U+0bc2}\N{U+0bb0}\N{U+0bcd}",
    native_script => undef,
    native_territory => "\N{U+0b9a}\N{U+0bbf}\N{U+0b99}\N{U+0bcd}\N{U+0b95}\N{U+0baa}\N{U+0bcd}\N{U+0baa}\N{U+0bc2}\N{U+0bb0}\N{U+0bcd}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.1",
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.2",
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.3",
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "2\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "3\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "4\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.1",
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.2",
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.3",
      "\N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}.4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "2\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "3\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}",
      "4\N{U+0b86}\N{U+0bae}\N{U+0bcd} \N{U+0b95}\N{U+0bbe}\N{U+0bb2}\N{U+0bbe}\N{U+0ba3}\N{U+0bcd}\N{U+0b9f}\N{U+0bc1}"
    ],
    script => undef,
    territory => "Singapore",
    time_format_full => "a h:mm:ss zzzz",
    time_format_long => "a h:mm:ss z",
    time_format_medium => "a h:mm:ss",
    time_format_short => "a h:mm",
    variant => undef,
    version => 28
  }
  __[ te ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G, E d, MMM y",
      GyMMMd => "G d, MMM y",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd-MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMM => "MM-y",
      yMMM => "MMM y",
      yMMMEd => "E, d, MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d, MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "te",
    date_format_full => "d, MMMM y, EEEE",
    date_format_long => "d MMMM, y",
    date_format_medium => "d MMM, y",
    date_format_short => "dd-MM-yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0c38}\N{U+0c4b}\N{U+0c2e}",
      "\N{U+0c2e}\N{U+0c02}\N{U+0c17}\N{U+0c33}",
      "\N{U+0c2c}\N{U+0c41}\N{U+0c27}",
      "\N{U+0c17}\N{U+0c41}\N{U+0c30}\N{U+0c41}",
      "\N{U+0c36}\N{U+0c41}\N{U+0c15}\N{U+0c4d}\N{U+0c30}",
      "\N{U+0c36}\N{U+0c28}\N{U+0c3f}",
      "\N{U+0c06}\N{U+0c26}\N{U+0c3f}"
    ],
    day_format_narrow => [
      "\N{U+0c38}\N{U+0c4b}",
      "\N{U+0c2e}",
      "\N{U+0c2c}\N{U+0c41}",
      "\N{U+0c17}\N{U+0c41}",
      "\N{U+0c36}\N{U+0c41}",
      "\N{U+0c36}",
      "\N{U+0c06}"
    ],
    day_format_wide => [
      "\N{U+0c38}\N{U+0c4b}\N{U+0c2e}\N{U+0c35}\N{U+0c3e}\N{U+0c30}\N{U+0c02}",
      "\N{U+0c2e}\N{U+0c02}\N{U+0c17}\N{U+0c33}\N{U+0c35}\N{U+0c3e}\N{U+0c30}\N{U+0c02}",
      "\N{U+0c2c}\N{U+0c41}\N{U+0c27}\N{U+0c35}\N{U+0c3e}\N{U+0c30}\N{U+0c02}",
      "\N{U+0c17}\N{U+0c41}\N{U+0c30}\N{U+0c41}\N{U+0c35}\N{U+0c3e}\N{U+0c30}\N{U+0c02}",
      "\N{U+0c36}\N{U+0c41}\N{U+0c15}\N{U+0c4d}\N{U+0c30}\N{U+0c35}\N{U+0c3e}\N{U+0c30}\N{U+0c02}",
      "\N{U+0c36}\N{U+0c28}\N{U+0c3f}\N{U+0c35}\N{U+0c3e}\N{U+0c30}\N{U+0c02}",
      "\N{U+0c06}\N{U+0c26}\N{U+0c3f}\N{U+0c35}\N{U+0c3e}\N{U+0c30}\N{U+0c02}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0c38}\N{U+0c4b}\N{U+0c2e}",
      "\N{U+0c2e}\N{U+0c02}\N{U+0c17}\N{U+0c33}",
      "\N{U+0c2c}\N{U+0c41}\N{U+0c27}",
      "\N{U+0c17}\N{U+0c41}\N{U+0c30}\N{U+0c41}",
      "\N{U+0c36}\N{U+0c41}\N{U+0c15}\N{U+0c4d}\N{U+0c30}",
      "\N{U+0c36}\N{U+0c28}\N{U+0c3f}",
      "\N{U+0c06}\N{U+0c26}\N{U+0c3f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0c38}\N{U+0c4b}",
      "\N{U+0c2e}",
      "\N{U+0c2c}\N{U+0c41}",
      "\N{U+0c17}\N{U+0c41}",
      "\N{U+0c36}\N{U+0c41}",
      "\N{U+0c36}",
      "\N{U+0c06}"
    ],
    day_stand_alone_wide => [
      "\N{U+0c38}\N{U+0c4b}\N{U+0c2e}\N{U+0c35}\N{U+0c3e}\N{U+0c30}\N{U+0c02}",
      "\N{U+0c2e}\N{U+0c02}\N{U+0c17}\N{U+0c33}\N{U+0c35}\N{U+0c3e}\N{U+0c30}\N{U+0c02}",
      "\N{U+0c2c}\N{U+0c41}\N{U+0c27}\N{U+0c35}\N{U+0c3e}\N{U+0c30}\N{U+0c02}",
      "\N{U+0c17}\N{U+0c41}\N{U+0c30}\N{U+0c41}\N{U+0c35}\N{U+0c3e}\N{U+0c30}\N{U+0c02}",
      "\N{U+0c36}\N{U+0c41}\N{U+0c15}\N{U+0c4d}\N{U+0c30}\N{U+0c35}\N{U+0c3e}\N{U+0c30}\N{U+0c02}",
      "\N{U+0c36}\N{U+0c28}\N{U+0c3f}\N{U+0c35}\N{U+0c3e}\N{U+0c30}\N{U+0c02}",
      "\N{U+0c06}\N{U+0c26}\N{U+0c3f}\N{U+0c35}\N{U+0c3e}\N{U+0c30}\N{U+0c02}"
    ],
    era_abbreviated => [
      "\N{U+0c15}\N{U+0c4d}\N{U+0c30}\N{U+0c40}\N{U+0c2a}\N{U+0c42}",
      "\N{U+0c15}\N{U+0c4d}\N{U+0c30}\N{U+0c40}\N{U+0c36}"
    ],
    era_narrow => [
      "\N{U+0c15}\N{U+0c4d}\N{U+0c30}\N{U+0c40}\N{U+0c2a}\N{U+0c42}",
      "\N{U+0c15}\N{U+0c4d}\N{U+0c30}\N{U+0c40}\N{U+0c36}"
    ],
    era_wide => [
      "\N{U+0c15}\N{U+0c4d}\N{U+0c30}\N{U+0c40}\N{U+0c38}\N{U+0c4d}\N{U+0c24}\N{U+0c41} \N{U+0c2a}\N{U+0c42}\N{U+0c30}\N{U+0c4d}\N{U+0c35}\N{U+0c02}",
      "\N{U+0c15}\N{U+0c4d}\N{U+0c30}\N{U+0c40}\N{U+0c38}\N{U+0c4d}\N{U+0c24}\N{U+0c41} \N{U+0c36}\N{U+0c15}\N{U+0c02}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Telugu",
    month_format_abbreviated => [
      "\N{U+0c1c}\N{U+0c28}",
      "\N{U+0c2b}\N{U+0c3f}\N{U+0c2c}\N{U+0c4d}\N{U+0c30}",
      "\N{U+0c2e}\N{U+0c3e}\N{U+0c30}\N{U+0c4d}\N{U+0c1a}\N{U+0c3f}",
      "\N{U+0c0f}\N{U+0c2a}\N{U+0c4d}\N{U+0c30}\N{U+0c3f}",
      "\N{U+0c2e}\N{U+0c47}",
      "\N{U+0c1c}\N{U+0c42}\N{U+0c28}\N{U+0c4d}",
      "\N{U+0c1c}\N{U+0c41}\N{U+0c32}\N{U+0c48}",
      "\N{U+0c06}\N{U+0c17}",
      "\N{U+0c38}\N{U+0c46}\N{U+0c2a}\N{U+0c4d}\N{U+0c1f}\N{U+0c46}\N{U+0c02}",
      "\N{U+0c05}\N{U+0c15}\N{U+0c4d}\N{U+0c1f}\N{U+0c4b}",
      "\N{U+0c28}\N{U+0c35}\N{U+0c02}",
      "\N{U+0c21}\N{U+0c3f}\N{U+0c38}\N{U+0c46}\N{U+0c02}"
    ],
    month_format_narrow => [
      "\N{U+0c1c}",
      "\N{U+0c2b}\N{U+0c3f}",
      "\N{U+0c2e}\N{U+0c3e}",
      "\N{U+0c0f}",
      "\N{U+0c2e}\N{U+0c47}",
      "\N{U+0c1c}\N{U+0c42}",
      "\N{U+0c1c}\N{U+0c41}",
      "\N{U+0c06}",
      "\N{U+0c38}\N{U+0c46}",
      "\N{U+0c05}",
      "\N{U+0c28}",
      "\N{U+0c21}\N{U+0c3f}"
    ],
    month_format_wide => [
      "\N{U+0c1c}\N{U+0c28}\N{U+0c35}\N{U+0c30}\N{U+0c3f}",
      "\N{U+0c2b}\N{U+0c3f}\N{U+0c2c}\N{U+0c4d}\N{U+0c30}\N{U+0c35}\N{U+0c30}\N{U+0c3f}",
      "\N{U+0c2e}\N{U+0c3e}\N{U+0c30}\N{U+0c4d}\N{U+0c1a}\N{U+0c3f}",
      "\N{U+0c0f}\N{U+0c2a}\N{U+0c4d}\N{U+0c30}\N{U+0c3f}\N{U+0c32}\N{U+0c4d}",
      "\N{U+0c2e}\N{U+0c47}",
      "\N{U+0c1c}\N{U+0c42}\N{U+0c28}\N{U+0c4d}",
      "\N{U+0c1c}\N{U+0c41}\N{U+0c32}\N{U+0c48}",
      "\N{U+0c06}\N{U+0c17}\N{U+0c38}\N{U+0c4d}\N{U+0c1f}\N{U+0c41}",
      "\N{U+0c38}\N{U+0c46}\N{U+0c2a}\N{U+0c4d}\N{U+0c1f}\N{U+0c46}\N{U+0c02}\N{U+0c2c}\N{U+0c30}\N{U+0c4d}",
      "\N{U+0c05}\N{U+0c15}\N{U+0c4d}\N{U+0c1f}\N{U+0c4b}\N{U+0c2c}\N{U+0c30}\N{U+0c4d}",
      "\N{U+0c28}\N{U+0c35}\N{U+0c02}\N{U+0c2c}\N{U+0c30}\N{U+0c4d}",
      "\N{U+0c21}\N{U+0c3f}\N{U+0c38}\N{U+0c46}\N{U+0c02}\N{U+0c2c}\N{U+0c30}\N{U+0c4d}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0c1c}\N{U+0c28}",
      "\N{U+0c2b}\N{U+0c3f}\N{U+0c2c}\N{U+0c4d}\N{U+0c30}",
      "\N{U+0c2e}\N{U+0c3e}\N{U+0c30}\N{U+0c4d}\N{U+0c1a}\N{U+0c3f}",
      "\N{U+0c0f}\N{U+0c2a}\N{U+0c4d}\N{U+0c30}\N{U+0c3f}",
      "\N{U+0c2e}\N{U+0c47}",
      "\N{U+0c1c}\N{U+0c42}\N{U+0c28}\N{U+0c4d}",
      "\N{U+0c1c}\N{U+0c41}\N{U+0c32}\N{U+0c48}",
      "\N{U+0c06}\N{U+0c17}\N{U+0c38}\N{U+0c4d}\N{U+0c1f}\N{U+0c41}",
      "\N{U+0c38}\N{U+0c46}\N{U+0c2a}\N{U+0c4d}\N{U+0c1f}\N{U+0c46}\N{U+0c02}",
      "\N{U+0c05}\N{U+0c15}\N{U+0c4d}\N{U+0c1f}\N{U+0c4b}",
      "\N{U+0c28}\N{U+0c35}\N{U+0c02}",
      "\N{U+0c21}\N{U+0c3f}\N{U+0c38}\N{U+0c46}\N{U+0c02}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0c1c}",
      "\N{U+0c2b}\N{U+0c3f}",
      "\N{U+0c2e}\N{U+0c3e}",
      "\N{U+0c0f}",
      "\N{U+0c2e}\N{U+0c47}",
      "\N{U+0c1c}\N{U+0c42}",
      "\N{U+0c1c}\N{U+0c41}",
      "\N{U+0c06}",
      "\N{U+0c38}\N{U+0c46}",
      "\N{U+0c05}",
      "\N{U+0c28}",
      "\N{U+0c21}\N{U+0c3f}"
    ],
    month_stand_alone_wide => [
      "\N{U+0c1c}\N{U+0c28}\N{U+0c35}\N{U+0c30}\N{U+0c3f}",
      "\N{U+0c2b}\N{U+0c3f}\N{U+0c2c}\N{U+0c4d}\N{U+0c30}\N{U+0c35}\N{U+0c30}\N{U+0c3f}",
      "\N{U+0c2e}\N{U+0c3e}\N{U+0c30}\N{U+0c4d}\N{U+0c1a}\N{U+0c3f}",
      "\N{U+0c0f}\N{U+0c2a}\N{U+0c4d}\N{U+0c30}\N{U+0c3f}\N{U+0c32}\N{U+0c4d}",
      "\N{U+0c2e}\N{U+0c47}",
      "\N{U+0c1c}\N{U+0c42}\N{U+0c28}\N{U+0c4d}",
      "\N{U+0c1c}\N{U+0c41}\N{U+0c32}\N{U+0c48}",
      "\N{U+0c06}\N{U+0c17}\N{U+0c38}\N{U+0c4d}\N{U+0c1f}\N{U+0c41}",
      "\N{U+0c38}\N{U+0c46}\N{U+0c2a}\N{U+0c4d}\N{U+0c1f}\N{U+0c46}\N{U+0c02}\N{U+0c2c}\N{U+0c30}\N{U+0c4d}",
      "\N{U+0c05}\N{U+0c15}\N{U+0c4d}\N{U+0c1f}\N{U+0c4b}\N{U+0c2c}\N{U+0c30}\N{U+0c4d}",
      "\N{U+0c28}\N{U+0c35}\N{U+0c02}\N{U+0c2c}\N{U+0c30}\N{U+0c4d}",
      "\N{U+0c21}\N{U+0c3f}\N{U+0c38}\N{U+0c46}\N{U+0c02}\N{U+0c2c}\N{U+0c30}\N{U+0c4d}"
    ],
    name => "Telugu",
    native_language => "\N{U+0c24}\N{U+0c46}\N{U+0c32}\N{U+0c41}\N{U+0c17}\N{U+0c41}",
    native_name => "\N{U+0c24}\N{U+0c46}\N{U+0c32}\N{U+0c41}\N{U+0c17}\N{U+0c41}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}1",
      "\N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}2",
      "\N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}3",
      "\N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1\N{U+0c35} \N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}\N{U+0c2e}\N{U+0c3e}\N{U+0c38}\N{U+0c02}",
      "2\N{U+0c35} \N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}\N{U+0c2e}\N{U+0c3e}\N{U+0c38}\N{U+0c02}",
      "3\N{U+0c35} \N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}\N{U+0c2e}\N{U+0c3e}\N{U+0c38}\N{U+0c02}",
      "4\N{U+0c35} \N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}\N{U+0c2e}\N{U+0c3e}\N{U+0c38}\N{U+0c02}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}1",
      "\N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}2",
      "\N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}3",
      "\N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+0c2e}\N{U+0c4a}\N{U+0c26}\N{U+0c1f}\N{U+0c3f} \N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}\N{U+0c2e}\N{U+0c3e}\N{U+0c38}\N{U+0c3f}\N{U+0c15}\N{U+0c02}",
      "\N{U+0c30}\N{U+0c46}\N{U+0c02}\N{U+0c21}\N{U+0c35} \N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}\N{U+0c2e}\N{U+0c3e}\N{U+0c38}\N{U+0c3f}\N{U+0c15}\N{U+0c02}",
      "\N{U+0c2e}\N{U+0c42}\N{U+0c21}\N{U+0c35} \N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}\N{U+0c2e}\N{U+0c3e}\N{U+0c38}\N{U+0c3f}\N{U+0c15}\N{U+0c02}",
      "\N{U+0c28}\N{U+0c3e}\N{U+0c32}\N{U+0c4d}\N{U+0c17}\N{U+0c35} \N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}\N{U+0c2e}\N{U+0c3e}\N{U+0c38}\N{U+0c3f}\N{U+0c15}\N{U+0c02}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ te-IN ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G, E d, MMM y",
      GyMMMd => "G d, MMM y",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd-MM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, d/M/y",
      yMM => "MM-y",
      yMMM => "MMM y",
      yMMMEd => "E, d, MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d, MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "te-IN",
    date_format_full => "d, MMMM y, EEEE",
    date_format_long => "d MMMM, y",
    date_format_medium => "d MMM, y",
    date_format_short => "dd-MM-yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0c38}\N{U+0c4b}\N{U+0c2e}",
      "\N{U+0c2e}\N{U+0c02}\N{U+0c17}\N{U+0c33}",
      "\N{U+0c2c}\N{U+0c41}\N{U+0c27}",
      "\N{U+0c17}\N{U+0c41}\N{U+0c30}\N{U+0c41}",
      "\N{U+0c36}\N{U+0c41}\N{U+0c15}\N{U+0c4d}\N{U+0c30}",
      "\N{U+0c36}\N{U+0c28}\N{U+0c3f}",
      "\N{U+0c06}\N{U+0c26}\N{U+0c3f}"
    ],
    day_format_narrow => [
      "\N{U+0c38}\N{U+0c4b}",
      "\N{U+0c2e}",
      "\N{U+0c2c}\N{U+0c41}",
      "\N{U+0c17}\N{U+0c41}",
      "\N{U+0c36}\N{U+0c41}",
      "\N{U+0c36}",
      "\N{U+0c06}"
    ],
    day_format_wide => [
      "\N{U+0c38}\N{U+0c4b}\N{U+0c2e}\N{U+0c35}\N{U+0c3e}\N{U+0c30}\N{U+0c02}",
      "\N{U+0c2e}\N{U+0c02}\N{U+0c17}\N{U+0c33}\N{U+0c35}\N{U+0c3e}\N{U+0c30}\N{U+0c02}",
      "\N{U+0c2c}\N{U+0c41}\N{U+0c27}\N{U+0c35}\N{U+0c3e}\N{U+0c30}\N{U+0c02}",
      "\N{U+0c17}\N{U+0c41}\N{U+0c30}\N{U+0c41}\N{U+0c35}\N{U+0c3e}\N{U+0c30}\N{U+0c02}",
      "\N{U+0c36}\N{U+0c41}\N{U+0c15}\N{U+0c4d}\N{U+0c30}\N{U+0c35}\N{U+0c3e}\N{U+0c30}\N{U+0c02}",
      "\N{U+0c36}\N{U+0c28}\N{U+0c3f}\N{U+0c35}\N{U+0c3e}\N{U+0c30}\N{U+0c02}",
      "\N{U+0c06}\N{U+0c26}\N{U+0c3f}\N{U+0c35}\N{U+0c3e}\N{U+0c30}\N{U+0c02}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0c38}\N{U+0c4b}\N{U+0c2e}",
      "\N{U+0c2e}\N{U+0c02}\N{U+0c17}\N{U+0c33}",
      "\N{U+0c2c}\N{U+0c41}\N{U+0c27}",
      "\N{U+0c17}\N{U+0c41}\N{U+0c30}\N{U+0c41}",
      "\N{U+0c36}\N{U+0c41}\N{U+0c15}\N{U+0c4d}\N{U+0c30}",
      "\N{U+0c36}\N{U+0c28}\N{U+0c3f}",
      "\N{U+0c06}\N{U+0c26}\N{U+0c3f}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0c38}\N{U+0c4b}",
      "\N{U+0c2e}",
      "\N{U+0c2c}\N{U+0c41}",
      "\N{U+0c17}\N{U+0c41}",
      "\N{U+0c36}\N{U+0c41}",
      "\N{U+0c36}",
      "\N{U+0c06}"
    ],
    day_stand_alone_wide => [
      "\N{U+0c38}\N{U+0c4b}\N{U+0c2e}\N{U+0c35}\N{U+0c3e}\N{U+0c30}\N{U+0c02}",
      "\N{U+0c2e}\N{U+0c02}\N{U+0c17}\N{U+0c33}\N{U+0c35}\N{U+0c3e}\N{U+0c30}\N{U+0c02}",
      "\N{U+0c2c}\N{U+0c41}\N{U+0c27}\N{U+0c35}\N{U+0c3e}\N{U+0c30}\N{U+0c02}",
      "\N{U+0c17}\N{U+0c41}\N{U+0c30}\N{U+0c41}\N{U+0c35}\N{U+0c3e}\N{U+0c30}\N{U+0c02}",
      "\N{U+0c36}\N{U+0c41}\N{U+0c15}\N{U+0c4d}\N{U+0c30}\N{U+0c35}\N{U+0c3e}\N{U+0c30}\N{U+0c02}",
      "\N{U+0c36}\N{U+0c28}\N{U+0c3f}\N{U+0c35}\N{U+0c3e}\N{U+0c30}\N{U+0c02}",
      "\N{U+0c06}\N{U+0c26}\N{U+0c3f}\N{U+0c35}\N{U+0c3e}\N{U+0c30}\N{U+0c02}"
    ],
    era_abbreviated => [
      "\N{U+0c15}\N{U+0c4d}\N{U+0c30}\N{U+0c40}\N{U+0c2a}\N{U+0c42}",
      "\N{U+0c15}\N{U+0c4d}\N{U+0c30}\N{U+0c40}\N{U+0c36}"
    ],
    era_narrow => [
      "\N{U+0c15}\N{U+0c4d}\N{U+0c30}\N{U+0c40}\N{U+0c2a}\N{U+0c42}",
      "\N{U+0c15}\N{U+0c4d}\N{U+0c30}\N{U+0c40}\N{U+0c36}"
    ],
    era_wide => [
      "\N{U+0c15}\N{U+0c4d}\N{U+0c30}\N{U+0c40}\N{U+0c38}\N{U+0c4d}\N{U+0c24}\N{U+0c41} \N{U+0c2a}\N{U+0c42}\N{U+0c30}\N{U+0c4d}\N{U+0c35}\N{U+0c02}",
      "\N{U+0c15}\N{U+0c4d}\N{U+0c30}\N{U+0c40}\N{U+0c38}\N{U+0c4d}\N{U+0c24}\N{U+0c41} \N{U+0c36}\N{U+0c15}\N{U+0c02}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%B %d %A %Y",
    glibc_datetime_format => "%B %d %A %Y %p%I.%M.%S %Z",
    glibc_time_12_format => "%p%I.%M.%S %Z",
    glibc_time_format => "%p%I.%M.%S %Z",
    language => "Telugu",
    month_format_abbreviated => [
      "\N{U+0c1c}\N{U+0c28}",
      "\N{U+0c2b}\N{U+0c3f}\N{U+0c2c}\N{U+0c4d}\N{U+0c30}",
      "\N{U+0c2e}\N{U+0c3e}\N{U+0c30}\N{U+0c4d}\N{U+0c1a}\N{U+0c3f}",
      "\N{U+0c0f}\N{U+0c2a}\N{U+0c4d}\N{U+0c30}\N{U+0c3f}",
      "\N{U+0c2e}\N{U+0c47}",
      "\N{U+0c1c}\N{U+0c42}\N{U+0c28}\N{U+0c4d}",
      "\N{U+0c1c}\N{U+0c41}\N{U+0c32}\N{U+0c48}",
      "\N{U+0c06}\N{U+0c17}",
      "\N{U+0c38}\N{U+0c46}\N{U+0c2a}\N{U+0c4d}\N{U+0c1f}\N{U+0c46}\N{U+0c02}",
      "\N{U+0c05}\N{U+0c15}\N{U+0c4d}\N{U+0c1f}\N{U+0c4b}",
      "\N{U+0c28}\N{U+0c35}\N{U+0c02}",
      "\N{U+0c21}\N{U+0c3f}\N{U+0c38}\N{U+0c46}\N{U+0c02}"
    ],
    month_format_narrow => [
      "\N{U+0c1c}",
      "\N{U+0c2b}\N{U+0c3f}",
      "\N{U+0c2e}\N{U+0c3e}",
      "\N{U+0c0f}",
      "\N{U+0c2e}\N{U+0c47}",
      "\N{U+0c1c}\N{U+0c42}",
      "\N{U+0c1c}\N{U+0c41}",
      "\N{U+0c06}",
      "\N{U+0c38}\N{U+0c46}",
      "\N{U+0c05}",
      "\N{U+0c28}",
      "\N{U+0c21}\N{U+0c3f}"
    ],
    month_format_wide => [
      "\N{U+0c1c}\N{U+0c28}\N{U+0c35}\N{U+0c30}\N{U+0c3f}",
      "\N{U+0c2b}\N{U+0c3f}\N{U+0c2c}\N{U+0c4d}\N{U+0c30}\N{U+0c35}\N{U+0c30}\N{U+0c3f}",
      "\N{U+0c2e}\N{U+0c3e}\N{U+0c30}\N{U+0c4d}\N{U+0c1a}\N{U+0c3f}",
      "\N{U+0c0f}\N{U+0c2a}\N{U+0c4d}\N{U+0c30}\N{U+0c3f}\N{U+0c32}\N{U+0c4d}",
      "\N{U+0c2e}\N{U+0c47}",
      "\N{U+0c1c}\N{U+0c42}\N{U+0c28}\N{U+0c4d}",
      "\N{U+0c1c}\N{U+0c41}\N{U+0c32}\N{U+0c48}",
      "\N{U+0c06}\N{U+0c17}\N{U+0c38}\N{U+0c4d}\N{U+0c1f}\N{U+0c41}",
      "\N{U+0c38}\N{U+0c46}\N{U+0c2a}\N{U+0c4d}\N{U+0c1f}\N{U+0c46}\N{U+0c02}\N{U+0c2c}\N{U+0c30}\N{U+0c4d}",
      "\N{U+0c05}\N{U+0c15}\N{U+0c4d}\N{U+0c1f}\N{U+0c4b}\N{U+0c2c}\N{U+0c30}\N{U+0c4d}",
      "\N{U+0c28}\N{U+0c35}\N{U+0c02}\N{U+0c2c}\N{U+0c30}\N{U+0c4d}",
      "\N{U+0c21}\N{U+0c3f}\N{U+0c38}\N{U+0c46}\N{U+0c02}\N{U+0c2c}\N{U+0c30}\N{U+0c4d}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0c1c}\N{U+0c28}",
      "\N{U+0c2b}\N{U+0c3f}\N{U+0c2c}\N{U+0c4d}\N{U+0c30}",
      "\N{U+0c2e}\N{U+0c3e}\N{U+0c30}\N{U+0c4d}\N{U+0c1a}\N{U+0c3f}",
      "\N{U+0c0f}\N{U+0c2a}\N{U+0c4d}\N{U+0c30}\N{U+0c3f}",
      "\N{U+0c2e}\N{U+0c47}",
      "\N{U+0c1c}\N{U+0c42}\N{U+0c28}\N{U+0c4d}",
      "\N{U+0c1c}\N{U+0c41}\N{U+0c32}\N{U+0c48}",
      "\N{U+0c06}\N{U+0c17}\N{U+0c38}\N{U+0c4d}\N{U+0c1f}\N{U+0c41}",
      "\N{U+0c38}\N{U+0c46}\N{U+0c2a}\N{U+0c4d}\N{U+0c1f}\N{U+0c46}\N{U+0c02}",
      "\N{U+0c05}\N{U+0c15}\N{U+0c4d}\N{U+0c1f}\N{U+0c4b}",
      "\N{U+0c28}\N{U+0c35}\N{U+0c02}",
      "\N{U+0c21}\N{U+0c3f}\N{U+0c38}\N{U+0c46}\N{U+0c02}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0c1c}",
      "\N{U+0c2b}\N{U+0c3f}",
      "\N{U+0c2e}\N{U+0c3e}",
      "\N{U+0c0f}",
      "\N{U+0c2e}\N{U+0c47}",
      "\N{U+0c1c}\N{U+0c42}",
      "\N{U+0c1c}\N{U+0c41}",
      "\N{U+0c06}",
      "\N{U+0c38}\N{U+0c46}",
      "\N{U+0c05}",
      "\N{U+0c28}",
      "\N{U+0c21}\N{U+0c3f}"
    ],
    month_stand_alone_wide => [
      "\N{U+0c1c}\N{U+0c28}\N{U+0c35}\N{U+0c30}\N{U+0c3f}",
      "\N{U+0c2b}\N{U+0c3f}\N{U+0c2c}\N{U+0c4d}\N{U+0c30}\N{U+0c35}\N{U+0c30}\N{U+0c3f}",
      "\N{U+0c2e}\N{U+0c3e}\N{U+0c30}\N{U+0c4d}\N{U+0c1a}\N{U+0c3f}",
      "\N{U+0c0f}\N{U+0c2a}\N{U+0c4d}\N{U+0c30}\N{U+0c3f}\N{U+0c32}\N{U+0c4d}",
      "\N{U+0c2e}\N{U+0c47}",
      "\N{U+0c1c}\N{U+0c42}\N{U+0c28}\N{U+0c4d}",
      "\N{U+0c1c}\N{U+0c41}\N{U+0c32}\N{U+0c48}",
      "\N{U+0c06}\N{U+0c17}\N{U+0c38}\N{U+0c4d}\N{U+0c1f}\N{U+0c41}",
      "\N{U+0c38}\N{U+0c46}\N{U+0c2a}\N{U+0c4d}\N{U+0c1f}\N{U+0c46}\N{U+0c02}\N{U+0c2c}\N{U+0c30}\N{U+0c4d}",
      "\N{U+0c05}\N{U+0c15}\N{U+0c4d}\N{U+0c1f}\N{U+0c4b}\N{U+0c2c}\N{U+0c30}\N{U+0c4d}",
      "\N{U+0c28}\N{U+0c35}\N{U+0c02}\N{U+0c2c}\N{U+0c30}\N{U+0c4d}",
      "\N{U+0c21}\N{U+0c3f}\N{U+0c38}\N{U+0c46}\N{U+0c02}\N{U+0c2c}\N{U+0c30}\N{U+0c4d}"
    ],
    name => "Telugu India",
    native_language => "\N{U+0c24}\N{U+0c46}\N{U+0c32}\N{U+0c41}\N{U+0c17}\N{U+0c41}",
    native_name => "\N{U+0c24}\N{U+0c46}\N{U+0c32}\N{U+0c41}\N{U+0c17}\N{U+0c41} \N{U+0c2d}\N{U+0c3e}\N{U+0c30}\N{U+0c24} \N{U+0c26}\N{U+0c47}\N{U+0c36}\N{U+0c02}",
    native_script => undef,
    native_territory => "\N{U+0c2d}\N{U+0c3e}\N{U+0c30}\N{U+0c24} \N{U+0c26}\N{U+0c47}\N{U+0c36}\N{U+0c02}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}1",
      "\N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}2",
      "\N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}3",
      "\N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1\N{U+0c35} \N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}\N{U+0c2e}\N{U+0c3e}\N{U+0c38}\N{U+0c02}",
      "2\N{U+0c35} \N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}\N{U+0c2e}\N{U+0c3e}\N{U+0c38}\N{U+0c02}",
      "3\N{U+0c35} \N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}\N{U+0c2e}\N{U+0c3e}\N{U+0c38}\N{U+0c02}",
      "4\N{U+0c35} \N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}\N{U+0c2e}\N{U+0c3e}\N{U+0c38}\N{U+0c02}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}1",
      "\N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}2",
      "\N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}3",
      "\N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+0c2e}\N{U+0c4a}\N{U+0c26}\N{U+0c1f}\N{U+0c3f} \N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}\N{U+0c2e}\N{U+0c3e}\N{U+0c38}\N{U+0c3f}\N{U+0c15}\N{U+0c02}",
      "\N{U+0c30}\N{U+0c46}\N{U+0c02}\N{U+0c21}\N{U+0c35} \N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}\N{U+0c2e}\N{U+0c3e}\N{U+0c38}\N{U+0c3f}\N{U+0c15}\N{U+0c02}",
      "\N{U+0c2e}\N{U+0c42}\N{U+0c21}\N{U+0c35} \N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}\N{U+0c2e}\N{U+0c3e}\N{U+0c38}\N{U+0c3f}\N{U+0c15}\N{U+0c02}",
      "\N{U+0c28}\N{U+0c3e}\N{U+0c32}\N{U+0c4d}\N{U+0c17}\N{U+0c35} \N{U+0c24}\N{U+0c4d}\N{U+0c30}\N{U+0c48}\N{U+0c2e}\N{U+0c3e}\N{U+0c38}\N{U+0c3f}\N{U+0c15}\N{U+0c02}"
    ],
    script => undef,
    territory => "India",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ teo ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "teo",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Bar",
      "Aar",
      "Uni",
      "Ung",
      "Kan",
      "Sab",
      "Jum"
    ],
    day_format_narrow => [
      "B",
      "A",
      "U",
      "U",
      "K",
      "S",
      "J"
    ],
    day_format_wide => [
      "Nakaebarasa",
      "Nakaare",
      "Nakauni",
      "Nakaung\N{U+2019}on",
      "Nakakany",
      "Nakasabiti",
      "Nakaejuma"
    ],
    day_stand_alone_abbreviated => [
      "Bar",
      "Aar",
      "Uni",
      "Ung",
      "Kan",
      "Sab",
      "Jum"
    ],
    day_stand_alone_narrow => [
      "B",
      "A",
      "U",
      "U",
      "K",
      "S",
      "J"
    ],
    day_stand_alone_wide => [
      "Nakaebarasa",
      "Nakaare",
      "Nakauni",
      "Nakaung\N{U+2019}on",
      "Nakakany",
      "Nakasabiti",
      "Nakaejuma"
    ],
    era_abbreviated => [
      "KK",
      "BK"
    ],
    era_narrow => [
      "KK",
      "BK"
    ],
    era_wide => [
      "Kabla ya Christo",
      "Baada ya Christo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Teso",
    month_format_abbreviated => [
      "Rar",
      "Muk",
      "Kwa",
      "Dun",
      "Mar",
      "Mod",
      "Jol",
      "Ped",
      "Sok",
      "Tib",
      "Lab",
      "Poo"
    ],
    month_format_narrow => [
      "R",
      "M",
      "K",
      "D",
      "M",
      "M",
      "J",
      "P",
      "S",
      "T",
      "L",
      "P"
    ],
    month_format_wide => [
      "Orara",
      "Omuk",
      "Okwamg\N{U+2019}",
      "Odung\N{U+2019}el",
      "Omaruk",
      "Omodok\N{U+2019}king\N{U+2019}ol",
      "Ojola",
      "Opedel",
      "Osokosokoma",
      "Otibar",
      "Olabor",
      "Opoo"
    ],
    month_stand_alone_abbreviated => [
      "Rar",
      "Muk",
      "Kwa",
      "Dun",
      "Mar",
      "Mod",
      "Jol",
      "Ped",
      "Sok",
      "Tib",
      "Lab",
      "Poo"
    ],
    month_stand_alone_narrow => [
      "R",
      "M",
      "K",
      "D",
      "M",
      "M",
      "J",
      "P",
      "S",
      "T",
      "L",
      "P"
    ],
    month_stand_alone_wide => [
      "Orara",
      "Omuk",
      "Okwamg\N{U+2019}",
      "Odung\N{U+2019}el",
      "Omaruk",
      "Omodok\N{U+2019}king\N{U+2019}ol",
      "Ojola",
      "Opedel",
      "Osokosokoma",
      "Otibar",
      "Olabor",
      "Opoo"
    ],
    name => "Teso",
    native_language => "Kiteso",
    native_name => "Kiteso",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Akwota abe",
      "Akwota Aane",
      "Akwota auni",
      "Akwota Aung\N{U+2019}on"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Akwota abe",
      "Akwota Aane",
      "Akwota auni",
      "Akwota Aung\N{U+2019}on"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ teo-KE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "teo-KE",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Bar",
      "Aar",
      "Uni",
      "Ung",
      "Kan",
      "Sab",
      "Jum"
    ],
    day_format_narrow => [
      "B",
      "A",
      "U",
      "U",
      "K",
      "S",
      "J"
    ],
    day_format_wide => [
      "Nakaebarasa",
      "Nakaare",
      "Nakauni",
      "Nakaung\N{U+2019}on",
      "Nakakany",
      "Nakasabiti",
      "Nakaejuma"
    ],
    day_stand_alone_abbreviated => [
      "Bar",
      "Aar",
      "Uni",
      "Ung",
      "Kan",
      "Sab",
      "Jum"
    ],
    day_stand_alone_narrow => [
      "B",
      "A",
      "U",
      "U",
      "K",
      "S",
      "J"
    ],
    day_stand_alone_wide => [
      "Nakaebarasa",
      "Nakaare",
      "Nakauni",
      "Nakaung\N{U+2019}on",
      "Nakakany",
      "Nakasabiti",
      "Nakaejuma"
    ],
    era_abbreviated => [
      "KK",
      "BK"
    ],
    era_narrow => [
      "KK",
      "BK"
    ],
    era_wide => [
      "Kabla ya Christo",
      "Baada ya Christo"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Teso",
    month_format_abbreviated => [
      "Rar",
      "Muk",
      "Kwa",
      "Dun",
      "Mar",
      "Mod",
      "Jol",
      "Ped",
      "Sok",
      "Tib",
      "Lab",
      "Poo"
    ],
    month_format_narrow => [
      "R",
      "M",
      "K",
      "D",
      "M",
      "M",
      "J",
      "P",
      "S",
      "T",
      "L",
      "P"
    ],
    month_format_wide => [
      "Orara",
      "Omuk",
      "Okwamg\N{U+2019}",
      "Odung\N{U+2019}el",
      "Omaruk",
      "Omodok\N{U+2019}king\N{U+2019}ol",
      "Ojola",
      "Opedel",
      "Osokosokoma",
      "Otibar",
      "Olabor",
      "Opoo"
    ],
    month_stand_alone_abbreviated => [
      "Rar",
      "Muk",
      "Kwa",
      "Dun",
      "Mar",
      "Mod",
      "Jol",
      "Ped",
      "Sok",
      "Tib",
      "Lab",
      "Poo"
    ],
    month_stand_alone_narrow => [
      "R",
      "M",
      "K",
      "D",
      "M",
      "M",
      "J",
      "P",
      "S",
      "T",
      "L",
      "P"
    ],
    month_stand_alone_wide => [
      "Orara",
      "Omuk",
      "Okwamg\N{U+2019}",
      "Odung\N{U+2019}el",
      "Omaruk",
      "Omodok\N{U+2019}king\N{U+2019}ol",
      "Ojola",
      "Opedel",
      "Osokosokoma",
      "Otibar",
      "Olabor",
      "Opoo"
    ],
    name => "Teso Kenya",
    native_language => "Kiteso",
    native_name => "Kiteso Kenia",
    native_script => undef,
    native_territory => "Kenia",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Akwota abe",
      "Akwota Aane",
      "Akwota auni",
      "Akwota Aung\N{U+2019}on"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Akwota abe",
      "Akwota Aane",
      "Akwota auni",
      "Akwota Aung\N{U+2019}on"
    ],
    script => undef,
    territory => "Kenya",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ teo-UG ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "teo-UG",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Bar",
      "Aar",
      "Uni",
      "Ung",
      "Kan",
      "Sab",
      "Jum"
    ],
    day_format_narrow => [
      "B",
      "A",
      "U",
      "U",
      "K",
      "S",
      "J"
    ],
    day_format_wide => [
      "Nakaebarasa",
      "Nakaare",
      "Nakauni",
      "Nakaung\N{U+2019}on",
      "Nakakany",
      "Nakasabiti",
      "Nakaejuma"
    ],
    day_stand_alone_abbreviated => [
      "Bar",
      "Aar",
      "Uni",
      "Ung",
      "Kan",
      "Sab",
      "Jum"
    ],
    day_stand_alone_narrow => [
      "B",
      "A",
      "U",
      "U",
      "K",
      "S",
      "J"
    ],
    day_stand_alone_wide => [
      "Nakaebarasa",
      "Nakaare",
      "Nakauni",
      "Nakaung\N{U+2019}on",
      "Nakakany",
      "Nakasabiti",
      "Nakaejuma"
    ],
    era_abbreviated => [
      "KK",
      "BK"
    ],
    era_narrow => [
      "KK",
      "BK"
    ],
    era_wide => [
      "Kabla ya Christo",
      "Baada ya Christo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Teso",
    month_format_abbreviated => [
      "Rar",
      "Muk",
      "Kwa",
      "Dun",
      "Mar",
      "Mod",
      "Jol",
      "Ped",
      "Sok",
      "Tib",
      "Lab",
      "Poo"
    ],
    month_format_narrow => [
      "R",
      "M",
      "K",
      "D",
      "M",
      "M",
      "J",
      "P",
      "S",
      "T",
      "L",
      "P"
    ],
    month_format_wide => [
      "Orara",
      "Omuk",
      "Okwamg\N{U+2019}",
      "Odung\N{U+2019}el",
      "Omaruk",
      "Omodok\N{U+2019}king\N{U+2019}ol",
      "Ojola",
      "Opedel",
      "Osokosokoma",
      "Otibar",
      "Olabor",
      "Opoo"
    ],
    month_stand_alone_abbreviated => [
      "Rar",
      "Muk",
      "Kwa",
      "Dun",
      "Mar",
      "Mod",
      "Jol",
      "Ped",
      "Sok",
      "Tib",
      "Lab",
      "Poo"
    ],
    month_stand_alone_narrow => [
      "R",
      "M",
      "K",
      "D",
      "M",
      "M",
      "J",
      "P",
      "S",
      "T",
      "L",
      "P"
    ],
    month_stand_alone_wide => [
      "Orara",
      "Omuk",
      "Okwamg\N{U+2019}",
      "Odung\N{U+2019}el",
      "Omaruk",
      "Omodok\N{U+2019}king\N{U+2019}ol",
      "Ojola",
      "Opedel",
      "Osokosokoma",
      "Otibar",
      "Olabor",
      "Opoo"
    ],
    name => "Teso Uganda",
    native_language => "Kiteso",
    native_name => "Kiteso Uganda",
    native_script => undef,
    native_territory => "Uganda",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Akwota abe",
      "Akwota Aane",
      "Akwota auni",
      "Akwota Aung\N{U+2019}on"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Akwota abe",
      "Akwota Aane",
      "Akwota auni",
      "Akwota Aung\N{U+2019}on"
    ],
    script => undef,
    territory => "Uganda",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ th ]__
  {
    am_pm_abbreviated => [
      "\N{U+0e01}\N{U+0e48}\N{U+0e2d}\N{U+0e19}\N{U+0e40}\N{U+0e17}\N{U+0e35}\N{U+0e48}\N{U+0e22}\N{U+0e07}",
      "\N{U+0e2b}\N{U+0e25}\N{U+0e31}\N{U+0e07}\N{U+0e40}\N{U+0e17}\N{U+0e35}\N{U+0e48}\N{U+0e22}\N{U+0e07}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm \N{U+0e19}.",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "MMM G y",
      GyMMMEEEEd => "EEEE\N{U+0e17}\N{U+0e35}\N{U+0e48} d MMM G y",
      GyMMMEd => "E d MMM G y",
      GyMMMd => "d MMM G y",
      H => "HH",
      Hm => "HH:mm \N{U+0e19}.",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEEEEd => "EEEE\N{U+0e17}\N{U+0e35}\N{U+0e48} d MMM",
      MMMEd => "E d MMM",
      MMMMEEEEd => "EEEE\N{U+0e17}\N{U+0e35}\N{U+0e48} d MMMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEEEEd => "EEEE\N{U+0e17}\N{U+0e35}\N{U+0e48} d MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM G y",
      yMMMMEEEEd => "EEEE\N{U+0e17}\N{U+0e35}\N{U+0e48} d MMMM G y",
      yMMMMEd => "E d MMMM G y",
      yMMMMd => "d MMMM G y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ G y"
    },
    code => "th",
    date_format_full => "EEEE\N{U+0e17}\N{U+0e35}\N{U+0e48} d MMMM G y",
    date_format_long => "d MMMM G y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0e08}.",
      "\N{U+0e2d}.",
      "\N{U+0e1e}.",
      "\N{U+0e1e}\N{U+0e24}.",
      "\N{U+0e28}.",
      "\N{U+0e2a}.",
      "\N{U+0e2d}\N{U+0e32}."
    ],
    day_format_narrow => [
      "\N{U+0e08}",
      "\N{U+0e2d}",
      "\N{U+0e1e}",
      "\N{U+0e1e}\N{U+0e24}",
      "\N{U+0e28}",
      "\N{U+0e2a}",
      "\N{U+0e2d}\N{U+0e32}"
    ],
    day_format_wide => [
      "\N{U+0e27}\N{U+0e31}\N{U+0e19}\N{U+0e08}\N{U+0e31}\N{U+0e19}\N{U+0e17}\N{U+0e23}\N{U+0e4c}",
      "\N{U+0e27}\N{U+0e31}\N{U+0e19}\N{U+0e2d}\N{U+0e31}\N{U+0e07}\N{U+0e04}\N{U+0e32}\N{U+0e23}",
      "\N{U+0e27}\N{U+0e31}\N{U+0e19}\N{U+0e1e}\N{U+0e38}\N{U+0e18}",
      "\N{U+0e27}\N{U+0e31}\N{U+0e19}\N{U+0e1e}\N{U+0e24}\N{U+0e2b}\N{U+0e31}\N{U+0e2a}\N{U+0e1a}\N{U+0e14}\N{U+0e35}",
      "\N{U+0e27}\N{U+0e31}\N{U+0e19}\N{U+0e28}\N{U+0e38}\N{U+0e01}\N{U+0e23}\N{U+0e4c}",
      "\N{U+0e27}\N{U+0e31}\N{U+0e19}\N{U+0e40}\N{U+0e2a}\N{U+0e32}\N{U+0e23}\N{U+0e4c}",
      "\N{U+0e27}\N{U+0e31}\N{U+0e19}\N{U+0e2d}\N{U+0e32}\N{U+0e17}\N{U+0e34}\N{U+0e15}\N{U+0e22}\N{U+0e4c}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0e08}.",
      "\N{U+0e2d}.",
      "\N{U+0e1e}.",
      "\N{U+0e1e}\N{U+0e24}.",
      "\N{U+0e28}.",
      "\N{U+0e2a}.",
      "\N{U+0e2d}\N{U+0e32}."
    ],
    day_stand_alone_narrow => [
      "\N{U+0e08}",
      "\N{U+0e2d}",
      "\N{U+0e1e}",
      "\N{U+0e1e}\N{U+0e24}",
      "\N{U+0e28}",
      "\N{U+0e2a}",
      "\N{U+0e2d}\N{U+0e32}"
    ],
    day_stand_alone_wide => [
      "\N{U+0e27}\N{U+0e31}\N{U+0e19}\N{U+0e08}\N{U+0e31}\N{U+0e19}\N{U+0e17}\N{U+0e23}\N{U+0e4c}",
      "\N{U+0e27}\N{U+0e31}\N{U+0e19}\N{U+0e2d}\N{U+0e31}\N{U+0e07}\N{U+0e04}\N{U+0e32}\N{U+0e23}",
      "\N{U+0e27}\N{U+0e31}\N{U+0e19}\N{U+0e1e}\N{U+0e38}\N{U+0e18}",
      "\N{U+0e27}\N{U+0e31}\N{U+0e19}\N{U+0e1e}\N{U+0e24}\N{U+0e2b}\N{U+0e31}\N{U+0e2a}\N{U+0e1a}\N{U+0e14}\N{U+0e35}",
      "\N{U+0e27}\N{U+0e31}\N{U+0e19}\N{U+0e28}\N{U+0e38}\N{U+0e01}\N{U+0e23}\N{U+0e4c}",
      "\N{U+0e27}\N{U+0e31}\N{U+0e19}\N{U+0e40}\N{U+0e2a}\N{U+0e32}\N{U+0e23}\N{U+0e4c}",
      "\N{U+0e27}\N{U+0e31}\N{U+0e19}\N{U+0e2d}\N{U+0e32}\N{U+0e17}\N{U+0e34}\N{U+0e15}\N{U+0e22}\N{U+0e4c}"
    ],
    era_abbreviated => [
      "\N{U+0e1b}\N{U+0e35}\N{U+0e01}\N{U+0e48}\N{U+0e2d}\N{U+0e19} \N{U+0e04}.\N{U+0e28}.",
      "\N{U+0e04}.\N{U+0e28}."
    ],
    era_narrow => [
      "\N{U+0e01}\N{U+0e48}\N{U+0e2d}\N{U+0e19} \N{U+0e04}.\N{U+0e28}.",
      "\N{U+0e04}.\N{U+0e28}."
    ],
    era_wide => [
      "\N{U+0e1b}\N{U+0e35}\N{U+0e01}\N{U+0e48}\N{U+0e2d}\N{U+0e19}\N{U+0e04}\N{U+0e23}\N{U+0e34}\N{U+0e2a}\N{U+0e15}\N{U+0e4c}\N{U+0e28}\N{U+0e31}\N{U+0e01}\N{U+0e23}\N{U+0e32}\N{U+0e0a}",
      "\N{U+0e04}\N{U+0e23}\N{U+0e34}\N{U+0e2a}\N{U+0e15}\N{U+0e4c}\N{U+0e28}\N{U+0e31}\N{U+0e01}\N{U+0e23}\N{U+0e32}\N{U+0e0a}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Thai",
    month_format_abbreviated => [
      "\N{U+0e21}.\N{U+0e04}.",
      "\N{U+0e01}.\N{U+0e1e}.",
      "\N{U+0e21}\N{U+0e35}.\N{U+0e04}.",
      "\N{U+0e40}\N{U+0e21}.\N{U+0e22}.",
      "\N{U+0e1e}.\N{U+0e04}.",
      "\N{U+0e21}\N{U+0e34}.\N{U+0e22}.",
      "\N{U+0e01}.\N{U+0e04}.",
      "\N{U+0e2a}.\N{U+0e04}.",
      "\N{U+0e01}.\N{U+0e22}.",
      "\N{U+0e15}.\N{U+0e04}.",
      "\N{U+0e1e}.\N{U+0e22}.",
      "\N{U+0e18}.\N{U+0e04}."
    ],
    month_format_narrow => [
      "\N{U+0e21}.\N{U+0e04}.",
      "\N{U+0e01}.\N{U+0e1e}.",
      "\N{U+0e21}\N{U+0e35}.\N{U+0e04}.",
      "\N{U+0e40}\N{U+0e21}.\N{U+0e22}.",
      "\N{U+0e1e}.\N{U+0e04}.",
      "\N{U+0e21}\N{U+0e34}.\N{U+0e22}.",
      "\N{U+0e01}.\N{U+0e04}.",
      "\N{U+0e2a}.\N{U+0e04}.",
      "\N{U+0e01}.\N{U+0e22}.",
      "\N{U+0e15}.\N{U+0e04}.",
      "\N{U+0e1e}.\N{U+0e22}.",
      "\N{U+0e18}.\N{U+0e04}."
    ],
    month_format_wide => [
      "\N{U+0e21}\N{U+0e01}\N{U+0e23}\N{U+0e32}\N{U+0e04}\N{U+0e21}",
      "\N{U+0e01}\N{U+0e38}\N{U+0e21}\N{U+0e20}\N{U+0e32}\N{U+0e1e}\N{U+0e31}\N{U+0e19}\N{U+0e18}\N{U+0e4c}",
      "\N{U+0e21}\N{U+0e35}\N{U+0e19}\N{U+0e32}\N{U+0e04}\N{U+0e21}",
      "\N{U+0e40}\N{U+0e21}\N{U+0e29}\N{U+0e32}\N{U+0e22}\N{U+0e19}",
      "\N{U+0e1e}\N{U+0e24}\N{U+0e29}\N{U+0e20}\N{U+0e32}\N{U+0e04}\N{U+0e21}",
      "\N{U+0e21}\N{U+0e34}\N{U+0e16}\N{U+0e38}\N{U+0e19}\N{U+0e32}\N{U+0e22}\N{U+0e19}",
      "\N{U+0e01}\N{U+0e23}\N{U+0e01}\N{U+0e0e}\N{U+0e32}\N{U+0e04}\N{U+0e21}",
      "\N{U+0e2a}\N{U+0e34}\N{U+0e07}\N{U+0e2b}\N{U+0e32}\N{U+0e04}\N{U+0e21}",
      "\N{U+0e01}\N{U+0e31}\N{U+0e19}\N{U+0e22}\N{U+0e32}\N{U+0e22}\N{U+0e19}",
      "\N{U+0e15}\N{U+0e38}\N{U+0e25}\N{U+0e32}\N{U+0e04}\N{U+0e21}",
      "\N{U+0e1e}\N{U+0e24}\N{U+0e28}\N{U+0e08}\N{U+0e34}\N{U+0e01}\N{U+0e32}\N{U+0e22}\N{U+0e19}",
      "\N{U+0e18}\N{U+0e31}\N{U+0e19}\N{U+0e27}\N{U+0e32}\N{U+0e04}\N{U+0e21}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0e21}.\N{U+0e04}.",
      "\N{U+0e01}.\N{U+0e1e}.",
      "\N{U+0e21}\N{U+0e35}.\N{U+0e04}.",
      "\N{U+0e40}\N{U+0e21}.\N{U+0e22}.",
      "\N{U+0e1e}.\N{U+0e04}.",
      "\N{U+0e21}\N{U+0e34}.\N{U+0e22}.",
      "\N{U+0e01}.\N{U+0e04}.",
      "\N{U+0e2a}.\N{U+0e04}.",
      "\N{U+0e01}.\N{U+0e22}.",
      "\N{U+0e15}.\N{U+0e04}.",
      "\N{U+0e1e}.\N{U+0e22}.",
      "\N{U+0e18}.\N{U+0e04}."
    ],
    month_stand_alone_narrow => [
      "\N{U+0e21}.\N{U+0e04}.",
      "\N{U+0e01}.\N{U+0e1e}.",
      "\N{U+0e21}\N{U+0e35}.\N{U+0e04}.",
      "\N{U+0e40}\N{U+0e21}.\N{U+0e22}.",
      "\N{U+0e1e}.\N{U+0e04}.",
      "\N{U+0e21}\N{U+0e34}.\N{U+0e22}.",
      "\N{U+0e01}.\N{U+0e04}.",
      "\N{U+0e2a}.\N{U+0e04}.",
      "\N{U+0e01}.\N{U+0e22}.",
      "\N{U+0e15}.\N{U+0e04}.",
      "\N{U+0e1e}.\N{U+0e22}.",
      "\N{U+0e18}.\N{U+0e04}."
    ],
    month_stand_alone_wide => [
      "\N{U+0e21}\N{U+0e01}\N{U+0e23}\N{U+0e32}\N{U+0e04}\N{U+0e21}",
      "\N{U+0e01}\N{U+0e38}\N{U+0e21}\N{U+0e20}\N{U+0e32}\N{U+0e1e}\N{U+0e31}\N{U+0e19}\N{U+0e18}\N{U+0e4c}",
      "\N{U+0e21}\N{U+0e35}\N{U+0e19}\N{U+0e32}\N{U+0e04}\N{U+0e21}",
      "\N{U+0e40}\N{U+0e21}\N{U+0e29}\N{U+0e32}\N{U+0e22}\N{U+0e19}",
      "\N{U+0e1e}\N{U+0e24}\N{U+0e29}\N{U+0e20}\N{U+0e32}\N{U+0e04}\N{U+0e21}",
      "\N{U+0e21}\N{U+0e34}\N{U+0e16}\N{U+0e38}\N{U+0e19}\N{U+0e32}\N{U+0e22}\N{U+0e19}",
      "\N{U+0e01}\N{U+0e23}\N{U+0e01}\N{U+0e0e}\N{U+0e32}\N{U+0e04}\N{U+0e21}",
      "\N{U+0e2a}\N{U+0e34}\N{U+0e07}\N{U+0e2b}\N{U+0e32}\N{U+0e04}\N{U+0e21}",
      "\N{U+0e01}\N{U+0e31}\N{U+0e19}\N{U+0e22}\N{U+0e32}\N{U+0e22}\N{U+0e19}",
      "\N{U+0e15}\N{U+0e38}\N{U+0e25}\N{U+0e32}\N{U+0e04}\N{U+0e21}",
      "\N{U+0e1e}\N{U+0e24}\N{U+0e28}\N{U+0e08}\N{U+0e34}\N{U+0e01}\N{U+0e32}\N{U+0e22}\N{U+0e19}",
      "\N{U+0e18}\N{U+0e31}\N{U+0e19}\N{U+0e27}\N{U+0e32}\N{U+0e04}\N{U+0e21}"
    ],
    name => "Thai",
    native_language => "\N{U+0e44}\N{U+0e17}\N{U+0e22}",
    native_name => "\N{U+0e44}\N{U+0e17}\N{U+0e22}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 1",
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 2",
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 3",
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 1",
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 2",
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 3",
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 4"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 1",
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 2",
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 3",
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 1",
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 2",
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 3",
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "H \N{U+0e19}\N{U+0e32}\N{U+0e2c}\N{U+0e34}\N{U+0e01}\N{U+0e32} mm \N{U+0e19}\N{U+0e32}\N{U+0e17}\N{U+0e35} ss \N{U+0e27}\N{U+0e34}\N{U+0e19}\N{U+0e32}\N{U+0e17}\N{U+0e35} zzzz",
    time_format_long => "H \N{U+0e19}\N{U+0e32}\N{U+0e2c}\N{U+0e34}\N{U+0e01}\N{U+0e32} mm \N{U+0e19}\N{U+0e32}\N{U+0e17}\N{U+0e35} ss \N{U+0e27}\N{U+0e34}\N{U+0e19}\N{U+0e32}\N{U+0e17}\N{U+0e35} z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ th-TH ]__
  {
    am_pm_abbreviated => [
      "\N{U+0e01}\N{U+0e48}\N{U+0e2d}\N{U+0e19}\N{U+0e40}\N{U+0e17}\N{U+0e35}\N{U+0e48}\N{U+0e22}\N{U+0e07}",
      "\N{U+0e2b}\N{U+0e25}\N{U+0e31}\N{U+0e07}\N{U+0e40}\N{U+0e17}\N{U+0e35}\N{U+0e48}\N{U+0e22}\N{U+0e07}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm \N{U+0e19}.",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "MMM G y",
      GyMMMEEEEd => "EEEE\N{U+0e17}\N{U+0e35}\N{U+0e48} d MMM G y",
      GyMMMEd => "E d MMM G y",
      GyMMMd => "d MMM G y",
      H => "HH",
      Hm => "HH:mm \N{U+0e19}.",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEEEEd => "EEEE\N{U+0e17}\N{U+0e35}\N{U+0e48} d MMM",
      MMMEd => "E d MMM",
      MMMMEEEEd => "EEEE\N{U+0e17}\N{U+0e35}\N{U+0e48} d MMMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEEEEd => "EEEE\N{U+0e17}\N{U+0e35}\N{U+0e48} d MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM G y",
      yMMMMEEEEd => "EEEE\N{U+0e17}\N{U+0e35}\N{U+0e48} d MMMM G y",
      yMMMMEd => "E d MMMM G y",
      yMMMMd => "d MMMM G y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ G y"
    },
    code => "th-TH",
    date_format_full => "EEEE\N{U+0e17}\N{U+0e35}\N{U+0e48} d MMMM G y",
    date_format_long => "d MMMM G y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0e08}.",
      "\N{U+0e2d}.",
      "\N{U+0e1e}.",
      "\N{U+0e1e}\N{U+0e24}.",
      "\N{U+0e28}.",
      "\N{U+0e2a}.",
      "\N{U+0e2d}\N{U+0e32}."
    ],
    day_format_narrow => [
      "\N{U+0e08}",
      "\N{U+0e2d}",
      "\N{U+0e1e}",
      "\N{U+0e1e}\N{U+0e24}",
      "\N{U+0e28}",
      "\N{U+0e2a}",
      "\N{U+0e2d}\N{U+0e32}"
    ],
    day_format_wide => [
      "\N{U+0e27}\N{U+0e31}\N{U+0e19}\N{U+0e08}\N{U+0e31}\N{U+0e19}\N{U+0e17}\N{U+0e23}\N{U+0e4c}",
      "\N{U+0e27}\N{U+0e31}\N{U+0e19}\N{U+0e2d}\N{U+0e31}\N{U+0e07}\N{U+0e04}\N{U+0e32}\N{U+0e23}",
      "\N{U+0e27}\N{U+0e31}\N{U+0e19}\N{U+0e1e}\N{U+0e38}\N{U+0e18}",
      "\N{U+0e27}\N{U+0e31}\N{U+0e19}\N{U+0e1e}\N{U+0e24}\N{U+0e2b}\N{U+0e31}\N{U+0e2a}\N{U+0e1a}\N{U+0e14}\N{U+0e35}",
      "\N{U+0e27}\N{U+0e31}\N{U+0e19}\N{U+0e28}\N{U+0e38}\N{U+0e01}\N{U+0e23}\N{U+0e4c}",
      "\N{U+0e27}\N{U+0e31}\N{U+0e19}\N{U+0e40}\N{U+0e2a}\N{U+0e32}\N{U+0e23}\N{U+0e4c}",
      "\N{U+0e27}\N{U+0e31}\N{U+0e19}\N{U+0e2d}\N{U+0e32}\N{U+0e17}\N{U+0e34}\N{U+0e15}\N{U+0e22}\N{U+0e4c}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0e08}.",
      "\N{U+0e2d}.",
      "\N{U+0e1e}.",
      "\N{U+0e1e}\N{U+0e24}.",
      "\N{U+0e28}.",
      "\N{U+0e2a}.",
      "\N{U+0e2d}\N{U+0e32}."
    ],
    day_stand_alone_narrow => [
      "\N{U+0e08}",
      "\N{U+0e2d}",
      "\N{U+0e1e}",
      "\N{U+0e1e}\N{U+0e24}",
      "\N{U+0e28}",
      "\N{U+0e2a}",
      "\N{U+0e2d}\N{U+0e32}"
    ],
    day_stand_alone_wide => [
      "\N{U+0e27}\N{U+0e31}\N{U+0e19}\N{U+0e08}\N{U+0e31}\N{U+0e19}\N{U+0e17}\N{U+0e23}\N{U+0e4c}",
      "\N{U+0e27}\N{U+0e31}\N{U+0e19}\N{U+0e2d}\N{U+0e31}\N{U+0e07}\N{U+0e04}\N{U+0e32}\N{U+0e23}",
      "\N{U+0e27}\N{U+0e31}\N{U+0e19}\N{U+0e1e}\N{U+0e38}\N{U+0e18}",
      "\N{U+0e27}\N{U+0e31}\N{U+0e19}\N{U+0e1e}\N{U+0e24}\N{U+0e2b}\N{U+0e31}\N{U+0e2a}\N{U+0e1a}\N{U+0e14}\N{U+0e35}",
      "\N{U+0e27}\N{U+0e31}\N{U+0e19}\N{U+0e28}\N{U+0e38}\N{U+0e01}\N{U+0e23}\N{U+0e4c}",
      "\N{U+0e27}\N{U+0e31}\N{U+0e19}\N{U+0e40}\N{U+0e2a}\N{U+0e32}\N{U+0e23}\N{U+0e4c}",
      "\N{U+0e27}\N{U+0e31}\N{U+0e19}\N{U+0e2d}\N{U+0e32}\N{U+0e17}\N{U+0e34}\N{U+0e15}\N{U+0e22}\N{U+0e4c}"
    ],
    era_abbreviated => [
      "\N{U+0e1b}\N{U+0e35}\N{U+0e01}\N{U+0e48}\N{U+0e2d}\N{U+0e19} \N{U+0e04}.\N{U+0e28}.",
      "\N{U+0e04}.\N{U+0e28}."
    ],
    era_narrow => [
      "\N{U+0e01}\N{U+0e48}\N{U+0e2d}\N{U+0e19} \N{U+0e04}.\N{U+0e28}.",
      "\N{U+0e04}.\N{U+0e28}."
    ],
    era_wide => [
      "\N{U+0e1b}\N{U+0e35}\N{U+0e01}\N{U+0e48}\N{U+0e2d}\N{U+0e19}\N{U+0e04}\N{U+0e23}\N{U+0e34}\N{U+0e2a}\N{U+0e15}\N{U+0e4c}\N{U+0e28}\N{U+0e31}\N{U+0e01}\N{U+0e23}\N{U+0e32}\N{U+0e0a}",
      "\N{U+0e04}\N{U+0e23}\N{U+0e34}\N{U+0e2a}\N{U+0e15}\N{U+0e4c}\N{U+0e28}\N{U+0e31}\N{U+0e01}\N{U+0e23}\N{U+0e32}\N{U+0e0a}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %e %b %Ey %H:%M:%S %Z",
    glibc_date_format => "%d/%m/%Ey",
    glibc_datetime_format => "%a %e %b %Ey, %H:%M:%S",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Thai",
    month_format_abbreviated => [
      "\N{U+0e21}.\N{U+0e04}.",
      "\N{U+0e01}.\N{U+0e1e}.",
      "\N{U+0e21}\N{U+0e35}.\N{U+0e04}.",
      "\N{U+0e40}\N{U+0e21}.\N{U+0e22}.",
      "\N{U+0e1e}.\N{U+0e04}.",
      "\N{U+0e21}\N{U+0e34}.\N{U+0e22}.",
      "\N{U+0e01}.\N{U+0e04}.",
      "\N{U+0e2a}.\N{U+0e04}.",
      "\N{U+0e01}.\N{U+0e22}.",
      "\N{U+0e15}.\N{U+0e04}.",
      "\N{U+0e1e}.\N{U+0e22}.",
      "\N{U+0e18}.\N{U+0e04}."
    ],
    month_format_narrow => [
      "\N{U+0e21}.\N{U+0e04}.",
      "\N{U+0e01}.\N{U+0e1e}.",
      "\N{U+0e21}\N{U+0e35}.\N{U+0e04}.",
      "\N{U+0e40}\N{U+0e21}.\N{U+0e22}.",
      "\N{U+0e1e}.\N{U+0e04}.",
      "\N{U+0e21}\N{U+0e34}.\N{U+0e22}.",
      "\N{U+0e01}.\N{U+0e04}.",
      "\N{U+0e2a}.\N{U+0e04}.",
      "\N{U+0e01}.\N{U+0e22}.",
      "\N{U+0e15}.\N{U+0e04}.",
      "\N{U+0e1e}.\N{U+0e22}.",
      "\N{U+0e18}.\N{U+0e04}."
    ],
    month_format_wide => [
      "\N{U+0e21}\N{U+0e01}\N{U+0e23}\N{U+0e32}\N{U+0e04}\N{U+0e21}",
      "\N{U+0e01}\N{U+0e38}\N{U+0e21}\N{U+0e20}\N{U+0e32}\N{U+0e1e}\N{U+0e31}\N{U+0e19}\N{U+0e18}\N{U+0e4c}",
      "\N{U+0e21}\N{U+0e35}\N{U+0e19}\N{U+0e32}\N{U+0e04}\N{U+0e21}",
      "\N{U+0e40}\N{U+0e21}\N{U+0e29}\N{U+0e32}\N{U+0e22}\N{U+0e19}",
      "\N{U+0e1e}\N{U+0e24}\N{U+0e29}\N{U+0e20}\N{U+0e32}\N{U+0e04}\N{U+0e21}",
      "\N{U+0e21}\N{U+0e34}\N{U+0e16}\N{U+0e38}\N{U+0e19}\N{U+0e32}\N{U+0e22}\N{U+0e19}",
      "\N{U+0e01}\N{U+0e23}\N{U+0e01}\N{U+0e0e}\N{U+0e32}\N{U+0e04}\N{U+0e21}",
      "\N{U+0e2a}\N{U+0e34}\N{U+0e07}\N{U+0e2b}\N{U+0e32}\N{U+0e04}\N{U+0e21}",
      "\N{U+0e01}\N{U+0e31}\N{U+0e19}\N{U+0e22}\N{U+0e32}\N{U+0e22}\N{U+0e19}",
      "\N{U+0e15}\N{U+0e38}\N{U+0e25}\N{U+0e32}\N{U+0e04}\N{U+0e21}",
      "\N{U+0e1e}\N{U+0e24}\N{U+0e28}\N{U+0e08}\N{U+0e34}\N{U+0e01}\N{U+0e32}\N{U+0e22}\N{U+0e19}",
      "\N{U+0e18}\N{U+0e31}\N{U+0e19}\N{U+0e27}\N{U+0e32}\N{U+0e04}\N{U+0e21}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0e21}.\N{U+0e04}.",
      "\N{U+0e01}.\N{U+0e1e}.",
      "\N{U+0e21}\N{U+0e35}.\N{U+0e04}.",
      "\N{U+0e40}\N{U+0e21}.\N{U+0e22}.",
      "\N{U+0e1e}.\N{U+0e04}.",
      "\N{U+0e21}\N{U+0e34}.\N{U+0e22}.",
      "\N{U+0e01}.\N{U+0e04}.",
      "\N{U+0e2a}.\N{U+0e04}.",
      "\N{U+0e01}.\N{U+0e22}.",
      "\N{U+0e15}.\N{U+0e04}.",
      "\N{U+0e1e}.\N{U+0e22}.",
      "\N{U+0e18}.\N{U+0e04}."
    ],
    month_stand_alone_narrow => [
      "\N{U+0e21}.\N{U+0e04}.",
      "\N{U+0e01}.\N{U+0e1e}.",
      "\N{U+0e21}\N{U+0e35}.\N{U+0e04}.",
      "\N{U+0e40}\N{U+0e21}.\N{U+0e22}.",
      "\N{U+0e1e}.\N{U+0e04}.",
      "\N{U+0e21}\N{U+0e34}.\N{U+0e22}.",
      "\N{U+0e01}.\N{U+0e04}.",
      "\N{U+0e2a}.\N{U+0e04}.",
      "\N{U+0e01}.\N{U+0e22}.",
      "\N{U+0e15}.\N{U+0e04}.",
      "\N{U+0e1e}.\N{U+0e22}.",
      "\N{U+0e18}.\N{U+0e04}."
    ],
    month_stand_alone_wide => [
      "\N{U+0e21}\N{U+0e01}\N{U+0e23}\N{U+0e32}\N{U+0e04}\N{U+0e21}",
      "\N{U+0e01}\N{U+0e38}\N{U+0e21}\N{U+0e20}\N{U+0e32}\N{U+0e1e}\N{U+0e31}\N{U+0e19}\N{U+0e18}\N{U+0e4c}",
      "\N{U+0e21}\N{U+0e35}\N{U+0e19}\N{U+0e32}\N{U+0e04}\N{U+0e21}",
      "\N{U+0e40}\N{U+0e21}\N{U+0e29}\N{U+0e32}\N{U+0e22}\N{U+0e19}",
      "\N{U+0e1e}\N{U+0e24}\N{U+0e29}\N{U+0e20}\N{U+0e32}\N{U+0e04}\N{U+0e21}",
      "\N{U+0e21}\N{U+0e34}\N{U+0e16}\N{U+0e38}\N{U+0e19}\N{U+0e32}\N{U+0e22}\N{U+0e19}",
      "\N{U+0e01}\N{U+0e23}\N{U+0e01}\N{U+0e0e}\N{U+0e32}\N{U+0e04}\N{U+0e21}",
      "\N{U+0e2a}\N{U+0e34}\N{U+0e07}\N{U+0e2b}\N{U+0e32}\N{U+0e04}\N{U+0e21}",
      "\N{U+0e01}\N{U+0e31}\N{U+0e19}\N{U+0e22}\N{U+0e32}\N{U+0e22}\N{U+0e19}",
      "\N{U+0e15}\N{U+0e38}\N{U+0e25}\N{U+0e32}\N{U+0e04}\N{U+0e21}",
      "\N{U+0e1e}\N{U+0e24}\N{U+0e28}\N{U+0e08}\N{U+0e34}\N{U+0e01}\N{U+0e32}\N{U+0e22}\N{U+0e19}",
      "\N{U+0e18}\N{U+0e31}\N{U+0e19}\N{U+0e27}\N{U+0e32}\N{U+0e04}\N{U+0e21}"
    ],
    name => "Thai Thailand",
    native_language => "\N{U+0e44}\N{U+0e17}\N{U+0e22}",
    native_name => "\N{U+0e44}\N{U+0e17}\N{U+0e22} \N{U+0e44}\N{U+0e17}\N{U+0e22}",
    native_script => undef,
    native_territory => "\N{U+0e44}\N{U+0e17}\N{U+0e22}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 1",
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 2",
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 3",
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 1",
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 2",
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 3",
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 4"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 1",
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 2",
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 3",
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 1",
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 2",
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 3",
      "\N{U+0e44}\N{U+0e15}\N{U+0e23}\N{U+0e21}\N{U+0e32}\N{U+0e2a} 4"
    ],
    script => undef,
    territory => "Thailand",
    time_format_full => "H \N{U+0e19}\N{U+0e32}\N{U+0e2c}\N{U+0e34}\N{U+0e01}\N{U+0e32} mm \N{U+0e19}\N{U+0e32}\N{U+0e17}\N{U+0e35} ss \N{U+0e27}\N{U+0e34}\N{U+0e19}\N{U+0e32}\N{U+0e17}\N{U+0e35} zzzz",
    time_format_long => "H \N{U+0e19}\N{U+0e32}\N{U+0e2c}\N{U+0e34}\N{U+0e01}\N{U+0e32} mm \N{U+0e19}\N{U+0e32}\N{U+0e17}\N{U+0e35} ss \N{U+0e27}\N{U+0e34}\N{U+0e19}\N{U+0e32}\N{U+0e17}\N{U+0e35} z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ti ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMMdd => "dd MMMM",
      MMMd => "MMM d",
      MMdd => "dd/MM",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMM => "MM/y",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "y QQQQ"
    },
    code => "ti",
    date_format_full => "EEEE\N{U+1363} dd MMMM \N{U+1218}\N{U+12d3}\N{U+120d}\N{U+1272} y G",
    date_format_long => "dd MMMM y",
    date_format_medium => "dd-MMM-y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+1230}\N{U+1291}\N{U+12ed}",
      "\N{U+1220}\N{U+1209}\N{U+1235}",
      "\N{U+1228}\N{U+1261}\N{U+12d5}",
      "\N{U+1283}\N{U+1219}\N{U+1235}",
      "\N{U+12d3}\N{U+122d}\N{U+1262}",
      "\N{U+1240}\N{U+12f3}\N{U+121d}",
      "\N{U+1230}\N{U+1295}\N{U+1260}\N{U+1275}"
    ],
    day_format_narrow => [
      "\N{U+1230}",
      "\N{U+1220}",
      "\N{U+1228}",
      "\N{U+1283}",
      "\N{U+12d3}",
      "\N{U+1240}",
      "\N{U+1230}"
    ],
    day_format_wide => [
      "\N{U+1230}\N{U+1291}\N{U+12ed}",
      "\N{U+1220}\N{U+1209}\N{U+1235}",
      "\N{U+1228}\N{U+1261}\N{U+12d5}",
      "\N{U+1283}\N{U+1219}\N{U+1235}",
      "\N{U+12d3}\N{U+122d}\N{U+1262}",
      "\N{U+1240}\N{U+12f3}\N{U+121d}",
      "\N{U+1230}\N{U+1295}\N{U+1260}\N{U+1275}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+1230}\N{U+1291}\N{U+12ed}",
      "\N{U+1220}\N{U+1209}\N{U+1235}",
      "\N{U+1228}\N{U+1261}\N{U+12d5}",
      "\N{U+1283}\N{U+1219}\N{U+1235}",
      "\N{U+12d3}\N{U+122d}\N{U+1262}",
      "\N{U+1240}\N{U+12f3}\N{U+121d}",
      "\N{U+1230}\N{U+1295}\N{U+1260}\N{U+1275}"
    ],
    day_stand_alone_narrow => [
      "\N{U+1230}",
      "\N{U+1220}",
      "\N{U+1228}",
      "\N{U+1283}",
      "\N{U+12d3}",
      "\N{U+1240}",
      "\N{U+1230}"
    ],
    day_stand_alone_wide => [
      "\N{U+1230}\N{U+1291}\N{U+12ed}",
      "\N{U+1220}\N{U+1209}\N{U+1235}",
      "\N{U+1228}\N{U+1261}\N{U+12d5}",
      "\N{U+1283}\N{U+1219}\N{U+1235}",
      "\N{U+12d3}\N{U+122d}\N{U+1262}",
      "\N{U+1240}\N{U+12f3}\N{U+121d}",
      "\N{U+1230}\N{U+1295}\N{U+1260}\N{U+1275}"
    ],
    era_abbreviated => [
      "\N{U+12d3}/\N{U+12d3}",
      "\N{U+12d3}/\N{U+121d}"
    ],
    era_narrow => [
      "\N{U+12d3}/\N{U+12d3}",
      "\N{U+12d3}/\N{U+121d}"
    ],
    era_wide => [
      "\N{U+12d3}/\N{U+12d3}",
      "\N{U+12d3}/\N{U+121d}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Tigrinya",
    month_format_abbreviated => [
      "\N{U+1303}\N{U+1295}\N{U+12e9}",
      "\N{U+134c}\N{U+1265}\N{U+1229}",
      "\N{U+121b}\N{U+122d}\N{U+127d}",
      "\N{U+12a4}\N{U+1355}\N{U+1228}",
      "\N{U+121c}\N{U+12ed}",
      "\N{U+1301}\N{U+1295}",
      "\N{U+1301}\N{U+120b}\N{U+12ed}",
      "\N{U+12a6}\N{U+1308}\N{U+1235}",
      "\N{U+1234}\N{U+1355}\N{U+1274}",
      "\N{U+12a6}\N{U+12ad}\N{U+1270}",
      "\N{U+1296}\N{U+126c}\N{U+121d}",
      "\N{U+12f2}\N{U+1234}\N{U+121d}"
    ],
    month_format_narrow => [
      "\N{U+1303}",
      "\N{U+134c}",
      "\N{U+121b}",
      "\N{U+12a4}",
      "\N{U+121c}",
      "\N{U+1301}",
      "\N{U+1301}",
      "\N{U+12a6}",
      "\N{U+1234}",
      "\N{U+12a6}",
      "\N{U+1296}",
      "\N{U+12f2}"
    ],
    month_format_wide => [
      "\N{U+1303}\N{U+1295}\N{U+12e9}\N{U+12c8}\N{U+122a}",
      "\N{U+134c}\N{U+1265}\N{U+1229}\N{U+12c8}\N{U+122a}",
      "\N{U+121b}\N{U+122d}\N{U+127d}",
      "\N{U+12a4}\N{U+1355}\N{U+1228}\N{U+120d}",
      "\N{U+121c}\N{U+12ed}",
      "\N{U+1301}\N{U+1295}",
      "\N{U+1301}\N{U+120b}\N{U+12ed}",
      "\N{U+12a6}\N{U+1308}\N{U+1235}\N{U+1275}",
      "\N{U+1234}\N{U+1355}\N{U+1274}\N{U+121d}\N{U+1260}\N{U+122d}",
      "\N{U+12a6}\N{U+12ad}\N{U+1270}\N{U+12cd}\N{U+1260}\N{U+122d}",
      "\N{U+1296}\N{U+126c}\N{U+121d}\N{U+1260}\N{U+122d}",
      "\N{U+12f2}\N{U+1234}\N{U+121d}\N{U+1260}\N{U+122d}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+1303}\N{U+1295}\N{U+12e9}",
      "\N{U+134c}\N{U+1265}\N{U+1229}",
      "\N{U+121b}\N{U+122d}\N{U+127d}",
      "\N{U+12a4}\N{U+1355}\N{U+1228}",
      "\N{U+121c}\N{U+12ed}",
      "\N{U+1301}\N{U+1295}",
      "\N{U+1301}\N{U+120b}\N{U+12ed}",
      "\N{U+12a6}\N{U+1308}\N{U+1235}",
      "\N{U+1234}\N{U+1355}\N{U+1274}",
      "\N{U+12a6}\N{U+12ad}\N{U+1270}",
      "\N{U+1296}\N{U+126c}\N{U+121d}",
      "\N{U+12f2}\N{U+1234}\N{U+121d}"
    ],
    month_stand_alone_narrow => [
      "\N{U+1303}",
      "\N{U+134c}",
      "\N{U+121b}",
      "\N{U+12a4}",
      "\N{U+121c}",
      "\N{U+1301}",
      "\N{U+1301}",
      "\N{U+12a6}",
      "\N{U+1234}",
      "\N{U+12a6}",
      "\N{U+1296}",
      "\N{U+12f2}"
    ],
    month_stand_alone_wide => [
      "\N{U+1303}\N{U+1295}\N{U+12e9}\N{U+12c8}\N{U+122a}",
      "\N{U+134c}\N{U+1265}\N{U+1229}\N{U+12c8}\N{U+122a}",
      "\N{U+121b}\N{U+122d}\N{U+127d}",
      "\N{U+12a4}\N{U+1355}\N{U+1228}\N{U+120d}",
      "\N{U+121c}\N{U+12ed}",
      "\N{U+1301}\N{U+1295}",
      "\N{U+1301}\N{U+120b}\N{U+12ed}",
      "\N{U+12a6}\N{U+1308}\N{U+1235}\N{U+1275}",
      "\N{U+1234}\N{U+1355}\N{U+1274}\N{U+121d}\N{U+1260}\N{U+122d}",
      "\N{U+12a6}\N{U+12ad}\N{U+1270}\N{U+12cd}\N{U+1260}\N{U+122d}",
      "\N{U+1296}\N{U+126c}\N{U+121d}\N{U+1260}\N{U+122d}",
      "\N{U+12f2}\N{U+1234}\N{U+121d}\N{U+1260}\N{U+122d}"
    ],
    name => "Tigrinya",
    native_language => "\N{U+1275}\N{U+130d}\N{U+122d}\N{U+129b}",
    native_name => "\N{U+1275}\N{U+130d}\N{U+122d}\N{U+129b}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ti-ER ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMMdd => "dd MMMM",
      MMMd => "MMM d",
      MMdd => "dd/MM",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMM => "MM/y",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "y QQQQ"
    },
    code => "ti-ER",
    date_format_full => "EEEE\N{U+1361} dd MMMM \N{U+1218}\N{U+12d3}\N{U+120d}\N{U+1272} y G",
    date_format_long => "dd MMMM y",
    date_format_medium => "dd-MMM-y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+1230}\N{U+1291}\N{U+12ed}",
      "\N{U+1230}\N{U+1209}\N{U+1235}",
      "\N{U+1228}\N{U+1261}\N{U+12d5}",
      "\N{U+1213}\N{U+1219}\N{U+1235}",
      "\N{U+12d3}\N{U+122d}\N{U+1262}",
      "\N{U+1240}\N{U+12f3}\N{U+121d}",
      "\N{U+1230}\N{U+1295}\N{U+1260}\N{U+1275}"
    ],
    day_format_narrow => [
      "\N{U+1230}",
      "\N{U+1220}",
      "\N{U+1228}",
      "\N{U+1283}",
      "\N{U+12d3}",
      "\N{U+1240}",
      "\N{U+1230}"
    ],
    day_format_wide => [
      "\N{U+1230}\N{U+1291}\N{U+12ed}",
      "\N{U+1230}\N{U+1209}\N{U+1235}",
      "\N{U+1228}\N{U+1261}\N{U+12d5}",
      "\N{U+1213}\N{U+1219}\N{U+1235}",
      "\N{U+12d3}\N{U+122d}\N{U+1262}",
      "\N{U+1240}\N{U+12f3}\N{U+121d}",
      "\N{U+1230}\N{U+1295}\N{U+1260}\N{U+1275}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+1230}\N{U+1291}\N{U+12ed}",
      "\N{U+1230}\N{U+1209}\N{U+1235}",
      "\N{U+1228}\N{U+1261}\N{U+12d5}",
      "\N{U+1213}\N{U+1219}\N{U+1235}",
      "\N{U+12d3}\N{U+122d}\N{U+1262}",
      "\N{U+1240}\N{U+12f3}\N{U+121d}",
      "\N{U+1230}\N{U+1295}\N{U+1260}\N{U+1275}"
    ],
    day_stand_alone_narrow => [
      "\N{U+1230}",
      "\N{U+1220}",
      "\N{U+1228}",
      "\N{U+1283}",
      "\N{U+12d3}",
      "\N{U+1240}",
      "\N{U+1230}"
    ],
    day_stand_alone_wide => [
      "\N{U+1230}\N{U+1291}\N{U+12ed}",
      "\N{U+1230}\N{U+1209}\N{U+1235}",
      "\N{U+1228}\N{U+1261}\N{U+12d5}",
      "\N{U+1213}\N{U+1219}\N{U+1235}",
      "\N{U+12d3}\N{U+122d}\N{U+1262}",
      "\N{U+1240}\N{U+12f3}\N{U+121d}",
      "\N{U+1230}\N{U+1295}\N{U+1260}\N{U+1275}"
    ],
    era_abbreviated => [
      "\N{U+12d3}/\N{U+12d3}",
      "\N{U+12d3}/\N{U+121d}"
    ],
    era_narrow => [
      "\N{U+12d3}/\N{U+12d3}",
      "\N{U+12d3}/\N{U+121d}"
    ],
    era_wide => [
      "\N{U+12d3}/\N{U+12d3}",
      "\N{U+12d3}/\N{U+121d}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%A\N{U+1361} %B %e \N{U+1218}\N{U+12d3}\N{U+120d}\N{U+1272} %r %Z %Y \N{U+12d3}/\N{U+121d}",
    glibc_date_format => "%d/%m/%Y",
    glibc_datetime_format => "%A\N{U+1361} %B %e \N{U+1218}\N{U+12d3}\N{U+120d}\N{U+1272} %Y %r %Z",
    glibc_time_12_format => "%X %p",
    glibc_time_format => "%l:%M:%S",
    language => "Tigrinya",
    month_format_abbreviated => [
      "\N{U+1325}\N{U+122a}",
      "\N{U+1208}\N{U+12ab}\N{U+1272}",
      "\N{U+1218}\N{U+130b}\N{U+1262}",
      "\N{U+121a}\N{U+12eb}\N{U+12dd}",
      "\N{U+130d}\N{U+1295}\N{U+1266}",
      "\N{U+1230}\N{U+1290}",
      "\N{U+1213}\N{U+121d}\N{U+1208}",
      "\N{U+1290}\N{U+1213}\N{U+1230}",
      "\N{U+1218}\N{U+1235}\N{U+12a8}",
      "\N{U+1325}\N{U+1245}\N{U+121d}",
      "\N{U+1215}\N{U+12f3}\N{U+122d}",
      "\N{U+1273}\N{U+1215}\N{U+1233}"
    ],
    month_format_narrow => [
      "\N{U+1303}",
      "\N{U+134c}",
      "\N{U+121b}",
      "\N{U+12a4}",
      "\N{U+121c}",
      "\N{U+1301}",
      "\N{U+1301}",
      "\N{U+12a6}",
      "\N{U+1234}",
      "\N{U+12a6}",
      "\N{U+1296}",
      "\N{U+12f2}"
    ],
    month_format_wide => [
      "\N{U+1325}\N{U+122a}",
      "\N{U+1208}\N{U+12ab}\N{U+1272}\N{U+1275}",
      "\N{U+1218}\N{U+130b}\N{U+1262}\N{U+1275}",
      "\N{U+121a}\N{U+12eb}\N{U+12dd}\N{U+12eb}",
      "\N{U+130d}\N{U+1295}\N{U+1266}\N{U+1275}",
      "\N{U+1230}\N{U+1290}",
      "\N{U+1213}\N{U+121d}\N{U+1208}",
      "\N{U+1290}\N{U+1213}\N{U+1230}",
      "\N{U+1218}\N{U+1235}\N{U+12a8}\N{U+1228}\N{U+121d}",
      "\N{U+1325}\N{U+1245}\N{U+121d}\N{U+1272}",
      "\N{U+1215}\N{U+12f3}\N{U+122d}",
      "\N{U+1273}\N{U+1215}\N{U+1233}\N{U+1235}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+1325}\N{U+122a}",
      "\N{U+1208}\N{U+12ab}\N{U+1272}",
      "\N{U+1218}\N{U+130b}\N{U+1262}",
      "\N{U+121a}\N{U+12eb}\N{U+12dd}",
      "\N{U+130d}\N{U+1295}\N{U+1266}",
      "\N{U+1230}\N{U+1290}",
      "\N{U+1213}\N{U+121d}\N{U+1208}",
      "\N{U+1290}\N{U+1213}\N{U+1230}",
      "\N{U+1218}\N{U+1235}\N{U+12a8}",
      "\N{U+1325}\N{U+1245}\N{U+121d}",
      "\N{U+1215}\N{U+12f3}\N{U+122d}",
      "\N{U+1273}\N{U+1215}\N{U+1233}"
    ],
    month_stand_alone_narrow => [
      "\N{U+1303}",
      "\N{U+134c}",
      "\N{U+121b}",
      "\N{U+12a4}",
      "\N{U+121c}",
      "\N{U+1301}",
      "\N{U+1301}",
      "\N{U+12a6}",
      "\N{U+1234}",
      "\N{U+12a6}",
      "\N{U+1296}",
      "\N{U+12f2}"
    ],
    month_stand_alone_wide => [
      "\N{U+1325}\N{U+122a}",
      "\N{U+1208}\N{U+12ab}\N{U+1272}\N{U+1275}",
      "\N{U+1218}\N{U+130b}\N{U+1262}\N{U+1275}",
      "\N{U+121a}\N{U+12eb}\N{U+12dd}\N{U+12eb}",
      "\N{U+130d}\N{U+1295}\N{U+1266}\N{U+1275}",
      "\N{U+1230}\N{U+1290}",
      "\N{U+1213}\N{U+121d}\N{U+1208}",
      "\N{U+1290}\N{U+1213}\N{U+1230}",
      "\N{U+1218}\N{U+1235}\N{U+12a8}\N{U+1228}\N{U+121d}",
      "\N{U+1325}\N{U+1245}\N{U+121d}\N{U+1272}",
      "\N{U+1215}\N{U+12f3}\N{U+122d}",
      "\N{U+1273}\N{U+1215}\N{U+1233}\N{U+1235}"
    ],
    name => "Tigrinya Eritrea",
    native_language => "\N{U+1275}\N{U+130d}\N{U+122d}\N{U+129b}",
    native_name => "\N{U+1275}\N{U+130d}\N{U+122d}\N{U+129b} ER",
    native_script => undef,
    native_territory => "ER",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "Eritrea",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ti-ET ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMMdd => "dd MMMM",
      MMMd => "MMM d",
      MMdd => "dd/MM",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMM => "MM/y",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "y QQQQ"
    },
    code => "ti-ET",
    date_format_full => "EEEE\N{U+1363} dd MMMM \N{U+1218}\N{U+12d3}\N{U+120d}\N{U+1272} y G",
    date_format_long => "dd MMMM y",
    date_format_medium => "dd-MMM-y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+1230}\N{U+1291}\N{U+12ed}",
      "\N{U+1220}\N{U+1209}\N{U+1235}",
      "\N{U+1228}\N{U+1261}\N{U+12d5}",
      "\N{U+1283}\N{U+1219}\N{U+1235}",
      "\N{U+12d3}\N{U+122d}\N{U+1262}",
      "\N{U+1240}\N{U+12f3}\N{U+121d}",
      "\N{U+1230}\N{U+1295}\N{U+1260}\N{U+1275}"
    ],
    day_format_narrow => [
      "\N{U+1230}",
      "\N{U+1220}",
      "\N{U+1228}",
      "\N{U+1283}",
      "\N{U+12d3}",
      "\N{U+1240}",
      "\N{U+1230}"
    ],
    day_format_wide => [
      "\N{U+1230}\N{U+1291}\N{U+12ed}",
      "\N{U+1220}\N{U+1209}\N{U+1235}",
      "\N{U+1228}\N{U+1261}\N{U+12d5}",
      "\N{U+1283}\N{U+1219}\N{U+1235}",
      "\N{U+12d3}\N{U+122d}\N{U+1262}",
      "\N{U+1240}\N{U+12f3}\N{U+121d}",
      "\N{U+1230}\N{U+1295}\N{U+1260}\N{U+1275}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+1230}\N{U+1291}\N{U+12ed}",
      "\N{U+1220}\N{U+1209}\N{U+1235}",
      "\N{U+1228}\N{U+1261}\N{U+12d5}",
      "\N{U+1283}\N{U+1219}\N{U+1235}",
      "\N{U+12d3}\N{U+122d}\N{U+1262}",
      "\N{U+1240}\N{U+12f3}\N{U+121d}",
      "\N{U+1230}\N{U+1295}\N{U+1260}\N{U+1275}"
    ],
    day_stand_alone_narrow => [
      "\N{U+1230}",
      "\N{U+1220}",
      "\N{U+1228}",
      "\N{U+1283}",
      "\N{U+12d3}",
      "\N{U+1240}",
      "\N{U+1230}"
    ],
    day_stand_alone_wide => [
      "\N{U+1230}\N{U+1291}\N{U+12ed}",
      "\N{U+1220}\N{U+1209}\N{U+1235}",
      "\N{U+1228}\N{U+1261}\N{U+12d5}",
      "\N{U+1283}\N{U+1219}\N{U+1235}",
      "\N{U+12d3}\N{U+122d}\N{U+1262}",
      "\N{U+1240}\N{U+12f3}\N{U+121d}",
      "\N{U+1230}\N{U+1295}\N{U+1260}\N{U+1275}"
    ],
    era_abbreviated => [
      "\N{U+12d3}/\N{U+12d3}",
      "\N{U+12d3}/\N{U+121d}"
    ],
    era_narrow => [
      "\N{U+12d3}/\N{U+12d3}",
      "\N{U+12d3}/\N{U+121d}"
    ],
    era_wide => [
      "\N{U+12d3}/\N{U+12d3}",
      "\N{U+12d3}/\N{U+121d}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%A\N{U+1363} %B %e \N{U+1218}\N{U+12d3}\N{U+120d}\N{U+1272} %r %Z %Y \N{U+12d3}/\N{U+121d}",
    glibc_date_format => "%d/%m/%Y",
    glibc_datetime_format => "%A\N{U+1363} %B %e \N{U+1218}\N{U+12d3}\N{U+120d}\N{U+1272} %Y %r %Z",
    glibc_time_12_format => "%X %p",
    glibc_time_format => "%l:%M:%S",
    language => "Tigrinya",
    month_format_abbreviated => [
      "\N{U+1303}\N{U+1295}\N{U+12e9}",
      "\N{U+134c}\N{U+1265}\N{U+1229}",
      "\N{U+121b}\N{U+122d}\N{U+127d}",
      "\N{U+12a4}\N{U+1355}\N{U+1228}",
      "\N{U+121c}\N{U+12ed}",
      "\N{U+1301}\N{U+1295}",
      "\N{U+1301}\N{U+120b}\N{U+12ed}",
      "\N{U+12a6}\N{U+1308}\N{U+1235}",
      "\N{U+1234}\N{U+1355}\N{U+1274}",
      "\N{U+12a6}\N{U+12ad}\N{U+1270}",
      "\N{U+1296}\N{U+126c}\N{U+121d}",
      "\N{U+12f2}\N{U+1234}\N{U+121d}"
    ],
    month_format_narrow => [
      "\N{U+1303}",
      "\N{U+134c}",
      "\N{U+121b}",
      "\N{U+12a4}",
      "\N{U+121c}",
      "\N{U+1301}",
      "\N{U+1301}",
      "\N{U+12a6}",
      "\N{U+1234}",
      "\N{U+12a6}",
      "\N{U+1296}",
      "\N{U+12f2}"
    ],
    month_format_wide => [
      "\N{U+1303}\N{U+1295}\N{U+12e9}\N{U+12c8}\N{U+122a}",
      "\N{U+134c}\N{U+1265}\N{U+1229}\N{U+12c8}\N{U+122a}",
      "\N{U+121b}\N{U+122d}\N{U+127d}",
      "\N{U+12a4}\N{U+1355}\N{U+1228}\N{U+120d}",
      "\N{U+121c}\N{U+12ed}",
      "\N{U+1301}\N{U+1295}",
      "\N{U+1301}\N{U+120b}\N{U+12ed}",
      "\N{U+12a6}\N{U+1308}\N{U+1235}\N{U+1275}",
      "\N{U+1234}\N{U+1355}\N{U+1274}\N{U+121d}\N{U+1260}\N{U+122d}",
      "\N{U+12a6}\N{U+12ad}\N{U+1270}\N{U+12cd}\N{U+1260}\N{U+122d}",
      "\N{U+1296}\N{U+126c}\N{U+121d}\N{U+1260}\N{U+122d}",
      "\N{U+12f2}\N{U+1234}\N{U+121d}\N{U+1260}\N{U+122d}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+1303}\N{U+1295}\N{U+12e9}",
      "\N{U+134c}\N{U+1265}\N{U+1229}",
      "\N{U+121b}\N{U+122d}\N{U+127d}",
      "\N{U+12a4}\N{U+1355}\N{U+1228}",
      "\N{U+121c}\N{U+12ed}",
      "\N{U+1301}\N{U+1295}",
      "\N{U+1301}\N{U+120b}\N{U+12ed}",
      "\N{U+12a6}\N{U+1308}\N{U+1235}",
      "\N{U+1234}\N{U+1355}\N{U+1274}",
      "\N{U+12a6}\N{U+12ad}\N{U+1270}",
      "\N{U+1296}\N{U+126c}\N{U+121d}",
      "\N{U+12f2}\N{U+1234}\N{U+121d}"
    ],
    month_stand_alone_narrow => [
      "\N{U+1303}",
      "\N{U+134c}",
      "\N{U+121b}",
      "\N{U+12a4}",
      "\N{U+121c}",
      "\N{U+1301}",
      "\N{U+1301}",
      "\N{U+12a6}",
      "\N{U+1234}",
      "\N{U+12a6}",
      "\N{U+1296}",
      "\N{U+12f2}"
    ],
    month_stand_alone_wide => [
      "\N{U+1303}\N{U+1295}\N{U+12e9}\N{U+12c8}\N{U+122a}",
      "\N{U+134c}\N{U+1265}\N{U+1229}\N{U+12c8}\N{U+122a}",
      "\N{U+121b}\N{U+122d}\N{U+127d}",
      "\N{U+12a4}\N{U+1355}\N{U+1228}\N{U+120d}",
      "\N{U+121c}\N{U+12ed}",
      "\N{U+1301}\N{U+1295}",
      "\N{U+1301}\N{U+120b}\N{U+12ed}",
      "\N{U+12a6}\N{U+1308}\N{U+1235}\N{U+1275}",
      "\N{U+1234}\N{U+1355}\N{U+1274}\N{U+121d}\N{U+1260}\N{U+122d}",
      "\N{U+12a6}\N{U+12ad}\N{U+1270}\N{U+12cd}\N{U+1260}\N{U+122d}",
      "\N{U+1296}\N{U+126c}\N{U+121d}\N{U+1260}\N{U+122d}",
      "\N{U+12f2}\N{U+1234}\N{U+121d}\N{U+1260}\N{U+122d}"
    ],
    name => "Tigrinya Ethiopia",
    native_language => "\N{U+1275}\N{U+130d}\N{U+122d}\N{U+129b}",
    native_name => "\N{U+1275}\N{U+130d}\N{U+122d}\N{U+129b} ET",
    native_script => undef,
    native_territory => "ET",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "Ethiopia",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ tk ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "tk",
    date_format_full => "d MMMM y EEEE",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd.MM.y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "D",
      "S",
      "\N{U+00c7}",
      "P",
      "A",
      "\N{U+015e}",
      "\N{U+00dd}"
    ],
    day_format_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "D",
      "S",
      "\N{U+00c7}",
      "P",
      "A",
      "\N{U+015e}",
      "\N{U+00dd}"
    ],
    day_stand_alone_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Turkmen",
    month_format_abbreviated => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_stand_alone_abbreviated => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    name => "Turkmen",
    native_language => "tk",
    native_name => "tk",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ tk-TM ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "tk-TM",
    date_format_full => "d MMMM y EEEE",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd.MM.y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "D",
      "S",
      "\N{U+00c7}",
      "P",
      "A",
      "\N{U+015e}",
      "\N{U+00dd}"
    ],
    day_format_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "D",
      "S",
      "\N{U+00c7}",
      "P",
      "A",
      "\N{U+015e}",
      "\N{U+00dd}"
    ],
    day_stand_alone_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d.%m.%Y",
    glibc_datetime_format => "%d.%m.%Y %T",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Turkmen",
    month_format_abbreviated => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_stand_alone_abbreviated => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    name => "Turkmen Turkmenistan",
    native_language => "tk",
    native_name => "tk TM",
    native_script => undef,
    native_territory => "TM",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "Turkmenistan",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ to ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "MM-y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "to",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "M\N{U+014d}n",
      "T\N{U+016b}s",
      "Pul",
      "Tu\N{U+02bb}a",
      "Fal",
      "Tok",
      "S\N{U+0101}p"
    ],
    day_format_narrow => [
      "M",
      "T",
      "P",
      "T",
      "F",
      "T",
      "S"
    ],
    day_format_wide => [
      "M\N{U+014d}nite",
      "T\N{U+016b}site",
      "Pulelulu",
      "Tu\N{U+02bb}apulelulu",
      "Falaite",
      "Tokonaki",
      "S\N{U+0101}pate"
    ],
    day_stand_alone_abbreviated => [
      "M\N{U+014d}n",
      "T\N{U+016b}s",
      "Pul",
      "Tu\N{U+02bb}a",
      "Fal",
      "Tok",
      "S\N{U+0101}p"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "P",
      "T",
      "F",
      "T",
      "S"
    ],
    day_stand_alone_wide => [
      "M\N{U+014d}nite",
      "T\N{U+016b}site",
      "Pulelulu",
      "Tu\N{U+02bb}apulelulu",
      "Falaite",
      "Tokonaki",
      "S\N{U+0101}pate"
    ],
    era_abbreviated => [
      "KM",
      "TS"
    ],
    era_narrow => [
      "KM",
      "TS"
    ],
    era_wide => [
      "ki mu\N{U+02bb}a",
      "ta\N{U+02bb}u \N{U+02bb}o S\N{U+012b}s\N{U+016b}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Tongan",
    month_format_abbreviated => [
      "S\N{U+0101}n",
      "F\N{U+0113}p",
      "Ma\N{U+02bb}a",
      "\N{U+02bb}Epe",
      "M\N{U+0113}",
      "Sun",
      "Siu",
      "\N{U+02bb}Aok",
      "Sep",
      "\N{U+02bb}Oka",
      "N\N{U+014d}v",
      "T\N{U+012b}s"
    ],
    month_format_narrow => [
      "S",
      "F",
      "M",
      "E",
      "M",
      "S",
      "S",
      "A",
      "S",
      "O",
      "N",
      "T"
    ],
    month_format_wide => [
      "S\N{U+0101}nuali",
      "F\N{U+0113}pueli",
      "Ma\N{U+02bb}asi",
      "\N{U+02bb}Epeleli",
      "M\N{U+0113}",
      "Sune",
      "Siulai",
      "\N{U+02bb}Aokosi",
      "Sepitema",
      "\N{U+02bb}Okatopa",
      "N\N{U+014d}vema",
      "T\N{U+012b}sema"
    ],
    month_stand_alone_abbreviated => [
      "S\N{U+0101}n",
      "F\N{U+0113}p",
      "Ma\N{U+02bb}a",
      "\N{U+02bb}Epe",
      "M\N{U+0113}",
      "Sun",
      "Siu",
      "\N{U+02bb}Aok",
      "Sep",
      "\N{U+02bb}Oka",
      "N\N{U+014d}v",
      "T\N{U+012b}s"
    ],
    month_stand_alone_narrow => [
      "S",
      "F",
      "M",
      "E",
      "M",
      "S",
      "S",
      "A",
      "S",
      "O",
      "N",
      "T"
    ],
    month_stand_alone_wide => [
      "S\N{U+0101}nuali",
      "F\N{U+0113}pueli",
      "Ma\N{U+02bb}asi",
      "\N{U+02bb}Epeleli",
      "M\N{U+0113}",
      "Sune",
      "Siulai",
      "\N{U+02bb}Aokosi",
      "Sepitema",
      "\N{U+02bb}Okatopa",
      "N\N{U+014d}vema",
      "T\N{U+012b}sema"
    ],
    name => "Tongan",
    native_language => "lea fakatonga",
    native_name => "lea fakatonga",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "kuata \N{U+02bb}uluaki",
      "kuata ua",
      "kuata tolu",
      "kuata f\N{U+0101}"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "kuata 1",
      "kuata 2",
      "kuata 3",
      "kuata 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ to-TO ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMEd => "E d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMM => "MM-y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "MMMM y",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "to-TO",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "M\N{U+014d}n",
      "T\N{U+016b}s",
      "Pul",
      "Tu\N{U+02bb}a",
      "Fal",
      "Tok",
      "S\N{U+0101}p"
    ],
    day_format_narrow => [
      "M",
      "T",
      "P",
      "T",
      "F",
      "T",
      "S"
    ],
    day_format_wide => [
      "M\N{U+014d}nite",
      "T\N{U+016b}site",
      "Pulelulu",
      "Tu\N{U+02bb}apulelulu",
      "Falaite",
      "Tokonaki",
      "S\N{U+0101}pate"
    ],
    day_stand_alone_abbreviated => [
      "M\N{U+014d}n",
      "T\N{U+016b}s",
      "Pul",
      "Tu\N{U+02bb}a",
      "Fal",
      "Tok",
      "S\N{U+0101}p"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "P",
      "T",
      "F",
      "T",
      "S"
    ],
    day_stand_alone_wide => [
      "M\N{U+014d}nite",
      "T\N{U+016b}site",
      "Pulelulu",
      "Tu\N{U+02bb}apulelulu",
      "Falaite",
      "Tokonaki",
      "S\N{U+0101}pate"
    ],
    era_abbreviated => [
      "KM",
      "TS"
    ],
    era_narrow => [
      "KM",
      "TS"
    ],
    era_wide => [
      "ki mu\N{U+02bb}a",
      "ta\N{U+02bb}u \N{U+02bb}o S\N{U+012b}s\N{U+016b}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Tongan",
    month_format_abbreviated => [
      "S\N{U+0101}n",
      "F\N{U+0113}p",
      "Ma\N{U+02bb}a",
      "\N{U+02bb}Epe",
      "M\N{U+0113}",
      "Sun",
      "Siu",
      "\N{U+02bb}Aok",
      "Sep",
      "\N{U+02bb}Oka",
      "N\N{U+014d}v",
      "T\N{U+012b}s"
    ],
    month_format_narrow => [
      "S",
      "F",
      "M",
      "E",
      "M",
      "S",
      "S",
      "A",
      "S",
      "O",
      "N",
      "T"
    ],
    month_format_wide => [
      "S\N{U+0101}nuali",
      "F\N{U+0113}pueli",
      "Ma\N{U+02bb}asi",
      "\N{U+02bb}Epeleli",
      "M\N{U+0113}",
      "Sune",
      "Siulai",
      "\N{U+02bb}Aokosi",
      "Sepitema",
      "\N{U+02bb}Okatopa",
      "N\N{U+014d}vema",
      "T\N{U+012b}sema"
    ],
    month_stand_alone_abbreviated => [
      "S\N{U+0101}n",
      "F\N{U+0113}p",
      "Ma\N{U+02bb}a",
      "\N{U+02bb}Epe",
      "M\N{U+0113}",
      "Sun",
      "Siu",
      "\N{U+02bb}Aok",
      "Sep",
      "\N{U+02bb}Oka",
      "N\N{U+014d}v",
      "T\N{U+012b}s"
    ],
    month_stand_alone_narrow => [
      "S",
      "F",
      "M",
      "E",
      "M",
      "S",
      "S",
      "A",
      "S",
      "O",
      "N",
      "T"
    ],
    month_stand_alone_wide => [
      "S\N{U+0101}nuali",
      "F\N{U+0113}pueli",
      "Ma\N{U+02bb}asi",
      "\N{U+02bb}Epeleli",
      "M\N{U+0113}",
      "Sune",
      "Siulai",
      "\N{U+02bb}Aokosi",
      "Sepitema",
      "\N{U+02bb}Okatopa",
      "N\N{U+014d}vema",
      "T\N{U+012b}sema"
    ],
    name => "Tongan Tonga",
    native_language => "lea fakatonga",
    native_name => "lea fakatonga Tonga",
    native_script => undef,
    native_territory => "Tonga",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "kuata \N{U+02bb}uluaki",
      "kuata ua",
      "kuata tolu",
      "kuata f\N{U+0101}"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "kuata 1",
      "kuata 2",
      "kuata 3",
      "kuata 4"
    ],
    script => undef,
    territory => "Tonga",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ tr ]__
  {
    am_pm_abbreviated => [
      "\N{U+00d6}\N{U+00d6}",
      "\N{U+00d6}S"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E a h:mm",
      Ehms => "E a h:mm:ss",
      Gy => "G y",
      GyMMM => "G MMM y",
      GyMMMEd => "G d MMM y E",
      GyMMMd => "G dd MMM y",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "dd/MM E",
      MMM => "LLL",
      MMMEd => "d MMMM E",
      MMMMEd => "dd MMMM E",
      MMMMd => "dd MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "a h",
      hm => "a h:mm",
      hms => "a h:mm:ss",
      hmsv => "a h:mm:ss v",
      hmv => "a h:mm v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "dd.MM.y E",
      yMM => "MM.y",
      yMMM => "MMM y",
      yMMMEd => "d MMM y E",
      yMMMM => "MMMM y",
      yMMMd => "dd MMM y",
      yMd => "dd.MM.y",
      yQQQ => "y/QQQ",
      yQQQQ => "y/QQQQ"
    },
    code => "tr",
    date_format_full => "d MMMM y EEEE",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d.MM.y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Pzt",
      "Sal",
      "\N{U+00c7}ar",
      "Per",
      "Cum",
      "Cmt",
      "Paz"
    ],
    day_format_narrow => [
      "P",
      "S",
      "\N{U+00c7}",
      "P",
      "C",
      "C",
      "P"
    ],
    day_format_wide => [
      "Pazartesi",
      "Sal\N{U+0131}",
      "\N{U+00c7}ar\N{U+015f}amba",
      "Per\N{U+015f}embe",
      "Cuma",
      "Cumartesi",
      "Pazar"
    ],
    day_stand_alone_abbreviated => [
      "Pzt",
      "Sal",
      "\N{U+00c7}ar",
      "Per",
      "Cum",
      "Cmt",
      "Paz"
    ],
    day_stand_alone_narrow => [
      "P",
      "S",
      "\N{U+00c7}",
      "P",
      "C",
      "C",
      "P"
    ],
    day_stand_alone_wide => [
      "Pazartesi",
      "Sal\N{U+0131}",
      "\N{U+00c7}ar\N{U+015f}amba",
      "Per\N{U+015f}embe",
      "Cuma",
      "Cumartesi",
      "Pazar"
    ],
    era_abbreviated => [
      "M\N{U+00d6}",
      "MS"
    ],
    era_narrow => [
      "M\N{U+00d6}",
      "MS"
    ],
    era_wide => [
      "Milattan \N{U+00d6}nce",
      "Milattan Sonra"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Turkish",
    month_format_abbreviated => [
      "Oca",
      "\N{U+015e}ub",
      "Mar",
      "Nis",
      "May",
      "Haz",
      "Tem",
      "A\N{U+011f}u",
      "Eyl",
      "Eki",
      "Kas",
      "Ara"
    ],
    month_format_narrow => [
      "O",
      "\N{U+015e}",
      "M",
      "N",
      "M",
      "H",
      "T",
      "A",
      "E",
      "E",
      "K",
      "A"
    ],
    month_format_wide => [
      "Ocak",
      "\N{U+015e}ubat",
      "Mart",
      "Nisan",
      "May\N{U+0131}s",
      "Haziran",
      "Temmuz",
      "A\N{U+011f}ustos",
      "Eyl\N{U+00fc}l",
      "Ekim",
      "Kas\N{U+0131}m",
      "Aral\N{U+0131}k"
    ],
    month_stand_alone_abbreviated => [
      "Oca",
      "\N{U+015e}ub",
      "Mar",
      "Nis",
      "May",
      "Haz",
      "Tem",
      "A\N{U+011f}u",
      "Eyl",
      "Eki",
      "Kas",
      "Ara"
    ],
    month_stand_alone_narrow => [
      "O",
      "\N{U+015e}",
      "M",
      "N",
      "M",
      "H",
      "T",
      "A",
      "E",
      "E",
      "K",
      "A"
    ],
    month_stand_alone_wide => [
      "Ocak",
      "\N{U+015e}ubat",
      "Mart",
      "Nisan",
      "May\N{U+0131}s",
      "Haziran",
      "Temmuz",
      "A\N{U+011f}ustos",
      "Eyl\N{U+00fc}l",
      "Ekim",
      "Kas\N{U+0131}m",
      "Aral\N{U+0131}k"
    ],
    name => "Turkish",
    native_language => "T\N{U+00fc}rk\N{U+00e7}e",
    native_name => "T\N{U+00fc}rk\N{U+00e7}e",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+00c7}1",
      "\N{U+00c7}2",
      "\N{U+00c7}3",
      "\N{U+00c7}4"
    ],
    quarter_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_format_wide => [
      "1. \N{U+00e7}eyrek",
      "2. \N{U+00e7}eyrek",
      "3. \N{U+00e7}eyrek",
      "4. \N{U+00e7}eyrek"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+00c7}1",
      "\N{U+00c7}2",
      "\N{U+00c7}3",
      "\N{U+00c7}4"
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "1. \N{U+00e7}eyrek",
      "2. \N{U+00e7}eyrek",
      "3. \N{U+00e7}eyrek",
      "4. \N{U+00e7}eyrek"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ tr-CY ]__
  {
    am_pm_abbreviated => [
      "\N{U+00d6}\N{U+00d6}",
      "\N{U+00d6}S"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E a h:mm",
      Ehms => "E a h:mm:ss",
      Gy => "G y",
      GyMMM => "G MMM y",
      GyMMMEd => "G d MMM y E",
      GyMMMd => "G dd MMM y",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "dd/MM E",
      MMM => "LLL",
      MMMEd => "d MMMM E",
      MMMMEd => "dd MMMM E",
      MMMMd => "dd MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "a h",
      hm => "a h:mm",
      hms => "a h:mm:ss",
      hmsv => "a h:mm:ss v",
      hmv => "a h:mm v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "dd.MM.y E",
      yMM => "MM.y",
      yMMM => "MMM y",
      yMMMEd => "d MMM y E",
      yMMMM => "MMMM y",
      yMMMd => "dd MMM y",
      yMd => "dd.MM.y",
      yQQQ => "y/QQQ",
      yQQQQ => "y/QQQQ"
    },
    code => "tr-CY",
    date_format_full => "d MMMM y EEEE",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d.MM.y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Pzt",
      "Sal",
      "\N{U+00c7}ar",
      "Per",
      "Cum",
      "Cmt",
      "Paz"
    ],
    day_format_narrow => [
      "P",
      "S",
      "\N{U+00c7}",
      "P",
      "C",
      "C",
      "P"
    ],
    day_format_wide => [
      "Pazartesi",
      "Sal\N{U+0131}",
      "\N{U+00c7}ar\N{U+015f}amba",
      "Per\N{U+015f}embe",
      "Cuma",
      "Cumartesi",
      "Pazar"
    ],
    day_stand_alone_abbreviated => [
      "Pzt",
      "Sal",
      "\N{U+00c7}ar",
      "Per",
      "Cum",
      "Cmt",
      "Paz"
    ],
    day_stand_alone_narrow => [
      "P",
      "S",
      "\N{U+00c7}",
      "P",
      "C",
      "C",
      "P"
    ],
    day_stand_alone_wide => [
      "Pazartesi",
      "Sal\N{U+0131}",
      "\N{U+00c7}ar\N{U+015f}amba",
      "Per\N{U+015f}embe",
      "Cuma",
      "Cumartesi",
      "Pazar"
    ],
    era_abbreviated => [
      "M\N{U+00d6}",
      "MS"
    ],
    era_narrow => [
      "M\N{U+00d6}",
      "MS"
    ],
    era_wide => [
      "Milattan \N{U+00d6}nce",
      "Milattan Sonra"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Turkish",
    month_format_abbreviated => [
      "Oca",
      "\N{U+015e}ub",
      "Mar",
      "Nis",
      "May",
      "Haz",
      "Tem",
      "A\N{U+011f}u",
      "Eyl",
      "Eki",
      "Kas",
      "Ara"
    ],
    month_format_narrow => [
      "O",
      "\N{U+015e}",
      "M",
      "N",
      "M",
      "H",
      "T",
      "A",
      "E",
      "E",
      "K",
      "A"
    ],
    month_format_wide => [
      "Ocak",
      "\N{U+015e}ubat",
      "Mart",
      "Nisan",
      "May\N{U+0131}s",
      "Haziran",
      "Temmuz",
      "A\N{U+011f}ustos",
      "Eyl\N{U+00fc}l",
      "Ekim",
      "Kas\N{U+0131}m",
      "Aral\N{U+0131}k"
    ],
    month_stand_alone_abbreviated => [
      "Oca",
      "\N{U+015e}ub",
      "Mar",
      "Nis",
      "May",
      "Haz",
      "Tem",
      "A\N{U+011f}u",
      "Eyl",
      "Eki",
      "Kas",
      "Ara"
    ],
    month_stand_alone_narrow => [
      "O",
      "\N{U+015e}",
      "M",
      "N",
      "M",
      "H",
      "T",
      "A",
      "E",
      "E",
      "K",
      "A"
    ],
    month_stand_alone_wide => [
      "Ocak",
      "\N{U+015e}ubat",
      "Mart",
      "Nisan",
      "May\N{U+0131}s",
      "Haziran",
      "Temmuz",
      "A\N{U+011f}ustos",
      "Eyl\N{U+00fc}l",
      "Ekim",
      "Kas\N{U+0131}m",
      "Aral\N{U+0131}k"
    ],
    name => "Turkish Cyprus",
    native_language => "T\N{U+00fc}rk\N{U+00e7}e",
    native_name => "T\N{U+00fc}rk\N{U+00e7}e G\N{U+00fc}ney K\N{U+0131}br\N{U+0131}s Rum Kesimi",
    native_script => undef,
    native_territory => "G\N{U+00fc}ney K\N{U+0131}br\N{U+0131}s Rum Kesimi",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+00c7}1",
      "\N{U+00c7}2",
      "\N{U+00c7}3",
      "\N{U+00c7}4"
    ],
    quarter_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_format_wide => [
      "1. \N{U+00e7}eyrek",
      "2. \N{U+00e7}eyrek",
      "3. \N{U+00e7}eyrek",
      "4. \N{U+00e7}eyrek"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+00c7}1",
      "\N{U+00c7}2",
      "\N{U+00c7}3",
      "\N{U+00c7}4"
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "1. \N{U+00e7}eyrek",
      "2. \N{U+00e7}eyrek",
      "3. \N{U+00e7}eyrek",
      "4. \N{U+00e7}eyrek"
    ],
    script => undef,
    territory => "Cyprus",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ tr-TR ]__
  {
    am_pm_abbreviated => [
      "\N{U+00d6}\N{U+00d6}",
      "\N{U+00d6}S"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E a h:mm",
      Ehms => "E a h:mm:ss",
      Gy => "G y",
      GyMMM => "G MMM y",
      GyMMMEd => "G d MMM y E",
      GyMMMd => "G dd MMM y",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "dd/MM E",
      MMM => "LLL",
      MMMEd => "d MMMM E",
      MMMMEd => "dd MMMM E",
      MMMMd => "dd MMMM",
      MMMd => "d MMM",
      Md => "dd/MM",
      d => "d",
      h => "a h",
      hm => "a h:mm",
      hms => "a h:mm:ss",
      hmsv => "a h:mm:ss v",
      hmv => "a h:mm v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "dd.MM.y E",
      yMM => "MM.y",
      yMMM => "MMM y",
      yMMMEd => "d MMM y E",
      yMMMM => "MMMM y",
      yMMMd => "dd MMM y",
      yMd => "dd.MM.y",
      yQQQ => "y/QQQ",
      yQQQQ => "y/QQQQ"
    },
    code => "tr-TR",
    date_format_full => "d MMMM y EEEE",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d.MM.y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Pzt",
      "Sal",
      "\N{U+00c7}ar",
      "Per",
      "Cum",
      "Cmt",
      "Paz"
    ],
    day_format_narrow => [
      "P",
      "S",
      "\N{U+00c7}",
      "P",
      "C",
      "C",
      "P"
    ],
    day_format_wide => [
      "Pazartesi",
      "Sal\N{U+0131}",
      "\N{U+00c7}ar\N{U+015f}amba",
      "Per\N{U+015f}embe",
      "Cuma",
      "Cumartesi",
      "Pazar"
    ],
    day_stand_alone_abbreviated => [
      "Pzt",
      "Sal",
      "\N{U+00c7}ar",
      "Per",
      "Cum",
      "Cmt",
      "Paz"
    ],
    day_stand_alone_narrow => [
      "P",
      "S",
      "\N{U+00c7}",
      "P",
      "C",
      "C",
      "P"
    ],
    day_stand_alone_wide => [
      "Pazartesi",
      "Sal\N{U+0131}",
      "\N{U+00c7}ar\N{U+015f}amba",
      "Per\N{U+015f}embe",
      "Cuma",
      "Cumartesi",
      "Pazar"
    ],
    era_abbreviated => [
      "M\N{U+00d6}",
      "MS"
    ],
    era_narrow => [
      "M\N{U+00d6}",
      "MS"
    ],
    era_wide => [
      "Milattan \N{U+00d6}nce",
      "Milattan Sonra"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d-%m-%Y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Turkish",
    month_format_abbreviated => [
      "Oca",
      "\N{U+015e}ub",
      "Mar",
      "Nis",
      "May",
      "Haz",
      "Tem",
      "A\N{U+011f}u",
      "Eyl",
      "Eki",
      "Kas",
      "Ara"
    ],
    month_format_narrow => [
      "O",
      "\N{U+015e}",
      "M",
      "N",
      "M",
      "H",
      "T",
      "A",
      "E",
      "E",
      "K",
      "A"
    ],
    month_format_wide => [
      "Ocak",
      "\N{U+015e}ubat",
      "Mart",
      "Nisan",
      "May\N{U+0131}s",
      "Haziran",
      "Temmuz",
      "A\N{U+011f}ustos",
      "Eyl\N{U+00fc}l",
      "Ekim",
      "Kas\N{U+0131}m",
      "Aral\N{U+0131}k"
    ],
    month_stand_alone_abbreviated => [
      "Oca",
      "\N{U+015e}ub",
      "Mar",
      "Nis",
      "May",
      "Haz",
      "Tem",
      "A\N{U+011f}u",
      "Eyl",
      "Eki",
      "Kas",
      "Ara"
    ],
    month_stand_alone_narrow => [
      "O",
      "\N{U+015e}",
      "M",
      "N",
      "M",
      "H",
      "T",
      "A",
      "E",
      "E",
      "K",
      "A"
    ],
    month_stand_alone_wide => [
      "Ocak",
      "\N{U+015e}ubat",
      "Mart",
      "Nisan",
      "May\N{U+0131}s",
      "Haziran",
      "Temmuz",
      "A\N{U+011f}ustos",
      "Eyl\N{U+00fc}l",
      "Ekim",
      "Kas\N{U+0131}m",
      "Aral\N{U+0131}k"
    ],
    name => "Turkish Turkey",
    native_language => "T\N{U+00fc}rk\N{U+00e7}e",
    native_name => "T\N{U+00fc}rk\N{U+00e7}e T\N{U+00fc}rkiye",
    native_script => undef,
    native_territory => "T\N{U+00fc}rkiye",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+00c7}1",
      "\N{U+00c7}2",
      "\N{U+00c7}3",
      "\N{U+00c7}4"
    ],
    quarter_format_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_format_wide => [
      "1. \N{U+00e7}eyrek",
      "2. \N{U+00e7}eyrek",
      "3. \N{U+00e7}eyrek",
      "4. \N{U+00e7}eyrek"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+00c7}1",
      "\N{U+00c7}2",
      "\N{U+00c7}3",
      "\N{U+00c7}4"
    ],
    quarter_stand_alone_narrow => [
      "1.",
      "2.",
      "3.",
      "4."
    ],
    quarter_stand_alone_wide => [
      "1. \N{U+00e7}eyrek",
      "2. \N{U+00e7}eyrek",
      "3. \N{U+00e7}eyrek",
      "4. \N{U+00e7}eyrek"
    ],
    script => undef,
    territory => "Turkey",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ twq ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "twq",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Ati",
      "Ata",
      "Ala",
      "Alm",
      "Alz",
      "Asi",
      "Alh"
    ],
    day_format_narrow => [
      "T",
      "T",
      "L",
      "L",
      "L",
      "S",
      "H"
    ],
    day_format_wide => [
      "Atinni",
      "Atalaata",
      "Alarba",
      "Alhamiisa",
      "Alzuma",
      "Asibti",
      "Alhadi"
    ],
    day_stand_alone_abbreviated => [
      "Ati",
      "Ata",
      "Ala",
      "Alm",
      "Alz",
      "Asi",
      "Alh"
    ],
    day_stand_alone_narrow => [
      "T",
      "T",
      "L",
      "L",
      "L",
      "S",
      "H"
    ],
    day_stand_alone_wide => [
      "Atinni",
      "Atalaata",
      "Alarba",
      "Alhamiisa",
      "Alzuma",
      "Asibti",
      "Alhadi"
    ],
    era_abbreviated => [
      "IJ",
      "IZ"
    ],
    era_narrow => [
      "IJ",
      "IZ"
    ],
    era_wide => [
      "Isaa jine",
      "Isaa zamanoo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Tasawaq",
    month_format_abbreviated => [
      "\N{U+017d}an",
      "Fee",
      "Mar",
      "Awi",
      "Me",
      "\N{U+017d}uw",
      "\N{U+017d}uy",
      "Ut",
      "Sek",
      "Okt",
      "Noo",
      "Dee"
    ],
    month_format_narrow => [
      "\N{U+017d}",
      "F",
      "M",
      "A",
      "M",
      "\N{U+017d}",
      "\N{U+017d}",
      "U",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "\N{U+017d}anwiye",
      "Feewiriye",
      "Marsi",
      "Awiril",
      "Me",
      "\N{U+017d}uwe\N{U+014b}",
      "\N{U+017d}uyye",
      "Ut",
      "Sektanbur",
      "Oktoobur",
      "Noowanbur",
      "Deesanbur"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+017d}an",
      "Fee",
      "Mar",
      "Awi",
      "Me",
      "\N{U+017d}uw",
      "\N{U+017d}uy",
      "Ut",
      "Sek",
      "Okt",
      "Noo",
      "Dee"
    ],
    month_stand_alone_narrow => [
      "\N{U+017d}",
      "F",
      "M",
      "A",
      "M",
      "\N{U+017d}",
      "\N{U+017d}",
      "U",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "\N{U+017d}anwiye",
      "Feewiriye",
      "Marsi",
      "Awiril",
      "Me",
      "\N{U+017d}uwe\N{U+014b}",
      "\N{U+017d}uyye",
      "Ut",
      "Sektanbur",
      "Oktoobur",
      "Noowanbur",
      "Deesanbur"
    ],
    name => "Tasawaq",
    native_language => "Tasawaq senni",
    native_name => "Tasawaq senni",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "A1",
      "A2",
      "A3",
      "A4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Arrubu 1",
      "Arrubu 2",
      "Arrubu 3",
      "Arrubu 4"
    ],
    quarter_stand_alone_abbreviated => [
      "A1",
      "A2",
      "A3",
      "A4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Arrubu 1",
      "Arrubu 2",
      "Arrubu 3",
      "Arrubu 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ twq-NE ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "twq-NE",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Ati",
      "Ata",
      "Ala",
      "Alm",
      "Alz",
      "Asi",
      "Alh"
    ],
    day_format_narrow => [
      "T",
      "T",
      "L",
      "L",
      "L",
      "S",
      "H"
    ],
    day_format_wide => [
      "Atinni",
      "Atalaata",
      "Alarba",
      "Alhamiisa",
      "Alzuma",
      "Asibti",
      "Alhadi"
    ],
    day_stand_alone_abbreviated => [
      "Ati",
      "Ata",
      "Ala",
      "Alm",
      "Alz",
      "Asi",
      "Alh"
    ],
    day_stand_alone_narrow => [
      "T",
      "T",
      "L",
      "L",
      "L",
      "S",
      "H"
    ],
    day_stand_alone_wide => [
      "Atinni",
      "Atalaata",
      "Alarba",
      "Alhamiisa",
      "Alzuma",
      "Asibti",
      "Alhadi"
    ],
    era_abbreviated => [
      "IJ",
      "IZ"
    ],
    era_narrow => [
      "IJ",
      "IZ"
    ],
    era_wide => [
      "Isaa jine",
      "Isaa zamanoo"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Tasawaq",
    month_format_abbreviated => [
      "\N{U+017d}an",
      "Fee",
      "Mar",
      "Awi",
      "Me",
      "\N{U+017d}uw",
      "\N{U+017d}uy",
      "Ut",
      "Sek",
      "Okt",
      "Noo",
      "Dee"
    ],
    month_format_narrow => [
      "\N{U+017d}",
      "F",
      "M",
      "A",
      "M",
      "\N{U+017d}",
      "\N{U+017d}",
      "U",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "\N{U+017d}anwiye",
      "Feewiriye",
      "Marsi",
      "Awiril",
      "Me",
      "\N{U+017d}uwe\N{U+014b}",
      "\N{U+017d}uyye",
      "Ut",
      "Sektanbur",
      "Oktoobur",
      "Noowanbur",
      "Deesanbur"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+017d}an",
      "Fee",
      "Mar",
      "Awi",
      "Me",
      "\N{U+017d}uw",
      "\N{U+017d}uy",
      "Ut",
      "Sek",
      "Okt",
      "Noo",
      "Dee"
    ],
    month_stand_alone_narrow => [
      "\N{U+017d}",
      "F",
      "M",
      "A",
      "M",
      "\N{U+017d}",
      "\N{U+017d}",
      "U",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "\N{U+017d}anwiye",
      "Feewiriye",
      "Marsi",
      "Awiril",
      "Me",
      "\N{U+017d}uwe\N{U+014b}",
      "\N{U+017d}uyye",
      "Ut",
      "Sektanbur",
      "Oktoobur",
      "Noowanbur",
      "Deesanbur"
    ],
    name => "Tasawaq Niger",
    native_language => "Tasawaq senni",
    native_name => "Tasawaq senni Ni\N{U+017e}er",
    native_script => undef,
    native_territory => "Ni\N{U+017e}er",
    native_variant => undef,
    quarter_format_abbreviated => [
      "A1",
      "A2",
      "A3",
      "A4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Arrubu 1",
      "Arrubu 2",
      "Arrubu 3",
      "Arrubu 4"
    ],
    quarter_stand_alone_abbreviated => [
      "A1",
      "A2",
      "A3",
      "A4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Arrubu 1",
      "Arrubu 2",
      "Arrubu 3",
      "Arrubu 4"
    ],
    script => undef,
    territory => "Niger",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ tzm ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "tzm",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Ayn",
      "Asn",
      "Akr",
      "Akw",
      "Asm",
      "As\N{U+1e0d}",
      "Asa"
    ],
    day_format_narrow => [
      "A",
      "A",
      "A",
      "A",
      "A",
      "A",
      "A"
    ],
    day_format_wide => [
      "Aynas",
      "Asinas",
      "Akras",
      "Akwas",
      "Asimwas",
      "Asi\N{U+1e0d}yas",
      "Asamas"
    ],
    day_stand_alone_abbreviated => [
      "Ayn",
      "Asn",
      "Akr",
      "Akw",
      "Asm",
      "As\N{U+1e0d}",
      "Asa"
    ],
    day_stand_alone_narrow => [
      "A",
      "A",
      "A",
      "A",
      "A",
      "A",
      "A"
    ],
    day_stand_alone_wide => [
      "Aynas",
      "Asinas",
      "Akras",
      "Akwas",
      "Asimwas",
      "Asi\N{U+1e0d}yas",
      "Asamas"
    ],
    era_abbreviated => [
      "Z\N{U+0190}",
      "\N{U+1e0c}\N{U+0190}"
    ],
    era_narrow => [
      "Z\N{U+0190}",
      "\N{U+1e0c}\N{U+0190}"
    ],
    era_wide => [
      "Zdat \N{U+0190}isa (TA\N{U+0194})",
      "\N{U+1e0c}effir \N{U+0190}isa (TA\N{U+0194})"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Central Atlas Tamazight",
    month_format_abbreviated => [
      "Yen",
      "Yeb",
      "Mar",
      "Ibr",
      "May",
      "Yun",
      "Yul",
      "\N{U+0194}uc",
      "Cut",
      "K\N{U+1e6d}u",
      "Nwa",
      "Duj"
    ],
    month_format_narrow => [
      "Y",
      "Y",
      "M",
      "I",
      "M",
      "Y",
      "Y",
      "\N{U+0194}",
      "C",
      "K",
      "N",
      "D"
    ],
    month_format_wide => [
      "Yennayer",
      "Yebrayer",
      "Mars",
      "Ibrir",
      "Mayyu",
      "Yunyu",
      "Yulyuz",
      "\N{U+0194}uct",
      "Cutanbir",
      "K\N{U+1e6d}uber",
      "Nwanbir",
      "Dujanbir"
    ],
    month_stand_alone_abbreviated => [
      "Yen",
      "Yeb",
      "Mar",
      "Ibr",
      "May",
      "Yun",
      "Yul",
      "\N{U+0194}uc",
      "Cut",
      "K\N{U+1e6d}u",
      "Nwa",
      "Duj"
    ],
    month_stand_alone_narrow => [
      "Y",
      "Y",
      "M",
      "I",
      "M",
      "Y",
      "Y",
      "\N{U+0194}",
      "C",
      "K",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Yennayer",
      "Yebrayer",
      "Mars",
      "Ibrir",
      "Mayyu",
      "Yunyu",
      "Yulyuz",
      "\N{U+0194}uct",
      "Cutanbir",
      "K\N{U+1e6d}uber",
      "Nwanbir",
      "Dujanbir"
    ],
    name => "Central Atlas Tamazight",
    native_language => "Tamazi\N{U+0263}t n la\N{U+1e6d}la\N{U+1e63}",
    native_name => "Tamazi\N{U+0263}t n la\N{U+1e6d}la\N{U+1e63}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "IA1",
      "IA2",
      "IA3",
      "IA4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Imir adamsan 1",
      "Imir adamsan 2",
      "Imir adamsan 3",
      "Imir adamsan 4"
    ],
    quarter_stand_alone_abbreviated => [
      "IA1",
      "IA2",
      "IA3",
      "IA4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Imir adamsan 1",
      "Imir adamsan 2",
      "Imir adamsan 3",
      "Imir adamsan 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ tzm-MA ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "tzm-MA",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Ayn",
      "Asn",
      "Akr",
      "Akw",
      "Asm",
      "As\N{U+1e0d}",
      "Asa"
    ],
    day_format_narrow => [
      "A",
      "A",
      "A",
      "A",
      "A",
      "A",
      "A"
    ],
    day_format_wide => [
      "Aynas",
      "Asinas",
      "Akras",
      "Akwas",
      "Asimwas",
      "Asi\N{U+1e0d}yas",
      "Asamas"
    ],
    day_stand_alone_abbreviated => [
      "Ayn",
      "Asn",
      "Akr",
      "Akw",
      "Asm",
      "As\N{U+1e0d}",
      "Asa"
    ],
    day_stand_alone_narrow => [
      "A",
      "A",
      "A",
      "A",
      "A",
      "A",
      "A"
    ],
    day_stand_alone_wide => [
      "Aynas",
      "Asinas",
      "Akras",
      "Akwas",
      "Asimwas",
      "Asi\N{U+1e0d}yas",
      "Asamas"
    ],
    era_abbreviated => [
      "Z\N{U+0190}",
      "\N{U+1e0c}\N{U+0190}"
    ],
    era_narrow => [
      "Z\N{U+0190}",
      "\N{U+1e0c}\N{U+0190}"
    ],
    era_wide => [
      "Zdat \N{U+0190}isa (TA\N{U+0194})",
      "\N{U+1e0c}effir \N{U+0190}isa (TA\N{U+0194})"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Central Atlas Tamazight",
    month_format_abbreviated => [
      "Yen",
      "Yeb",
      "Mar",
      "Ibr",
      "May",
      "Yun",
      "Yul",
      "\N{U+0194}uc",
      "Cut",
      "K\N{U+1e6d}u",
      "Nwa",
      "Duj"
    ],
    month_format_narrow => [
      "Y",
      "Y",
      "M",
      "I",
      "M",
      "Y",
      "Y",
      "\N{U+0194}",
      "C",
      "K",
      "N",
      "D"
    ],
    month_format_wide => [
      "Yennayer",
      "Yebrayer",
      "Mars",
      "Ibrir",
      "Mayyu",
      "Yunyu",
      "Yulyuz",
      "\N{U+0194}uct",
      "Cutanbir",
      "K\N{U+1e6d}uber",
      "Nwanbir",
      "Dujanbir"
    ],
    month_stand_alone_abbreviated => [
      "Yen",
      "Yeb",
      "Mar",
      "Ibr",
      "May",
      "Yun",
      "Yul",
      "\N{U+0194}uc",
      "Cut",
      "K\N{U+1e6d}u",
      "Nwa",
      "Duj"
    ],
    month_stand_alone_narrow => [
      "Y",
      "Y",
      "M",
      "I",
      "M",
      "Y",
      "Y",
      "\N{U+0194}",
      "C",
      "K",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Yennayer",
      "Yebrayer",
      "Mars",
      "Ibrir",
      "Mayyu",
      "Yunyu",
      "Yulyuz",
      "\N{U+0194}uct",
      "Cutanbir",
      "K\N{U+1e6d}uber",
      "Nwanbir",
      "Dujanbir"
    ],
    name => "Central Atlas Tamazight Morocco",
    native_language => "Tamazi\N{U+0263}t n la\N{U+1e6d}la\N{U+1e63}",
    native_name => "Tamazi\N{U+0263}t n la\N{U+1e6d}la\N{U+1e63} Me\N{U+1e5b}\N{U+1e5b}uk",
    native_script => undef,
    native_territory => "Me\N{U+1e5b}\N{U+1e5b}uk",
    native_variant => undef,
    quarter_format_abbreviated => [
      "IA1",
      "IA2",
      "IA3",
      "IA4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Imir adamsan 1",
      "Imir adamsan 2",
      "Imir adamsan 3",
      "Imir adamsan 4"
    ],
    quarter_stand_alone_abbreviated => [
      "IA1",
      "IA2",
      "IA3",
      "IA4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Imir adamsan 1",
      "Imir adamsan 2",
      "Imir adamsan 3",
      "Imir adamsan 4"
    ],
    script => undef,
    territory => "Morocco",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ug ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} MMM d\N{U+060c} y G",
      GyMMMd => "MMM d\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} M/d",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} MMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E\N{U+060c} M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} MMM d\N{U+060c} y",
      yMMMM => "y MMMM",
      yMMMd => "MMM d\N{U+060c} y",
      yMd => "M/d/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ug",
    date_format_full => "EEEE\N{U+060c} MMMM d\N{U+060c} y",
    date_format_long => "MMMM d\N{U+060c} y",
    date_format_medium => "MMM d\N{U+060c} y",
    date_format_short => "M/d/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1}\N{U+060c} {0}",
    datetime_format_short => "{1}\N{U+060c} {0}",
    day_format_abbreviated => [
      "\N{U+062f}\N{U+06c8}",
      "\N{U+0633}\N{U+06d5}",
      "\N{U+0686}\N{U+0627}",
      "\N{U+067e}\N{U+06d5}",
      "\N{U+0686}\N{U+06c8}",
      "\N{U+0634}\N{U+06d5}",
      "\N{U+064a}\N{U+06d5}"
    ],
    day_format_narrow => [
      "\N{U+062f}",
      "\N{U+0633}",
      "\N{U+0686}",
      "\N{U+067e}",
      "\N{U+062c}",
      "\N{U+0634}",
      "\N{U+064a}"
    ],
    day_format_wide => [
      "\N{U+062f}\N{U+06c8}\N{U+0634}\N{U+06d5}\N{U+0646}\N{U+0628}\N{U+06d5}",
      "\N{U+0633}\N{U+06d5}\N{U+064a}\N{U+0634}\N{U+06d5}\N{U+0646}\N{U+0628}\N{U+06d5}",
      "\N{U+0686}\N{U+0627}\N{U+0631}\N{U+0634}\N{U+06d5}\N{U+0646}\N{U+0628}\N{U+06d5}",
      "\N{U+067e}\N{U+06d5}\N{U+064a}\N{U+0634}\N{U+06d5}\N{U+0646}\N{U+0628}\N{U+06d5}",
      "\N{U+062c}\N{U+06c8}\N{U+0645}\N{U+06d5}",
      "\N{U+0634}\N{U+06d5}\N{U+0646}\N{U+0628}\N{U+06d5}",
      "\N{U+064a}\N{U+06d5}\N{U+0643}\N{U+0634}\N{U+06d5}\N{U+0646}\N{U+0628}\N{U+06d5}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+062f}\N{U+06c8}",
      "\N{U+0633}\N{U+06d5}",
      "\N{U+0686}\N{U+0627}",
      "\N{U+067e}\N{U+06d5}",
      "\N{U+0686}\N{U+06c8}",
      "\N{U+0634}\N{U+06d5}",
      "\N{U+064a}\N{U+06d5}"
    ],
    day_stand_alone_narrow => [
      "\N{U+062f}",
      "\N{U+0633}",
      "\N{U+0686}",
      "\N{U+067e}",
      "\N{U+062c}",
      "\N{U+0634}",
      "\N{U+064a}"
    ],
    day_stand_alone_wide => [
      "\N{U+062f}\N{U+06c8}\N{U+0634}\N{U+06d5}\N{U+0646}\N{U+0628}\N{U+06d5}",
      "\N{U+0633}\N{U+06d5}\N{U+064a}\N{U+0634}\N{U+06d5}\N{U+0646}\N{U+0628}\N{U+06d5}",
      "\N{U+0686}\N{U+0627}\N{U+0631}\N{U+0634}\N{U+06d5}\N{U+0646}\N{U+0628}\N{U+06d5}",
      "\N{U+067e}\N{U+06d5}\N{U+064a}\N{U+0634}\N{U+06d5}\N{U+0646}\N{U+0628}\N{U+06d5}",
      "\N{U+062c}\N{U+06c8}\N{U+0645}\N{U+06d5}",
      "\N{U+0634}\N{U+06d5}\N{U+0646}\N{U+0628}\N{U+06d5}",
      "\N{U+064a}\N{U+06d5}\N{U+0643}\N{U+0634}\N{U+06d5}\N{U+0646}\N{U+0628}\N{U+06d5}"
    ],
    era_abbreviated => [
      "BCE",
      "\N{U+0645}\N{U+0649}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+0649}\N{U+064a}\N{U+06d5}"
    ],
    era_narrow => [
      "BCE",
      "\N{U+0645}\N{U+0649}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+0649}\N{U+064a}\N{U+06d5}"
    ],
    era_wide => [
      "\N{U+0645}\N{U+0649}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+0649}\N{U+064a}\N{U+06d5}\N{U+062f}\N{U+0649}\N{U+0646} \N{U+0628}\N{U+06c7}\N{U+0631}\N{U+06c7}\N{U+0646}",
      "\N{U+0645}\N{U+0649}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+0649}\N{U+064a}\N{U+06d5}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Uyghur",
    month_format_abbreviated => [
      "\N{U+064a}\N{U+0627}\N{U+0646}\N{U+06cb}\N{U+0627}\N{U+0631}",
      "\N{U+0641}\N{U+06d0}\N{U+06cb}\N{U+0631}\N{U+0627}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+062a}",
      "\N{U+0626}\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06d0}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}",
      "\N{U+0626}\N{U+0649}\N{U+064a}\N{U+06c7}\N{U+0646}",
      "\N{U+0626}\N{U+0649}\N{U+064a}\N{U+06c7}\N{U+0644}",
      "\N{U+0626}\N{U+0627}\N{U+06cb}\N{U+063a}\N{U+06c7}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+06d0}\N{U+0646}\N{U+062a}\N{U+06d5}\N{U+0628}\N{U+0649}\N{U+0631}",
      "\N{U+0626}\N{U+06c6}\N{U+0643}\N{U+062a}\N{U+06d5}\N{U+0628}\N{U+0649}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+064a}\N{U+0627}\N{U+0628}\N{U+0649}\N{U+0631}",
      "\N{U+062f}\N{U+06d0}\N{U+0643}\N{U+0627}\N{U+0628}\N{U+0649}\N{U+0631}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+064a}\N{U+0627}\N{U+0646}\N{U+06cb}\N{U+0627}\N{U+0631}",
      "\N{U+0641}\N{U+06d0}\N{U+06cb}\N{U+0631}\N{U+0627}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+062a}",
      "\N{U+0626}\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06d0}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}",
      "\N{U+0626}\N{U+0649}\N{U+064a}\N{U+06c7}\N{U+0646}",
      "\N{U+0626}\N{U+0649}\N{U+064a}\N{U+06c7}\N{U+0644}",
      "\N{U+0626}\N{U+0627}\N{U+06cb}\N{U+063a}\N{U+06c7}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+06d0}\N{U+0646}\N{U+062a}\N{U+06d5}\N{U+0628}\N{U+0649}\N{U+0631}",
      "\N{U+0626}\N{U+06c6}\N{U+0643}\N{U+062a}\N{U+06d5}\N{U+0628}\N{U+0649}\N{U+0631}",
      "\N{U+0628}\N{U+0648}\N{U+064a}\N{U+0627}\N{U+0628}\N{U+0649}\N{U+0631}",
      "\N{U+062f}\N{U+06d0}\N{U+0643}\N{U+0627}\N{U+0628}\N{U+0649}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+064a}\N{U+0627}\N{U+0646}\N{U+06cb}\N{U+0627}\N{U+0631}",
      "\N{U+0641}\N{U+06d0}\N{U+06cb}\N{U+0631}\N{U+0627}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+062a}",
      "\N{U+0626}\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06d0}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}",
      "\N{U+0626}\N{U+0649}\N{U+064a}\N{U+06c7}\N{U+0646}",
      "\N{U+0626}\N{U+0649}\N{U+064a}\N{U+06c7}\N{U+0644}",
      "\N{U+0626}\N{U+0627}\N{U+06cb}\N{U+063a}\N{U+06c7}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+06d0}\N{U+0646}\N{U+062a}\N{U+06d5}\N{U+0628}\N{U+0649}\N{U+0631}",
      "\N{U+0626}\N{U+06c6}\N{U+0643}\N{U+062a}\N{U+06d5}\N{U+0628}\N{U+0649}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+064a}\N{U+0627}\N{U+0628}\N{U+0649}\N{U+0631}",
      "\N{U+062f}\N{U+06d0}\N{U+0643}\N{U+0627}\N{U+0628}\N{U+0649}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+064a}\N{U+0627}\N{U+0646}\N{U+06cb}\N{U+0627}\N{U+0631}",
      "\N{U+0641}\N{U+06d0}\N{U+06cb}\N{U+0631}\N{U+0627}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+062a}",
      "\N{U+0626}\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06d0}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}",
      "\N{U+0626}\N{U+0649}\N{U+064a}\N{U+06c7}\N{U+0646}",
      "\N{U+0626}\N{U+0649}\N{U+064a}\N{U+06c7}\N{U+0644}",
      "\N{U+0626}\N{U+0627}\N{U+06cb}\N{U+063a}\N{U+06c7}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+06d0}\N{U+0646}\N{U+062a}\N{U+06d5}\N{U+0628}\N{U+0649}\N{U+0631}",
      "\N{U+0626}\N{U+06c6}\N{U+0643}\N{U+062a}\N{U+06d5}\N{U+0628}\N{U+0649}\N{U+0631}",
      "\N{U+0628}\N{U+0648}\N{U+064a}\N{U+0627}\N{U+0628}\N{U+0649}\N{U+0631}",
      "\N{U+062f}\N{U+06d0}\N{U+0643}\N{U+0627}\N{U+0628}\N{U+0649}\N{U+0631}"
    ],
    name => "Uyghur",
    native_language => "\N{U+0626}\N{U+06c7}\N{U+064a}\N{U+063a}\N{U+06c7}\N{U+0631}\N{U+0686}\N{U+06d5}",
    native_name => "\N{U+0626}\N{U+06c7}\N{U+064a}\N{U+063a}\N{U+06c7}\N{U+0631}\N{U+0686}\N{U+06d5}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0628}\N{U+0649}\N{U+0631}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}",
      "\N{U+0626}\N{U+0649}\N{U+0643}\N{U+0643}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}",
      "\N{U+0626}\N{U+06c8}\N{U+0686}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}",
      "\N{U+062a}\N{U+06c6}\N{U+062a}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+0628}\N{U+0649}\N{U+0631}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}",
      "\N{U+0626}\N{U+0649}\N{U+0643}\N{U+0643}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}",
      "\N{U+0626}\N{U+06c8}\N{U+0686}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}",
      "\N{U+062a}\N{U+06c6}\N{U+062a}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0628}\N{U+0649}\N{U+0631}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}",
      "\N{U+0626}\N{U+0649}\N{U+0643}\N{U+0643}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}",
      "\N{U+0626}\N{U+06c8}\N{U+0686}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}",
      "\N{U+062a}\N{U+06c6}\N{U+062a}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+0628}\N{U+0649}\N{U+0631}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}",
      "\N{U+0626}\N{U+0649}\N{U+0643}\N{U+0643}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}",
      "\N{U+0626}\N{U+06c8}\N{U+0686}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}",
      "\N{U+062a}\N{U+06c6}\N{U+062a}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ug-CN ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} MMM d\N{U+060c} y G",
      GyMMMd => "MMM d\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} M/d",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} MMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E\N{U+060c} M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} MMM d\N{U+060c} y",
      yMMMM => "y MMMM",
      yMMMd => "MMM d\N{U+060c} y",
      yMd => "M/d/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ug-CN",
    date_format_full => "EEEE\N{U+060c} MMMM d\N{U+060c} y",
    date_format_long => "MMMM d\N{U+060c} y",
    date_format_medium => "MMM d\N{U+060c} y",
    date_format_short => "M/d/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1}\N{U+060c} {0}",
    datetime_format_short => "{1}\N{U+060c} {0}",
    day_format_abbreviated => [
      "\N{U+062f}\N{U+06c8}",
      "\N{U+0633}\N{U+06d5}",
      "\N{U+0686}\N{U+0627}",
      "\N{U+067e}\N{U+06d5}",
      "\N{U+0686}\N{U+06c8}",
      "\N{U+0634}\N{U+06d5}",
      "\N{U+064a}\N{U+06d5}"
    ],
    day_format_narrow => [
      "\N{U+062f}",
      "\N{U+0633}",
      "\N{U+0686}",
      "\N{U+067e}",
      "\N{U+062c}",
      "\N{U+0634}",
      "\N{U+064a}"
    ],
    day_format_wide => [
      "\N{U+062f}\N{U+06c8}\N{U+0634}\N{U+06d5}\N{U+0646}\N{U+0628}\N{U+06d5}",
      "\N{U+0633}\N{U+06d5}\N{U+064a}\N{U+0634}\N{U+06d5}\N{U+0646}\N{U+0628}\N{U+06d5}",
      "\N{U+0686}\N{U+0627}\N{U+0631}\N{U+0634}\N{U+06d5}\N{U+0646}\N{U+0628}\N{U+06d5}",
      "\N{U+067e}\N{U+06d5}\N{U+064a}\N{U+0634}\N{U+06d5}\N{U+0646}\N{U+0628}\N{U+06d5}",
      "\N{U+062c}\N{U+06c8}\N{U+0645}\N{U+06d5}",
      "\N{U+0634}\N{U+06d5}\N{U+0646}\N{U+0628}\N{U+06d5}",
      "\N{U+064a}\N{U+06d5}\N{U+0643}\N{U+0634}\N{U+06d5}\N{U+0646}\N{U+0628}\N{U+06d5}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+062f}\N{U+06c8}",
      "\N{U+0633}\N{U+06d5}",
      "\N{U+0686}\N{U+0627}",
      "\N{U+067e}\N{U+06d5}",
      "\N{U+0686}\N{U+06c8}",
      "\N{U+0634}\N{U+06d5}",
      "\N{U+064a}\N{U+06d5}"
    ],
    day_stand_alone_narrow => [
      "\N{U+062f}",
      "\N{U+0633}",
      "\N{U+0686}",
      "\N{U+067e}",
      "\N{U+062c}",
      "\N{U+0634}",
      "\N{U+064a}"
    ],
    day_stand_alone_wide => [
      "\N{U+062f}\N{U+06c8}\N{U+0634}\N{U+06d5}\N{U+0646}\N{U+0628}\N{U+06d5}",
      "\N{U+0633}\N{U+06d5}\N{U+064a}\N{U+0634}\N{U+06d5}\N{U+0646}\N{U+0628}\N{U+06d5}",
      "\N{U+0686}\N{U+0627}\N{U+0631}\N{U+0634}\N{U+06d5}\N{U+0646}\N{U+0628}\N{U+06d5}",
      "\N{U+067e}\N{U+06d5}\N{U+064a}\N{U+0634}\N{U+06d5}\N{U+0646}\N{U+0628}\N{U+06d5}",
      "\N{U+062c}\N{U+06c8}\N{U+0645}\N{U+06d5}",
      "\N{U+0634}\N{U+06d5}\N{U+0646}\N{U+0628}\N{U+06d5}",
      "\N{U+064a}\N{U+06d5}\N{U+0643}\N{U+0634}\N{U+06d5}\N{U+0646}\N{U+0628}\N{U+06d5}"
    ],
    era_abbreviated => [
      "BCE",
      "\N{U+0645}\N{U+0649}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+0649}\N{U+064a}\N{U+06d5}"
    ],
    era_narrow => [
      "BCE",
      "\N{U+0645}\N{U+0649}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+0649}\N{U+064a}\N{U+06d5}"
    ],
    era_wide => [
      "\N{U+0645}\N{U+0649}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+0649}\N{U+064a}\N{U+06d5}\N{U+062f}\N{U+0649}\N{U+0646} \N{U+0628}\N{U+06c7}\N{U+0631}\N{U+06c7}\N{U+0646}",
      "\N{U+0645}\N{U+0649}\N{U+0644}\N{U+0627}\N{U+062f}\N{U+0649}\N{U+064a}\N{U+06d5}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a\N{U+060c} %d-%m-%Y\N{U+060c} %T",
    glibc_date_format => "%a\N{U+060c} %d-%m-%Y",
    glibc_datetime_format => "%a\N{U+060c} %d-%m-%Y\N{U+060c} %T",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Uyghur",
    month_format_abbreviated => [
      "\N{U+064a}\N{U+0627}\N{U+0646}\N{U+06cb}\N{U+0627}\N{U+0631}",
      "\N{U+0641}\N{U+06d0}\N{U+06cb}\N{U+0631}\N{U+0627}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+062a}",
      "\N{U+0626}\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06d0}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}",
      "\N{U+0626}\N{U+0649}\N{U+064a}\N{U+06c7}\N{U+0646}",
      "\N{U+0626}\N{U+0649}\N{U+064a}\N{U+06c7}\N{U+0644}",
      "\N{U+0626}\N{U+0627}\N{U+06cb}\N{U+063a}\N{U+06c7}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+06d0}\N{U+0646}\N{U+062a}\N{U+06d5}\N{U+0628}\N{U+0649}\N{U+0631}",
      "\N{U+0626}\N{U+06c6}\N{U+0643}\N{U+062a}\N{U+06d5}\N{U+0628}\N{U+0649}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+064a}\N{U+0627}\N{U+0628}\N{U+0649}\N{U+0631}",
      "\N{U+062f}\N{U+06d0}\N{U+0643}\N{U+0627}\N{U+0628}\N{U+0649}\N{U+0631}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+064a}\N{U+0627}\N{U+0646}\N{U+06cb}\N{U+0627}\N{U+0631}",
      "\N{U+0641}\N{U+06d0}\N{U+06cb}\N{U+0631}\N{U+0627}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+062a}",
      "\N{U+0626}\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06d0}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}",
      "\N{U+0626}\N{U+0649}\N{U+064a}\N{U+06c7}\N{U+0646}",
      "\N{U+0626}\N{U+0649}\N{U+064a}\N{U+06c7}\N{U+0644}",
      "\N{U+0626}\N{U+0627}\N{U+06cb}\N{U+063a}\N{U+06c7}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+06d0}\N{U+0646}\N{U+062a}\N{U+06d5}\N{U+0628}\N{U+0649}\N{U+0631}",
      "\N{U+0626}\N{U+06c6}\N{U+0643}\N{U+062a}\N{U+06d5}\N{U+0628}\N{U+0649}\N{U+0631}",
      "\N{U+0628}\N{U+0648}\N{U+064a}\N{U+0627}\N{U+0628}\N{U+0649}\N{U+0631}",
      "\N{U+062f}\N{U+06d0}\N{U+0643}\N{U+0627}\N{U+0628}\N{U+0649}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+064a}\N{U+0627}\N{U+0646}\N{U+06cb}\N{U+0627}\N{U+0631}",
      "\N{U+0641}\N{U+06d0}\N{U+06cb}\N{U+0631}\N{U+0627}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+062a}",
      "\N{U+0626}\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06d0}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}",
      "\N{U+0626}\N{U+0649}\N{U+064a}\N{U+06c7}\N{U+0646}",
      "\N{U+0626}\N{U+0649}\N{U+064a}\N{U+06c7}\N{U+0644}",
      "\N{U+0626}\N{U+0627}\N{U+06cb}\N{U+063a}\N{U+06c7}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+06d0}\N{U+0646}\N{U+062a}\N{U+06d5}\N{U+0628}\N{U+0649}\N{U+0631}",
      "\N{U+0626}\N{U+06c6}\N{U+0643}\N{U+062a}\N{U+06d5}\N{U+0628}\N{U+0649}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+064a}\N{U+0627}\N{U+0628}\N{U+0649}\N{U+0631}",
      "\N{U+062f}\N{U+06d0}\N{U+0643}\N{U+0627}\N{U+0628}\N{U+0649}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+064a}\N{U+0627}\N{U+0646}\N{U+06cb}\N{U+0627}\N{U+0631}",
      "\N{U+0641}\N{U+06d0}\N{U+06cb}\N{U+0631}\N{U+0627}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+062a}",
      "\N{U+0626}\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06d0}\N{U+0644}",
      "\N{U+0645}\N{U+0627}\N{U+064a}",
      "\N{U+0626}\N{U+0649}\N{U+064a}\N{U+06c7}\N{U+0646}",
      "\N{U+0626}\N{U+0649}\N{U+064a}\N{U+06c7}\N{U+0644}",
      "\N{U+0626}\N{U+0627}\N{U+06cb}\N{U+063a}\N{U+06c7}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+06d0}\N{U+0646}\N{U+062a}\N{U+06d5}\N{U+0628}\N{U+0649}\N{U+0631}",
      "\N{U+0626}\N{U+06c6}\N{U+0643}\N{U+062a}\N{U+06d5}\N{U+0628}\N{U+0649}\N{U+0631}",
      "\N{U+0628}\N{U+0648}\N{U+064a}\N{U+0627}\N{U+0628}\N{U+0649}\N{U+0631}",
      "\N{U+062f}\N{U+06d0}\N{U+0643}\N{U+0627}\N{U+0628}\N{U+0649}\N{U+0631}"
    ],
    name => "Uyghur China",
    native_language => "\N{U+0626}\N{U+06c7}\N{U+064a}\N{U+063a}\N{U+06c7}\N{U+0631}\N{U+0686}\N{U+06d5}",
    native_name => "\N{U+0626}\N{U+06c7}\N{U+064a}\N{U+063a}\N{U+06c7}\N{U+0631}\N{U+0686}\N{U+06d5} \N{U+062c}\N{U+06c7}\N{U+06ad}\N{U+06af}\N{U+0648}",
    native_script => undef,
    native_territory => "\N{U+062c}\N{U+06c7}\N{U+06ad}\N{U+06af}\N{U+0648}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+0628}\N{U+0649}\N{U+0631}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}",
      "\N{U+0626}\N{U+0649}\N{U+0643}\N{U+0643}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}",
      "\N{U+0626}\N{U+06c8}\N{U+0686}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}",
      "\N{U+062a}\N{U+06c6}\N{U+062a}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+0628}\N{U+0649}\N{U+0631}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}",
      "\N{U+0626}\N{U+0649}\N{U+0643}\N{U+0643}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}",
      "\N{U+0626}\N{U+06c8}\N{U+0686}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}",
      "\N{U+062a}\N{U+06c6}\N{U+062a}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+0628}\N{U+0649}\N{U+0631}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}",
      "\N{U+0626}\N{U+0649}\N{U+0643}\N{U+0643}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}",
      "\N{U+0626}\N{U+06c8}\N{U+0686}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}",
      "\N{U+062a}\N{U+06c6}\N{U+062a}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+0628}\N{U+0649}\N{U+0631}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}",
      "\N{U+0626}\N{U+0649}\N{U+0643}\N{U+0643}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}",
      "\N{U+0626}\N{U+06c8}\N{U+0686}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}",
      "\N{U+062a}\N{U+06c6}\N{U+062a}\N{U+0649}\N{U+0646}\N{U+0686}\N{U+0649} \N{U+067e}\N{U+06d5}\N{U+0633}\N{U+0649}\N{U+0644}"
    ],
    script => undef,
    territory => "China",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ uk ]__
  {
    am_pm_abbreviated => [
      "\N{U+0434}\N{U+043f}",
      "\N{U+043f}\N{U+043f}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E, d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "LLL y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "LL",
      MEd => "E, dd.MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd.MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM.y",
      yMEd => "E, dd.MM.y",
      yMMM => "LLL y",
      yMMMEd => "E, d MMM y",
      yMMMM => "LLLL y",
      yMMMd => "d MMM y",
      yMd => "dd.MM.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y '\N{U+0440}'."
    },
    code => "uk",
    date_format_full => "EEEE, d MMMM y '\N{U+0440}'.",
    date_format_long => "d MMMM y '\N{U+0440}'.",
    date_format_medium => "d MMM y '\N{U+0440}'.",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} '\N{U+043e}' {0}",
    datetime_format_long => "{1} '\N{U+043e}' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+041f}\N{U+043d}",
      "\N{U+0412}\N{U+0442}",
      "\N{U+0421}\N{U+0440}",
      "\N{U+0427}\N{U+0442}",
      "\N{U+041f}\N{U+0442}",
      "\N{U+0421}\N{U+0431}",
      "\N{U+041d}\N{U+0434}"
    ],
    day_format_narrow => [
      "\N{U+041f}",
      "\N{U+0412}",
      "\N{U+0421}",
      "\N{U+0427}",
      "\N{U+041f}",
      "\N{U+0421}",
      "\N{U+041d}"
    ],
    day_format_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0456}\N{U+043b}\N{U+043e}\N{U+043a}",
      "\N{U+0432}\N{U+0456}\N{U+0432}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+043e}\N{U+043a}",
      "\N{U+0441}\N{U+0435}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0435}\N{U+0440}",
      "\N{U+043f}\N{U+02bc}\N{U+044f}\N{U+0442}\N{U+043d}\N{U+0438}\N{U+0446}\N{U+044f}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0456}\N{U+043b}\N{U+044f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+041f}\N{U+043d}",
      "\N{U+0412}\N{U+0442}",
      "\N{U+0421}\N{U+0440}",
      "\N{U+0427}\N{U+0442}",
      "\N{U+041f}\N{U+0442}",
      "\N{U+0421}\N{U+0431}",
      "\N{U+041d}\N{U+0434}"
    ],
    day_stand_alone_narrow => [
      "\N{U+041f}",
      "\N{U+0412}",
      "\N{U+0421}",
      "\N{U+0427}",
      "\N{U+041f}",
      "\N{U+0421}",
      "\N{U+041d}"
    ],
    day_stand_alone_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0456}\N{U+043b}\N{U+043e}\N{U+043a}",
      "\N{U+0432}\N{U+0456}\N{U+0432}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+043e}\N{U+043a}",
      "\N{U+0441}\N{U+0435}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0435}\N{U+0440}",
      "\N{U+043f}\N{U+02bc}\N{U+044f}\N{U+0442}\N{U+043d}\N{U+0438}\N{U+0446}\N{U+044f}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0456}\N{U+043b}\N{U+044f}"
    ],
    era_abbreviated => [
      "\N{U+0434}\N{U+043e} \N{U+043d}. \N{U+0435}.",
      "\N{U+043d}. \N{U+0435}."
    ],
    era_narrow => [
      "\N{U+0434}\N{U+043e} \N{U+043d}.\N{U+0435}.",
      "\N{U+043d}.\N{U+0435}."
    ],
    era_wide => [
      "\N{U+0434}\N{U+043e} \N{U+043d}\N{U+0430}\N{U+0448}\N{U+043e}\N{U+0457} \N{U+0435}\N{U+0440}\N{U+0438}",
      "\N{U+043d}\N{U+0430}\N{U+0448}\N{U+043e}\N{U+0457} \N{U+0435}\N{U+0440}\N{U+0438}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Ukrainian",
    month_format_abbreviated => [
      "\N{U+0441}\N{U+0456}\N{U+0447}.",
      "\N{U+043b}\N{U+044e}\N{U+0442}.",
      "\N{U+0431}\N{U+0435}\N{U+0440}.",
      "\N{U+043a}\N{U+0432}\N{U+0456}\N{U+0442}.",
      "\N{U+0442}\N{U+0440}\N{U+0430}\N{U+0432}.",
      "\N{U+0447}\N{U+0435}\N{U+0440}\N{U+0432}.",
      "\N{U+043b}\N{U+0438}\N{U+043f}.",
      "\N{U+0441}\N{U+0435}\N{U+0440}\N{U+043f}.",
      "\N{U+0432}\N{U+0435}\N{U+0440}.",
      "\N{U+0436}\N{U+043e}\N{U+0432}\N{U+0442}.",
      "\N{U+043b}\N{U+0438}\N{U+0441}\N{U+0442}.",
      "\N{U+0433}\N{U+0440}\N{U+0443}\N{U+0434}."
    ],
    month_format_narrow => [
      "\N{U+0421}",
      "\N{U+041b}",
      "\N{U+0411}",
      "\N{U+041a}",
      "\N{U+0422}",
      "\N{U+0427}",
      "\N{U+041b}",
      "\N{U+0421}",
      "\N{U+0412}",
      "\N{U+0416}",
      "\N{U+041b}",
      "\N{U+0413}"
    ],
    month_format_wide => [
      "\N{U+0441}\N{U+0456}\N{U+0447}\N{U+043d}\N{U+044f}",
      "\N{U+043b}\N{U+044e}\N{U+0442}\N{U+043e}\N{U+0433}\N{U+043e}",
      "\N{U+0431}\N{U+0435}\N{U+0440}\N{U+0435}\N{U+0437}\N{U+043d}\N{U+044f}",
      "\N{U+043a}\N{U+0432}\N{U+0456}\N{U+0442}\N{U+043d}\N{U+044f}",
      "\N{U+0442}\N{U+0440}\N{U+0430}\N{U+0432}\N{U+043d}\N{U+044f}",
      "\N{U+0447}\N{U+0435}\N{U+0440}\N{U+0432}\N{U+043d}\N{U+044f}",
      "\N{U+043b}\N{U+0438}\N{U+043f}\N{U+043d}\N{U+044f}",
      "\N{U+0441}\N{U+0435}\N{U+0440}\N{U+043f}\N{U+043d}\N{U+044f}",
      "\N{U+0432}\N{U+0435}\N{U+0440}\N{U+0435}\N{U+0441}\N{U+043d}\N{U+044f}",
      "\N{U+0436}\N{U+043e}\N{U+0432}\N{U+0442}\N{U+043d}\N{U+044f}",
      "\N{U+043b}\N{U+0438}\N{U+0441}\N{U+0442}\N{U+043e}\N{U+043f}\N{U+0430}\N{U+0434}\N{U+0430}",
      "\N{U+0433}\N{U+0440}\N{U+0443}\N{U+0434}\N{U+043d}\N{U+044f}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0421}\N{U+0456}\N{U+0447}",
      "\N{U+041b}\N{U+044e}\N{U+0442}",
      "\N{U+0411}\N{U+0435}\N{U+0440}",
      "\N{U+041a}\N{U+0432}\N{U+0456}",
      "\N{U+0422}\N{U+0440}\N{U+0430}",
      "\N{U+0427}\N{U+0435}\N{U+0440}",
      "\N{U+041b}\N{U+0438}\N{U+043f}",
      "\N{U+0421}\N{U+0435}\N{U+0440}",
      "\N{U+0412}\N{U+0435}\N{U+0440}",
      "\N{U+0416}\N{U+043e}\N{U+0432}",
      "\N{U+041b}\N{U+0438}\N{U+0441}",
      "\N{U+0413}\N{U+0440}\N{U+0443}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0421}",
      "\N{U+041b}",
      "\N{U+0411}",
      "\N{U+041a}",
      "\N{U+0422}",
      "\N{U+0427}",
      "\N{U+041b}",
      "\N{U+0421}",
      "\N{U+0412}",
      "\N{U+0416}",
      "\N{U+041b}",
      "\N{U+0413}"
    ],
    month_stand_alone_wide => [
      "\N{U+0441}\N{U+0456}\N{U+0447}\N{U+0435}\N{U+043d}\N{U+044c}",
      "\N{U+043b}\N{U+044e}\N{U+0442}\N{U+0438}\N{U+0439}",
      "\N{U+0431}\N{U+0435}\N{U+0440}\N{U+0435}\N{U+0437}\N{U+0435}\N{U+043d}\N{U+044c}",
      "\N{U+043a}\N{U+0432}\N{U+0456}\N{U+0442}\N{U+0435}\N{U+043d}\N{U+044c}",
      "\N{U+0442}\N{U+0440}\N{U+0430}\N{U+0432}\N{U+0435}\N{U+043d}\N{U+044c}",
      "\N{U+0447}\N{U+0435}\N{U+0440}\N{U+0432}\N{U+0435}\N{U+043d}\N{U+044c}",
      "\N{U+043b}\N{U+0438}\N{U+043f}\N{U+0435}\N{U+043d}\N{U+044c}",
      "\N{U+0441}\N{U+0435}\N{U+0440}\N{U+043f}\N{U+0435}\N{U+043d}\N{U+044c}",
      "\N{U+0432}\N{U+0435}\N{U+0440}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+044c}",
      "\N{U+0436}\N{U+043e}\N{U+0432}\N{U+0442}\N{U+0435}\N{U+043d}\N{U+044c}",
      "\N{U+043b}\N{U+0438}\N{U+0441}\N{U+0442}\N{U+043e}\N{U+043f}\N{U+0430}\N{U+0434}",
      "\N{U+0433}\N{U+0440}\N{U+0443}\N{U+0434}\N{U+0435}\N{U+043d}\N{U+044c}"
    ],
    name => "Ukrainian",
    native_language => "\N{U+0443}\N{U+043a}\N{U+0440}\N{U+0430}\N{U+0457}\N{U+043d}\N{U+0441}\N{U+044c}\N{U+043a}\N{U+0430}",
    native_name => "\N{U+0443}\N{U+043a}\N{U+0440}\N{U+0430}\N{U+0457}\N{U+043d}\N{U+0441}\N{U+044c}\N{U+043a}\N{U+0430}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    quarter_stand_alone_abbreviated => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ uk-UA ]__
  {
    am_pm_abbreviated => [
      "\N{U+0434}\N{U+043f}",
      "\N{U+043f}\N{U+043f}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E, d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "LLL y G",
      GyMMMEd => "E, d MMM y G",
      GyMMMd => "d MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "LL",
      MEd => "E, dd.MM",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      Md => "dd.MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "MM.y",
      yMEd => "E, dd.MM.y",
      yMMM => "LLL y",
      yMMMEd => "E, d MMM y",
      yMMMM => "LLLL y",
      yMMMd => "d MMM y",
      yMd => "dd.MM.y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y '\N{U+0440}'."
    },
    code => "uk-UA",
    date_format_full => "EEEE, d MMMM y '\N{U+0440}'.",
    date_format_long => "d MMMM y '\N{U+0440}'.",
    date_format_medium => "d MMM y '\N{U+0440}'.",
    date_format_short => "dd.MM.yy",
    datetime_format_full => "{1} '\N{U+043e}' {0}",
    datetime_format_long => "{1} '\N{U+043e}' {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "\N{U+041f}\N{U+043d}",
      "\N{U+0412}\N{U+0442}",
      "\N{U+0421}\N{U+0440}",
      "\N{U+0427}\N{U+0442}",
      "\N{U+041f}\N{U+0442}",
      "\N{U+0421}\N{U+0431}",
      "\N{U+041d}\N{U+0434}"
    ],
    day_format_narrow => [
      "\N{U+041f}",
      "\N{U+0412}",
      "\N{U+0421}",
      "\N{U+0427}",
      "\N{U+041f}",
      "\N{U+0421}",
      "\N{U+041d}"
    ],
    day_format_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0456}\N{U+043b}\N{U+043e}\N{U+043a}",
      "\N{U+0432}\N{U+0456}\N{U+0432}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+043e}\N{U+043a}",
      "\N{U+0441}\N{U+0435}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0435}\N{U+0440}",
      "\N{U+043f}\N{U+02bc}\N{U+044f}\N{U+0442}\N{U+043d}\N{U+0438}\N{U+0446}\N{U+044f}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0456}\N{U+043b}\N{U+044f}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+041f}\N{U+043d}",
      "\N{U+0412}\N{U+0442}",
      "\N{U+0421}\N{U+0440}",
      "\N{U+0427}\N{U+0442}",
      "\N{U+041f}\N{U+0442}",
      "\N{U+0421}\N{U+0431}",
      "\N{U+041d}\N{U+0434}"
    ],
    day_stand_alone_narrow => [
      "\N{U+041f}",
      "\N{U+0412}",
      "\N{U+0421}",
      "\N{U+0427}",
      "\N{U+041f}",
      "\N{U+0421}",
      "\N{U+041d}"
    ],
    day_stand_alone_wide => [
      "\N{U+043f}\N{U+043e}\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0456}\N{U+043b}\N{U+043e}\N{U+043a}",
      "\N{U+0432}\N{U+0456}\N{U+0432}\N{U+0442}\N{U+043e}\N{U+0440}\N{U+043e}\N{U+043a}",
      "\N{U+0441}\N{U+0435}\N{U+0440}\N{U+0435}\N{U+0434}\N{U+0430}",
      "\N{U+0447}\N{U+0435}\N{U+0442}\N{U+0432}\N{U+0435}\N{U+0440}",
      "\N{U+043f}\N{U+02bc}\N{U+044f}\N{U+0442}\N{U+043d}\N{U+0438}\N{U+0446}\N{U+044f}",
      "\N{U+0441}\N{U+0443}\N{U+0431}\N{U+043e}\N{U+0442}\N{U+0430}",
      "\N{U+043d}\N{U+0435}\N{U+0434}\N{U+0456}\N{U+043b}\N{U+044f}"
    ],
    era_abbreviated => [
      "\N{U+0434}\N{U+043e} \N{U+043d}. \N{U+0435}.",
      "\N{U+043d}. \N{U+0435}."
    ],
    era_narrow => [
      "\N{U+0434}\N{U+043e} \N{U+043d}.\N{U+0435}.",
      "\N{U+043d}.\N{U+0435}."
    ],
    era_wide => [
      "\N{U+0434}\N{U+043e} \N{U+043d}\N{U+0430}\N{U+0448}\N{U+043e}\N{U+0457} \N{U+0435}\N{U+0440}\N{U+0438}",
      "\N{U+043d}\N{U+0430}\N{U+0448}\N{U+043e}\N{U+0457} \N{U+0435}\N{U+0440}\N{U+0438}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%A, %-d %Om %Y %X %z",
    glibc_date_format => "%d.%m.%y",
    glibc_datetime_format => "%a, %d-%b-%Y %X %z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Ukrainian",
    month_format_abbreviated => [
      "\N{U+0441}\N{U+0456}\N{U+0447}.",
      "\N{U+043b}\N{U+044e}\N{U+0442}.",
      "\N{U+0431}\N{U+0435}\N{U+0440}.",
      "\N{U+043a}\N{U+0432}\N{U+0456}\N{U+0442}.",
      "\N{U+0442}\N{U+0440}\N{U+0430}\N{U+0432}.",
      "\N{U+0447}\N{U+0435}\N{U+0440}\N{U+0432}.",
      "\N{U+043b}\N{U+0438}\N{U+043f}.",
      "\N{U+0441}\N{U+0435}\N{U+0440}\N{U+043f}.",
      "\N{U+0432}\N{U+0435}\N{U+0440}.",
      "\N{U+0436}\N{U+043e}\N{U+0432}\N{U+0442}.",
      "\N{U+043b}\N{U+0438}\N{U+0441}\N{U+0442}.",
      "\N{U+0433}\N{U+0440}\N{U+0443}\N{U+0434}."
    ],
    month_format_narrow => [
      "\N{U+0421}",
      "\N{U+041b}",
      "\N{U+0411}",
      "\N{U+041a}",
      "\N{U+0422}",
      "\N{U+0427}",
      "\N{U+041b}",
      "\N{U+0421}",
      "\N{U+0412}",
      "\N{U+0416}",
      "\N{U+041b}",
      "\N{U+0413}"
    ],
    month_format_wide => [
      "\N{U+0441}\N{U+0456}\N{U+0447}\N{U+043d}\N{U+044f}",
      "\N{U+043b}\N{U+044e}\N{U+0442}\N{U+043e}\N{U+0433}\N{U+043e}",
      "\N{U+0431}\N{U+0435}\N{U+0440}\N{U+0435}\N{U+0437}\N{U+043d}\N{U+044f}",
      "\N{U+043a}\N{U+0432}\N{U+0456}\N{U+0442}\N{U+043d}\N{U+044f}",
      "\N{U+0442}\N{U+0440}\N{U+0430}\N{U+0432}\N{U+043d}\N{U+044f}",
      "\N{U+0447}\N{U+0435}\N{U+0440}\N{U+0432}\N{U+043d}\N{U+044f}",
      "\N{U+043b}\N{U+0438}\N{U+043f}\N{U+043d}\N{U+044f}",
      "\N{U+0441}\N{U+0435}\N{U+0440}\N{U+043f}\N{U+043d}\N{U+044f}",
      "\N{U+0432}\N{U+0435}\N{U+0440}\N{U+0435}\N{U+0441}\N{U+043d}\N{U+044f}",
      "\N{U+0436}\N{U+043e}\N{U+0432}\N{U+0442}\N{U+043d}\N{U+044f}",
      "\N{U+043b}\N{U+0438}\N{U+0441}\N{U+0442}\N{U+043e}\N{U+043f}\N{U+0430}\N{U+0434}\N{U+0430}",
      "\N{U+0433}\N{U+0440}\N{U+0443}\N{U+0434}\N{U+043d}\N{U+044f}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+0421}\N{U+0456}\N{U+0447}",
      "\N{U+041b}\N{U+044e}\N{U+0442}",
      "\N{U+0411}\N{U+0435}\N{U+0440}",
      "\N{U+041a}\N{U+0432}\N{U+0456}",
      "\N{U+0422}\N{U+0440}\N{U+0430}",
      "\N{U+0427}\N{U+0435}\N{U+0440}",
      "\N{U+041b}\N{U+0438}\N{U+043f}",
      "\N{U+0421}\N{U+0435}\N{U+0440}",
      "\N{U+0412}\N{U+0435}\N{U+0440}",
      "\N{U+0416}\N{U+043e}\N{U+0432}",
      "\N{U+041b}\N{U+0438}\N{U+0441}",
      "\N{U+0413}\N{U+0440}\N{U+0443}"
    ],
    month_stand_alone_narrow => [
      "\N{U+0421}",
      "\N{U+041b}",
      "\N{U+0411}",
      "\N{U+041a}",
      "\N{U+0422}",
      "\N{U+0427}",
      "\N{U+041b}",
      "\N{U+0421}",
      "\N{U+0412}",
      "\N{U+0416}",
      "\N{U+041b}",
      "\N{U+0413}"
    ],
    month_stand_alone_wide => [
      "\N{U+0441}\N{U+0456}\N{U+0447}\N{U+0435}\N{U+043d}\N{U+044c}",
      "\N{U+043b}\N{U+044e}\N{U+0442}\N{U+0438}\N{U+0439}",
      "\N{U+0431}\N{U+0435}\N{U+0440}\N{U+0435}\N{U+0437}\N{U+0435}\N{U+043d}\N{U+044c}",
      "\N{U+043a}\N{U+0432}\N{U+0456}\N{U+0442}\N{U+0435}\N{U+043d}\N{U+044c}",
      "\N{U+0442}\N{U+0440}\N{U+0430}\N{U+0432}\N{U+0435}\N{U+043d}\N{U+044c}",
      "\N{U+0447}\N{U+0435}\N{U+0440}\N{U+0432}\N{U+0435}\N{U+043d}\N{U+044c}",
      "\N{U+043b}\N{U+0438}\N{U+043f}\N{U+0435}\N{U+043d}\N{U+044c}",
      "\N{U+0441}\N{U+0435}\N{U+0440}\N{U+043f}\N{U+0435}\N{U+043d}\N{U+044c}",
      "\N{U+0432}\N{U+0435}\N{U+0440}\N{U+0435}\N{U+0441}\N{U+0435}\N{U+043d}\N{U+044c}",
      "\N{U+0436}\N{U+043e}\N{U+0432}\N{U+0442}\N{U+0435}\N{U+043d}\N{U+044c}",
      "\N{U+043b}\N{U+0438}\N{U+0441}\N{U+0442}\N{U+043e}\N{U+043f}\N{U+0430}\N{U+0434}",
      "\N{U+0433}\N{U+0440}\N{U+0443}\N{U+0434}\N{U+0435}\N{U+043d}\N{U+044c}"
    ],
    name => "Ukrainian Ukraine",
    native_language => "\N{U+0443}\N{U+043a}\N{U+0440}\N{U+0430}\N{U+0457}\N{U+043d}\N{U+0441}\N{U+044c}\N{U+043a}\N{U+0430}",
    native_name => "\N{U+0443}\N{U+043a}\N{U+0440}\N{U+0430}\N{U+0457}\N{U+043d}\N{U+0441}\N{U+044c}\N{U+043a}\N{U+0430} \N{U+0423}\N{U+043a}\N{U+0440}\N{U+0430}\N{U+0457}\N{U+043d}\N{U+0430}",
    native_script => undef,
    native_territory => "\N{U+0423}\N{U+043a}\N{U+0440}\N{U+0430}\N{U+0457}\N{U+043d}\N{U+0430}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}."
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    quarter_stand_alone_abbreviated => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}.",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}."
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "2-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "3-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}",
      "4-\N{U+0439} \N{U+043a}\N{U+0432}\N{U+0430}\N{U+0440}\N{U+0442}\N{U+0430}\N{U+043b}"
    ],
    script => undef,
    territory => "Ukraine",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ ur ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E\N{U+060c} d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ur",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "d MMM\N{U+060c} y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0633}\N{U+0648}\N{U+0645}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0645}\N{U+0646}\N{U+06af}\N{U+0644}",
      "\N{U+0628}\N{U+062f}\N{U+06be}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0631}\N{U+0627}\N{U+062a}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+06c1}",
      "\N{U+06c1}\N{U+0641}\N{U+062a}\N{U+06c1}",
      "\N{U+0627}\N{U+062a}\N{U+0648}\N{U+0627}\N{U+0631}"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "\N{U+0633}\N{U+0648}\N{U+0645}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0645}\N{U+0646}\N{U+06af}\N{U+0644}",
      "\N{U+0628}\N{U+062f}\N{U+06be}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0631}\N{U+0627}\N{U+062a}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+06c1}",
      "\N{U+06c1}\N{U+0641}\N{U+062a}\N{U+06c1}",
      "\N{U+0627}\N{U+062a}\N{U+0648}\N{U+0627}\N{U+0631}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0633}\N{U+0648}\N{U+0645}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0645}\N{U+0646}\N{U+06af}\N{U+0644}",
      "\N{U+0628}\N{U+062f}\N{U+06be}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0631}\N{U+0627}\N{U+062a}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+06c1}",
      "\N{U+06c1}\N{U+0641}\N{U+062a}\N{U+06c1}",
      "\N{U+0627}\N{U+062a}\N{U+0648}\N{U+0627}\N{U+0631}"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "\N{U+0633}\N{U+0648}\N{U+0645}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0645}\N{U+0646}\N{U+06af}\N{U+0644}",
      "\N{U+0628}\N{U+062f}\N{U+06be}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0631}\N{U+0627}\N{U+062a}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+06c1}",
      "\N{U+06c1}\N{U+0641}\N{U+062a}\N{U+06c1}",
      "\N{U+0627}\N{U+062a}\N{U+0648}\N{U+0627}\N{U+0631}"
    ],
    era_abbreviated => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0645}\N{U+0633}\N{U+06cc}\N{U+062d}",
      "\N{U+0639}\N{U+06cc}\N{U+0633}\N{U+0648}\N{U+06cc}"
    ],
    era_narrow => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0645}\N{U+0633}\N{U+06cc}\N{U+062d}",
      "\N{U+0639}\N{U+06cc}\N{U+0633}\N{U+0648}\N{U+06cc}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0645}\N{U+0633}\N{U+06cc}\N{U+062d}",
      "\N{U+0639}\N{U+06cc}\N{U+0633}\N{U+0648}\N{U+06cc}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Urdu",
    month_format_abbreviated => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+0626}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+0626}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+0626}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+0626}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Urdu",
    native_language => "\N{U+0627}\N{U+0631}\N{U+062f}\N{U+0648}",
    native_name => "\N{U+0627}\N{U+0631}\N{U+062f}\N{U+0648}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+067e}\N{U+06c1}\N{U+0644}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+062f}\N{U+0648}\N{U+0633}\N{U+0631}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+062a}\N{U+06cc}\N{U+0633}\N{U+0631}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+0647}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+067e}\N{U+06c1}\N{U+0644}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+062f}\N{U+0648}\N{U+0633}\N{U+0631}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+062a}\N{U+06cc}\N{U+0633}\N{U+0631}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+0647}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+067e}\N{U+06c1}\N{U+0644}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+062f}\N{U+0648}\N{U+0633}\N{U+0631}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+062a}\N{U+06cc}\N{U+0633}\N{U+0631}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+0647}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+067e}\N{U+06c1}\N{U+0644}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+062f}\N{U+0648}\N{U+0633}\N{U+0631}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+062a}\N{U+06cc}\N{U+0633}\N{U+0631}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+0647}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ur-IN ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E\N{U+060c} d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ur-IN",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "d MMM\N{U+060c} y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0633}\N{U+0648}\N{U+0645}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0645}\N{U+0646}\N{U+06af}\N{U+0644}",
      "\N{U+0628}\N{U+062f}\N{U+06be}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0631}\N{U+0627}\N{U+062a}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+06c1}",
      "\N{U+06c1}\N{U+0641}\N{U+062a}\N{U+06c1}",
      "\N{U+0627}\N{U+062a}\N{U+0648}\N{U+0627}\N{U+0631}"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "\N{U+0633}\N{U+0648}\N{U+0645}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0645}\N{U+0646}\N{U+06af}\N{U+0644}",
      "\N{U+0628}\N{U+062f}\N{U+06be}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0631}\N{U+0627}\N{U+062a}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+06c1}",
      "\N{U+06c1}\N{U+0641}\N{U+062a}\N{U+06c1}",
      "\N{U+0627}\N{U+062a}\N{U+0648}\N{U+0627}\N{U+0631}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0633}\N{U+0648}\N{U+0645}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0645}\N{U+0646}\N{U+06af}\N{U+0644}",
      "\N{U+0628}\N{U+062f}\N{U+06be}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0631}\N{U+0627}\N{U+062a}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+06c1}",
      "\N{U+06c1}\N{U+0641}\N{U+062a}\N{U+06c1}",
      "\N{U+0627}\N{U+062a}\N{U+0648}\N{U+0627}\N{U+0631}"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "\N{U+0633}\N{U+0648}\N{U+0645}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0645}\N{U+0646}\N{U+06af}\N{U+0644}",
      "\N{U+0628}\N{U+062f}\N{U+06be}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0631}\N{U+0627}\N{U+062a}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+06c1}",
      "\N{U+06c1}\N{U+0641}\N{U+062a}\N{U+06c1}",
      "\N{U+0627}\N{U+062a}\N{U+0648}\N{U+0627}\N{U+0631}"
    ],
    era_abbreviated => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0645}\N{U+0633}\N{U+06cc}\N{U+062d}",
      "\N{U+0639}\N{U+06cc}\N{U+0633}\N{U+0648}\N{U+06cc}"
    ],
    era_narrow => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0645}\N{U+0633}\N{U+06cc}\N{U+062d}",
      "\N{U+0639}\N{U+06cc}\N{U+0633}\N{U+0648}\N{U+06cc}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0645}\N{U+0633}\N{U+06cc}\N{U+062d}",
      "\N{U+0639}\N{U+06cc}\N{U+0633}\N{U+0648}\N{U+06cc}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%A %d %b %Y",
    glibc_datetime_format => "%A %d %b %Y %I:%M:%S %p %Z",
    glibc_time_12_format => "%I:%M:%S %p %Z",
    glibc_time_format => "%I:%M:%S  %Z",
    language => "Urdu",
    month_format_abbreviated => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+0626}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+0626}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+0626}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+0626}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Urdu India",
    native_language => "\N{U+0627}\N{U+0631}\N{U+062f}\N{U+0648}",
    native_name => "\N{U+0627}\N{U+0631}\N{U+062f}\N{U+0648} \N{U+0628}\N{U+06be}\N{U+0627}\N{U+0631}\N{U+062a}",
    native_script => undef,
    native_territory => "\N{U+0628}\N{U+06be}\N{U+0627}\N{U+0631}\N{U+062a}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+067e}\N{U+06c1}\N{U+0644}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+062f}\N{U+0648}\N{U+0633}\N{U+0631}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+062a}\N{U+06cc}\N{U+0633}\N{U+0631}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+0647}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+067e}\N{U+06c1}\N{U+0644}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+062f}\N{U+0648}\N{U+0633}\N{U+0631}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+062a}\N{U+06cc}\N{U+0633}\N{U+0631}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+0647}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+067e}\N{U+06c1}\N{U+0644}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+062f}\N{U+0648}\N{U+0633}\N{U+0631}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+062a}\N{U+06cc}\N{U+0633}\N{U+0631}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+0647}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+067e}\N{U+06c1}\N{U+0644}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+062f}\N{U+0648}\N{U+0633}\N{U+0631}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+062a}\N{U+06cc}\N{U+0633}\N{U+0631}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+0647}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}"
    ],
    script => undef,
    territory => "India",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ ur-PK ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E\N{U+060c} d MMM\N{U+060c} y G",
      GyMMMd => "d MMM\N{U+060c} y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E\N{U+060c} d/M",
      MMM => "LLL",
      MMMEd => "E\N{U+060c} d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E\N{U+060c} d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E\N{U+060c} d MMM\N{U+060c} y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM\N{U+060c} y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "ur-PK",
    date_format_full => "EEEE\N{U+060c} d MMMM\N{U+060c} y",
    date_format_long => "d MMMM\N{U+060c} y",
    date_format_medium => "d MMM\N{U+060c} y",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0633}\N{U+0648}\N{U+0645}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0645}\N{U+0646}\N{U+06af}\N{U+0644}",
      "\N{U+0628}\N{U+062f}\N{U+06be}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0631}\N{U+0627}\N{U+062a}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+06c1}",
      "\N{U+06c1}\N{U+0641}\N{U+062a}\N{U+06c1}",
      "\N{U+0627}\N{U+062a}\N{U+0648}\N{U+0627}\N{U+0631}"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "\N{U+0633}\N{U+0648}\N{U+0645}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0645}\N{U+0646}\N{U+06af}\N{U+0644}",
      "\N{U+0628}\N{U+062f}\N{U+06be}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0631}\N{U+0627}\N{U+062a}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+06c1}",
      "\N{U+06c1}\N{U+0641}\N{U+062a}\N{U+06c1}",
      "\N{U+0627}\N{U+062a}\N{U+0648}\N{U+0627}\N{U+0631}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0633}\N{U+0648}\N{U+0645}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0645}\N{U+0646}\N{U+06af}\N{U+0644}",
      "\N{U+0628}\N{U+062f}\N{U+06be}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0631}\N{U+0627}\N{U+062a}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+06c1}",
      "\N{U+06c1}\N{U+0641}\N{U+062a}\N{U+06c1}",
      "\N{U+0627}\N{U+062a}\N{U+0648}\N{U+0627}\N{U+0631}"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "\N{U+0633}\N{U+0648}\N{U+0645}\N{U+0648}\N{U+0627}\N{U+0631}",
      "\N{U+0645}\N{U+0646}\N{U+06af}\N{U+0644}",
      "\N{U+0628}\N{U+062f}\N{U+06be}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0631}\N{U+0627}\N{U+062a}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+06c1}",
      "\N{U+06c1}\N{U+0641}\N{U+062a}\N{U+06c1}",
      "\N{U+0627}\N{U+062a}\N{U+0648}\N{U+0627}\N{U+0631}"
    ],
    era_abbreviated => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0645}\N{U+0633}\N{U+06cc}\N{U+062d}",
      "\N{U+0639}\N{U+06cc}\N{U+0633}\N{U+0648}\N{U+06cc}"
    ],
    era_narrow => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0645}\N{U+0633}\N{U+06cc}\N{U+062d}",
      "\N{U+0639}\N{U+06cc}\N{U+0633}\N{U+0648}\N{U+06cc}"
    ],
    era_wide => [
      "\N{U+0642}\N{U+0628}\N{U+0644} \N{U+0645}\N{U+0633}\N{U+06cc}\N{U+062d}",
      "\N{U+0639}\N{U+06cc}\N{U+0633}\N{U+0648}\N{U+06cc}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%Y",
    glibc_datetime_format => "\N{U+0648} %H:%M:%S %Z \N{U+062a} %d %B %Y",
    glibc_time_12_format => "%P %I:%M:%S",
    glibc_time_format => "%H:%M:%S",
    language => "Urdu",
    month_format_abbreviated => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+0626}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+0626}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+0626}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+0626}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+0626}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Urdu Pakistan",
    native_language => "\N{U+0627}\N{U+0631}\N{U+062f}\N{U+0648}",
    native_name => "\N{U+0627}\N{U+0631}\N{U+062f}\N{U+0648} \N{U+067e}\N{U+0627}\N{U+06a9}\N{U+0633}\N{U+062a}\N{U+0627}\N{U+0646}",
    native_script => undef,
    native_territory => "\N{U+067e}\N{U+0627}\N{U+06a9}\N{U+0633}\N{U+062a}\N{U+0627}\N{U+0646}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+067e}\N{U+06c1}\N{U+0644}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+062f}\N{U+0648}\N{U+0633}\N{U+0631}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+062a}\N{U+06cc}\N{U+0633}\N{U+0631}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+0647}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+067e}\N{U+06c1}\N{U+0644}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+062f}\N{U+0648}\N{U+0633}\N{U+0631}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+062a}\N{U+06cc}\N{U+0633}\N{U+0631}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+0647}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+067e}\N{U+06c1}\N{U+0644}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+062f}\N{U+0648}\N{U+0633}\N{U+0631}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+062a}\N{U+06cc}\N{U+0633}\N{U+0631}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+0647}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+067e}\N{U+06c1}\N{U+0644}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+062f}\N{U+0648}\N{U+0633}\N{U+0631}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+062a}\N{U+06cc}\N{U+0633}\N{U+0631}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}",
      "\N{U+0686}\N{U+0648}\N{U+062a}\N{U+0647}\N{U+06cc} \N{U+0633}\N{U+06c1} \N{U+0645}\N{U+0627}\N{U+06c1}\N{U+06cc}"
    ],
    script => undef,
    territory => "Pakistan",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ uz ]__
  {
    am_pm_abbreviated => [
      "TO",
      "TK"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "d, E",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "G y",
      GyMMM => "MMM, G y",
      GyMMMEd => "E, d-MMM, G y",
      GyMMMd => "d-MMM, G y",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss (v)",
      Hmv => "HH:mm (v)",
      M => "LL",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d-MMM",
      MMMMd => "d-MMMM",
      MMMd => "d-MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss (v)",
      hmv => "h:mm (v)",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM, y",
      yMMMEd => "E, d-MMM, y",
      yMMMM => "MMMM, y",
      yMMMd => "d-MMM, y",
      yMd => "dd/MM/y",
      yQQQ => "y, QQQ",
      yQQQQ => "y, QQQQ"
    },
    code => "uz",
    date_format_full => "EEEE, y MMMM dd",
    date_format_long => "d-MMMM, y",
    date_format_medium => "d-MMM, y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Du",
      "Se",
      "Ch",
      "Pa",
      "Ju",
      "Sh",
      "Ya"
    ],
    day_format_narrow => [
      "D",
      "S",
      "C",
      "P",
      "J",
      "S",
      "Y"
    ],
    day_format_wide => [
      "dushanba",
      "seshanba",
      "chorshanba",
      "payshanba",
      "juma",
      "shanba",
      "yakshanba"
    ],
    day_stand_alone_abbreviated => [
      "Du",
      "Se",
      "Ch",
      "Pa",
      "Ju",
      "Sh",
      "Ya"
    ],
    day_stand_alone_narrow => [
      "D",
      "S",
      "C",
      "P",
      "J",
      "S",
      "Y"
    ],
    day_stand_alone_wide => [
      "dushanba",
      "seshanba",
      "chorshanba",
      "payshanba",
      "juma",
      "shanba",
      "yakshanba"
    ],
    era_abbreviated => [
      "m.a.",
      "milodiy"
    ],
    era_narrow => [
      "m.a.",
      "milodiy"
    ],
    era_wide => [
      "miloddan avvalgi",
      "milodiy"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Uzbek",
    month_format_abbreviated => [
      "yan",
      "fev",
      "mar",
      "apr",
      "may",
      "iyn",
      "iyl",
      "avg",
      "sen",
      "okt",
      "noy",
      "dek"
    ],
    month_format_narrow => [
      "Y",
      "F",
      "M",
      "A",
      "M",
      "I",
      "I",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "yanvar",
      "fevral",
      "mart",
      "aprel",
      "may",
      "iyun",
      "iyul",
      "avgust",
      "Sentabr",
      "Oktabr",
      "noyabr",
      "dekabr"
    ],
    month_stand_alone_abbreviated => [
      "Yanv",
      "Fev",
      "Mar",
      "Apr",
      "May",
      "Iyun",
      "Iyul",
      "Avg",
      "Sen",
      "Okt",
      "Noya",
      "Dek"
    ],
    month_stand_alone_narrow => [
      "Y",
      "F",
      "M",
      "A",
      "M",
      "I",
      "I",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Yanvar",
      "Fevral",
      "Mart",
      "Aprel",
      "May",
      "Iyun",
      "Iyul",
      "Avgust",
      "Sentabr",
      "Oktabr",
      "Noyabr",
      "Dekabr"
    ],
    name => "Uzbek",
    native_language => "o\N{U+2018}zbek",
    native_name => "o\N{U+2018}zbek",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "1-ch",
      "2-ch",
      "3-ch",
      "4-ch"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1-chorak",
      "2-chorak",
      "3-chorak",
      "4-chorak"
    ],
    quarter_stand_alone_abbreviated => [
      "1-ch",
      "2-ch",
      "3-ch",
      "4-ch"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-chorak",
      "2-chorak",
      "3-chorak",
      "4-chorak"
    ],
    script => undef,
    territory => undef,
    time_format_full => "H:mm:ss (zzzz)",
    time_format_long => "H:mm:ss (z)",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ uz-Arab ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "uz-Arab",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+062f}.",
      "\N{U+0633}.",
      "\N{U+0686}.",
      "\N{U+067e}.",
      "\N{U+062c}.",
      "\N{U+0634}.",
      "\N{U+06cc}."
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "\N{U+062f}\N{U+0648}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0686}\N{U+0647}\N{U+0627}\N{U+0631}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+067e}\N{U+0646}\N{U+062c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0647}",
      "\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+06cc}\N{U+06a9}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+062f}.",
      "\N{U+0633}.",
      "\N{U+0686}.",
      "\N{U+067e}.",
      "\N{U+062c}.",
      "\N{U+0634}.",
      "\N{U+06cc}."
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "\N{U+062f}\N{U+0648}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0686}\N{U+0647}\N{U+0627}\N{U+0631}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+067e}\N{U+0646}\N{U+062c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0647}",
      "\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+06cc}\N{U+06a9}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Uzbek",
    month_format_abbreviated => [
      "\N{U+062c}\N{U+0646}\N{U+0648}",
      "\N{U+0641}\N{U+0628}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}",
      "\N{U+0627}\N{U+067e}\N{U+0631}",
      "\N{U+0645}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+06af}\N{U+0633}",
      "\N{U+0633}\N{U+067e}\N{U+062a}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}",
      "\N{U+0646}\N{U+0648}\N{U+0645}",
      "\N{U+062f}\N{U+0633}\N{U+0645}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+062c}\N{U+0646}\N{U+0648}",
      "\N{U+0641}\N{U+0628}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}",
      "\N{U+0627}\N{U+067e}\N{U+0631}",
      "\N{U+0645}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+06af}\N{U+0633}",
      "\N{U+0633}\N{U+067e}\N{U+062a}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}",
      "\N{U+0646}\N{U+0648}\N{U+0645}",
      "\N{U+062f}\N{U+0633}\N{U+0645}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Uzbek Arabic",
    native_language => "\N{U+0627}\N{U+0648}\N{U+0632}\N{U+0628}\N{U+06cc}\N{U+06a9}",
    native_name => "\N{U+0627}\N{U+0648}\N{U+0632}\N{U+0628}\N{U+06cc}\N{U+06a9} \N{U+0639}\N{U+0631}\N{U+0628}\N{U+06cc}",
    native_script => "\N{U+0639}\N{U+0631}\N{U+0628}\N{U+06cc}",
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => "Arabic",
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ uz-Arab-AF ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "uz-Arab-AF",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+062f}.",
      "\N{U+0633}.",
      "\N{U+0686}.",
      "\N{U+067e}.",
      "\N{U+062c}.",
      "\N{U+0634}.",
      "\N{U+06cc}."
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "\N{U+062f}\N{U+0648}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0686}\N{U+0647}\N{U+0627}\N{U+0631}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+067e}\N{U+0646}\N{U+062c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0647}",
      "\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+06cc}\N{U+06a9}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+062f}.",
      "\N{U+0633}.",
      "\N{U+0686}.",
      "\N{U+067e}.",
      "\N{U+062c}.",
      "\N{U+0634}.",
      "\N{U+06cc}."
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "\N{U+062f}\N{U+0648}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0633}\N{U+0647}\N{U+200c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+0686}\N{U+0647}\N{U+0627}\N{U+0631}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+067e}\N{U+0646}\N{U+062c}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+062c}\N{U+0645}\N{U+0639}\N{U+0647}",
      "\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}",
      "\N{U+06cc}\N{U+06a9}\N{U+0634}\N{U+0646}\N{U+0628}\N{U+0647}"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Uzbek",
    month_format_abbreviated => [
      "\N{U+062c}\N{U+0646}\N{U+0648}",
      "\N{U+0641}\N{U+0628}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}",
      "\N{U+0627}\N{U+067e}\N{U+0631}",
      "\N{U+0645}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+06af}\N{U+0633}",
      "\N{U+0633}\N{U+067e}\N{U+062a}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}",
      "\N{U+0646}\N{U+0648}\N{U+0645}",
      "\N{U+062f}\N{U+0633}\N{U+0645}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+062c}\N{U+0646}\N{U+0648}",
      "\N{U+0641}\N{U+0628}\N{U+0631}",
      "\N{U+0645}\N{U+0627}\N{U+0631}",
      "\N{U+0627}\N{U+067e}\N{U+0631}",
      "\N{U+0645}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}",
      "\N{U+0627}\N{U+06af}\N{U+0633}",
      "\N{U+0633}\N{U+067e}\N{U+062a}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}",
      "\N{U+0646}\N{U+0648}\N{U+0645}",
      "\N{U+062f}\N{U+0633}\N{U+0645}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+062c}\N{U+0646}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0641}\N{U+0628}\N{U+0631}\N{U+0648}\N{U+0631}\N{U+06cc}",
      "\N{U+0645}\N{U+0627}\N{U+0631}\N{U+0686}",
      "\N{U+0627}\N{U+067e}\N{U+0631}\N{U+06cc}\N{U+0644}",
      "\N{U+0645}\N{U+06cc}",
      "\N{U+062c}\N{U+0648}\N{U+0646}",
      "\N{U+062c}\N{U+0648}\N{U+0644}\N{U+0627}\N{U+06cc}",
      "\N{U+0627}\N{U+06af}\N{U+0633}\N{U+062a}",
      "\N{U+0633}\N{U+067e}\N{U+062a}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+0627}\N{U+06a9}\N{U+062a}\N{U+0648}\N{U+0628}\N{U+0631}",
      "\N{U+0646}\N{U+0648}\N{U+0645}\N{U+0628}\N{U+0631}",
      "\N{U+062f}\N{U+0633}\N{U+0645}\N{U+0628}\N{U+0631}"
    ],
    name => "Uzbek Afghanistan Arabic",
    native_language => "\N{U+0627}\N{U+0648}\N{U+0632}\N{U+0628}\N{U+06cc}\N{U+06a9}",
    native_name => "\N{U+0627}\N{U+0648}\N{U+0632}\N{U+0628}\N{U+06cc}\N{U+06a9} \N{U+0627}\N{U+0641}\N{U+063a}\N{U+0627}\N{U+0646}\N{U+0633}\N{U+062a}\N{U+0627}\N{U+0646} \N{U+0639}\N{U+0631}\N{U+0628}\N{U+06cc}",
    native_script => "\N{U+0639}\N{U+0631}\N{U+0628}\N{U+06cc}",
    native_territory => "\N{U+0627}\N{U+0641}\N{U+063a}\N{U+0627}\N{U+0646}\N{U+0633}\N{U+062a}\N{U+0627}\N{U+0646}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => "Arabic",
    territory => "Afghanistan",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ uz-Cyrl ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "uz-Cyrl",
    date_format_full => "EEEE, y MMMM dd",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0414}\N{U+0443}\N{U+0448}",
      "\N{U+0421}\N{U+0435}\N{U+0448}",
      "\N{U+0427}\N{U+043e}\N{U+0440}",
      "\N{U+041f}\N{U+0430}\N{U+0439}",
      "\N{U+0416}\N{U+0443}\N{U+043c}",
      "\N{U+0428}\N{U+0430}\N{U+043d}",
      "\N{U+042f}\N{U+043a}\N{U+0448}"
    ],
    day_format_narrow => [
      "\N{U+0414}",
      "\N{U+0421}",
      "\N{U+0427}",
      "\N{U+041f}",
      "\N{U+0416}",
      "\N{U+0428}",
      "\N{U+042f}"
    ],
    day_format_wide => [
      "\N{U+0434}\N{U+0443}\N{U+0448}\N{U+0430}\N{U+043d}\N{U+0431}\N{U+0430}",
      "\N{U+0441}\N{U+0435}\N{U+0448}\N{U+0430}\N{U+043d}\N{U+0431}\N{U+0430}",
      "\N{U+0447}\N{U+043e}\N{U+0440}\N{U+0448}\N{U+0430}\N{U+043d}\N{U+0431}\N{U+0430}",
      "\N{U+043f}\N{U+0430}\N{U+0439}\N{U+0448}\N{U+0430}\N{U+043d}\N{U+0431}\N{U+0430}",
      "\N{U+0436}\N{U+0443}\N{U+043c}\N{U+0430}",
      "\N{U+0448}\N{U+0430}\N{U+043d}\N{U+0431}\N{U+0430}",
      "\N{U+044f}\N{U+043a}\N{U+0448}\N{U+0430}\N{U+043d}\N{U+0431}\N{U+0430}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0414}\N{U+0443}\N{U+0448}",
      "\N{U+0421}\N{U+0435}\N{U+0448}",
      "\N{U+0427}\N{U+043e}\N{U+0440}",
      "\N{U+041f}\N{U+0430}\N{U+0439}",
      "\N{U+0416}\N{U+0443}\N{U+043c}",
      "\N{U+0428}\N{U+0430}\N{U+043d}",
      "\N{U+042f}\N{U+043a}\N{U+0448}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0414}",
      "\N{U+0421}",
      "\N{U+0427}",
      "\N{U+041f}",
      "\N{U+0416}",
      "\N{U+0428}",
      "\N{U+042f}"
    ],
    day_stand_alone_wide => [
      "\N{U+0434}\N{U+0443}\N{U+0448}\N{U+0430}\N{U+043d}\N{U+0431}\N{U+0430}",
      "\N{U+0441}\N{U+0435}\N{U+0448}\N{U+0430}\N{U+043d}\N{U+0431}\N{U+0430}",
      "\N{U+0447}\N{U+043e}\N{U+0440}\N{U+0448}\N{U+0430}\N{U+043d}\N{U+0431}\N{U+0430}",
      "\N{U+043f}\N{U+0430}\N{U+0439}\N{U+0448}\N{U+0430}\N{U+043d}\N{U+0431}\N{U+0430}",
      "\N{U+0436}\N{U+0443}\N{U+043c}\N{U+0430}",
      "\N{U+0448}\N{U+0430}\N{U+043d}\N{U+0431}\N{U+0430}",
      "\N{U+044f}\N{U+043a}\N{U+0448}\N{U+0430}\N{U+043d}\N{U+0431}\N{U+0430}"
    ],
    era_abbreviated => [
      "\N{U+041c}.\N{U+0410}.",
      "\N{U+042d}"
    ],
    era_narrow => [
      "\N{U+041c}.\N{U+0410}.",
      "\N{U+042d}"
    ],
    era_wide => [
      "\N{U+041c}.\N{U+0410}.",
      "\N{U+042d}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Uzbek",
    month_format_abbreviated => [
      "\N{U+042f}\N{U+043d}\N{U+0432}",
      "\N{U+0424}\N{U+0435}\N{U+0432}",
      "\N{U+041c}\N{U+0430}\N{U+0440}",
      "\N{U+0410}\N{U+043f}\N{U+0440}",
      "\N{U+041c}\N{U+0430}\N{U+0439}",
      "\N{U+0418}\N{U+044e}\N{U+043d}",
      "\N{U+0418}\N{U+044e}\N{U+043b}",
      "\N{U+0410}\N{U+0432}\N{U+0433}",
      "\N{U+0421}\N{U+0435}\N{U+043d}",
      "\N{U+041e}\N{U+043a}\N{U+0442}",
      "\N{U+041d}\N{U+043e}\N{U+044f}",
      "\N{U+0414}\N{U+0435}\N{U+043a}"
    ],
    month_format_narrow => [
      "\N{U+042f}",
      "\N{U+0424}",
      "\N{U+041c}",
      "\N{U+0410}",
      "\N{U+041c}",
      "\N{U+0418}",
      "\N{U+0418}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+041e}",
      "\N{U+041d}",
      "\N{U+0414}"
    ],
    month_format_wide => [
      "\N{U+042f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}",
      "\N{U+0424}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}",
      "\N{U+041c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0410}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}",
      "\N{U+041c}\N{U+0430}\N{U+0439}",
      "\N{U+0418}\N{U+044e}\N{U+043d}",
      "\N{U+0418}\N{U+044e}\N{U+043b}",
      "\N{U+0410}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0421}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}",
      "\N{U+041e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}",
      "\N{U+041d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}",
      "\N{U+0414}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+042f}\N{U+043d}\N{U+0432}",
      "\N{U+0424}\N{U+0435}\N{U+0432}",
      "\N{U+041c}\N{U+0430}\N{U+0440}",
      "\N{U+0410}\N{U+043f}\N{U+0440}",
      "\N{U+041c}\N{U+0430}\N{U+0439}",
      "\N{U+0418}\N{U+044e}\N{U+043d}",
      "\N{U+0418}\N{U+044e}\N{U+043b}",
      "\N{U+0410}\N{U+0432}\N{U+0433}",
      "\N{U+0421}\N{U+0435}\N{U+043d}",
      "\N{U+041e}\N{U+043a}\N{U+0442}",
      "\N{U+041d}\N{U+043e}\N{U+044f}",
      "\N{U+0414}\N{U+0435}\N{U+043a}"
    ],
    month_stand_alone_narrow => [
      "\N{U+042f}",
      "\N{U+0424}",
      "\N{U+041c}",
      "\N{U+0410}",
      "\N{U+041c}",
      "\N{U+0418}",
      "\N{U+0418}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+041e}",
      "\N{U+041d}",
      "\N{U+0414}"
    ],
    month_stand_alone_wide => [
      "\N{U+042f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}",
      "\N{U+0424}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}",
      "\N{U+041c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0410}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}",
      "\N{U+041c}\N{U+0430}\N{U+0439}",
      "\N{U+0418}\N{U+044e}\N{U+043d}",
      "\N{U+0418}\N{U+044e}\N{U+043b}",
      "\N{U+0410}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0421}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}",
      "\N{U+041e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}",
      "\N{U+041d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}",
      "\N{U+0414}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}"
    ],
    name => "Uzbek Cyrillic",
    native_language => "\N{U+040e}\N{U+0437}\N{U+0431}\N{U+0435}\N{U+043a}",
    native_name => "\N{U+040e}\N{U+0437}\N{U+0431}\N{U+0435}\N{U+043a} \N{U+041a}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}",
    native_script => "\N{U+041a}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}",
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "1-\N{U+0447}",
      "2-\N{U+0447}",
      "3-\N{U+0447}",
      "4-\N{U+0447}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1-\N{U+0447}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "2-\N{U+0447}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "3-\N{U+0447}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "4-\N{U+0447}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}"
    ],
    quarter_stand_alone_abbreviated => [
      "1-\N{U+0447}",
      "2-\N{U+0447}",
      "3-\N{U+0447}",
      "4-\N{U+0447}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-\N{U+0447}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "2-\N{U+0447}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "3-\N{U+0447}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "4-\N{U+0447}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}"
    ],
    script => "Cyrillic",
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ uz-Cyrl-UZ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "uz-Cyrl-UZ",
    date_format_full => "EEEE, y MMMM dd",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+0414}\N{U+0443}\N{U+0448}",
      "\N{U+0421}\N{U+0435}\N{U+0448}",
      "\N{U+0427}\N{U+043e}\N{U+0440}",
      "\N{U+041f}\N{U+0430}\N{U+0439}",
      "\N{U+0416}\N{U+0443}\N{U+043c}",
      "\N{U+0428}\N{U+0430}\N{U+043d}",
      "\N{U+042f}\N{U+043a}\N{U+0448}"
    ],
    day_format_narrow => [
      "\N{U+0414}",
      "\N{U+0421}",
      "\N{U+0427}",
      "\N{U+041f}",
      "\N{U+0416}",
      "\N{U+0428}",
      "\N{U+042f}"
    ],
    day_format_wide => [
      "\N{U+0434}\N{U+0443}\N{U+0448}\N{U+0430}\N{U+043d}\N{U+0431}\N{U+0430}",
      "\N{U+0441}\N{U+0435}\N{U+0448}\N{U+0430}\N{U+043d}\N{U+0431}\N{U+0430}",
      "\N{U+0447}\N{U+043e}\N{U+0440}\N{U+0448}\N{U+0430}\N{U+043d}\N{U+0431}\N{U+0430}",
      "\N{U+043f}\N{U+0430}\N{U+0439}\N{U+0448}\N{U+0430}\N{U+043d}\N{U+0431}\N{U+0430}",
      "\N{U+0436}\N{U+0443}\N{U+043c}\N{U+0430}",
      "\N{U+0448}\N{U+0430}\N{U+043d}\N{U+0431}\N{U+0430}",
      "\N{U+044f}\N{U+043a}\N{U+0448}\N{U+0430}\N{U+043d}\N{U+0431}\N{U+0430}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+0414}\N{U+0443}\N{U+0448}",
      "\N{U+0421}\N{U+0435}\N{U+0448}",
      "\N{U+0427}\N{U+043e}\N{U+0440}",
      "\N{U+041f}\N{U+0430}\N{U+0439}",
      "\N{U+0416}\N{U+0443}\N{U+043c}",
      "\N{U+0428}\N{U+0430}\N{U+043d}",
      "\N{U+042f}\N{U+043a}\N{U+0448}"
    ],
    day_stand_alone_narrow => [
      "\N{U+0414}",
      "\N{U+0421}",
      "\N{U+0427}",
      "\N{U+041f}",
      "\N{U+0416}",
      "\N{U+0428}",
      "\N{U+042f}"
    ],
    day_stand_alone_wide => [
      "\N{U+0434}\N{U+0443}\N{U+0448}\N{U+0430}\N{U+043d}\N{U+0431}\N{U+0430}",
      "\N{U+0441}\N{U+0435}\N{U+0448}\N{U+0430}\N{U+043d}\N{U+0431}\N{U+0430}",
      "\N{U+0447}\N{U+043e}\N{U+0440}\N{U+0448}\N{U+0430}\N{U+043d}\N{U+0431}\N{U+0430}",
      "\N{U+043f}\N{U+0430}\N{U+0439}\N{U+0448}\N{U+0430}\N{U+043d}\N{U+0431}\N{U+0430}",
      "\N{U+0436}\N{U+0443}\N{U+043c}\N{U+0430}",
      "\N{U+0448}\N{U+0430}\N{U+043d}\N{U+0431}\N{U+0430}",
      "\N{U+044f}\N{U+043a}\N{U+0448}\N{U+0430}\N{U+043d}\N{U+0431}\N{U+0430}"
    ],
    era_abbreviated => [
      "\N{U+041c}.\N{U+0410}.",
      "\N{U+042d}"
    ],
    era_narrow => [
      "\N{U+041c}.\N{U+0410}.",
      "\N{U+042d}"
    ],
    era_wide => [
      "\N{U+041c}.\N{U+0410}.",
      "\N{U+042d}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%d %B, %Y \N{U+0439}\N{U+0438}\N{U+043b}, %A",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "%T, %d %B, %Y \N{U+0439}\N{U+0438}\N{U+043b}, %A",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Uzbek",
    month_format_abbreviated => [
      "\N{U+042f}\N{U+043d}\N{U+0432}",
      "\N{U+0424}\N{U+0435}\N{U+0432}",
      "\N{U+041c}\N{U+0430}\N{U+0440}",
      "\N{U+0410}\N{U+043f}\N{U+0440}",
      "\N{U+041c}\N{U+0430}\N{U+0439}",
      "\N{U+0418}\N{U+044e}\N{U+043d}",
      "\N{U+0418}\N{U+044e}\N{U+043b}",
      "\N{U+0410}\N{U+0432}\N{U+0433}",
      "\N{U+0421}\N{U+0435}\N{U+043d}",
      "\N{U+041e}\N{U+043a}\N{U+0442}",
      "\N{U+041d}\N{U+043e}\N{U+044f}",
      "\N{U+0414}\N{U+0435}\N{U+043a}"
    ],
    month_format_narrow => [
      "\N{U+042f}",
      "\N{U+0424}",
      "\N{U+041c}",
      "\N{U+0410}",
      "\N{U+041c}",
      "\N{U+0418}",
      "\N{U+0418}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+041e}",
      "\N{U+041d}",
      "\N{U+0414}"
    ],
    month_format_wide => [
      "\N{U+042f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}",
      "\N{U+0424}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}",
      "\N{U+041c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0410}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}",
      "\N{U+041c}\N{U+0430}\N{U+0439}",
      "\N{U+0418}\N{U+044e}\N{U+043d}",
      "\N{U+0418}\N{U+044e}\N{U+043b}",
      "\N{U+0410}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0421}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}",
      "\N{U+041e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}",
      "\N{U+041d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}",
      "\N{U+0414}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+042f}\N{U+043d}\N{U+0432}",
      "\N{U+0424}\N{U+0435}\N{U+0432}",
      "\N{U+041c}\N{U+0430}\N{U+0440}",
      "\N{U+0410}\N{U+043f}\N{U+0440}",
      "\N{U+041c}\N{U+0430}\N{U+0439}",
      "\N{U+0418}\N{U+044e}\N{U+043d}",
      "\N{U+0418}\N{U+044e}\N{U+043b}",
      "\N{U+0410}\N{U+0432}\N{U+0433}",
      "\N{U+0421}\N{U+0435}\N{U+043d}",
      "\N{U+041e}\N{U+043a}\N{U+0442}",
      "\N{U+041d}\N{U+043e}\N{U+044f}",
      "\N{U+0414}\N{U+0435}\N{U+043a}"
    ],
    month_stand_alone_narrow => [
      "\N{U+042f}",
      "\N{U+0424}",
      "\N{U+041c}",
      "\N{U+0410}",
      "\N{U+041c}",
      "\N{U+0418}",
      "\N{U+0418}",
      "\N{U+0410}",
      "\N{U+0421}",
      "\N{U+041e}",
      "\N{U+041d}",
      "\N{U+0414}"
    ],
    month_stand_alone_wide => [
      "\N{U+042f}\N{U+043d}\N{U+0432}\N{U+0430}\N{U+0440}",
      "\N{U+0424}\N{U+0435}\N{U+0432}\N{U+0440}\N{U+0430}\N{U+043b}",
      "\N{U+041c}\N{U+0430}\N{U+0440}\N{U+0442}",
      "\N{U+0410}\N{U+043f}\N{U+0440}\N{U+0435}\N{U+043b}",
      "\N{U+041c}\N{U+0430}\N{U+0439}",
      "\N{U+0418}\N{U+044e}\N{U+043d}",
      "\N{U+0418}\N{U+044e}\N{U+043b}",
      "\N{U+0410}\N{U+0432}\N{U+0433}\N{U+0443}\N{U+0441}\N{U+0442}",
      "\N{U+0421}\N{U+0435}\N{U+043d}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}",
      "\N{U+041e}\N{U+043a}\N{U+0442}\N{U+044f}\N{U+0431}\N{U+0440}",
      "\N{U+041d}\N{U+043e}\N{U+044f}\N{U+0431}\N{U+0440}",
      "\N{U+0414}\N{U+0435}\N{U+043a}\N{U+0430}\N{U+0431}\N{U+0440}"
    ],
    name => "Uzbek Uzbekistan Cyrillic",
    native_language => "\N{U+040e}\N{U+0437}\N{U+0431}\N{U+0435}\N{U+043a}",
    native_name => "\N{U+040e}\N{U+0437}\N{U+0431}\N{U+0435}\N{U+043a} \N{U+040e}\N{U+0437}\N{U+0431}\N{U+0435}\N{U+043a}\N{U+0438}\N{U+0441}\N{U+0442}\N{U+043e}\N{U+043d} \N{U+041a}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}",
    native_script => "\N{U+041a}\N{U+0438}\N{U+0440}\N{U+0438}\N{U+043b}",
    native_territory => "\N{U+040e}\N{U+0437}\N{U+0431}\N{U+0435}\N{U+043a}\N{U+0438}\N{U+0441}\N{U+0442}\N{U+043e}\N{U+043d}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1-\N{U+0447}",
      "2-\N{U+0447}",
      "3-\N{U+0447}",
      "4-\N{U+0447}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1-\N{U+0447}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "2-\N{U+0447}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "3-\N{U+0447}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "4-\N{U+0447}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}"
    ],
    quarter_stand_alone_abbreviated => [
      "1-\N{U+0447}",
      "2-\N{U+0447}",
      "3-\N{U+0447}",
      "4-\N{U+0447}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-\N{U+0447}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "2-\N{U+0447}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "3-\N{U+0447}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}",
      "4-\N{U+0447}\N{U+043e}\N{U+0440}\N{U+0430}\N{U+043a}"
    ],
    script => "Cyrillic",
    territory => "Uzbekistan",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ uz-Latn ]__
  {
    am_pm_abbreviated => [
      "TO",
      "TK"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "d, E",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "G y",
      GyMMM => "MMM, G y",
      GyMMMEd => "E, d-MMM, G y",
      GyMMMd => "d-MMM, G y",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss (v)",
      Hmv => "HH:mm (v)",
      M => "LL",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d-MMM",
      MMMMd => "d-MMMM",
      MMMd => "d-MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss (v)",
      hmv => "h:mm (v)",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM, y",
      yMMMEd => "E, d-MMM, y",
      yMMMM => "MMMM, y",
      yMMMd => "d-MMM, y",
      yMd => "dd/MM/y",
      yQQQ => "y, QQQ",
      yQQQQ => "y, QQQQ"
    },
    code => "uz-Latn",
    date_format_full => "EEEE, y MMMM dd",
    date_format_long => "d-MMMM, y",
    date_format_medium => "d-MMM, y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Du",
      "Se",
      "Ch",
      "Pa",
      "Ju",
      "Sh",
      "Ya"
    ],
    day_format_narrow => [
      "D",
      "S",
      "C",
      "P",
      "J",
      "S",
      "Y"
    ],
    day_format_wide => [
      "dushanba",
      "seshanba",
      "chorshanba",
      "payshanba",
      "juma",
      "shanba",
      "yakshanba"
    ],
    day_stand_alone_abbreviated => [
      "Du",
      "Se",
      "Ch",
      "Pa",
      "Ju",
      "Sh",
      "Ya"
    ],
    day_stand_alone_narrow => [
      "D",
      "S",
      "C",
      "P",
      "J",
      "S",
      "Y"
    ],
    day_stand_alone_wide => [
      "dushanba",
      "seshanba",
      "chorshanba",
      "payshanba",
      "juma",
      "shanba",
      "yakshanba"
    ],
    era_abbreviated => [
      "m.a.",
      "milodiy"
    ],
    era_narrow => [
      "m.a.",
      "milodiy"
    ],
    era_wide => [
      "miloddan avvalgi",
      "milodiy"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Uzbek",
    month_format_abbreviated => [
      "yan",
      "fev",
      "mar",
      "apr",
      "may",
      "iyn",
      "iyl",
      "avg",
      "sen",
      "okt",
      "noy",
      "dek"
    ],
    month_format_narrow => [
      "Y",
      "F",
      "M",
      "A",
      "M",
      "I",
      "I",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "yanvar",
      "fevral",
      "mart",
      "aprel",
      "may",
      "iyun",
      "iyul",
      "avgust",
      "Sentabr",
      "Oktabr",
      "noyabr",
      "dekabr"
    ],
    month_stand_alone_abbreviated => [
      "Yanv",
      "Fev",
      "Mar",
      "Apr",
      "May",
      "Iyun",
      "Iyul",
      "Avg",
      "Sen",
      "Okt",
      "Noya",
      "Dek"
    ],
    month_stand_alone_narrow => [
      "Y",
      "F",
      "M",
      "A",
      "M",
      "I",
      "I",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Yanvar",
      "Fevral",
      "Mart",
      "Aprel",
      "May",
      "Iyun",
      "Iyul",
      "Avgust",
      "Sentabr",
      "Oktabr",
      "Noyabr",
      "Dekabr"
    ],
    name => "Uzbek Latin",
    native_language => "o\N{U+2018}zbek",
    native_name => "o\N{U+2018}zbek lotin",
    native_script => "lotin",
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "1-ch",
      "2-ch",
      "3-ch",
      "4-ch"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1-chorak",
      "2-chorak",
      "3-chorak",
      "4-chorak"
    ],
    quarter_stand_alone_abbreviated => [
      "1-ch",
      "2-ch",
      "3-ch",
      "4-ch"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-chorak",
      "2-chorak",
      "3-chorak",
      "4-chorak"
    ],
    script => "Latin",
    territory => undef,
    time_format_full => "H:mm:ss (zzzz)",
    time_format_long => "H:mm:ss (z)",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ uz-Latn-UZ ]__
  {
    am_pm_abbreviated => [
      "TO",
      "TK"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E, HH:mm",
      EHms => "E, HH:mm:ss",
      Ed => "d, E",
      Ehm => "E, h:mm a",
      Ehms => "E, h:mm:ss a",
      Gy => "G y",
      GyMMM => "MMM, G y",
      GyMMMEd => "E, d-MMM, G y",
      GyMMMd => "d-MMM, G y",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss (v)",
      Hmv => "HH:mm (v)",
      M => "LL",
      MEd => "E, dd/MM",
      MMM => "LLL",
      MMMEd => "E, d-MMM",
      MMMMd => "d-MMMM",
      MMMd => "d-MMM",
      Md => "dd/MM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss (v)",
      hmv => "h:mm (v)",
      ms => "mm:ss",
      y => "y",
      yM => "MM/y",
      yMEd => "E, dd/MM/y",
      yMMM => "MMM, y",
      yMMMEd => "E, d-MMM, y",
      yMMMM => "MMMM, y",
      yMMMd => "d-MMM, y",
      yMd => "dd/MM/y",
      yQQQ => "y, QQQ",
      yQQQQ => "y, QQQQ"
    },
    code => "uz-Latn-UZ",
    date_format_full => "EEEE, y MMMM dd",
    date_format_long => "d-MMMM, y",
    date_format_medium => "d-MMM, y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1}, {0}",
    datetime_format_long => "{1}, {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1}, {0}",
    day_format_abbreviated => [
      "Du",
      "Se",
      "Ch",
      "Pa",
      "Ju",
      "Sh",
      "Ya"
    ],
    day_format_narrow => [
      "D",
      "S",
      "C",
      "P",
      "J",
      "S",
      "Y"
    ],
    day_format_wide => [
      "dushanba",
      "seshanba",
      "chorshanba",
      "payshanba",
      "juma",
      "shanba",
      "yakshanba"
    ],
    day_stand_alone_abbreviated => [
      "Du",
      "Se",
      "Ch",
      "Pa",
      "Ju",
      "Sh",
      "Ya"
    ],
    day_stand_alone_narrow => [
      "D",
      "S",
      "C",
      "P",
      "J",
      "S",
      "Y"
    ],
    day_stand_alone_wide => [
      "dushanba",
      "seshanba",
      "chorshanba",
      "payshanba",
      "juma",
      "shanba",
      "yakshanba"
    ],
    era_abbreviated => [
      "m.a.",
      "milodiy"
    ],
    era_narrow => [
      "m.a.",
      "milodiy"
    ],
    era_wide => [
      "miloddan avvalgi",
      "milodiy"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Uzbek",
    month_format_abbreviated => [
      "yan",
      "fev",
      "mar",
      "apr",
      "may",
      "iyn",
      "iyl",
      "avg",
      "sen",
      "okt",
      "noy",
      "dek"
    ],
    month_format_narrow => [
      "Y",
      "F",
      "M",
      "A",
      "M",
      "I",
      "I",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "yanvar",
      "fevral",
      "mart",
      "aprel",
      "may",
      "iyun",
      "iyul",
      "avgust",
      "Sentabr",
      "Oktabr",
      "noyabr",
      "dekabr"
    ],
    month_stand_alone_abbreviated => [
      "Yanv",
      "Fev",
      "Mar",
      "Apr",
      "May",
      "Iyun",
      "Iyul",
      "Avg",
      "Sen",
      "Okt",
      "Noya",
      "Dek"
    ],
    month_stand_alone_narrow => [
      "Y",
      "F",
      "M",
      "A",
      "M",
      "I",
      "I",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Yanvar",
      "Fevral",
      "Mart",
      "Aprel",
      "May",
      "Iyun",
      "Iyul",
      "Avgust",
      "Sentabr",
      "Oktabr",
      "Noyabr",
      "Dekabr"
    ],
    name => "Uzbek Uzbekistan Latin",
    native_language => "o\N{U+2018}zbek",
    native_name => "o\N{U+2018}zbek O\N{U+02bb}zbekiston lotin",
    native_script => "lotin",
    native_territory => "O\N{U+02bb}zbekiston",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1-ch",
      "2-ch",
      "3-ch",
      "4-ch"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1-chorak",
      "2-chorak",
      "3-chorak",
      "4-chorak"
    ],
    quarter_stand_alone_abbreviated => [
      "1-ch",
      "2-ch",
      "3-ch",
      "4-ch"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1-chorak",
      "2-chorak",
      "3-chorak",
      "4-chorak"
    ],
    script => "Latin",
    territory => "Uzbekistan",
    time_format_full => "H:mm:ss (zzzz)",
    time_format_long => "H:mm:ss (z)",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ vai ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "vai",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+a5f3}\N{U+a5e1}\N{U+a609}",
      "\N{U+a55a}\N{U+a55e}\N{U+a55a}",
      "\N{U+a549}\N{U+a55e}\N{U+a552}",
      "\N{U+a549}\N{U+a524}\N{U+a546}\N{U+a562}",
      "\N{U+a549}\N{U+a524}\N{U+a540}\N{U+a56e}",
      "\N{U+a53b}\N{U+a52c}\N{U+a533}",
      "\N{U+a55e}\N{U+a54c}\N{U+a535}"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "\N{U+a5f3}\N{U+a5e1}\N{U+a609}",
      "\N{U+a55a}\N{U+a55e}\N{U+a55a}",
      "\N{U+a549}\N{U+a55e}\N{U+a552}",
      "\N{U+a549}\N{U+a524}\N{U+a546}\N{U+a562}",
      "\N{U+a549}\N{U+a524}\N{U+a540}\N{U+a56e}",
      "\N{U+a53b}\N{U+a52c}\N{U+a533}",
      "\N{U+a55e}\N{U+a54c}\N{U+a535}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+a5f3}\N{U+a5e1}\N{U+a609}",
      "\N{U+a55a}\N{U+a55e}\N{U+a55a}",
      "\N{U+a549}\N{U+a55e}\N{U+a552}",
      "\N{U+a549}\N{U+a524}\N{U+a546}\N{U+a562}",
      "\N{U+a549}\N{U+a524}\N{U+a540}\N{U+a56e}",
      "\N{U+a53b}\N{U+a52c}\N{U+a533}",
      "\N{U+a55e}\N{U+a54c}\N{U+a535}"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "\N{U+a5f3}\N{U+a5e1}\N{U+a609}",
      "\N{U+a55a}\N{U+a55e}\N{U+a55a}",
      "\N{U+a549}\N{U+a55e}\N{U+a552}",
      "\N{U+a549}\N{U+a524}\N{U+a546}\N{U+a562}",
      "\N{U+a549}\N{U+a524}\N{U+a540}\N{U+a56e}",
      "\N{U+a53b}\N{U+a52c}\N{U+a533}",
      "\N{U+a55e}\N{U+a54c}\N{U+a535}"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Vai",
    month_format_abbreviated => [
      "\N{U+a5a8}\N{U+a56a}\N{U+a583} \N{U+a51e}\N{U+a56e}",
      "\N{U+a552}\N{U+a561}\N{U+a59d}\N{U+a595}",
      "\N{U+a57e}\N{U+a5ba}",
      "\N{U+a5a2}\N{U+a595}",
      "\N{U+a591}\N{U+a571}",
      6,
      7,
      "\N{U+a5db}\N{U+a515}",
      "\N{U+a562}\N{U+a54c}",
      "\N{U+a56d}\N{U+a583}",
      "\N{U+a51e}\N{U+a60b}\N{U+a554}\N{U+a57f} \N{U+a578}\N{U+a583}\N{U+a5cf}",
      "\N{U+a5a8}\N{U+a56a}\N{U+a571} \N{U+a5cf}\N{U+a56e}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+a5a8}\N{U+a56a}\N{U+a583} \N{U+a51e}\N{U+a56e}",
      "\N{U+a552}\N{U+a561}\N{U+a59d}\N{U+a595}",
      "\N{U+a57e}\N{U+a5ba}",
      "\N{U+a5a2}\N{U+a595}",
      "\N{U+a591}\N{U+a571}",
      6,
      7,
      "\N{U+a5db}\N{U+a515}",
      "\N{U+a562}\N{U+a54c}",
      "\N{U+a56d}\N{U+a583}",
      "\N{U+a51e}\N{U+a60b}\N{U+a554}\N{U+a57f} \N{U+a578}\N{U+a583}\N{U+a5cf}",
      "\N{U+a5a8}\N{U+a56a}\N{U+a571} \N{U+a5cf}\N{U+a56e}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+a5a8}\N{U+a56a}\N{U+a583} \N{U+a51e}\N{U+a56e}",
      "\N{U+a552}\N{U+a561}\N{U+a59d}\N{U+a595}",
      "\N{U+a57e}\N{U+a5ba}",
      "\N{U+a5a2}\N{U+a595}",
      "\N{U+a591}\N{U+a571}",
      6,
      7,
      "\N{U+a5db}\N{U+a515}",
      "\N{U+a562}\N{U+a54c}",
      "\N{U+a56d}\N{U+a583}",
      "\N{U+a51e}\N{U+a60b}\N{U+a554}\N{U+a57f} \N{U+a578}\N{U+a583}\N{U+a5cf}",
      "\N{U+a5a8}\N{U+a56a}\N{U+a571} \N{U+a5cf}\N{U+a56e}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+a5a8}\N{U+a56a}\N{U+a583} \N{U+a51e}\N{U+a56e}",
      "\N{U+a552}\N{U+a561}\N{U+a59d}\N{U+a595}",
      "\N{U+a57e}\N{U+a5ba}",
      "\N{U+a5a2}\N{U+a595}",
      "\N{U+a591}\N{U+a571}",
      6,
      7,
      "\N{U+a5db}\N{U+a515}",
      "\N{U+a562}\N{U+a54c}",
      "\N{U+a56d}\N{U+a583}",
      "\N{U+a51e}\N{U+a60b}\N{U+a554}\N{U+a57f} \N{U+a578}\N{U+a583}\N{U+a5cf}",
      "\N{U+a5a8}\N{U+a56a}\N{U+a571} \N{U+a5cf}\N{U+a56e}"
    ],
    name => "Vai",
    native_language => "\N{U+a559}\N{U+a524}",
    native_name => "\N{U+a559}\N{U+a524}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ vai-Latn ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "y MMMM",
      yMMMd => "MMM d y",
      yMd => "M/d/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "vai-Latn",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "t\N{U+025b}\N{U+025b}n\N{U+025b}\N{U+025b}",
      "talata",
      "alaba",
      "aimisa",
      "aijima",
      "si\N{U+0253}iti",
      "lahadi"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "t\N{U+025b}\N{U+025b}n\N{U+025b}\N{U+025b}",
      "talata",
      "alaba",
      "aimisa",
      "aijima",
      "si\N{U+0253}iti",
      "lahadi"
    ],
    day_stand_alone_abbreviated => [
      "t\N{U+025b}\N{U+025b}n\N{U+025b}\N{U+025b}",
      "talata",
      "alaba",
      "aimisa",
      "aijima",
      "si\N{U+0253}iti",
      "lahadi"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "t\N{U+025b}\N{U+025b}n\N{U+025b}\N{U+025b}",
      "talata",
      "alaba",
      "aimisa",
      "aijima",
      "si\N{U+0253}iti",
      "lahadi"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Vai",
    month_format_abbreviated => [
      "luukao kem\N{U+00e3}",
      "\N{U+0253}anda\N{U+0253}u",
      "v\N{U+0254}\N{U+0254}",
      "fulu",
      "goo",
      6,
      7,
      "k\N{U+0254}nde",
      "saah",
      "galo",
      "kenpkato \N{U+0253}olol\N{U+0254}",
      "luukao l\N{U+0254}ma"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "luukao kem\N{U+00e3}",
      "\N{U+0253}anda\N{U+0253}u",
      "v\N{U+0254}\N{U+0254}",
      "fulu",
      "goo",
      6,
      7,
      "k\N{U+0254}nde",
      "saah",
      "galo",
      "kenpkato \N{U+0253}olol\N{U+0254}",
      "luukao l\N{U+0254}ma"
    ],
    month_stand_alone_abbreviated => [
      "luukao kem\N{U+00e3}",
      "\N{U+0253}anda\N{U+0253}u",
      "v\N{U+0254}\N{U+0254}",
      "fulu",
      "goo",
      6,
      7,
      "k\N{U+0254}nde",
      "saah",
      "galo",
      "kenpkato \N{U+0253}olol\N{U+0254}",
      "luukao l\N{U+0254}ma"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "luukao kem\N{U+00e3}",
      "\N{U+0253}anda\N{U+0253}u",
      "v\N{U+0254}\N{U+0254}",
      "fulu",
      "goo",
      6,
      7,
      "k\N{U+0254}nde",
      "saah",
      "galo",
      "kenpkato \N{U+0253}olol\N{U+0254}",
      "luukao l\N{U+0254}ma"
    ],
    name => "Vai Latin",
    native_language => "Vai",
    native_name => "Vai Latn",
    native_script => "Latn",
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => "Latin",
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ vai-Latn-LR ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "y MMMM",
      yMMMd => "MMM d y",
      yMd => "M/d/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "vai-Latn-LR",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "t\N{U+025b}\N{U+025b}n\N{U+025b}\N{U+025b}",
      "talata",
      "alaba",
      "aimisa",
      "aijima",
      "si\N{U+0253}iti",
      "lahadi"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "t\N{U+025b}\N{U+025b}n\N{U+025b}\N{U+025b}",
      "talata",
      "alaba",
      "aimisa",
      "aijima",
      "si\N{U+0253}iti",
      "lahadi"
    ],
    day_stand_alone_abbreviated => [
      "t\N{U+025b}\N{U+025b}n\N{U+025b}\N{U+025b}",
      "talata",
      "alaba",
      "aimisa",
      "aijima",
      "si\N{U+0253}iti",
      "lahadi"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "t\N{U+025b}\N{U+025b}n\N{U+025b}\N{U+025b}",
      "talata",
      "alaba",
      "aimisa",
      "aijima",
      "si\N{U+0253}iti",
      "lahadi"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Vai",
    month_format_abbreviated => [
      "luukao kem\N{U+00e3}",
      "\N{U+0253}anda\N{U+0253}u",
      "v\N{U+0254}\N{U+0254}",
      "fulu",
      "goo",
      6,
      7,
      "k\N{U+0254}nde",
      "saah",
      "galo",
      "kenpkato \N{U+0253}olol\N{U+0254}",
      "luukao l\N{U+0254}ma"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "luukao kem\N{U+00e3}",
      "\N{U+0253}anda\N{U+0253}u",
      "v\N{U+0254}\N{U+0254}",
      "fulu",
      "goo",
      6,
      7,
      "k\N{U+0254}nde",
      "saah",
      "galo",
      "kenpkato \N{U+0253}olol\N{U+0254}",
      "luukao l\N{U+0254}ma"
    ],
    month_stand_alone_abbreviated => [
      "luukao kem\N{U+00e3}",
      "\N{U+0253}anda\N{U+0253}u",
      "v\N{U+0254}\N{U+0254}",
      "fulu",
      "goo",
      6,
      7,
      "k\N{U+0254}nde",
      "saah",
      "galo",
      "kenpkato \N{U+0253}olol\N{U+0254}",
      "luukao l\N{U+0254}ma"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "luukao kem\N{U+00e3}",
      "\N{U+0253}anda\N{U+0253}u",
      "v\N{U+0254}\N{U+0254}",
      "fulu",
      "goo",
      6,
      7,
      "k\N{U+0254}nde",
      "saah",
      "galo",
      "kenpkato \N{U+0253}olol\N{U+0254}",
      "luukao l\N{U+0254}ma"
    ],
    name => "Vai Liberia Latin",
    native_language => "Vai",
    native_name => "Vai Laibhiya Latn",
    native_script => "Latn",
    native_territory => "Laibhiya",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => "Latin",
    territory => "Liberia",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ vai-Vaii ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "vai-Vaii",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+a5f3}\N{U+a5e1}\N{U+a609}",
      "\N{U+a55a}\N{U+a55e}\N{U+a55a}",
      "\N{U+a549}\N{U+a55e}\N{U+a552}",
      "\N{U+a549}\N{U+a524}\N{U+a546}\N{U+a562}",
      "\N{U+a549}\N{U+a524}\N{U+a540}\N{U+a56e}",
      "\N{U+a53b}\N{U+a52c}\N{U+a533}",
      "\N{U+a55e}\N{U+a54c}\N{U+a535}"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "\N{U+a5f3}\N{U+a5e1}\N{U+a609}",
      "\N{U+a55a}\N{U+a55e}\N{U+a55a}",
      "\N{U+a549}\N{U+a55e}\N{U+a552}",
      "\N{U+a549}\N{U+a524}\N{U+a546}\N{U+a562}",
      "\N{U+a549}\N{U+a524}\N{U+a540}\N{U+a56e}",
      "\N{U+a53b}\N{U+a52c}\N{U+a533}",
      "\N{U+a55e}\N{U+a54c}\N{U+a535}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+a5f3}\N{U+a5e1}\N{U+a609}",
      "\N{U+a55a}\N{U+a55e}\N{U+a55a}",
      "\N{U+a549}\N{U+a55e}\N{U+a552}",
      "\N{U+a549}\N{U+a524}\N{U+a546}\N{U+a562}",
      "\N{U+a549}\N{U+a524}\N{U+a540}\N{U+a56e}",
      "\N{U+a53b}\N{U+a52c}\N{U+a533}",
      "\N{U+a55e}\N{U+a54c}\N{U+a535}"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "\N{U+a5f3}\N{U+a5e1}\N{U+a609}",
      "\N{U+a55a}\N{U+a55e}\N{U+a55a}",
      "\N{U+a549}\N{U+a55e}\N{U+a552}",
      "\N{U+a549}\N{U+a524}\N{U+a546}\N{U+a562}",
      "\N{U+a549}\N{U+a524}\N{U+a540}\N{U+a56e}",
      "\N{U+a53b}\N{U+a52c}\N{U+a533}",
      "\N{U+a55e}\N{U+a54c}\N{U+a535}"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Vai",
    month_format_abbreviated => [
      "\N{U+a5a8}\N{U+a56a}\N{U+a583} \N{U+a51e}\N{U+a56e}",
      "\N{U+a552}\N{U+a561}\N{U+a59d}\N{U+a595}",
      "\N{U+a57e}\N{U+a5ba}",
      "\N{U+a5a2}\N{U+a595}",
      "\N{U+a591}\N{U+a571}",
      6,
      7,
      "\N{U+a5db}\N{U+a515}",
      "\N{U+a562}\N{U+a54c}",
      "\N{U+a56d}\N{U+a583}",
      "\N{U+a51e}\N{U+a60b}\N{U+a554}\N{U+a57f} \N{U+a578}\N{U+a583}\N{U+a5cf}",
      "\N{U+a5a8}\N{U+a56a}\N{U+a571} \N{U+a5cf}\N{U+a56e}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+a5a8}\N{U+a56a}\N{U+a583} \N{U+a51e}\N{U+a56e}",
      "\N{U+a552}\N{U+a561}\N{U+a59d}\N{U+a595}",
      "\N{U+a57e}\N{U+a5ba}",
      "\N{U+a5a2}\N{U+a595}",
      "\N{U+a591}\N{U+a571}",
      6,
      7,
      "\N{U+a5db}\N{U+a515}",
      "\N{U+a562}\N{U+a54c}",
      "\N{U+a56d}\N{U+a583}",
      "\N{U+a51e}\N{U+a60b}\N{U+a554}\N{U+a57f} \N{U+a578}\N{U+a583}\N{U+a5cf}",
      "\N{U+a5a8}\N{U+a56a}\N{U+a571} \N{U+a5cf}\N{U+a56e}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+a5a8}\N{U+a56a}\N{U+a583} \N{U+a51e}\N{U+a56e}",
      "\N{U+a552}\N{U+a561}\N{U+a59d}\N{U+a595}",
      "\N{U+a57e}\N{U+a5ba}",
      "\N{U+a5a2}\N{U+a595}",
      "\N{U+a591}\N{U+a571}",
      6,
      7,
      "\N{U+a5db}\N{U+a515}",
      "\N{U+a562}\N{U+a54c}",
      "\N{U+a56d}\N{U+a583}",
      "\N{U+a51e}\N{U+a60b}\N{U+a554}\N{U+a57f} \N{U+a578}\N{U+a583}\N{U+a5cf}",
      "\N{U+a5a8}\N{U+a56a}\N{U+a571} \N{U+a5cf}\N{U+a56e}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+a5a8}\N{U+a56a}\N{U+a583} \N{U+a51e}\N{U+a56e}",
      "\N{U+a552}\N{U+a561}\N{U+a59d}\N{U+a595}",
      "\N{U+a57e}\N{U+a5ba}",
      "\N{U+a5a2}\N{U+a595}",
      "\N{U+a591}\N{U+a571}",
      6,
      7,
      "\N{U+a5db}\N{U+a515}",
      "\N{U+a562}\N{U+a54c}",
      "\N{U+a56d}\N{U+a583}",
      "\N{U+a51e}\N{U+a60b}\N{U+a554}\N{U+a57f} \N{U+a578}\N{U+a583}\N{U+a5cf}",
      "\N{U+a5a8}\N{U+a56a}\N{U+a571} \N{U+a5cf}\N{U+a56e}"
    ],
    name => "Vai Vai",
    native_language => "\N{U+a559}\N{U+a524}",
    native_name => "\N{U+a559}\N{U+a524} Vaii",
    native_script => "Vaii",
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => "Vai",
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ vai-Vaii-LR ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "vai-Vaii-LR",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+a5f3}\N{U+a5e1}\N{U+a609}",
      "\N{U+a55a}\N{U+a55e}\N{U+a55a}",
      "\N{U+a549}\N{U+a55e}\N{U+a552}",
      "\N{U+a549}\N{U+a524}\N{U+a546}\N{U+a562}",
      "\N{U+a549}\N{U+a524}\N{U+a540}\N{U+a56e}",
      "\N{U+a53b}\N{U+a52c}\N{U+a533}",
      "\N{U+a55e}\N{U+a54c}\N{U+a535}"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "\N{U+a5f3}\N{U+a5e1}\N{U+a609}",
      "\N{U+a55a}\N{U+a55e}\N{U+a55a}",
      "\N{U+a549}\N{U+a55e}\N{U+a552}",
      "\N{U+a549}\N{U+a524}\N{U+a546}\N{U+a562}",
      "\N{U+a549}\N{U+a524}\N{U+a540}\N{U+a56e}",
      "\N{U+a53b}\N{U+a52c}\N{U+a533}",
      "\N{U+a55e}\N{U+a54c}\N{U+a535}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+a5f3}\N{U+a5e1}\N{U+a609}",
      "\N{U+a55a}\N{U+a55e}\N{U+a55a}",
      "\N{U+a549}\N{U+a55e}\N{U+a552}",
      "\N{U+a549}\N{U+a524}\N{U+a546}\N{U+a562}",
      "\N{U+a549}\N{U+a524}\N{U+a540}\N{U+a56e}",
      "\N{U+a53b}\N{U+a52c}\N{U+a533}",
      "\N{U+a55e}\N{U+a54c}\N{U+a535}"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "\N{U+a5f3}\N{U+a5e1}\N{U+a609}",
      "\N{U+a55a}\N{U+a55e}\N{U+a55a}",
      "\N{U+a549}\N{U+a55e}\N{U+a552}",
      "\N{U+a549}\N{U+a524}\N{U+a546}\N{U+a562}",
      "\N{U+a549}\N{U+a524}\N{U+a540}\N{U+a56e}",
      "\N{U+a53b}\N{U+a52c}\N{U+a533}",
      "\N{U+a55e}\N{U+a54c}\N{U+a535}"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Vai",
    month_format_abbreviated => [
      "\N{U+a5a8}\N{U+a56a}\N{U+a583} \N{U+a51e}\N{U+a56e}",
      "\N{U+a552}\N{U+a561}\N{U+a59d}\N{U+a595}",
      "\N{U+a57e}\N{U+a5ba}",
      "\N{U+a5a2}\N{U+a595}",
      "\N{U+a591}\N{U+a571}",
      6,
      7,
      "\N{U+a5db}\N{U+a515}",
      "\N{U+a562}\N{U+a54c}",
      "\N{U+a56d}\N{U+a583}",
      "\N{U+a51e}\N{U+a60b}\N{U+a554}\N{U+a57f} \N{U+a578}\N{U+a583}\N{U+a5cf}",
      "\N{U+a5a8}\N{U+a56a}\N{U+a571} \N{U+a5cf}\N{U+a56e}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+a5a8}\N{U+a56a}\N{U+a583} \N{U+a51e}\N{U+a56e}",
      "\N{U+a552}\N{U+a561}\N{U+a59d}\N{U+a595}",
      "\N{U+a57e}\N{U+a5ba}",
      "\N{U+a5a2}\N{U+a595}",
      "\N{U+a591}\N{U+a571}",
      6,
      7,
      "\N{U+a5db}\N{U+a515}",
      "\N{U+a562}\N{U+a54c}",
      "\N{U+a56d}\N{U+a583}",
      "\N{U+a51e}\N{U+a60b}\N{U+a554}\N{U+a57f} \N{U+a578}\N{U+a583}\N{U+a5cf}",
      "\N{U+a5a8}\N{U+a56a}\N{U+a571} \N{U+a5cf}\N{U+a56e}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+a5a8}\N{U+a56a}\N{U+a583} \N{U+a51e}\N{U+a56e}",
      "\N{U+a552}\N{U+a561}\N{U+a59d}\N{U+a595}",
      "\N{U+a57e}\N{U+a5ba}",
      "\N{U+a5a2}\N{U+a595}",
      "\N{U+a591}\N{U+a571}",
      6,
      7,
      "\N{U+a5db}\N{U+a515}",
      "\N{U+a562}\N{U+a54c}",
      "\N{U+a56d}\N{U+a583}",
      "\N{U+a51e}\N{U+a60b}\N{U+a554}\N{U+a57f} \N{U+a578}\N{U+a583}\N{U+a5cf}",
      "\N{U+a5a8}\N{U+a56a}\N{U+a571} \N{U+a5cf}\N{U+a56e}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+a5a8}\N{U+a56a}\N{U+a583} \N{U+a51e}\N{U+a56e}",
      "\N{U+a552}\N{U+a561}\N{U+a59d}\N{U+a595}",
      "\N{U+a57e}\N{U+a5ba}",
      "\N{U+a5a2}\N{U+a595}",
      "\N{U+a591}\N{U+a571}",
      6,
      7,
      "\N{U+a5db}\N{U+a515}",
      "\N{U+a562}\N{U+a54c}",
      "\N{U+a56d}\N{U+a583}",
      "\N{U+a51e}\N{U+a60b}\N{U+a554}\N{U+a57f} \N{U+a578}\N{U+a583}\N{U+a5cf}",
      "\N{U+a5a8}\N{U+a56a}\N{U+a571} \N{U+a5cf}\N{U+a56e}"
    ],
    name => "Vai Liberia Vai",
    native_language => "\N{U+a559}\N{U+a524}",
    native_name => "\N{U+a559}\N{U+a524} \N{U+a55e}\N{U+a524}\N{U+a52b}\N{U+a569} Vaii",
    native_script => "Vaii",
    native_territory => "\N{U+a55e}\N{U+a524}\N{U+a52b}\N{U+a569}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => "Vai",
    territory => "Liberia",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ vi ]__
  {
    am_pm_abbreviated => [
      "SA",
      "CH"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E, 'ng\N{U+00e0}y' d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM, y G",
      GyMMMd => "dd MMM, y G",
      H => "HH",
      Hm => "H:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd-MM",
      Md => "dd/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, dd/M/y",
      yMM => "'th\N{U+00e1}ng' MM, y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM, y",
      yMMMM => "MMMM 'n\N{U+0103}m' y",
      yMMMd => "d MMM, y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ 'n\N{U+0103}m' y"
    },
    code => "vi",
    date_format_full => "EEEE, 'ng\N{U+00e0}y' dd MMMM 'n\N{U+0103}m' y",
    date_format_long => "'Ng\N{U+00e0}y' dd 'th\N{U+00e1}ng' MM 'n\N{U+0103}m' y",
    date_format_medium => "d MMM, y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{0} {1}",
    datetime_format_long => "{0} {1}",
    datetime_format_medium => "{0}, {1}",
    datetime_format_short => "{0}, {1}",
    day_format_abbreviated => [
      "Th 2",
      "Th 3",
      "Th 4",
      "Th 5",
      "Th 6",
      "Th 7",
      "CN"
    ],
    day_format_narrow => [
      "T2",
      "T3",
      "T4",
      "T5",
      "T6",
      "T7",
      "CN"
    ],
    day_format_wide => [
      "Th\N{U+1ee9} Hai",
      "Th\N{U+1ee9} Ba",
      "Th\N{U+1ee9} T\N{U+01b0}",
      "Th\N{U+1ee9} N\N{U+0103}m",
      "Th\N{U+1ee9} S\N{U+00e1}u",
      "Th\N{U+1ee9} B\N{U+1ea3}y",
      "Ch\N{U+1ee7} Nh\N{U+1ead}t"
    ],
    day_stand_alone_abbreviated => [
      "Th 2",
      "Th 3",
      "Th 4",
      "Th 5",
      "Th 6",
      "Th 7",
      "CN"
    ],
    day_stand_alone_narrow => [
      "T2",
      "T3",
      "T4",
      "T5",
      "T6",
      "T7",
      "CN"
    ],
    day_stand_alone_wide => [
      "Th\N{U+1ee9} Hai",
      "Th\N{U+1ee9} Ba",
      "Th\N{U+1ee9} T\N{U+01b0}",
      "Th\N{U+1ee9} N\N{U+0103}m",
      "Th\N{U+1ee9} S\N{U+00e1}u",
      "Th\N{U+1ee9} B\N{U+1ea3}y",
      "Ch\N{U+1ee7} Nh\N{U+1ead}t"
    ],
    era_abbreviated => [
      "tr. CN",
      "sau CN"
    ],
    era_narrow => [
      "tr. CN",
      "sau CN"
    ],
    era_wide => [
      "tr. CN",
      "sau CN"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Vietnamese",
    month_format_abbreviated => [
      "thg 1",
      "thg 2",
      "thg 3",
      "thg 4",
      "thg 5",
      "thg 6",
      "thg 7",
      "thg 8",
      "thg 9",
      "thg 10",
      "thg 11",
      "thg 12"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "th\N{U+00e1}ng 1",
      "th\N{U+00e1}ng 2",
      "th\N{U+00e1}ng 3",
      "th\N{U+00e1}ng 4",
      "th\N{U+00e1}ng 5",
      "th\N{U+00e1}ng 6",
      "th\N{U+00e1}ng 7",
      "th\N{U+00e1}ng 8",
      "th\N{U+00e1}ng 9",
      "th\N{U+00e1}ng 10",
      "th\N{U+00e1}ng 11",
      "th\N{U+00e1}ng 12"
    ],
    month_stand_alone_abbreviated => [
      "Thg 1",
      "Thg 2",
      "Thg 3",
      "Thg 4",
      "Thg 5",
      "Thg 6",
      "Thg 7",
      "Thg 8",
      "Thg 9",
      "Thg 10",
      "Thg 11",
      "Thg 12"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Th\N{U+00e1}ng 1",
      "Th\N{U+00e1}ng 2",
      "Th\N{U+00e1}ng 3",
      "Th\N{U+00e1}ng 4",
      "Th\N{U+00e1}ng 5",
      "Th\N{U+00e1}ng 6",
      "Th\N{U+00e1}ng 7",
      "Th\N{U+00e1}ng 8",
      "Th\N{U+00e1}ng 9",
      "Th\N{U+00e1}ng 10",
      "Th\N{U+00e1}ng 11",
      "Th\N{U+00e1}ng 12"
    ],
    name => "Vietnamese",
    native_language => "Ti\N{U+1ebf}ng Vi\N{U+1ec7}t",
    native_name => "Ti\N{U+1ebf}ng Vi\N{U+1ec7}t",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Qu\N{U+00fd} 1",
      "Qu\N{U+00fd} 2",
      "Qu\N{U+00fd} 3",
      "Qu\N{U+00fd} 4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "qu\N{U+00fd} 1",
      "qu\N{U+00fd} 2",
      "qu\N{U+00fd} 3",
      "qu\N{U+00fd} 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ vi-VN ]__
  {
    am_pm_abbreviated => [
      "SA",
      "CH"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E, 'ng\N{U+00e0}y' d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "y G",
      GyMMM => "MMM y G",
      GyMMMEd => "E, d MMM, y G",
      GyMMMd => "dd MMM, y G",
      H => "HH",
      Hm => "H:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, dd/M",
      MMM => "LLL",
      MMMEd => "E, d MMM",
      MMMMEd => "E, d MMMM",
      MMMMd => "d MMMM",
      MMMd => "d MMM",
      MMdd => "dd-MM",
      Md => "dd/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      mmss => "mm:ss",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, dd/M/y",
      yMM => "'th\N{U+00e1}ng' MM, y",
      yMMM => "MMM y",
      yMMMEd => "E, d MMM, y",
      yMMMM => "MMMM 'n\N{U+0103}m' y",
      yMMMd => "d MMM, y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ 'n\N{U+0103}m' y"
    },
    code => "vi-VN",
    date_format_full => "EEEE, 'ng\N{U+00e0}y' dd MMMM 'n\N{U+0103}m' y",
    date_format_long => "'Ng\N{U+00e0}y' dd 'th\N{U+00e1}ng' MM 'n\N{U+0103}m' y",
    date_format_medium => "d MMM, y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{0} {1}",
    datetime_format_long => "{0} {1}",
    datetime_format_medium => "{0}, {1}",
    datetime_format_short => "{0}, {1}",
    day_format_abbreviated => [
      "Th 2",
      "Th 3",
      "Th 4",
      "Th 5",
      "Th 6",
      "Th 7",
      "CN"
    ],
    day_format_narrow => [
      "T2",
      "T3",
      "T4",
      "T5",
      "T6",
      "T7",
      "CN"
    ],
    day_format_wide => [
      "Th\N{U+1ee9} Hai",
      "Th\N{U+1ee9} Ba",
      "Th\N{U+1ee9} T\N{U+01b0}",
      "Th\N{U+1ee9} N\N{U+0103}m",
      "Th\N{U+1ee9} S\N{U+00e1}u",
      "Th\N{U+1ee9} B\N{U+1ea3}y",
      "Ch\N{U+1ee7} Nh\N{U+1ead}t"
    ],
    day_stand_alone_abbreviated => [
      "Th 2",
      "Th 3",
      "Th 4",
      "Th 5",
      "Th 6",
      "Th 7",
      "CN"
    ],
    day_stand_alone_narrow => [
      "T2",
      "T3",
      "T4",
      "T5",
      "T6",
      "T7",
      "CN"
    ],
    day_stand_alone_wide => [
      "Th\N{U+1ee9} Hai",
      "Th\N{U+1ee9} Ba",
      "Th\N{U+1ee9} T\N{U+01b0}",
      "Th\N{U+1ee9} N\N{U+0103}m",
      "Th\N{U+1ee9} S\N{U+00e1}u",
      "Th\N{U+1ee9} B\N{U+1ea3}y",
      "Ch\N{U+1ee7} Nh\N{U+1ead}t"
    ],
    era_abbreviated => [
      "tr. CN",
      "sau CN"
    ],
    era_narrow => [
      "tr. CN",
      "sau CN"
    ],
    era_wide => [
      "tr. CN",
      "sau CN"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%A, %d %B n\N{U+0103}m %Y %T %Z",
    glibc_date_format => "%d/%m/%Y",
    glibc_datetime_format => "%A, %d %B N\N{U+0103}m %Y %T %Z",
    glibc_time_12_format => "%I:%M %p",
    glibc_time_format => "%T",
    language => "Vietnamese",
    month_format_abbreviated => [
      "thg 1",
      "thg 2",
      "thg 3",
      "thg 4",
      "thg 5",
      "thg 6",
      "thg 7",
      "thg 8",
      "thg 9",
      "thg 10",
      "thg 11",
      "thg 12"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "th\N{U+00e1}ng 1",
      "th\N{U+00e1}ng 2",
      "th\N{U+00e1}ng 3",
      "th\N{U+00e1}ng 4",
      "th\N{U+00e1}ng 5",
      "th\N{U+00e1}ng 6",
      "th\N{U+00e1}ng 7",
      "th\N{U+00e1}ng 8",
      "th\N{U+00e1}ng 9",
      "th\N{U+00e1}ng 10",
      "th\N{U+00e1}ng 11",
      "th\N{U+00e1}ng 12"
    ],
    month_stand_alone_abbreviated => [
      "Thg 1",
      "Thg 2",
      "Thg 3",
      "Thg 4",
      "Thg 5",
      "Thg 6",
      "Thg 7",
      "Thg 8",
      "Thg 9",
      "Thg 10",
      "Thg 11",
      "Thg 12"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Th\N{U+00e1}ng 1",
      "Th\N{U+00e1}ng 2",
      "Th\N{U+00e1}ng 3",
      "Th\N{U+00e1}ng 4",
      "Th\N{U+00e1}ng 5",
      "Th\N{U+00e1}ng 6",
      "Th\N{U+00e1}ng 7",
      "Th\N{U+00e1}ng 8",
      "Th\N{U+00e1}ng 9",
      "Th\N{U+00e1}ng 10",
      "Th\N{U+00e1}ng 11",
      "Th\N{U+00e1}ng 12"
    ],
    name => "Vietnamese Vietnam",
    native_language => "Ti\N{U+1ebf}ng Vi\N{U+1ec7}t",
    native_name => "Ti\N{U+1ebf}ng Vi\N{U+1ec7}t Vi\N{U+1ec7}t Nam",
    native_script => undef,
    native_territory => "Vi\N{U+1ec7}t Nam",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Qu\N{U+00fd} 1",
      "Qu\N{U+00fd} 2",
      "Qu\N{U+00fd} 3",
      "Qu\N{U+00fd} 4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "qu\N{U+00fd} 1",
      "qu\N{U+00fd} 2",
      "qu\N{U+00fd} 3",
      "qu\N{U+00fd} 4"
    ],
    script => undef,
    territory => "Vietnam",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ vo ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "vo",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Volap\N{U+00fc}k",
    month_format_abbreviated => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_stand_alone_abbreviated => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    name => "Volap\N{U+00fc}k",
    native_language => "vo",
    native_name => "vo",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ vo-001 ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "MM-dd, E",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "y MMM",
      yMMMEd => "y MMM d, E",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "vo-001",
    date_format_full => "y MMMM d, EEEE",
    date_format_long => "y MMMM d",
    date_format_medium => "y MMM d",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_abbreviated => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
      "Sat",
      "Sun"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Volap\N{U+00fc}k",
    month_format_abbreviated => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_stand_alone_abbreviated => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "M01",
      "M02",
      "M03",
      "M04",
      "M05",
      "M06",
      "M07",
      "M08",
      "M09",
      "M10",
      "M11",
      "M12"
    ],
    name => "Volap\N{U+00fc}k World",
    native_language => "vo",
    native_name => "vo 001",
    native_script => undef,
    native_territory => "001",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "World",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ vun ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "vun",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Jtt",
      "Jnn",
      "Jtn",
      "Alh",
      "Iju",
      "Jmo",
      "Jpi"
    ],
    day_format_narrow => [
      "J",
      "J",
      "J",
      "A",
      "I",
      "J",
      "J"
    ],
    day_format_wide => [
      "Jumatatuu",
      "Jumanne",
      "Jumatanu",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapilyi"
    ],
    day_stand_alone_abbreviated => [
      "Jtt",
      "Jnn",
      "Jtn",
      "Alh",
      "Iju",
      "Jmo",
      "Jpi"
    ],
    day_stand_alone_narrow => [
      "J",
      "J",
      "J",
      "A",
      "I",
      "J",
      "J"
    ],
    day_stand_alone_wide => [
      "Jumatatuu",
      "Jumanne",
      "Jumatanu",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapilyi"
    ],
    era_abbreviated => [
      "KK",
      "BK"
    ],
    era_narrow => [
      "KK",
      "BK"
    ],
    era_wide => [
      "Kabla ya Kristu",
      "Baada ya Kristu"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Vunjo",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Aprilyi",
      "Mei",
      "Junyi",
      "Julyai",
      "Agusti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Aprilyi",
      "Mei",
      "Junyi",
      "Julyai",
      "Agusti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    name => "Vunjo",
    native_language => "Kyivunjo",
    native_name => "Kyivunjo",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Robo 1",
      "Robo 2",
      "Robo 3",
      "Robo 4"
    ],
    quarter_stand_alone_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Robo 1",
      "Robo 2",
      "Robo 3",
      "Robo 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ vun-TZ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "vun-TZ",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Jtt",
      "Jnn",
      "Jtn",
      "Alh",
      "Iju",
      "Jmo",
      "Jpi"
    ],
    day_format_narrow => [
      "J",
      "J",
      "J",
      "A",
      "I",
      "J",
      "J"
    ],
    day_format_wide => [
      "Jumatatuu",
      "Jumanne",
      "Jumatanu",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapilyi"
    ],
    day_stand_alone_abbreviated => [
      "Jtt",
      "Jnn",
      "Jtn",
      "Alh",
      "Iju",
      "Jmo",
      "Jpi"
    ],
    day_stand_alone_narrow => [
      "J",
      "J",
      "J",
      "A",
      "I",
      "J",
      "J"
    ],
    day_stand_alone_wide => [
      "Jumatatuu",
      "Jumanne",
      "Jumatanu",
      "Alhamisi",
      "Ijumaa",
      "Jumamosi",
      "Jumapilyi"
    ],
    era_abbreviated => [
      "KK",
      "BK"
    ],
    era_narrow => [
      "KK",
      "BK"
    ],
    era_wide => [
      "Kabla ya Kristu",
      "Baada ya Kristu"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Vunjo",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Aprilyi",
      "Mei",
      "Junyi",
      "Julyai",
      "Agusti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mac",
      "Apr",
      "Mei",
      "Jun",
      "Jul",
      "Ago",
      "Sep",
      "Okt",
      "Nov",
      "Des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januari",
      "Februari",
      "Machi",
      "Aprilyi",
      "Mei",
      "Junyi",
      "Julyai",
      "Agusti",
      "Septemba",
      "Oktoba",
      "Novemba",
      "Desemba"
    ],
    name => "Vunjo Tanzania",
    native_language => "Kyivunjo",
    native_name => "Kyivunjo Tanzania",
    native_script => undef,
    native_territory => "Tanzania",
    native_variant => undef,
    quarter_format_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Robo 1",
      "Robo 2",
      "Robo 3",
      "Robo 4"
    ],
    quarter_stand_alone_abbreviated => [
      "R1",
      "R2",
      "R3",
      "R4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Robo 1",
      "Robo 2",
      "Robo 3",
      "Robo 4"
    ],
    script => undef,
    territory => "Tanzania",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ wae ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d.",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "LLL",
      MEd => "E, d. MMM",
      MMM => "LLL",
      MMMEd => "E, d. MMM",
      MMMMd => "MMMM d",
      MMMd => "d. MMM",
      Md => "d. MMM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "MMM y",
      yMMMEd => "E, d. MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d. MMM y",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "wae",
    date_format_full => "EEEE, d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "d. MMM y",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "M\N{U+00e4}n",
      "Zi\N{U+0161}",
      "Mit",
      "Fr\N{U+00f3}",
      "Fri",
      "Sam",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "Z",
      "M",
      "F",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "M\N{U+00e4}ntag",
      "Zi\N{U+0161}tag",
      "Mittwu\N{U+010d}",
      "Fr\N{U+00f3}ntag",
      "Fritag",
      "Sam\N{U+0161}tag",
      "Sunntag"
    ],
    day_stand_alone_abbreviated => [
      "M\N{U+00e4}n",
      "Zi\N{U+0161}",
      "Mit",
      "Fr\N{U+00f3}",
      "Fri",
      "Sam",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "Z",
      "M",
      "F",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "M\N{U+00e4}ntag",
      "Zi\N{U+0161}tag",
      "Mittwu\N{U+010d}",
      "Fr\N{U+00f3}ntag",
      "Fritag",
      "Sam\N{U+0161}tag",
      "Sunntag"
    ],
    era_abbreviated => [
      "v. Chr.",
      "n. Chr"
    ],
    era_narrow => [
      "v. Chr.",
      "n. Chr"
    ],
    era_wide => [
      "v. Chr.",
      "n. Chr"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Walser",
    month_format_abbreviated => [
      "Jen",
      "Hor",
      "M\N{U+00e4}r",
      "Abr",
      "Mei",
      "Br\N{U+00e1}",
      "Hei",
      "\N{U+00d6}ig",
      "Her",
      "W\N{U+00ed}m",
      "Win",
      "Chr"
    ],
    month_format_narrow => [
      "J",
      "H",
      "M",
      "A",
      "M",
      "B",
      "H",
      "\N{U+00d6}",
      "H",
      "W",
      "W",
      "C"
    ],
    month_format_wide => [
      "Jenner",
      "Hornig",
      "M\N{U+00e4}rze",
      "Abrille",
      "Meije",
      "Br\N{U+00e1}\N{U+010d}et",
      "Heiwet",
      "\N{U+00d6}ig\N{U+0161}te",
      "Herb\N{U+0161}tm\N{U+00e1}net",
      "W\N{U+00ed}m\N{U+00e1}net",
      "Winterm\N{U+00e1}net",
      "Chri\N{U+0161}tm\N{U+00e1}net"
    ],
    month_stand_alone_abbreviated => [
      "Jen",
      "Hor",
      "M\N{U+00e4}r",
      "Abr",
      "Mei",
      "Br\N{U+00e1}",
      "Hei",
      "\N{U+00d6}ig",
      "Her",
      "W\N{U+00ed}m",
      "Win",
      "Chr"
    ],
    month_stand_alone_narrow => [
      "J",
      "H",
      "M",
      "A",
      "M",
      "B",
      "H",
      "\N{U+00d6}",
      "H",
      "W",
      "W",
      "C"
    ],
    month_stand_alone_wide => [
      "Jenner",
      "Hornig",
      "M\N{U+00e4}rze",
      "Abrille",
      "Meije",
      "Br\N{U+00e1}\N{U+010d}et",
      "Heiwet",
      "\N{U+00d6}ig\N{U+0161}te",
      "Herb\N{U+0161}tm\N{U+00e1}net",
      "W\N{U+00ed}m\N{U+00e1}net",
      "Winterm\N{U+00e1}net",
      "Chri\N{U+0161}tm\N{U+00e1}net"
    ],
    name => "Walser",
    native_language => "Walser",
    native_name => "Walser",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. quartal",
      "2. quartal",
      "3. quartal",
      "4. quartal"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. quartal",
      "2. quartal",
      "3. quartal",
      "4. quartal"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ wae-CH ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d.",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "LLL",
      MEd => "E, d. MMM",
      MMM => "LLL",
      MMMEd => "E, d. MMM",
      MMMMd => "MMMM d",
      MMMd => "d. MMM",
      Md => "d. MMM",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "y-MM-dd, E",
      yMMM => "MMM y",
      yMMMEd => "E, d. MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d. MMM y",
      yMd => "y-MM-dd",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "wae-CH",
    date_format_full => "EEEE, d. MMMM y",
    date_format_long => "d. MMMM y",
    date_format_medium => "d. MMM y",
    date_format_short => "y-MM-dd",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "M\N{U+00e4}n",
      "Zi\N{U+0161}",
      "Mit",
      "Fr\N{U+00f3}",
      "Fri",
      "Sam",
      "Sun"
    ],
    day_format_narrow => [
      "M",
      "Z",
      "M",
      "F",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "M\N{U+00e4}ntag",
      "Zi\N{U+0161}tag",
      "Mittwu\N{U+010d}",
      "Fr\N{U+00f3}ntag",
      "Fritag",
      "Sam\N{U+0161}tag",
      "Sunntag"
    ],
    day_stand_alone_abbreviated => [
      "M\N{U+00e4}n",
      "Zi\N{U+0161}",
      "Mit",
      "Fr\N{U+00f3}",
      "Fri",
      "Sam",
      "Sun"
    ],
    day_stand_alone_narrow => [
      "M",
      "Z",
      "M",
      "F",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "M\N{U+00e4}ntag",
      "Zi\N{U+0161}tag",
      "Mittwu\N{U+010d}",
      "Fr\N{U+00f3}ntag",
      "Fritag",
      "Sam\N{U+0161}tag",
      "Sunntag"
    ],
    era_abbreviated => [
      "v. Chr.",
      "n. Chr"
    ],
    era_narrow => [
      "v. Chr.",
      "n. Chr"
    ],
    era_wide => [
      "v. Chr.",
      "n. Chr"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %-d %b %H:%M:%S %Z %Y",
    glibc_date_format => "%Y-%m-%d",
    glibc_datetime_format => "%a %d. %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Walser",
    month_format_abbreviated => [
      "Jen",
      "Hor",
      "M\N{U+00e4}r",
      "Abr",
      "Mei",
      "Br\N{U+00e1}",
      "Hei",
      "\N{U+00d6}ig",
      "Her",
      "W\N{U+00ed}m",
      "Win",
      "Chr"
    ],
    month_format_narrow => [
      "J",
      "H",
      "M",
      "A",
      "M",
      "B",
      "H",
      "\N{U+00d6}",
      "H",
      "W",
      "W",
      "C"
    ],
    month_format_wide => [
      "Jenner",
      "Hornig",
      "M\N{U+00e4}rze",
      "Abrille",
      "Meije",
      "Br\N{U+00e1}\N{U+010d}et",
      "Heiwet",
      "\N{U+00d6}ig\N{U+0161}te",
      "Herb\N{U+0161}tm\N{U+00e1}net",
      "W\N{U+00ed}m\N{U+00e1}net",
      "Winterm\N{U+00e1}net",
      "Chri\N{U+0161}tm\N{U+00e1}net"
    ],
    month_stand_alone_abbreviated => [
      "Jen",
      "Hor",
      "M\N{U+00e4}r",
      "Abr",
      "Mei",
      "Br\N{U+00e1}",
      "Hei",
      "\N{U+00d6}ig",
      "Her",
      "W\N{U+00ed}m",
      "Win",
      "Chr"
    ],
    month_stand_alone_narrow => [
      "J",
      "H",
      "M",
      "A",
      "M",
      "B",
      "H",
      "\N{U+00d6}",
      "H",
      "W",
      "W",
      "C"
    ],
    month_stand_alone_wide => [
      "Jenner",
      "Hornig",
      "M\N{U+00e4}rze",
      "Abrille",
      "Meije",
      "Br\N{U+00e1}\N{U+010d}et",
      "Heiwet",
      "\N{U+00d6}ig\N{U+0161}te",
      "Herb\N{U+0161}tm\N{U+00e1}net",
      "W\N{U+00ed}m\N{U+00e1}net",
      "Winterm\N{U+00e1}net",
      "Chri\N{U+0161}tm\N{U+00e1}net"
    ],
    name => "Walser Switzerland",
    native_language => "Walser",
    native_name => "Walser Schwiz",
    native_script => undef,
    native_territory => "Schwiz",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "1. quartal",
      "2. quartal",
      "3. quartal",
      "4. quartal"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "1. quartal",
      "2. quartal",
      "3. quartal",
      "4. quartal"
    ],
    script => undef,
    territory => "Switzerland",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ xog ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "xog",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Bala",
      "Kubi",
      "Kusa",
      "Kuna",
      "Kuta",
      "Muka",
      "Sabi"
    ],
    day_format_narrow => [
      "B",
      "B",
      "S",
      "K",
      "K",
      "M",
      "S"
    ],
    day_format_wide => [
      "Balaza",
      "Owokubili",
      "Owokusatu",
      "Olokuna",
      "Olokutaanu",
      "Olomukaaga",
      "Sabiiti"
    ],
    day_stand_alone_abbreviated => [
      "Bala",
      "Kubi",
      "Kusa",
      "Kuna",
      "Kuta",
      "Muka",
      "Sabi"
    ],
    day_stand_alone_narrow => [
      "B",
      "B",
      "S",
      "K",
      "K",
      "M",
      "S"
    ],
    day_stand_alone_wide => [
      "Balaza",
      "Owokubili",
      "Owokusatu",
      "Olokuna",
      "Olokutaanu",
      "Olomukaaga",
      "Sabiiti"
    ],
    era_abbreviated => [
      "AZ",
      "AF"
    ],
    era_narrow => [
      "AZ",
      "AF"
    ],
    era_wide => [
      "Kulisto nga azilawo",
      "Kulisto nga affile"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Soga",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apu",
      "Maa",
      "Juu",
      "Jul",
      "Agu",
      "Seb",
      "Oki",
      "Nov",
      "Des"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Janwaliyo",
      "Febwaliyo",
      "Marisi",
      "Apuli",
      "Maayi",
      "Juuni",
      "Julaayi",
      "Agusito",
      "Sebuttemba",
      "Okitobba",
      "Novemba",
      "Desemba"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apu",
      "Maa",
      "Juu",
      "Jul",
      "Agu",
      "Seb",
      "Oki",
      "Nov",
      "Des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Janwaliyo",
      "Febwaliyo",
      "Marisi",
      "Apuli",
      "Maayi",
      "Juuni",
      "Julaayi",
      "Agusito",
      "Sebuttemba",
      "Okitobba",
      "Novemba",
      "Desemba"
    ],
    name => "Soga",
    native_language => "Olusoga",
    native_name => "Olusoga",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Ebisera ebyomwaka ebisoka",
      "Ebisera ebyomwaka ebyokubiri",
      "Ebisera ebyomwaka ebyokusatu",
      "Ebisera ebyomwaka ebyokuna"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Ebisera ebyomwaka ebisoka",
      "Ebisera ebyomwaka ebyokubiri",
      "Ebisera ebyomwaka ebyokusatu",
      "Ebisera ebyomwaka ebyokuna"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ xog-UG ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "xog-UG",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Bala",
      "Kubi",
      "Kusa",
      "Kuna",
      "Kuta",
      "Muka",
      "Sabi"
    ],
    day_format_narrow => [
      "B",
      "B",
      "S",
      "K",
      "K",
      "M",
      "S"
    ],
    day_format_wide => [
      "Balaza",
      "Owokubili",
      "Owokusatu",
      "Olokuna",
      "Olokutaanu",
      "Olomukaaga",
      "Sabiiti"
    ],
    day_stand_alone_abbreviated => [
      "Bala",
      "Kubi",
      "Kusa",
      "Kuna",
      "Kuta",
      "Muka",
      "Sabi"
    ],
    day_stand_alone_narrow => [
      "B",
      "B",
      "S",
      "K",
      "K",
      "M",
      "S"
    ],
    day_stand_alone_wide => [
      "Balaza",
      "Owokubili",
      "Owokusatu",
      "Olokuna",
      "Olokutaanu",
      "Olomukaaga",
      "Sabiiti"
    ],
    era_abbreviated => [
      "AZ",
      "AF"
    ],
    era_narrow => [
      "AZ",
      "AF"
    ],
    era_wide => [
      "Kulisto nga azilawo",
      "Kulisto nga affile"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Soga",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apu",
      "Maa",
      "Juu",
      "Jul",
      "Agu",
      "Seb",
      "Oki",
      "Nov",
      "Des"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Janwaliyo",
      "Febwaliyo",
      "Marisi",
      "Apuli",
      "Maayi",
      "Juuni",
      "Julaayi",
      "Agusito",
      "Sebuttemba",
      "Okitobba",
      "Novemba",
      "Desemba"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mar",
      "Apu",
      "Maa",
      "Juu",
      "Jul",
      "Agu",
      "Seb",
      "Oki",
      "Nov",
      "Des"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Janwaliyo",
      "Febwaliyo",
      "Marisi",
      "Apuli",
      "Maayi",
      "Juuni",
      "Julaayi",
      "Agusito",
      "Sebuttemba",
      "Okitobba",
      "Novemba",
      "Desemba"
    ],
    name => "Soga Uganda",
    native_language => "Olusoga",
    native_name => "Olusoga Yuganda",
    native_script => undef,
    native_territory => "Yuganda",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Ebisera ebyomwaka ebisoka",
      "Ebisera ebyomwaka ebyokubiri",
      "Ebisera ebyomwaka ebyokusatu",
      "Ebisera ebyomwaka ebyokuna"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Ebisera ebyomwaka ebisoka",
      "Ebisera ebyomwaka ebyokubiri",
      "Ebisera ebyomwaka ebyokusatu",
      "Ebisera ebyomwaka ebyokuna"
    ],
    script => undef,
    territory => "Uganda",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ yav ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "yav",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "md",
      "mw",
      "et",
      "kl",
      "fl",
      "ss",
      "sd"
    ],
    day_format_narrow => [
      "m",
      "m",
      "e",
      "k",
      "f",
      "s",
      "s"
    ],
    day_format_wide => [
      "m\N{U+00f3}ndie",
      "mu\N{U+00e1}ny\N{U+00e1}\N{U+014b}m\N{U+00f3}ndie",
      "met\N{U+00fa}kp\N{U+00ed}\N{U+00e1}p\N{U+025b}",
      "k\N{U+00fa}p\N{U+00e9}limet\N{U+00fa}kpiap\N{U+025b}",
      "fel\N{U+00e9}te",
      "s\N{U+00e9}sel\N{U+00e9}",
      "s\N{U+0254}\N{U+0301}ndi\N{U+025b}"
    ],
    day_stand_alone_abbreviated => [
      "md",
      "mw",
      "et",
      "kl",
      "fl",
      "ss",
      "sd"
    ],
    day_stand_alone_narrow => [
      "m",
      "m",
      "e",
      "k",
      "f",
      "s",
      "s"
    ],
    day_stand_alone_wide => [
      "m\N{U+00f3}ndie",
      "mu\N{U+00e1}ny\N{U+00e1}\N{U+014b}m\N{U+00f3}ndie",
      "met\N{U+00fa}kp\N{U+00ed}\N{U+00e1}p\N{U+025b}",
      "k\N{U+00fa}p\N{U+00e9}limet\N{U+00fa}kpiap\N{U+025b}",
      "fel\N{U+00e9}te",
      "s\N{U+00e9}sel\N{U+00e9}",
      "s\N{U+0254}\N{U+0301}ndi\N{U+025b}"
    ],
    era_abbreviated => [
      "k.Y.",
      "+J.C."
    ],
    era_narrow => [
      "k.Y.",
      "+J.C."
    ],
    era_wide => [
      "katikup\N{U+00ed}en Y\N{U+00e9}suse",
      "\N{U+00e9}k\N{U+00e9}l\N{U+00e9}mk\N{U+00fa}nup\N{U+00ed}\N{U+00e9}n n"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Yangben",
    month_format_abbreviated => [
      "o.1",
      "o.2",
      "o.3",
      "o.4",
      "o.5",
      "o.6",
      "o.7",
      "o.8",
      "o.9",
      "o.10",
      "o.11",
      "o.12"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "pik\N{U+00ed}t\N{U+00ed}k\N{U+00ed}tie, o\N{U+00f3}l\N{U+00ed} \N{U+00fa} kut\N{U+00fa}an",
      "si\N{U+025b}y\N{U+025b}\N{U+0301}, o\N{U+00f3}li \N{U+00fa} k\N{U+00e1}nd\N{U+00ed}\N{U+025b}",
      "\N{U+0254}ns\N{U+00fa}mb\N{U+0254}l, o\N{U+00f3}li \N{U+00fa} k\N{U+00e1}t\N{U+00e1}t\N{U+00fa}\N{U+025b}",
      "mesi\N{U+014b}, o\N{U+00f3}li \N{U+00fa} k\N{U+00e9}nie",
      "ensil, o\N{U+00f3}li \N{U+00fa} k\N{U+00e1}t\N{U+00e1}nu\N{U+025b}",
      "\N{U+0254}s\N{U+0254}n",
      "efute",
      "pisuy\N{U+00fa}",
      "im\N{U+025b}\N{U+014b} i pu\N{U+0254}s",
      "im\N{U+025b}\N{U+014b} i put\N{U+00fa}k,o\N{U+00f3}li \N{U+00fa} k\N{U+00e1}t\N{U+00ed}\N{U+025b}",
      "makandik\N{U+025b}",
      "pil\N{U+0254}nd\N{U+0254}\N{U+0301}"
    ],
    month_stand_alone_abbreviated => [
      "o.1",
      "o.2",
      "o.3",
      "o.4",
      "o.5",
      "o.6",
      "o.7",
      "o.8",
      "o.9",
      "o.10",
      "o.11",
      "o.12"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "pik\N{U+00ed}t\N{U+00ed}k\N{U+00ed}tie, o\N{U+00f3}l\N{U+00ed} \N{U+00fa} kut\N{U+00fa}an",
      "si\N{U+025b}y\N{U+025b}\N{U+0301}, o\N{U+00f3}li \N{U+00fa} k\N{U+00e1}nd\N{U+00ed}\N{U+025b}",
      "\N{U+0254}ns\N{U+00fa}mb\N{U+0254}l, o\N{U+00f3}li \N{U+00fa} k\N{U+00e1}t\N{U+00e1}t\N{U+00fa}\N{U+025b}",
      "mesi\N{U+014b}, o\N{U+00f3}li \N{U+00fa} k\N{U+00e9}nie",
      "ensil, o\N{U+00f3}li \N{U+00fa} k\N{U+00e1}t\N{U+00e1}nu\N{U+025b}",
      "\N{U+0254}s\N{U+0254}n",
      "efute",
      "pisuy\N{U+00fa}",
      "im\N{U+025b}\N{U+014b} i pu\N{U+0254}s",
      "im\N{U+025b}\N{U+014b} i put\N{U+00fa}k,o\N{U+00f3}li \N{U+00fa} k\N{U+00e1}t\N{U+00ed}\N{U+025b}",
      "makandik\N{U+025b}",
      "pil\N{U+0254}nd\N{U+0254}\N{U+0301}"
    ],
    name => "Yangben",
    native_language => "nuasue",
    native_name => "nuasue",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "nd\N{U+00e1}t\N{U+00fa}\N{U+025b} 1",
      "nd\N{U+00e1}t\N{U+00fa}\N{U+025b} 2",
      "nd\N{U+00e1}t\N{U+00fa}\N{U+025b} 3",
      "nd\N{U+00e1}t\N{U+00fa}\N{U+025b} 4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "nd\N{U+00e1}t\N{U+00fa}\N{U+025b} 1",
      "nd\N{U+00e1}t\N{U+00fa}\N{U+025b} 2",
      "nd\N{U+00e1}t\N{U+00fa}\N{U+025b} 3",
      "nd\N{U+00e1}t\N{U+00fa}\N{U+025b} 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ yav-CM ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E d",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E d/M",
      MMM => "LLL",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d MMM y",
      yMd => "d/M/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "yav-CM",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "md",
      "mw",
      "et",
      "kl",
      "fl",
      "ss",
      "sd"
    ],
    day_format_narrow => [
      "m",
      "m",
      "e",
      "k",
      "f",
      "s",
      "s"
    ],
    day_format_wide => [
      "m\N{U+00f3}ndie",
      "mu\N{U+00e1}ny\N{U+00e1}\N{U+014b}m\N{U+00f3}ndie",
      "met\N{U+00fa}kp\N{U+00ed}\N{U+00e1}p\N{U+025b}",
      "k\N{U+00fa}p\N{U+00e9}limet\N{U+00fa}kpiap\N{U+025b}",
      "fel\N{U+00e9}te",
      "s\N{U+00e9}sel\N{U+00e9}",
      "s\N{U+0254}\N{U+0301}ndi\N{U+025b}"
    ],
    day_stand_alone_abbreviated => [
      "md",
      "mw",
      "et",
      "kl",
      "fl",
      "ss",
      "sd"
    ],
    day_stand_alone_narrow => [
      "m",
      "m",
      "e",
      "k",
      "f",
      "s",
      "s"
    ],
    day_stand_alone_wide => [
      "m\N{U+00f3}ndie",
      "mu\N{U+00e1}ny\N{U+00e1}\N{U+014b}m\N{U+00f3}ndie",
      "met\N{U+00fa}kp\N{U+00ed}\N{U+00e1}p\N{U+025b}",
      "k\N{U+00fa}p\N{U+00e9}limet\N{U+00fa}kpiap\N{U+025b}",
      "fel\N{U+00e9}te",
      "s\N{U+00e9}sel\N{U+00e9}",
      "s\N{U+0254}\N{U+0301}ndi\N{U+025b}"
    ],
    era_abbreviated => [
      "k.Y.",
      "+J.C."
    ],
    era_narrow => [
      "k.Y.",
      "+J.C."
    ],
    era_wide => [
      "katikup\N{U+00ed}en Y\N{U+00e9}suse",
      "\N{U+00e9}k\N{U+00e9}l\N{U+00e9}mk\N{U+00fa}nup\N{U+00ed}\N{U+00e9}n n"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Yangben",
    month_format_abbreviated => [
      "o.1",
      "o.2",
      "o.3",
      "o.4",
      "o.5",
      "o.6",
      "o.7",
      "o.8",
      "o.9",
      "o.10",
      "o.11",
      "o.12"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "pik\N{U+00ed}t\N{U+00ed}k\N{U+00ed}tie, o\N{U+00f3}l\N{U+00ed} \N{U+00fa} kut\N{U+00fa}an",
      "si\N{U+025b}y\N{U+025b}\N{U+0301}, o\N{U+00f3}li \N{U+00fa} k\N{U+00e1}nd\N{U+00ed}\N{U+025b}",
      "\N{U+0254}ns\N{U+00fa}mb\N{U+0254}l, o\N{U+00f3}li \N{U+00fa} k\N{U+00e1}t\N{U+00e1}t\N{U+00fa}\N{U+025b}",
      "mesi\N{U+014b}, o\N{U+00f3}li \N{U+00fa} k\N{U+00e9}nie",
      "ensil, o\N{U+00f3}li \N{U+00fa} k\N{U+00e1}t\N{U+00e1}nu\N{U+025b}",
      "\N{U+0254}s\N{U+0254}n",
      "efute",
      "pisuy\N{U+00fa}",
      "im\N{U+025b}\N{U+014b} i pu\N{U+0254}s",
      "im\N{U+025b}\N{U+014b} i put\N{U+00fa}k,o\N{U+00f3}li \N{U+00fa} k\N{U+00e1}t\N{U+00ed}\N{U+025b}",
      "makandik\N{U+025b}",
      "pil\N{U+0254}nd\N{U+0254}\N{U+0301}"
    ],
    month_stand_alone_abbreviated => [
      "o.1",
      "o.2",
      "o.3",
      "o.4",
      "o.5",
      "o.6",
      "o.7",
      "o.8",
      "o.9",
      "o.10",
      "o.11",
      "o.12"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "pik\N{U+00ed}t\N{U+00ed}k\N{U+00ed}tie, o\N{U+00f3}l\N{U+00ed} \N{U+00fa} kut\N{U+00fa}an",
      "si\N{U+025b}y\N{U+025b}\N{U+0301}, o\N{U+00f3}li \N{U+00fa} k\N{U+00e1}nd\N{U+00ed}\N{U+025b}",
      "\N{U+0254}ns\N{U+00fa}mb\N{U+0254}l, o\N{U+00f3}li \N{U+00fa} k\N{U+00e1}t\N{U+00e1}t\N{U+00fa}\N{U+025b}",
      "mesi\N{U+014b}, o\N{U+00f3}li \N{U+00fa} k\N{U+00e9}nie",
      "ensil, o\N{U+00f3}li \N{U+00fa} k\N{U+00e1}t\N{U+00e1}nu\N{U+025b}",
      "\N{U+0254}s\N{U+0254}n",
      "efute",
      "pisuy\N{U+00fa}",
      "im\N{U+025b}\N{U+014b} i pu\N{U+0254}s",
      "im\N{U+025b}\N{U+014b} i put\N{U+00fa}k,o\N{U+00f3}li \N{U+00fa} k\N{U+00e1}t\N{U+00ed}\N{U+025b}",
      "makandik\N{U+025b}",
      "pil\N{U+0254}nd\N{U+0254}\N{U+0301}"
    ],
    name => "Yangben Cameroon",
    native_language => "nuasue",
    native_name => "nuasue Kemel\N{U+00fa}n",
    native_script => undef,
    native_territory => "Kemel\N{U+00fa}n",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "nd\N{U+00e1}t\N{U+00fa}\N{U+025b} 1",
      "nd\N{U+00e1}t\N{U+00fa}\N{U+025b} 2",
      "nd\N{U+00e1}t\N{U+00fa}\N{U+025b} 3",
      "nd\N{U+00e1}t\N{U+00fa}\N{U+025b} 4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "nd\N{U+00e1}t\N{U+00fa}\N{U+025b} 1",
      "nd\N{U+00e1}t\N{U+00fa}\N{U+025b} 2",
      "nd\N{U+00e1}t\N{U+00fa}\N{U+025b} 3",
      "nd\N{U+00e1}t\N{U+00fa}\N{U+025b} 4"
    ],
    script => undef,
    territory => "Cameroon",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ yi ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E \N{U+05d3}\N{U+05e2}\N{U+05dd} d\N{U+05d8}\N{U+05df}",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "E \N{U+05d3}\N{U+05e2}\N{U+05dd} d\N{U+05d8}\N{U+05df} MMM yG",
      GyMMMd => "d\N{U+05d8}\N{U+05df} MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "E, d/M/y",
      yMM => "MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d\N{U+05d8}\N{U+05df} MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d\N{U+05d8}\N{U+05df} MMM y",
      yMd => "d-M-y",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "yi",
    date_format_full => "EEEE, d\N{U+05d8}\N{U+05df} MMMM y",
    date_format_long => "d\N{U+05d8}\N{U+05df} MMMM y",
    date_format_medium => "d\N{U+05d8}\N{U+05df} MMM y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+05de}\N{U+05d0}\N{U+05b8}\N{U+05e0}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05d3}\N{U+05d9}\N{U+05e0}\N{U+05e1}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05de}\N{U+05d9}\N{U+05d8}\N{U+05d5}\N{U+05d5}\N{U+05d0}\N{U+05da}",
      "\N{U+05d3}\N{U+05d0}\N{U+05e0}\N{U+05e2}\N{U+05e8}\N{U+05e9}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05e4}\N{U+05bf}\N{U+05e8}\N{U+05f2}\N{U+05b7}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05e9}\N{U+05d1}\N{U+05ea}",
      "\N{U+05d6}\N{U+05d5}\N{U+05e0}\N{U+05d8}\N{U+05d9}\N{U+05e7}"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "\N{U+05de}\N{U+05d0}\N{U+05b8}\N{U+05e0}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05d3}\N{U+05d9}\N{U+05e0}\N{U+05e1}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05de}\N{U+05d9}\N{U+05d8}\N{U+05d5}\N{U+05d5}\N{U+05d0}\N{U+05da}",
      "\N{U+05d3}\N{U+05d0}\N{U+05e0}\N{U+05e2}\N{U+05e8}\N{U+05e9}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05e4}\N{U+05bf}\N{U+05e8}\N{U+05f2}\N{U+05b7}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05e9}\N{U+05d1}\N{U+05ea}",
      "\N{U+05d6}\N{U+05d5}\N{U+05e0}\N{U+05d8}\N{U+05d9}\N{U+05e7}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+05de}\N{U+05d0}\N{U+05b8}\N{U+05e0}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05d3}\N{U+05d9}\N{U+05e0}\N{U+05e1}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05de}\N{U+05d9}\N{U+05d8}\N{U+05d5}\N{U+05d5}\N{U+05d0}\N{U+05da}",
      "\N{U+05d3}\N{U+05d0}\N{U+05e0}\N{U+05e2}\N{U+05e8}\N{U+05e9}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05e4}\N{U+05bf}\N{U+05e8}\N{U+05f2}\N{U+05b7}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05e9}\N{U+05d1}\N{U+05ea}",
      "\N{U+05d6}\N{U+05d5}\N{U+05e0}\N{U+05d8}\N{U+05d9}\N{U+05e7}"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "\N{U+05de}\N{U+05d0}\N{U+05b8}\N{U+05e0}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05d3}\N{U+05d9}\N{U+05e0}\N{U+05e1}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05de}\N{U+05d9}\N{U+05d8}\N{U+05d5}\N{U+05d5}\N{U+05d0}\N{U+05da}",
      "\N{U+05d3}\N{U+05d0}\N{U+05e0}\N{U+05e2}\N{U+05e8}\N{U+05e9}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05e4}\N{U+05bf}\N{U+05e8}\N{U+05f2}\N{U+05b7}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05e9}\N{U+05d1}\N{U+05ea}",
      "\N{U+05d6}\N{U+05d5}\N{U+05e0}\N{U+05d8}\N{U+05d9}\N{U+05e7}"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Yiddish",
    month_format_abbreviated => [
      "\N{U+05d9}\N{U+05d0}\N{U+05b7}\N{U+05e0}\N{U+05d5}\N{U+05d0}\N{U+05b7}\N{U+05e8}",
      "\N{U+05e4}\N{U+05bf}\N{U+05e2}\N{U+05d1}\N{U+05e8}\N{U+05d5}\N{U+05d0}\N{U+05b7}\N{U+05e8}",
      "\N{U+05de}\N{U+05e2}\N{U+05e8}\N{U+05e5}",
      "\N{U+05d0}\N{U+05b7}\N{U+05e4}\N{U+05bc}\N{U+05e8}\N{U+05d9}\N{U+05dc}",
      "\N{U+05de}\N{U+05d9}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05e0}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dc}\N{U+05d9}",
      "\N{U+05d0}\N{U+05d5}\N{U+05d9}\N{U+05d2}\N{U+05d5}\N{U+05e1}\N{U+05d8}",
      "\N{U+05e1}\N{U+05e2}\N{U+05e4}\N{U+05bc}\N{U+05d8}\N{U+05e2}\N{U+05de}\N{U+05d1}\N{U+05e2}\N{U+05e8}",
      "\N{U+05d0}\N{U+05e7}\N{U+05d8}\N{U+05d0}\N{U+05d1}\N{U+05e2}\N{U+05e8}",
      "\N{U+05e0}\N{U+05d0}\N{U+05d5}\N{U+05d5}\N{U+05e2}\N{U+05de}\N{U+05d1}\N{U+05e2}\N{U+05e8}",
      "\N{U+05d3}\N{U+05e2}\N{U+05e6}\N{U+05e2}\N{U+05de}\N{U+05d1}\N{U+05e2}\N{U+05e8}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+05d9}\N{U+05d0}\N{U+05b7}\N{U+05e0}\N{U+05d5}\N{U+05d0}\N{U+05b7}\N{U+05e8}",
      "\N{U+05e4}\N{U+05bf}\N{U+05e2}\N{U+05d1}\N{U+05e8}\N{U+05d5}\N{U+05d0}\N{U+05b7}\N{U+05e8}",
      "\N{U+05de}\N{U+05e2}\N{U+05e8}\N{U+05e5}",
      "\N{U+05d0}\N{U+05b7}\N{U+05e4}\N{U+05bc}\N{U+05e8}\N{U+05d9}\N{U+05dc}",
      "\N{U+05de}\N{U+05d9}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05e0}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dc}\N{U+05d9}",
      "\N{U+05d0}\N{U+05d5}\N{U+05d9}\N{U+05d2}\N{U+05d5}\N{U+05e1}\N{U+05d8}",
      "\N{U+05e1}\N{U+05e2}\N{U+05e4}\N{U+05bc}\N{U+05d8}\N{U+05e2}\N{U+05de}\N{U+05d1}\N{U+05e2}\N{U+05e8}",
      "\N{U+05d0}\N{U+05e7}\N{U+05d8}\N{U+05d0}\N{U+05d1}\N{U+05e2}\N{U+05e8}",
      "\N{U+05e0}\N{U+05d0}\N{U+05d5}\N{U+05d5}\N{U+05e2}\N{U+05de}\N{U+05d1}\N{U+05e2}\N{U+05e8}",
      "\N{U+05d3}\N{U+05e2}\N{U+05e6}\N{U+05e2}\N{U+05de}\N{U+05d1}\N{U+05e2}\N{U+05e8}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+05d9}\N{U+05d0}\N{U+05b7}\N{U+05e0}",
      "\N{U+05e4}\N{U+05bf}\N{U+05e2}\N{U+05d1}",
      "\N{U+05de}\N{U+05e2}\N{U+05e8}\N{U+05e5}",
      "\N{U+05d0}\N{U+05b7}\N{U+05e4}\N{U+05bc}\N{U+05e8}",
      "\N{U+05de}\N{U+05d9}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05e0}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dc}\N{U+05d9}",
      "\N{U+05d0}\N{U+05d5}\N{U+05d9}\N{U+05d2}",
      "\N{U+05e1}\N{U+05e2}\N{U+05e4}\N{U+05bc}",
      "\N{U+05d0}\N{U+05e7}\N{U+05d8}",
      "\N{U+05e0}\N{U+05d0}\N{U+05d5}\N{U+05d5}",
      "\N{U+05d3}\N{U+05e2}\N{U+05e6}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+05d9}\N{U+05d0}\N{U+05b7}\N{U+05e0}\N{U+05d5}\N{U+05d0}\N{U+05b7}\N{U+05e8}",
      "\N{U+05e4}\N{U+05bf}\N{U+05e2}\N{U+05d1}\N{U+05e8}\N{U+05d5}\N{U+05d0}\N{U+05b7}\N{U+05e8}",
      "\N{U+05de}\N{U+05e2}\N{U+05e8}\N{U+05e5}",
      "\N{U+05d0}\N{U+05b7}\N{U+05e4}\N{U+05bc}\N{U+05e8}\N{U+05d9}\N{U+05dc}",
      "\N{U+05de}\N{U+05d9}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05e0}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dc}\N{U+05d9}",
      "\N{U+05d0}\N{U+05d5}\N{U+05d9}\N{U+05d2}\N{U+05d5}\N{U+05e1}\N{U+05d8}",
      "\N{U+05e1}\N{U+05e2}\N{U+05e4}\N{U+05bc}\N{U+05d8}\N{U+05e2}\N{U+05de}\N{U+05d1}\N{U+05e2}\N{U+05e8}",
      "\N{U+05d0}\N{U+05e7}\N{U+05d8}\N{U+05d0}\N{U+05d1}\N{U+05e2}\N{U+05e8}",
      "\N{U+05e0}\N{U+05d0}\N{U+05d5}\N{U+05d5}\N{U+05e2}\N{U+05de}\N{U+05d1}\N{U+05e2}\N{U+05e8}",
      "\N{U+05d3}\N{U+05e2}\N{U+05e6}\N{U+05e2}\N{U+05de}\N{U+05d1}\N{U+05e2}\N{U+05e8}"
    ],
    name => "Yiddish",
    native_language => "\N{U+05d9}\N{U+05d9}\N{U+05b4}\N{U+05d3}\N{U+05d9}\N{U+05e9}",
    native_name => "\N{U+05d9}\N{U+05d9}\N{U+05b4}\N{U+05d3}\N{U+05d9}\N{U+05e9}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ yi-001 ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "E \N{U+05d3}\N{U+05e2}\N{U+05dd} d\N{U+05d8}\N{U+05df}",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "E \N{U+05d3}\N{U+05e2}\N{U+05dd} d\N{U+05d8}\N{U+05df} MMM yG",
      GyMMMd => "d\N{U+05d8}\N{U+05df} MMM y G",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "MMM d, E",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "MM-dd",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "y-MM",
      yMEd => "E, d/M/y",
      yMM => "MM/y",
      yMMM => "MMM y",
      yMMMEd => "E, d\N{U+05d8}\N{U+05df} MMM y",
      yMMMM => "y MMMM",
      yMMMd => "d\N{U+05d8}\N{U+05df} MMM y",
      yMd => "d-M-y",
      yQQQ => "y QQQ",
      yQQQQ => "y QQQQ"
    },
    code => "yi-001",
    date_format_full => "EEEE, d\N{U+05d8}\N{U+05df} MMMM y",
    date_format_long => "d\N{U+05d8}\N{U+05df} MMMM y",
    date_format_medium => "d\N{U+05d8}\N{U+05df} MMM y",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1}, {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+05de}\N{U+05d0}\N{U+05b8}\N{U+05e0}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05d3}\N{U+05d9}\N{U+05e0}\N{U+05e1}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05de}\N{U+05d9}\N{U+05d8}\N{U+05d5}\N{U+05d5}\N{U+05d0}\N{U+05da}",
      "\N{U+05d3}\N{U+05d0}\N{U+05e0}\N{U+05e2}\N{U+05e8}\N{U+05e9}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05e4}\N{U+05bf}\N{U+05e8}\N{U+05f2}\N{U+05b7}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05e9}\N{U+05d1}\N{U+05ea}",
      "\N{U+05d6}\N{U+05d5}\N{U+05e0}\N{U+05d8}\N{U+05d9}\N{U+05e7}"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "\N{U+05de}\N{U+05d0}\N{U+05b8}\N{U+05e0}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05d3}\N{U+05d9}\N{U+05e0}\N{U+05e1}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05de}\N{U+05d9}\N{U+05d8}\N{U+05d5}\N{U+05d5}\N{U+05d0}\N{U+05da}",
      "\N{U+05d3}\N{U+05d0}\N{U+05e0}\N{U+05e2}\N{U+05e8}\N{U+05e9}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05e4}\N{U+05bf}\N{U+05e8}\N{U+05f2}\N{U+05b7}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05e9}\N{U+05d1}\N{U+05ea}",
      "\N{U+05d6}\N{U+05d5}\N{U+05e0}\N{U+05d8}\N{U+05d9}\N{U+05e7}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+05de}\N{U+05d0}\N{U+05b8}\N{U+05e0}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05d3}\N{U+05d9}\N{U+05e0}\N{U+05e1}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05de}\N{U+05d9}\N{U+05d8}\N{U+05d5}\N{U+05d5}\N{U+05d0}\N{U+05da}",
      "\N{U+05d3}\N{U+05d0}\N{U+05e0}\N{U+05e2}\N{U+05e8}\N{U+05e9}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05e4}\N{U+05bf}\N{U+05e8}\N{U+05f2}\N{U+05b7}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05e9}\N{U+05d1}\N{U+05ea}",
      "\N{U+05d6}\N{U+05d5}\N{U+05e0}\N{U+05d8}\N{U+05d9}\N{U+05e7}"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "\N{U+05de}\N{U+05d0}\N{U+05b8}\N{U+05e0}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05d3}\N{U+05d9}\N{U+05e0}\N{U+05e1}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05de}\N{U+05d9}\N{U+05d8}\N{U+05d5}\N{U+05d5}\N{U+05d0}\N{U+05da}",
      "\N{U+05d3}\N{U+05d0}\N{U+05e0}\N{U+05e2}\N{U+05e8}\N{U+05e9}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05e4}\N{U+05bf}\N{U+05e8}\N{U+05f2}\N{U+05b7}\N{U+05d8}\N{U+05d9}\N{U+05e7}",
      "\N{U+05e9}\N{U+05d1}\N{U+05ea}",
      "\N{U+05d6}\N{U+05d5}\N{U+05e0}\N{U+05d8}\N{U+05d9}\N{U+05e7}"
    ],
    era_abbreviated => [
      "BCE",
      "CE"
    ],
    era_narrow => [
      "BCE",
      "CE"
    ],
    era_wide => [
      "BCE",
      "CE"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Yiddish",
    month_format_abbreviated => [
      "\N{U+05d9}\N{U+05d0}\N{U+05b7}\N{U+05e0}\N{U+05d5}\N{U+05d0}\N{U+05b7}\N{U+05e8}",
      "\N{U+05e4}\N{U+05bf}\N{U+05e2}\N{U+05d1}\N{U+05e8}\N{U+05d5}\N{U+05d0}\N{U+05b7}\N{U+05e8}",
      "\N{U+05de}\N{U+05e2}\N{U+05e8}\N{U+05e5}",
      "\N{U+05d0}\N{U+05b7}\N{U+05e4}\N{U+05bc}\N{U+05e8}\N{U+05d9}\N{U+05dc}",
      "\N{U+05de}\N{U+05d9}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05e0}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dc}\N{U+05d9}",
      "\N{U+05d0}\N{U+05d5}\N{U+05d9}\N{U+05d2}\N{U+05d5}\N{U+05e1}\N{U+05d8}",
      "\N{U+05e1}\N{U+05e2}\N{U+05e4}\N{U+05bc}\N{U+05d8}\N{U+05e2}\N{U+05de}\N{U+05d1}\N{U+05e2}\N{U+05e8}",
      "\N{U+05d0}\N{U+05e7}\N{U+05d8}\N{U+05d0}\N{U+05d1}\N{U+05e2}\N{U+05e8}",
      "\N{U+05e0}\N{U+05d0}\N{U+05d5}\N{U+05d5}\N{U+05e2}\N{U+05de}\N{U+05d1}\N{U+05e2}\N{U+05e8}",
      "\N{U+05d3}\N{U+05e2}\N{U+05e6}\N{U+05e2}\N{U+05de}\N{U+05d1}\N{U+05e2}\N{U+05e8}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+05d9}\N{U+05d0}\N{U+05b7}\N{U+05e0}\N{U+05d5}\N{U+05d0}\N{U+05b7}\N{U+05e8}",
      "\N{U+05e4}\N{U+05bf}\N{U+05e2}\N{U+05d1}\N{U+05e8}\N{U+05d5}\N{U+05d0}\N{U+05b7}\N{U+05e8}",
      "\N{U+05de}\N{U+05e2}\N{U+05e8}\N{U+05e5}",
      "\N{U+05d0}\N{U+05b7}\N{U+05e4}\N{U+05bc}\N{U+05e8}\N{U+05d9}\N{U+05dc}",
      "\N{U+05de}\N{U+05d9}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05e0}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dc}\N{U+05d9}",
      "\N{U+05d0}\N{U+05d5}\N{U+05d9}\N{U+05d2}\N{U+05d5}\N{U+05e1}\N{U+05d8}",
      "\N{U+05e1}\N{U+05e2}\N{U+05e4}\N{U+05bc}\N{U+05d8}\N{U+05e2}\N{U+05de}\N{U+05d1}\N{U+05e2}\N{U+05e8}",
      "\N{U+05d0}\N{U+05e7}\N{U+05d8}\N{U+05d0}\N{U+05d1}\N{U+05e2}\N{U+05e8}",
      "\N{U+05e0}\N{U+05d0}\N{U+05d5}\N{U+05d5}\N{U+05e2}\N{U+05de}\N{U+05d1}\N{U+05e2}\N{U+05e8}",
      "\N{U+05d3}\N{U+05e2}\N{U+05e6}\N{U+05e2}\N{U+05de}\N{U+05d1}\N{U+05e2}\N{U+05e8}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+05d9}\N{U+05d0}\N{U+05b7}\N{U+05e0}",
      "\N{U+05e4}\N{U+05bf}\N{U+05e2}\N{U+05d1}",
      "\N{U+05de}\N{U+05e2}\N{U+05e8}\N{U+05e5}",
      "\N{U+05d0}\N{U+05b7}\N{U+05e4}\N{U+05bc}\N{U+05e8}",
      "\N{U+05de}\N{U+05d9}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05e0}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dc}\N{U+05d9}",
      "\N{U+05d0}\N{U+05d5}\N{U+05d9}\N{U+05d2}",
      "\N{U+05e1}\N{U+05e2}\N{U+05e4}\N{U+05bc}",
      "\N{U+05d0}\N{U+05e7}\N{U+05d8}",
      "\N{U+05e0}\N{U+05d0}\N{U+05d5}\N{U+05d5}",
      "\N{U+05d3}\N{U+05e2}\N{U+05e6}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+05d9}\N{U+05d0}\N{U+05b7}\N{U+05e0}\N{U+05d5}\N{U+05d0}\N{U+05b7}\N{U+05e8}",
      "\N{U+05e4}\N{U+05bf}\N{U+05e2}\N{U+05d1}\N{U+05e8}\N{U+05d5}\N{U+05d0}\N{U+05b7}\N{U+05e8}",
      "\N{U+05de}\N{U+05e2}\N{U+05e8}\N{U+05e5}",
      "\N{U+05d0}\N{U+05b7}\N{U+05e4}\N{U+05bc}\N{U+05e8}\N{U+05d9}\N{U+05dc}",
      "\N{U+05de}\N{U+05d9}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05e0}\N{U+05d9}",
      "\N{U+05d9}\N{U+05d5}\N{U+05dc}\N{U+05d9}",
      "\N{U+05d0}\N{U+05d5}\N{U+05d9}\N{U+05d2}\N{U+05d5}\N{U+05e1}\N{U+05d8}",
      "\N{U+05e1}\N{U+05e2}\N{U+05e4}\N{U+05bc}\N{U+05d8}\N{U+05e2}\N{U+05de}\N{U+05d1}\N{U+05e2}\N{U+05e8}",
      "\N{U+05d0}\N{U+05e7}\N{U+05d8}\N{U+05d0}\N{U+05d1}\N{U+05e2}\N{U+05e8}",
      "\N{U+05e0}\N{U+05d0}\N{U+05d5}\N{U+05d5}\N{U+05e2}\N{U+05de}\N{U+05d1}\N{U+05e2}\N{U+05e8}",
      "\N{U+05d3}\N{U+05e2}\N{U+05e6}\N{U+05e2}\N{U+05de}\N{U+05d1}\N{U+05e2}\N{U+05e8}"
    ],
    name => "Yiddish World",
    native_language => "\N{U+05d9}\N{U+05d9}\N{U+05b4}\N{U+05d3}\N{U+05d9}\N{U+05e9}",
    native_name => "\N{U+05d9}\N{U+05d9}\N{U+05b4}\N{U+05d3}\N{U+05d9}\N{U+05e9} \N{U+05d5}\N{U+05d5}\N{U+05e2}\N{U+05dc}\N{U+05d8}",
    native_script => undef,
    native_territory => "\N{U+05d5}\N{U+05d5}\N{U+05e2}\N{U+05dc}\N{U+05d8}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    script => undef,
    territory => "World",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ yo ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "yo",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Aj\N{U+00e9}",
      "\N{U+00cc}s\N{U+1eb9}\N{U+0301}gun",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301}r\N{U+00fa}",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301}b\N{U+1ecd}",
      "\N{U+1eb8}t\N{U+00ec}",
      "\N{U+00c0}b\N{U+00e1}m\N{U+1eb9}\N{U+0301}ta",
      "\N{U+00c0}\N{U+00ec}k\N{U+00fa}"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301} Aj\N{U+00e9}",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301} \N{U+00cc}s\N{U+1eb9}\N{U+0301}gun",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301}r\N{U+00fa}",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301}b\N{U+1ecd}",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301} \N{U+1eb8}t\N{U+00ec}",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301} \N{U+00c0}b\N{U+00e1}m\N{U+1eb9}\N{U+0301}ta",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301} \N{U+00c0}\N{U+00ec}k\N{U+00fa}"
    ],
    day_stand_alone_abbreviated => [
      "Aj\N{U+00e9}",
      "\N{U+00cc}s\N{U+1eb9}\N{U+0301}gun",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301}r\N{U+00fa}",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301}b\N{U+1ecd}",
      "\N{U+1eb8}t\N{U+00ec}",
      "\N{U+00c0}b\N{U+00e1}m\N{U+1eb9}\N{U+0301}ta",
      "\N{U+00c0}\N{U+00ec}k\N{U+00fa}"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301} Aj\N{U+00e9}",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301} \N{U+00cc}s\N{U+1eb9}\N{U+0301}gun",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301}r\N{U+00fa}",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301}b\N{U+1ecd}",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301} \N{U+1eb8}t\N{U+00ec}",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301} \N{U+00c0}b\N{U+00e1}m\N{U+1eb9}\N{U+0301}ta",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301} \N{U+00c0}\N{U+00ec}k\N{U+00fa}"
    ],
    era_abbreviated => [
      "SK",
      "LK"
    ],
    era_narrow => [
      "SK",
      "LK"
    ],
    era_wide => [
      "Saju Kristi",
      "Lehin Kristi"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Yoruba",
    month_format_abbreviated => [
      "\N{U+1e62}\N{U+1eb9}\N{U+0301}r\N{U+1eb9}\N{U+0301}",
      "\N{U+00c8}r\N{U+00e8}l\N{U+00e8}",
      "\N{U+1eb8}r\N{U+1eb9}\N{U+0300}n\N{U+00e0}",
      "\N{U+00cc}gb\N{U+00e9}",
      "\N{U+1eb8}\N{U+0300}bibi",
      "\N{U+00d2}k\N{U+00fa}du",
      "Ag\N{U+1eb9}m\N{U+1ecd}",
      "\N{U+00d2}g\N{U+00fa}n",
      "Owewe",
      "\N{U+1ecc}\N{U+0300}w\N{U+00e0}r\N{U+00e0}",
      "B\N{U+00e9}l\N{U+00fa}",
      "\N{U+1ecc}\N{U+0300}p\N{U+1eb9}\N{U+0300}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "O\N{U+1e63}\N{U+00f9} \N{U+1e62}\N{U+1eb9}\N{U+0301}r\N{U+1eb9}\N{U+0301}",
      "O\N{U+1e63}\N{U+00f9} \N{U+00c8}r\N{U+00e8}l\N{U+00e8}",
      "O\N{U+1e63}\N{U+00f9} \N{U+1eb8}r\N{U+1eb9}\N{U+0300}n\N{U+00e0}",
      "O\N{U+1e63}\N{U+00f9} \N{U+00cc}gb\N{U+00e9}",
      "O\N{U+1e63}\N{U+00f9} \N{U+1eb8}\N{U+0300}bibi",
      "O\N{U+1e63}\N{U+00f9} \N{U+00d2}k\N{U+00fa}du",
      "O\N{U+1e63}\N{U+00f9} Ag\N{U+1eb9}m\N{U+1ecd}",
      "O\N{U+1e63}\N{U+00f9} \N{U+00d2}g\N{U+00fa}n",
      "O\N{U+1e63}\N{U+00f9} Owewe",
      "O\N{U+1e63}\N{U+00f9} \N{U+1ecc}\N{U+0300}w\N{U+00e0}r\N{U+00e0}",
      "O\N{U+1e63}\N{U+00f9} B\N{U+00e9}l\N{U+00fa}",
      "O\N{U+1e63}\N{U+00f9} \N{U+1ecc}\N{U+0300}p\N{U+1eb9}\N{U+0300}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+1e62}\N{U+1eb9}\N{U+0301}r\N{U+1eb9}\N{U+0301}",
      "\N{U+00c8}r\N{U+00e8}l\N{U+00e8}",
      "\N{U+1eb8}r\N{U+1eb9}\N{U+0300}n\N{U+00e0}",
      "\N{U+00cc}gb\N{U+00e9}",
      "\N{U+1eb8}\N{U+0300}bibi",
      "\N{U+00d2}k\N{U+00fa}du",
      "Ag\N{U+1eb9}m\N{U+1ecd}",
      "\N{U+00d2}g\N{U+00fa}n",
      "Owewe",
      "\N{U+1ecc}\N{U+0300}w\N{U+00e0}r\N{U+00e0}",
      "B\N{U+00e9}l\N{U+00fa}",
      "\N{U+1ecc}\N{U+0300}p\N{U+1eb9}\N{U+0300}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "O\N{U+1e63}\N{U+00f9} \N{U+1e62}\N{U+1eb9}\N{U+0301}r\N{U+1eb9}\N{U+0301}",
      "O\N{U+1e63}\N{U+00f9} \N{U+00c8}r\N{U+00e8}l\N{U+00e8}",
      "O\N{U+1e63}\N{U+00f9} \N{U+1eb8}r\N{U+1eb9}\N{U+0300}n\N{U+00e0}",
      "O\N{U+1e63}\N{U+00f9} \N{U+00cc}gb\N{U+00e9}",
      "O\N{U+1e63}\N{U+00f9} \N{U+1eb8}\N{U+0300}bibi",
      "O\N{U+1e63}\N{U+00f9} \N{U+00d2}k\N{U+00fa}du",
      "O\N{U+1e63}\N{U+00f9} Ag\N{U+1eb9}m\N{U+1ecd}",
      "O\N{U+1e63}\N{U+00f9} \N{U+00d2}g\N{U+00fa}n",
      "O\N{U+1e63}\N{U+00f9} Owewe",
      "O\N{U+1e63}\N{U+00f9} \N{U+1ecc}\N{U+0300}w\N{U+00e0}r\N{U+00e0}",
      "O\N{U+1e63}\N{U+00f9} B\N{U+00e9}l\N{U+00fa}",
      "O\N{U+1e63}\N{U+00f9} \N{U+1ecc}\N{U+0300}p\N{U+1eb9}\N{U+0300}"
    ],
    name => "Yoruba",
    native_language => "\N{U+00c8}d\N{U+00e8} Yor\N{U+00f9}b\N{U+00e1}",
    native_name => "\N{U+00c8}d\N{U+00e8} Yor\N{U+00f9}b\N{U+00e1}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "K\N{U+1ecd}\N{U+0301}t\N{U+00e0} K\N{U+00ed}nn\N{U+00ed}",
      "K\N{U+1ecd}\N{U+0301}t\N{U+00e0} Kej\N{U+00ec}",
      "K\N{U+1ecd}\N{U+0301}\N{U+00e0} Keta",
      "K\N{U+1ecd}\N{U+0301}t\N{U+00e0} K\N{U+1eb9}rin"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "K\N{U+1ecd}\N{U+0301}t\N{U+00e0} K\N{U+00ed}nn\N{U+00ed}",
      "K\N{U+1ecd}\N{U+0301}t\N{U+00e0} Kej\N{U+00ec}",
      "K\N{U+1ecd}\N{U+0301}\N{U+00e0} Keta",
      "K\N{U+1ecd}\N{U+0301}t\N{U+00e0} K\N{U+1eb9}rin"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ yo-BJ ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "yo-BJ",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Aj\N{U+00e9}",
      "\N{U+00cc}s\N{U+025b}\N{U+0301}gun",
      "\N{U+0186}j\N{U+0254}\N{U+0301}r\N{U+00fa}",
      "\N{U+0186}j\N{U+0254}\N{U+0301}b\N{U+0254}",
      "\N{U+0190}t\N{U+00ec}",
      "\N{U+00c0}b\N{U+00e1}m\N{U+025b}\N{U+0301}ta",
      "\N{U+00c0}\N{U+00ec}k\N{U+00fa}"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "\N{U+0186}j\N{U+0254}\N{U+0301} Aj\N{U+00e9}",
      "\N{U+0186}j\N{U+0254}\N{U+0301} \N{U+00cc}s\N{U+025b}\N{U+0301}gun",
      "\N{U+0186}j\N{U+0254}\N{U+0301}r\N{U+00fa}",
      "\N{U+0186}j\N{U+0254}\N{U+0301}b\N{U+0254}",
      "\N{U+0186}j\N{U+0254}\N{U+0301} \N{U+0190}t\N{U+00ec}",
      "\N{U+0186}j\N{U+0254}\N{U+0301} \N{U+00c0}b\N{U+00e1}m\N{U+025b}\N{U+0301}ta",
      "\N{U+0186}j\N{U+0254}\N{U+0301} \N{U+00c0}\N{U+00ec}k\N{U+00fa}"
    ],
    day_stand_alone_abbreviated => [
      "Aj\N{U+00e9}",
      "\N{U+00cc}s\N{U+025b}\N{U+0301}gun",
      "\N{U+0186}j\N{U+0254}\N{U+0301}r\N{U+00fa}",
      "\N{U+0186}j\N{U+0254}\N{U+0301}b\N{U+0254}",
      "\N{U+0190}t\N{U+00ec}",
      "\N{U+00c0}b\N{U+00e1}m\N{U+025b}\N{U+0301}ta",
      "\N{U+00c0}\N{U+00ec}k\N{U+00fa}"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "\N{U+0186}j\N{U+0254}\N{U+0301} Aj\N{U+00e9}",
      "\N{U+0186}j\N{U+0254}\N{U+0301} \N{U+00cc}s\N{U+025b}\N{U+0301}gun",
      "\N{U+0186}j\N{U+0254}\N{U+0301}r\N{U+00fa}",
      "\N{U+0186}j\N{U+0254}\N{U+0301}b\N{U+0254}",
      "\N{U+0186}j\N{U+0254}\N{U+0301} \N{U+0190}t\N{U+00ec}",
      "\N{U+0186}j\N{U+0254}\N{U+0301} \N{U+00c0}b\N{U+00e1}m\N{U+025b}\N{U+0301}ta",
      "\N{U+0186}j\N{U+0254}\N{U+0301} \N{U+00c0}\N{U+00ec}k\N{U+00fa}"
    ],
    era_abbreviated => [
      "SK",
      "LK"
    ],
    era_narrow => [
      "SK",
      "LK"
    ],
    era_wide => [
      "Saju Kristi",
      "Lehin Kristi"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Yoruba",
    month_format_abbreviated => [
      "Sh\N{U+025b}\N{U+0301}r\N{U+025b}\N{U+0301}",
      "\N{U+00c8}r\N{U+00e8}l\N{U+00e8}",
      "\N{U+0190}r\N{U+025b}\N{U+0300}n\N{U+00e0}",
      "\N{U+00cc}gb\N{U+00e9}",
      "\N{U+0190}\N{U+0300}bibi",
      "\N{U+00d2}k\N{U+00fa}du",
      "Ag\N{U+025b}m\N{U+0254}",
      "\N{U+00d2}g\N{U+00fa}n",
      "Owewe",
      "\N{U+0186}\N{U+0300}w\N{U+00e0}r\N{U+00e0}",
      "B\N{U+00e9}l\N{U+00fa}",
      "\N{U+0186}\N{U+0300}p\N{U+025b}\N{U+0300}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "Osh\N{U+00f9} Sh\N{U+025b}\N{U+0301}r\N{U+025b}\N{U+0301}",
      "Osh\N{U+00f9} \N{U+00c8}r\N{U+00e8}l\N{U+00e8}",
      "Osh\N{U+00f9} \N{U+0190}r\N{U+025b}\N{U+0300}n\N{U+00e0}",
      "Osh\N{U+00f9} \N{U+00cc}gb\N{U+00e9}",
      "Osh\N{U+00f9} \N{U+0190}\N{U+0300}bibi",
      "Osh\N{U+00f9} \N{U+00d2}k\N{U+00fa}du",
      "Osh\N{U+00f9} Ag\N{U+025b}m\N{U+0254}",
      "Osh\N{U+00f9} \N{U+00d2}g\N{U+00fa}n",
      "Osh\N{U+00f9} Owewe",
      "Osh\N{U+00f9} \N{U+0186}\N{U+0300}w\N{U+00e0}r\N{U+00e0}",
      "Osh\N{U+00f9} B\N{U+00e9}l\N{U+00fa}",
      "Osh\N{U+00f9} \N{U+0186}\N{U+0300}p\N{U+025b}\N{U+0300}"
    ],
    month_stand_alone_abbreviated => [
      "Sh\N{U+025b}\N{U+0301}r\N{U+025b}\N{U+0301}",
      "\N{U+00c8}r\N{U+00e8}l\N{U+00e8}",
      "\N{U+0190}r\N{U+025b}\N{U+0300}n\N{U+00e0}",
      "\N{U+00cc}gb\N{U+00e9}",
      "\N{U+0190}\N{U+0300}bibi",
      "\N{U+00d2}k\N{U+00fa}du",
      "Ag\N{U+025b}m\N{U+0254}",
      "\N{U+00d2}g\N{U+00fa}n",
      "Owewe",
      "\N{U+0186}\N{U+0300}w\N{U+00e0}r\N{U+00e0}",
      "B\N{U+00e9}l\N{U+00fa}",
      "\N{U+0186}\N{U+0300}p\N{U+025b}\N{U+0300}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "Osh\N{U+00f9} Sh\N{U+025b}\N{U+0301}r\N{U+025b}\N{U+0301}",
      "Osh\N{U+00f9} \N{U+00c8}r\N{U+00e8}l\N{U+00e8}",
      "Osh\N{U+00f9} \N{U+0190}r\N{U+025b}\N{U+0300}n\N{U+00e0}",
      "Osh\N{U+00f9} \N{U+00cc}gb\N{U+00e9}",
      "Osh\N{U+00f9} \N{U+0190}\N{U+0300}bibi",
      "Osh\N{U+00f9} \N{U+00d2}k\N{U+00fa}du",
      "Osh\N{U+00f9} Ag\N{U+025b}m\N{U+0254}",
      "Osh\N{U+00f9} \N{U+00d2}g\N{U+00fa}n",
      "Osh\N{U+00f9} Owewe",
      "Osh\N{U+00f9} \N{U+0186}\N{U+0300}w\N{U+00e0}r\N{U+00e0}",
      "Osh\N{U+00f9} B\N{U+00e9}l\N{U+00fa}",
      "Osh\N{U+00f9} \N{U+0186}\N{U+0300}p\N{U+025b}\N{U+0300}"
    ],
    name => "Yoruba Benin",
    native_language => "\N{U+00c8}d\N{U+00e8} Yor\N{U+00f9}b\N{U+00e1}",
    native_name => "\N{U+00c8}d\N{U+00e8} Yor\N{U+00f9}b\N{U+00e1} Or\N{U+00ed}l\N{U+025b}\N{U+0301}\N{U+00e8}de B\N{U+025b}\N{U+0300}n\N{U+025b}\N{U+0300}",
    native_script => undef,
    native_territory => "Or\N{U+00ed}l\N{U+025b}\N{U+0301}\N{U+00e8}de B\N{U+025b}\N{U+0300}n\N{U+025b}\N{U+0300}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "K\N{U+0254}\N{U+0301}t\N{U+00e0} K\N{U+00ed}nn\N{U+00ed}",
      "K\N{U+0254}\N{U+0301}t\N{U+00e0} Kej\N{U+00ec}",
      "K\N{U+0254}\N{U+0301}\N{U+00e0} Keta",
      "K\N{U+0254}\N{U+0301}t\N{U+00e0} K\N{U+025b}rin"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "K\N{U+0254}\N{U+0301}t\N{U+00e0} K\N{U+00ed}nn\N{U+00ed}",
      "K\N{U+0254}\N{U+0301}t\N{U+00e0} Kej\N{U+00ec}",
      "K\N{U+0254}\N{U+0301}\N{U+00e0} Keta",
      "K\N{U+0254}\N{U+0301}t\N{U+00e0} K\N{U+025b}rin"
    ],
    script => undef,
    territory => "Benin",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ yo-NG ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMEd => "E, MMMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "yo-NG",
    date_format_full => "EEEE, d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM y",
    date_format_short => "dd/MM/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Aj\N{U+00e9}",
      "\N{U+00cc}s\N{U+1eb9}\N{U+0301}gun",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301}r\N{U+00fa}",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301}b\N{U+1ecd}",
      "\N{U+1eb8}t\N{U+00ec}",
      "\N{U+00c0}b\N{U+00e1}m\N{U+1eb9}\N{U+0301}ta",
      "\N{U+00c0}\N{U+00ec}k\N{U+00fa}"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301} Aj\N{U+00e9}",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301} \N{U+00cc}s\N{U+1eb9}\N{U+0301}gun",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301}r\N{U+00fa}",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301}b\N{U+1ecd}",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301} \N{U+1eb8}t\N{U+00ec}",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301} \N{U+00c0}b\N{U+00e1}m\N{U+1eb9}\N{U+0301}ta",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301} \N{U+00c0}\N{U+00ec}k\N{U+00fa}"
    ],
    day_stand_alone_abbreviated => [
      "Aj\N{U+00e9}",
      "\N{U+00cc}s\N{U+1eb9}\N{U+0301}gun",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301}r\N{U+00fa}",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301}b\N{U+1ecd}",
      "\N{U+1eb8}t\N{U+00ec}",
      "\N{U+00c0}b\N{U+00e1}m\N{U+1eb9}\N{U+0301}ta",
      "\N{U+00c0}\N{U+00ec}k\N{U+00fa}"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301} Aj\N{U+00e9}",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301} \N{U+00cc}s\N{U+1eb9}\N{U+0301}gun",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301}r\N{U+00fa}",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301}b\N{U+1ecd}",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301} \N{U+1eb8}t\N{U+00ec}",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301} \N{U+00c0}b\N{U+00e1}m\N{U+1eb9}\N{U+0301}ta",
      "\N{U+1ecc}j\N{U+1ecd}\N{U+0301} \N{U+00c0}\N{U+00ec}k\N{U+00fa}"
    ],
    era_abbreviated => [
      "SK",
      "LK"
    ],
    era_narrow => [
      "SK",
      "LK"
    ],
    era_wide => [
      "Saju Kristi",
      "Lehin Kristi"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%y",
    glibc_datetime_format => "\N{U+1ecd}j\N{U+1ecd}\N{U+0301} %A, %d o\N{U+1e63}\N{U+00f9} %B \N{U+1ecd}d\N{U+00fa}n %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%r",
    language => "Yoruba",
    month_format_abbreviated => [
      "\N{U+1e62}\N{U+1eb9}\N{U+0301}r\N{U+1eb9}\N{U+0301}",
      "\N{U+00c8}r\N{U+00e8}l\N{U+00e8}",
      "\N{U+1eb8}r\N{U+1eb9}\N{U+0300}n\N{U+00e0}",
      "\N{U+00cc}gb\N{U+00e9}",
      "\N{U+1eb8}\N{U+0300}bibi",
      "\N{U+00d2}k\N{U+00fa}du",
      "Ag\N{U+1eb9}m\N{U+1ecd}",
      "\N{U+00d2}g\N{U+00fa}n",
      "Owewe",
      "\N{U+1ecc}\N{U+0300}w\N{U+00e0}r\N{U+00e0}",
      "B\N{U+00e9}l\N{U+00fa}",
      "\N{U+1ecc}\N{U+0300}p\N{U+1eb9}\N{U+0300}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "O\N{U+1e63}\N{U+00f9} \N{U+1e62}\N{U+1eb9}\N{U+0301}r\N{U+1eb9}\N{U+0301}",
      "O\N{U+1e63}\N{U+00f9} \N{U+00c8}r\N{U+00e8}l\N{U+00e8}",
      "O\N{U+1e63}\N{U+00f9} \N{U+1eb8}r\N{U+1eb9}\N{U+0300}n\N{U+00e0}",
      "O\N{U+1e63}\N{U+00f9} \N{U+00cc}gb\N{U+00e9}",
      "O\N{U+1e63}\N{U+00f9} \N{U+1eb8}\N{U+0300}bibi",
      "O\N{U+1e63}\N{U+00f9} \N{U+00d2}k\N{U+00fa}du",
      "O\N{U+1e63}\N{U+00f9} Ag\N{U+1eb9}m\N{U+1ecd}",
      "O\N{U+1e63}\N{U+00f9} \N{U+00d2}g\N{U+00fa}n",
      "O\N{U+1e63}\N{U+00f9} Owewe",
      "O\N{U+1e63}\N{U+00f9} \N{U+1ecc}\N{U+0300}w\N{U+00e0}r\N{U+00e0}",
      "O\N{U+1e63}\N{U+00f9} B\N{U+00e9}l\N{U+00fa}",
      "O\N{U+1e63}\N{U+00f9} \N{U+1ecc}\N{U+0300}p\N{U+1eb9}\N{U+0300}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+1e62}\N{U+1eb9}\N{U+0301}r\N{U+1eb9}\N{U+0301}",
      "\N{U+00c8}r\N{U+00e8}l\N{U+00e8}",
      "\N{U+1eb8}r\N{U+1eb9}\N{U+0300}n\N{U+00e0}",
      "\N{U+00cc}gb\N{U+00e9}",
      "\N{U+1eb8}\N{U+0300}bibi",
      "\N{U+00d2}k\N{U+00fa}du",
      "Ag\N{U+1eb9}m\N{U+1ecd}",
      "\N{U+00d2}g\N{U+00fa}n",
      "Owewe",
      "\N{U+1ecc}\N{U+0300}w\N{U+00e0}r\N{U+00e0}",
      "B\N{U+00e9}l\N{U+00fa}",
      "\N{U+1ecc}\N{U+0300}p\N{U+1eb9}\N{U+0300}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "O\N{U+1e63}\N{U+00f9} \N{U+1e62}\N{U+1eb9}\N{U+0301}r\N{U+1eb9}\N{U+0301}",
      "O\N{U+1e63}\N{U+00f9} \N{U+00c8}r\N{U+00e8}l\N{U+00e8}",
      "O\N{U+1e63}\N{U+00f9} \N{U+1eb8}r\N{U+1eb9}\N{U+0300}n\N{U+00e0}",
      "O\N{U+1e63}\N{U+00f9} \N{U+00cc}gb\N{U+00e9}",
      "O\N{U+1e63}\N{U+00f9} \N{U+1eb8}\N{U+0300}bibi",
      "O\N{U+1e63}\N{U+00f9} \N{U+00d2}k\N{U+00fa}du",
      "O\N{U+1e63}\N{U+00f9} Ag\N{U+1eb9}m\N{U+1ecd}",
      "O\N{U+1e63}\N{U+00f9} \N{U+00d2}g\N{U+00fa}n",
      "O\N{U+1e63}\N{U+00f9} Owewe",
      "O\N{U+1e63}\N{U+00f9} \N{U+1ecc}\N{U+0300}w\N{U+00e0}r\N{U+00e0}",
      "O\N{U+1e63}\N{U+00f9} B\N{U+00e9}l\N{U+00fa}",
      "O\N{U+1e63}\N{U+00f9} \N{U+1ecc}\N{U+0300}p\N{U+1eb9}\N{U+0300}"
    ],
    name => "Yoruba Nigeria",
    native_language => "\N{U+00c8}d\N{U+00e8} Yor\N{U+00f9}b\N{U+00e1}",
    native_name => "\N{U+00c8}d\N{U+00e8} Yor\N{U+00f9}b\N{U+00e1} Or\N{U+00ed}l\N{U+1eb9}\N{U+0301}\N{U+00e8}de N\N{U+00e0}\N{U+00ec}j\N{U+00ed}r\N{U+00ed}\N{U+00e0}",
    native_script => undef,
    native_territory => "Or\N{U+00ed}l\N{U+1eb9}\N{U+0301}\N{U+00e8}de N\N{U+00e0}\N{U+00ec}j\N{U+00ed}r\N{U+00ed}\N{U+00e0}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "K\N{U+1ecd}\N{U+0301}t\N{U+00e0} K\N{U+00ed}nn\N{U+00ed}",
      "K\N{U+1ecd}\N{U+0301}t\N{U+00e0} Kej\N{U+00ec}",
      "K\N{U+1ecd}\N{U+0301}\N{U+00e0} Keta",
      "K\N{U+1ecd}\N{U+0301}t\N{U+00e0} K\N{U+1eb9}rin"
    ],
    quarter_stand_alone_abbreviated => [
      "K1",
      "K2",
      "K3",
      "K4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "K\N{U+1ecd}\N{U+0301}t\N{U+00e0} K\N{U+00ed}nn\N{U+00ed}",
      "K\N{U+1ecd}\N{U+0301}t\N{U+00e0} Kej\N{U+00ec}",
      "K\N{U+1ecd}\N{U+0301}\N{U+00e0} Keta",
      "K\N{U+1ecd}\N{U+0301}t\N{U+00e0} K\N{U+1eb9}rin"
    ],
    script => undef,
    territory => "Nigeria",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ zgh ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "M",
      MEd => "MM-dd, E",
      MMM => "MMM",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "zgh",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+2d30}\N{U+2d62}\N{U+2d4f}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d61}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d4e}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d39}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d30}"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "\N{U+2d30}\N{U+2d62}\N{U+2d4f}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d4f}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d61}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d4e}\N{U+2d61}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d39}\N{U+2d62}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d30}\N{U+2d4e}\N{U+2d30}\N{U+2d59}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+2d30}\N{U+2d62}\N{U+2d4f}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d61}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d4e}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d39}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d30}"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "\N{U+2d30}\N{U+2d62}\N{U+2d4f}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d4f}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d61}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d4e}\N{U+2d61}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d39}\N{U+2d62}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d30}\N{U+2d4e}\N{U+2d30}\N{U+2d59}"
    ],
    era_abbreviated => [
      "\N{U+2d37}\N{U+2d30}\N{U+2d44}",
      "\N{U+2d37}\N{U+2d3c}\N{U+2d44}"
    ],
    era_narrow => [
      "\N{U+2d37}\N{U+2d30}\N{U+2d44}",
      "\N{U+2d37}\N{U+2d3c}\N{U+2d44}"
    ],
    era_wide => [
      "\N{U+2d37}\N{U+2d30}\N{U+2d5c} \N{U+2d4f} \N{U+2d44}\N{U+2d49}\N{U+2d59}\N{U+2d30}",
      "\N{U+2d37}\N{U+2d3c}\N{U+2d3c}\N{U+2d49}\N{U+2d54} \N{U+2d4f} \N{U+2d44}\N{U+2d49}\N{U+2d59}\N{U+2d30}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Standard Moroccan Tamazight",
    month_format_abbreviated => [
      "\N{U+2d49}\N{U+2d4f}\N{U+2d4f}",
      "\N{U+2d31}\N{U+2d55}\N{U+2d30}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d55}",
      "\N{U+2d49}\N{U+2d31}\N{U+2d54}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d62}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4f}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4d}",
      "\N{U+2d56}\N{U+2d53}\N{U+2d5b}",
      "\N{U+2d5b}\N{U+2d53}\N{U+2d5c}",
      "\N{U+2d3d}\N{U+2d5c}\N{U+2d53}",
      "\N{U+2d4f}\N{U+2d53}\N{U+2d61}",
      "\N{U+2d37}\N{U+2d53}\N{U+2d4a}"
    ],
    month_format_narrow => [
      "\N{U+2d49}",
      "\N{U+2d31}",
      "\N{U+2d4e}",
      "\N{U+2d49}",
      "\N{U+2d4e}",
      "\N{U+2d62}",
      "\N{U+2d62}",
      "\N{U+2d56}",
      "\N{U+2d5b}",
      "\N{U+2d3d}",
      "\N{U+2d4f}",
      "\N{U+2d37}"
    ],
    month_format_wide => [
      "\N{U+2d49}\N{U+2d4f}\N{U+2d4f}\N{U+2d30}\N{U+2d62}\N{U+2d54}",
      "\N{U+2d31}\N{U+2d55}\N{U+2d30}\N{U+2d62}\N{U+2d55}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d55}\N{U+2d5a}",
      "\N{U+2d49}\N{U+2d31}\N{U+2d54}\N{U+2d49}\N{U+2d54}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d62}\N{U+2d62}\N{U+2d53}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4f}\N{U+2d62}\N{U+2d53}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4d}\N{U+2d62}\N{U+2d53}\N{U+2d63}",
      "\N{U+2d56}\N{U+2d53}\N{U+2d5b}\N{U+2d5c}",
      "\N{U+2d5b}\N{U+2d53}\N{U+2d5c}\N{U+2d30}\N{U+2d4f}\N{U+2d31}\N{U+2d49}\N{U+2d54}",
      "\N{U+2d3d}\N{U+2d5c}\N{U+2d53}\N{U+2d31}\N{U+2d54}",
      "\N{U+2d4f}\N{U+2d53}\N{U+2d61}\N{U+2d30}\N{U+2d4f}\N{U+2d31}\N{U+2d49}\N{U+2d54}",
      "\N{U+2d37}\N{U+2d53}\N{U+2d4a}\N{U+2d30}\N{U+2d4f}\N{U+2d31}\N{U+2d49}\N{U+2d54}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+2d49}\N{U+2d4f}\N{U+2d4f}",
      "\N{U+2d31}\N{U+2d55}\N{U+2d30}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d55}",
      "\N{U+2d49}\N{U+2d31}\N{U+2d54}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d62}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4f}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4d}",
      "\N{U+2d56}\N{U+2d53}\N{U+2d5b}",
      "\N{U+2d5b}\N{U+2d53}\N{U+2d5c}",
      "\N{U+2d3d}\N{U+2d5c}\N{U+2d53}",
      "\N{U+2d4f}\N{U+2d53}\N{U+2d61}",
      "\N{U+2d37}\N{U+2d53}\N{U+2d4a}"
    ],
    month_stand_alone_narrow => [
      "\N{U+2d49}",
      "\N{U+2d31}",
      "\N{U+2d4e}",
      "\N{U+2d49}",
      "\N{U+2d4e}",
      "\N{U+2d62}",
      "\N{U+2d62}",
      "\N{U+2d56}",
      "\N{U+2d5b}",
      "\N{U+2d3d}",
      "\N{U+2d4f}",
      "\N{U+2d37}"
    ],
    month_stand_alone_wide => [
      "\N{U+2d49}\N{U+2d4f}\N{U+2d4f}\N{U+2d30}\N{U+2d62}\N{U+2d54}",
      "\N{U+2d31}\N{U+2d55}\N{U+2d30}\N{U+2d62}\N{U+2d55}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d55}\N{U+2d5a}",
      "\N{U+2d49}\N{U+2d31}\N{U+2d54}\N{U+2d49}\N{U+2d54}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d62}\N{U+2d62}\N{U+2d53}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4f}\N{U+2d62}\N{U+2d53}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4d}\N{U+2d62}\N{U+2d53}\N{U+2d63}",
      "\N{U+2d56}\N{U+2d53}\N{U+2d5b}\N{U+2d5c}",
      "\N{U+2d5b}\N{U+2d53}\N{U+2d5c}\N{U+2d30}\N{U+2d4f}\N{U+2d31}\N{U+2d49}\N{U+2d54}",
      "\N{U+2d3d}\N{U+2d5c}\N{U+2d53}\N{U+2d31}\N{U+2d54}",
      "\N{U+2d4f}\N{U+2d53}\N{U+2d61}\N{U+2d30}\N{U+2d4f}\N{U+2d31}\N{U+2d49}\N{U+2d54}",
      "\N{U+2d37}\N{U+2d53}\N{U+2d4a}\N{U+2d30}\N{U+2d4f}\N{U+2d31}\N{U+2d49}\N{U+2d54}"
    ],
    name => "Standard Moroccan Tamazight",
    native_language => "\N{U+2d5c}\N{U+2d30}\N{U+2d4e}\N{U+2d30}\N{U+2d63}\N{U+2d49}\N{U+2d56}\N{U+2d5c}",
    native_name => "\N{U+2d5c}\N{U+2d30}\N{U+2d4e}\N{U+2d30}\N{U+2d63}\N{U+2d49}\N{U+2d56}\N{U+2d5c}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+2d30}\N{U+2d3d} 1",
      "\N{U+2d30}\N{U+2d3d} 2",
      "\N{U+2d30}\N{U+2d3d} 3",
      "\N{U+2d30}\N{U+2d3d} 4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 1",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 2",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 3",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 4"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+2d30}\N{U+2d3d} 1",
      "\N{U+2d30}\N{U+2d3d} 2",
      "\N{U+2d30}\N{U+2d3d} 3",
      "\N{U+2d30}\N{U+2d3d} 4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 1",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 2",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 3",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ zgh-MA ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d, E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "M",
      MEd => "MM-dd, E",
      MMM => "MMM",
      MMMEd => "E d MMM",
      MMMMd => "MMMM d",
      MMMd => "d MMM",
      Md => "d/M",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "m:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E d/M/y",
      yMMM => "MMM y",
      yMMMEd => "E d MMM y",
      yMMMM => "y MMMM",
      yMMMd => "y MMM d",
      yMd => "y-MM-dd",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "zgh-MA",
    date_format_full => "EEEE d MMMM y",
    date_format_long => "d MMMM y",
    date_format_medium => "d MMM, y",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+2d30}\N{U+2d62}\N{U+2d4f}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d61}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d4e}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d39}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d30}"
    ],
    day_format_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_format_wide => [
      "\N{U+2d30}\N{U+2d62}\N{U+2d4f}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d4f}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d61}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d4e}\N{U+2d61}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d39}\N{U+2d62}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d30}\N{U+2d4e}\N{U+2d30}\N{U+2d59}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+2d30}\N{U+2d62}\N{U+2d4f}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d61}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d4e}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d39}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d30}"
    ],
    day_stand_alone_narrow => [
      "M",
      "T",
      "W",
      "T",
      "F",
      "S",
      "S"
    ],
    day_stand_alone_wide => [
      "\N{U+2d30}\N{U+2d62}\N{U+2d4f}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d4f}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d61}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d4e}\N{U+2d61}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d49}\N{U+2d39}\N{U+2d62}\N{U+2d30}\N{U+2d59}",
      "\N{U+2d30}\N{U+2d59}\N{U+2d30}\N{U+2d4e}\N{U+2d30}\N{U+2d59}"
    ],
    era_abbreviated => [
      "\N{U+2d37}\N{U+2d30}\N{U+2d44}",
      "\N{U+2d37}\N{U+2d3c}\N{U+2d44}"
    ],
    era_narrow => [
      "\N{U+2d37}\N{U+2d30}\N{U+2d44}",
      "\N{U+2d37}\N{U+2d3c}\N{U+2d44}"
    ],
    era_wide => [
      "\N{U+2d37}\N{U+2d30}\N{U+2d5c} \N{U+2d4f} \N{U+2d44}\N{U+2d49}\N{U+2d59}\N{U+2d30}",
      "\N{U+2d37}\N{U+2d3c}\N{U+2d3c}\N{U+2d49}\N{U+2d54} \N{U+2d4f} \N{U+2d44}\N{U+2d49}\N{U+2d59}\N{U+2d30}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Standard Moroccan Tamazight",
    month_format_abbreviated => [
      "\N{U+2d49}\N{U+2d4f}\N{U+2d4f}",
      "\N{U+2d31}\N{U+2d55}\N{U+2d30}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d55}",
      "\N{U+2d49}\N{U+2d31}\N{U+2d54}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d62}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4f}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4d}",
      "\N{U+2d56}\N{U+2d53}\N{U+2d5b}",
      "\N{U+2d5b}\N{U+2d53}\N{U+2d5c}",
      "\N{U+2d3d}\N{U+2d5c}\N{U+2d53}",
      "\N{U+2d4f}\N{U+2d53}\N{U+2d61}",
      "\N{U+2d37}\N{U+2d53}\N{U+2d4a}"
    ],
    month_format_narrow => [
      "\N{U+2d49}",
      "\N{U+2d31}",
      "\N{U+2d4e}",
      "\N{U+2d49}",
      "\N{U+2d4e}",
      "\N{U+2d62}",
      "\N{U+2d62}",
      "\N{U+2d56}",
      "\N{U+2d5b}",
      "\N{U+2d3d}",
      "\N{U+2d4f}",
      "\N{U+2d37}"
    ],
    month_format_wide => [
      "\N{U+2d49}\N{U+2d4f}\N{U+2d4f}\N{U+2d30}\N{U+2d62}\N{U+2d54}",
      "\N{U+2d31}\N{U+2d55}\N{U+2d30}\N{U+2d62}\N{U+2d55}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d55}\N{U+2d5a}",
      "\N{U+2d49}\N{U+2d31}\N{U+2d54}\N{U+2d49}\N{U+2d54}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d62}\N{U+2d62}\N{U+2d53}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4f}\N{U+2d62}\N{U+2d53}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4d}\N{U+2d62}\N{U+2d53}\N{U+2d63}",
      "\N{U+2d56}\N{U+2d53}\N{U+2d5b}\N{U+2d5c}",
      "\N{U+2d5b}\N{U+2d53}\N{U+2d5c}\N{U+2d30}\N{U+2d4f}\N{U+2d31}\N{U+2d49}\N{U+2d54}",
      "\N{U+2d3d}\N{U+2d5c}\N{U+2d53}\N{U+2d31}\N{U+2d54}",
      "\N{U+2d4f}\N{U+2d53}\N{U+2d61}\N{U+2d30}\N{U+2d4f}\N{U+2d31}\N{U+2d49}\N{U+2d54}",
      "\N{U+2d37}\N{U+2d53}\N{U+2d4a}\N{U+2d30}\N{U+2d4f}\N{U+2d31}\N{U+2d49}\N{U+2d54}"
    ],
    month_stand_alone_abbreviated => [
      "\N{U+2d49}\N{U+2d4f}\N{U+2d4f}",
      "\N{U+2d31}\N{U+2d55}\N{U+2d30}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d55}",
      "\N{U+2d49}\N{U+2d31}\N{U+2d54}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d62}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4f}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4d}",
      "\N{U+2d56}\N{U+2d53}\N{U+2d5b}",
      "\N{U+2d5b}\N{U+2d53}\N{U+2d5c}",
      "\N{U+2d3d}\N{U+2d5c}\N{U+2d53}",
      "\N{U+2d4f}\N{U+2d53}\N{U+2d61}",
      "\N{U+2d37}\N{U+2d53}\N{U+2d4a}"
    ],
    month_stand_alone_narrow => [
      "\N{U+2d49}",
      "\N{U+2d31}",
      "\N{U+2d4e}",
      "\N{U+2d49}",
      "\N{U+2d4e}",
      "\N{U+2d62}",
      "\N{U+2d62}",
      "\N{U+2d56}",
      "\N{U+2d5b}",
      "\N{U+2d3d}",
      "\N{U+2d4f}",
      "\N{U+2d37}"
    ],
    month_stand_alone_wide => [
      "\N{U+2d49}\N{U+2d4f}\N{U+2d4f}\N{U+2d30}\N{U+2d62}\N{U+2d54}",
      "\N{U+2d31}\N{U+2d55}\N{U+2d30}\N{U+2d62}\N{U+2d55}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d55}\N{U+2d5a}",
      "\N{U+2d49}\N{U+2d31}\N{U+2d54}\N{U+2d49}\N{U+2d54}",
      "\N{U+2d4e}\N{U+2d30}\N{U+2d62}\N{U+2d62}\N{U+2d53}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4f}\N{U+2d62}\N{U+2d53}",
      "\N{U+2d62}\N{U+2d53}\N{U+2d4d}\N{U+2d62}\N{U+2d53}\N{U+2d63}",
      "\N{U+2d56}\N{U+2d53}\N{U+2d5b}\N{U+2d5c}",
      "\N{U+2d5b}\N{U+2d53}\N{U+2d5c}\N{U+2d30}\N{U+2d4f}\N{U+2d31}\N{U+2d49}\N{U+2d54}",
      "\N{U+2d3d}\N{U+2d5c}\N{U+2d53}\N{U+2d31}\N{U+2d54}",
      "\N{U+2d4f}\N{U+2d53}\N{U+2d61}\N{U+2d30}\N{U+2d4f}\N{U+2d31}\N{U+2d49}\N{U+2d54}",
      "\N{U+2d37}\N{U+2d53}\N{U+2d4a}\N{U+2d30}\N{U+2d4f}\N{U+2d31}\N{U+2d49}\N{U+2d54}"
    ],
    name => "Standard Moroccan Tamazight Morocco",
    native_language => "\N{U+2d5c}\N{U+2d30}\N{U+2d4e}\N{U+2d30}\N{U+2d63}\N{U+2d49}\N{U+2d56}\N{U+2d5c}",
    native_name => "\N{U+2d5c}\N{U+2d30}\N{U+2d4e}\N{U+2d30}\N{U+2d63}\N{U+2d49}\N{U+2d56}\N{U+2d5c} \N{U+2d4d}\N{U+2d4e}\N{U+2d56}\N{U+2d54}\N{U+2d49}\N{U+2d31}",
    native_script => undef,
    native_territory => "\N{U+2d4d}\N{U+2d4e}\N{U+2d56}\N{U+2d54}\N{U+2d49}\N{U+2d31}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "\N{U+2d30}\N{U+2d3d} 1",
      "\N{U+2d30}\N{U+2d3d} 2",
      "\N{U+2d30}\N{U+2d3d} 3",
      "\N{U+2d30}\N{U+2d3d} 4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 1",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 2",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 3",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 4"
    ],
    quarter_stand_alone_abbreviated => [
      "\N{U+2d30}\N{U+2d3d} 1",
      "\N{U+2d30}\N{U+2d3d} 2",
      "\N{U+2d30}\N{U+2d3d} 3",
      "\N{U+2d30}\N{U+2d3d} 4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 1",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 2",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 3",
      "\N{U+2d30}\N{U+2d3d}\N{U+2d55}\N{U+2d30}\N{U+2d39}\N{U+2d62}\N{U+2d53}\N{U+2d54} 4"
    ],
    script => undef,
    territory => "Morocco",
    time_format_full => "HH:mm:ss zzzz",
    time_format_long => "HH:mm:ss z",
    time_format_medium => "HH:mm:ss",
    time_format_short => "HH:mm",
    variant => undef,
    version => 28
  }
  __[ zh ]__
  {
    am_pm_abbreviated => [
      "\N{U+4e0a}\N{U+5348}",
      "\N{U+4e0b}\N{U+5348}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "EHH:mm",
      EHms => "EHH:mm:ss",
      Ed => "d\N{U+65e5}E",
      Ehm => "E ah:mm",
      Ehms => "E ah:mm:ss",
      Gy => "Gy\N{U+5e74}",
      GyMMM => "Gy\N{U+5e74}M\N{U+6708}",
      GyMMMEd => "Gy\N{U+5e74}M\N{U+6708}d\N{U+65e5}E",
      GyMMMd => "Gy\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
      H => "H\N{U+65f6}",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "v HH:mm:ss",
      Hmv => "v HH:mm",
      M => "M\N{U+6708}",
      MEd => "M/dE",
      MMM => "LLL",
      MMMEd => "M\N{U+6708}d\N{U+65e5}E",
      MMMMd => "M\N{U+6708}d\N{U+65e5}",
      MMMd => "M\N{U+6708}d\N{U+65e5}",
      MMdd => "MM/dd",
      Md => "M/d",
      d => "d\N{U+65e5}",
      h => "ah\N{U+65f6}",
      hm => "ah:mm",
      hms => "ah:mm:ss",
      hmsv => "v ah:mm:ss",
      hmv => "v ah:mm",
      ms => "mm:ss",
      y => "y\N{U+5e74}",
      yM => "y\N{U+5e74}M\N{U+6708}",
      yMEd => "y/M/dE",
      yMM => "y\N{U+5e74}M\N{U+6708}",
      yMMM => "y\N{U+5e74}M\N{U+6708}",
      yMMMEd => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}E",
      yMMMM => "y\N{U+5e74}M\N{U+6708}",
      yMMMd => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
      yMd => "y/M/d",
      yQQQ => "y\N{U+5e74}\N{U+7b2c}Q\N{U+5b63}\N{U+5ea6}",
      yQQQQ => "y\N{U+5e74}\N{U+7b2c}Q\N{U+5b63}\N{U+5ea6}"
    },
    code => "zh",
    date_format_full => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}EEEE",
    date_format_long => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
    date_format_medium => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
    date_format_short => "y/M/d",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+5468}\N{U+4e00}",
      "\N{U+5468}\N{U+4e8c}",
      "\N{U+5468}\N{U+4e09}",
      "\N{U+5468}\N{U+56db}",
      "\N{U+5468}\N{U+4e94}",
      "\N{U+5468}\N{U+516d}",
      "\N{U+5468}\N{U+65e5}"
    ],
    day_format_narrow => [
      "\N{U+4e00}",
      "\N{U+4e8c}",
      "\N{U+4e09}",
      "\N{U+56db}",
      "\N{U+4e94}",
      "\N{U+516d}",
      "\N{U+65e5}"
    ],
    day_format_wide => [
      "\N{U+661f}\N{U+671f}\N{U+4e00}",
      "\N{U+661f}\N{U+671f}\N{U+4e8c}",
      "\N{U+661f}\N{U+671f}\N{U+4e09}",
      "\N{U+661f}\N{U+671f}\N{U+56db}",
      "\N{U+661f}\N{U+671f}\N{U+4e94}",
      "\N{U+661f}\N{U+671f}\N{U+516d}",
      "\N{U+661f}\N{U+671f}\N{U+65e5}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+5468}\N{U+4e00}",
      "\N{U+5468}\N{U+4e8c}",
      "\N{U+5468}\N{U+4e09}",
      "\N{U+5468}\N{U+56db}",
      "\N{U+5468}\N{U+4e94}",
      "\N{U+5468}\N{U+516d}",
      "\N{U+5468}\N{U+65e5}"
    ],
    day_stand_alone_narrow => [
      "\N{U+4e00}",
      "\N{U+4e8c}",
      "\N{U+4e09}",
      "\N{U+56db}",
      "\N{U+4e94}",
      "\N{U+516d}",
      "\N{U+65e5}"
    ],
    day_stand_alone_wide => [
      "\N{U+661f}\N{U+671f}\N{U+4e00}",
      "\N{U+661f}\N{U+671f}\N{U+4e8c}",
      "\N{U+661f}\N{U+671f}\N{U+4e09}",
      "\N{U+661f}\N{U+671f}\N{U+56db}",
      "\N{U+661f}\N{U+671f}\N{U+4e94}",
      "\N{U+661f}\N{U+671f}\N{U+516d}",
      "\N{U+661f}\N{U+671f}\N{U+65e5}"
    ],
    era_abbreviated => [
      "\N{U+516c}\N{U+5143}\N{U+524d}",
      "\N{U+516c}\N{U+5143}"
    ],
    era_narrow => [
      "\N{U+516c}\N{U+5143}\N{U+524d}",
      "\N{U+516c}\N{U+5143}"
    ],
    era_wide => [
      "\N{U+516c}\N{U+5143}\N{U+524d}",
      "\N{U+516c}\N{U+5143}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Chinese",
    month_format_abbreviated => [
      "1\N{U+6708}",
      "2\N{U+6708}",
      "3\N{U+6708}",
      "4\N{U+6708}",
      "5\N{U+6708}",
      "6\N{U+6708}",
      "7\N{U+6708}",
      "8\N{U+6708}",
      "9\N{U+6708}",
      "10\N{U+6708}",
      "11\N{U+6708}",
      "12\N{U+6708}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+4e00}\N{U+6708}",
      "\N{U+4e8c}\N{U+6708}",
      "\N{U+4e09}\N{U+6708}",
      "\N{U+56db}\N{U+6708}",
      "\N{U+4e94}\N{U+6708}",
      "\N{U+516d}\N{U+6708}",
      "\N{U+4e03}\N{U+6708}",
      "\N{U+516b}\N{U+6708}",
      "\N{U+4e5d}\N{U+6708}",
      "\N{U+5341}\N{U+6708}",
      "\N{U+5341}\N{U+4e00}\N{U+6708}",
      "\N{U+5341}\N{U+4e8c}\N{U+6708}"
    ],
    month_stand_alone_abbreviated => [
      "1\N{U+6708}",
      "2\N{U+6708}",
      "3\N{U+6708}",
      "4\N{U+6708}",
      "5\N{U+6708}",
      "6\N{U+6708}",
      "7\N{U+6708}",
      "8\N{U+6708}",
      "9\N{U+6708}",
      "10\N{U+6708}",
      "11\N{U+6708}",
      "12\N{U+6708}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+4e00}\N{U+6708}",
      "\N{U+4e8c}\N{U+6708}",
      "\N{U+4e09}\N{U+6708}",
      "\N{U+56db}\N{U+6708}",
      "\N{U+4e94}\N{U+6708}",
      "\N{U+516d}\N{U+6708}",
      "\N{U+4e03}\N{U+6708}",
      "\N{U+516b}\N{U+6708}",
      "\N{U+4e5d}\N{U+6708}",
      "\N{U+5341}\N{U+6708}",
      "\N{U+5341}\N{U+4e00}\N{U+6708}",
      "\N{U+5341}\N{U+4e8c}\N{U+6708}"
    ],
    name => "Chinese",
    native_language => "\N{U+4e2d}\N{U+6587}",
    native_name => "\N{U+4e2d}\N{U+6587}",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "1\N{U+5b63}\N{U+5ea6}",
      "2\N{U+5b63}\N{U+5ea6}",
      "3\N{U+5b63}\N{U+5ea6}",
      "4\N{U+5b63}\N{U+5ea6}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+7b2c}\N{U+4e00}\N{U+5b63}\N{U+5ea6}",
      "\N{U+7b2c}\N{U+4e8c}\N{U+5b63}\N{U+5ea6}",
      "\N{U+7b2c}\N{U+4e09}\N{U+5b63}\N{U+5ea6}",
      "\N{U+7b2c}\N{U+56db}\N{U+5b63}\N{U+5ea6}"
    ],
    quarter_stand_alone_abbreviated => [
      "1\N{U+5b63}\N{U+5ea6}",
      "2\N{U+5b63}\N{U+5ea6}",
      "3\N{U+5b63}\N{U+5ea6}",
      "4\N{U+5b63}\N{U+5ea6}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+7b2c}\N{U+4e00}\N{U+5b63}\N{U+5ea6}",
      "\N{U+7b2c}\N{U+4e8c}\N{U+5b63}\N{U+5ea6}",
      "\N{U+7b2c}\N{U+4e09}\N{U+5b63}\N{U+5ea6}",
      "\N{U+7b2c}\N{U+56db}\N{U+5b63}\N{U+5ea6}"
    ],
    script => undef,
    territory => undef,
    time_format_full => "zzzz ah:mm:ss",
    time_format_long => "z ah:mm:ss",
    time_format_medium => "ah:mm:ss",
    time_format_short => "ah:mm",
    variant => undef,
    version => 28
  }
  __[ zh-Hans ]__
  {
    am_pm_abbreviated => [
      "\N{U+4e0a}\N{U+5348}",
      "\N{U+4e0b}\N{U+5348}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "EHH:mm",
      EHms => "EHH:mm:ss",
      Ed => "d\N{U+65e5}E",
      Ehm => "E ah:mm",
      Ehms => "E ah:mm:ss",
      Gy => "Gy\N{U+5e74}",
      GyMMM => "Gy\N{U+5e74}M\N{U+6708}",
      GyMMMEd => "Gy\N{U+5e74}M\N{U+6708}d\N{U+65e5}E",
      GyMMMd => "Gy\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
      H => "H\N{U+65f6}",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "v HH:mm:ss",
      Hmv => "v HH:mm",
      M => "M\N{U+6708}",
      MEd => "M/dE",
      MMM => "LLL",
      MMMEd => "M\N{U+6708}d\N{U+65e5}E",
      MMMMd => "M\N{U+6708}d\N{U+65e5}",
      MMMd => "M\N{U+6708}d\N{U+65e5}",
      MMdd => "MM/dd",
      Md => "M/d",
      d => "d\N{U+65e5}",
      h => "ah\N{U+65f6}",
      hm => "ah:mm",
      hms => "ah:mm:ss",
      hmsv => "v ah:mm:ss",
      hmv => "v ah:mm",
      ms => "mm:ss",
      y => "y\N{U+5e74}",
      yM => "y\N{U+5e74}M\N{U+6708}",
      yMEd => "y/M/dE",
      yMM => "y\N{U+5e74}M\N{U+6708}",
      yMMM => "y\N{U+5e74}M\N{U+6708}",
      yMMMEd => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}E",
      yMMMM => "y\N{U+5e74}M\N{U+6708}",
      yMMMd => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
      yMd => "y/M/d",
      yQQQ => "y\N{U+5e74}\N{U+7b2c}Q\N{U+5b63}\N{U+5ea6}",
      yQQQQ => "y\N{U+5e74}\N{U+7b2c}Q\N{U+5b63}\N{U+5ea6}"
    },
    code => "zh-Hans",
    date_format_full => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}EEEE",
    date_format_long => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
    date_format_medium => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
    date_format_short => "y/M/d",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+5468}\N{U+4e00}",
      "\N{U+5468}\N{U+4e8c}",
      "\N{U+5468}\N{U+4e09}",
      "\N{U+5468}\N{U+56db}",
      "\N{U+5468}\N{U+4e94}",
      "\N{U+5468}\N{U+516d}",
      "\N{U+5468}\N{U+65e5}"
    ],
    day_format_narrow => [
      "\N{U+4e00}",
      "\N{U+4e8c}",
      "\N{U+4e09}",
      "\N{U+56db}",
      "\N{U+4e94}",
      "\N{U+516d}",
      "\N{U+65e5}"
    ],
    day_format_wide => [
      "\N{U+661f}\N{U+671f}\N{U+4e00}",
      "\N{U+661f}\N{U+671f}\N{U+4e8c}",
      "\N{U+661f}\N{U+671f}\N{U+4e09}",
      "\N{U+661f}\N{U+671f}\N{U+56db}",
      "\N{U+661f}\N{U+671f}\N{U+4e94}",
      "\N{U+661f}\N{U+671f}\N{U+516d}",
      "\N{U+661f}\N{U+671f}\N{U+65e5}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+5468}\N{U+4e00}",
      "\N{U+5468}\N{U+4e8c}",
      "\N{U+5468}\N{U+4e09}",
      "\N{U+5468}\N{U+56db}",
      "\N{U+5468}\N{U+4e94}",
      "\N{U+5468}\N{U+516d}",
      "\N{U+5468}\N{U+65e5}"
    ],
    day_stand_alone_narrow => [
      "\N{U+4e00}",
      "\N{U+4e8c}",
      "\N{U+4e09}",
      "\N{U+56db}",
      "\N{U+4e94}",
      "\N{U+516d}",
      "\N{U+65e5}"
    ],
    day_stand_alone_wide => [
      "\N{U+661f}\N{U+671f}\N{U+4e00}",
      "\N{U+661f}\N{U+671f}\N{U+4e8c}",
      "\N{U+661f}\N{U+671f}\N{U+4e09}",
      "\N{U+661f}\N{U+671f}\N{U+56db}",
      "\N{U+661f}\N{U+671f}\N{U+4e94}",
      "\N{U+661f}\N{U+671f}\N{U+516d}",
      "\N{U+661f}\N{U+671f}\N{U+65e5}"
    ],
    era_abbreviated => [
      "\N{U+516c}\N{U+5143}\N{U+524d}",
      "\N{U+516c}\N{U+5143}"
    ],
    era_narrow => [
      "\N{U+516c}\N{U+5143}\N{U+524d}",
      "\N{U+516c}\N{U+5143}"
    ],
    era_wide => [
      "\N{U+516c}\N{U+5143}\N{U+524d}",
      "\N{U+516c}\N{U+5143}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Chinese",
    month_format_abbreviated => [
      "1\N{U+6708}",
      "2\N{U+6708}",
      "3\N{U+6708}",
      "4\N{U+6708}",
      "5\N{U+6708}",
      "6\N{U+6708}",
      "7\N{U+6708}",
      "8\N{U+6708}",
      "9\N{U+6708}",
      "10\N{U+6708}",
      "11\N{U+6708}",
      "12\N{U+6708}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+4e00}\N{U+6708}",
      "\N{U+4e8c}\N{U+6708}",
      "\N{U+4e09}\N{U+6708}",
      "\N{U+56db}\N{U+6708}",
      "\N{U+4e94}\N{U+6708}",
      "\N{U+516d}\N{U+6708}",
      "\N{U+4e03}\N{U+6708}",
      "\N{U+516b}\N{U+6708}",
      "\N{U+4e5d}\N{U+6708}",
      "\N{U+5341}\N{U+6708}",
      "\N{U+5341}\N{U+4e00}\N{U+6708}",
      "\N{U+5341}\N{U+4e8c}\N{U+6708}"
    ],
    month_stand_alone_abbreviated => [
      "1\N{U+6708}",
      "2\N{U+6708}",
      "3\N{U+6708}",
      "4\N{U+6708}",
      "5\N{U+6708}",
      "6\N{U+6708}",
      "7\N{U+6708}",
      "8\N{U+6708}",
      "9\N{U+6708}",
      "10\N{U+6708}",
      "11\N{U+6708}",
      "12\N{U+6708}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+4e00}\N{U+6708}",
      "\N{U+4e8c}\N{U+6708}",
      "\N{U+4e09}\N{U+6708}",
      "\N{U+56db}\N{U+6708}",
      "\N{U+4e94}\N{U+6708}",
      "\N{U+516d}\N{U+6708}",
      "\N{U+4e03}\N{U+6708}",
      "\N{U+516b}\N{U+6708}",
      "\N{U+4e5d}\N{U+6708}",
      "\N{U+5341}\N{U+6708}",
      "\N{U+5341}\N{U+4e00}\N{U+6708}",
      "\N{U+5341}\N{U+4e8c}\N{U+6708}"
    ],
    name => "Chinese Simplified",
    native_language => "\N{U+4e2d}\N{U+6587}",
    native_name => "\N{U+4e2d}\N{U+6587} \N{U+7b80}\N{U+4f53}",
    native_script => "\N{U+7b80}\N{U+4f53}",
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "1\N{U+5b63}\N{U+5ea6}",
      "2\N{U+5b63}\N{U+5ea6}",
      "3\N{U+5b63}\N{U+5ea6}",
      "4\N{U+5b63}\N{U+5ea6}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+7b2c}\N{U+4e00}\N{U+5b63}\N{U+5ea6}",
      "\N{U+7b2c}\N{U+4e8c}\N{U+5b63}\N{U+5ea6}",
      "\N{U+7b2c}\N{U+4e09}\N{U+5b63}\N{U+5ea6}",
      "\N{U+7b2c}\N{U+56db}\N{U+5b63}\N{U+5ea6}"
    ],
    quarter_stand_alone_abbreviated => [
      "1\N{U+5b63}\N{U+5ea6}",
      "2\N{U+5b63}\N{U+5ea6}",
      "3\N{U+5b63}\N{U+5ea6}",
      "4\N{U+5b63}\N{U+5ea6}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+7b2c}\N{U+4e00}\N{U+5b63}\N{U+5ea6}",
      "\N{U+7b2c}\N{U+4e8c}\N{U+5b63}\N{U+5ea6}",
      "\N{U+7b2c}\N{U+4e09}\N{U+5b63}\N{U+5ea6}",
      "\N{U+7b2c}\N{U+56db}\N{U+5b63}\N{U+5ea6}"
    ],
    script => "Simplified",
    territory => undef,
    time_format_full => "zzzz ah:mm:ss",
    time_format_long => "z ah:mm:ss",
    time_format_medium => "ah:mm:ss",
    time_format_short => "ah:mm",
    variant => undef,
    version => 28
  }
  __[ zh-Hans-HK ]__
  {
    am_pm_abbreviated => [
      "\N{U+4e0a}\N{U+5348}",
      "\N{U+4e0b}\N{U+5348}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "EHH:mm",
      EHms => "EHH:mm:ss",
      Ed => "d\N{U+65e5}E",
      Ehm => "E ah:mm",
      Ehms => "E ah:mm:ss",
      Gy => "Gy\N{U+5e74}",
      GyMMM => "Gy\N{U+5e74}M\N{U+6708}",
      GyMMMEd => "Gy\N{U+5e74}M\N{U+6708}d\N{U+65e5}E",
      GyMMMd => "Gy\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
      H => "H\N{U+65f6}",
      HHmm => "HH:mm",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "v HH:mm:ss",
      Hmv => "v HH:mm",
      M => "M\N{U+6708}",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "M\N{U+6708}d\N{U+65e5}E",
      MMMMd => "M\N{U+6708}d\N{U+65e5}",
      MMMMdd => "M\N{U+6708}d\N{U+65e5}",
      MMMd => "M\N{U+6708}d\N{U+65e5}",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d\N{U+65e5}",
      h => "ah\N{U+65f6}",
      hm => "ah:mm",
      hms => "ah:mm:ss",
      hmsv => "v ah:mm:ss",
      hmv => "v ah:mm",
      ms => "mm:ss",
      y => "y\N{U+5e74}",
      yM => "M/y",
      yMEd => "d/M/y\N{U+ff08}E\N{U+ff09}",
      yMM => "MM/y",
      yMMM => "y\N{U+5e74}M\N{U+6708}",
      yMMMEd => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}E",
      yMMMM => "y\N{U+5e74}M\N{U+6708}",
      yMMMd => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
      yMd => "d/M/y",
      yQQQ => "y\N{U+5e74}\N{U+7b2c}Q\N{U+5b63}\N{U+5ea6}",
      yQQQQ => "y\N{U+5e74}\N{U+7b2c}Q\N{U+5b63}\N{U+5ea6}"
    },
    code => "zh-Hans-HK",
    date_format_full => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}EEEE",
    date_format_long => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
    date_format_medium => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+5468}\N{U+4e00}",
      "\N{U+5468}\N{U+4e8c}",
      "\N{U+5468}\N{U+4e09}",
      "\N{U+5468}\N{U+56db}",
      "\N{U+5468}\N{U+4e94}",
      "\N{U+5468}\N{U+516d}",
      "\N{U+5468}\N{U+65e5}"
    ],
    day_format_narrow => [
      "\N{U+4e00}",
      "\N{U+4e8c}",
      "\N{U+4e09}",
      "\N{U+56db}",
      "\N{U+4e94}",
      "\N{U+516d}",
      "\N{U+65e5}"
    ],
    day_format_wide => [
      "\N{U+661f}\N{U+671f}\N{U+4e00}",
      "\N{U+661f}\N{U+671f}\N{U+4e8c}",
      "\N{U+661f}\N{U+671f}\N{U+4e09}",
      "\N{U+661f}\N{U+671f}\N{U+56db}",
      "\N{U+661f}\N{U+671f}\N{U+4e94}",
      "\N{U+661f}\N{U+671f}\N{U+516d}",
      "\N{U+661f}\N{U+671f}\N{U+65e5}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+5468}\N{U+4e00}",
      "\N{U+5468}\N{U+4e8c}",
      "\N{U+5468}\N{U+4e09}",
      "\N{U+5468}\N{U+56db}",
      "\N{U+5468}\N{U+4e94}",
      "\N{U+5468}\N{U+516d}",
      "\N{U+5468}\N{U+65e5}"
    ],
    day_stand_alone_narrow => [
      "\N{U+4e00}",
      "\N{U+4e8c}",
      "\N{U+4e09}",
      "\N{U+56db}",
      "\N{U+4e94}",
      "\N{U+516d}",
      "\N{U+65e5}"
    ],
    day_stand_alone_wide => [
      "\N{U+661f}\N{U+671f}\N{U+4e00}",
      "\N{U+661f}\N{U+671f}\N{U+4e8c}",
      "\N{U+661f}\N{U+671f}\N{U+4e09}",
      "\N{U+661f}\N{U+671f}\N{U+56db}",
      "\N{U+661f}\N{U+671f}\N{U+4e94}",
      "\N{U+661f}\N{U+671f}\N{U+516d}",
      "\N{U+661f}\N{U+671f}\N{U+65e5}"
    ],
    era_abbreviated => [
      "\N{U+516c}\N{U+5143}\N{U+524d}",
      "\N{U+516c}\N{U+5143}"
    ],
    era_narrow => [
      "\N{U+516c}\N{U+5143}\N{U+524d}",
      "\N{U+516c}\N{U+5143}"
    ],
    era_wide => [
      "\N{U+516c}\N{U+5143}\N{U+524d}",
      "\N{U+516c}\N{U+5143}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Chinese",
    month_format_abbreviated => [
      "1\N{U+6708}",
      "2\N{U+6708}",
      "3\N{U+6708}",
      "4\N{U+6708}",
      "5\N{U+6708}",
      "6\N{U+6708}",
      "7\N{U+6708}",
      "8\N{U+6708}",
      "9\N{U+6708}",
      "10\N{U+6708}",
      "11\N{U+6708}",
      "12\N{U+6708}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+4e00}\N{U+6708}",
      "\N{U+4e8c}\N{U+6708}",
      "\N{U+4e09}\N{U+6708}",
      "\N{U+56db}\N{U+6708}",
      "\N{U+4e94}\N{U+6708}",
      "\N{U+516d}\N{U+6708}",
      "\N{U+4e03}\N{U+6708}",
      "\N{U+516b}\N{U+6708}",
      "\N{U+4e5d}\N{U+6708}",
      "\N{U+5341}\N{U+6708}",
      "\N{U+5341}\N{U+4e00}\N{U+6708}",
      "\N{U+5341}\N{U+4e8c}\N{U+6708}"
    ],
    month_stand_alone_abbreviated => [
      "1\N{U+6708}",
      "2\N{U+6708}",
      "3\N{U+6708}",
      "4\N{U+6708}",
      "5\N{U+6708}",
      "6\N{U+6708}",
      "7\N{U+6708}",
      "8\N{U+6708}",
      "9\N{U+6708}",
      "10\N{U+6708}",
      "11\N{U+6708}",
      "12\N{U+6708}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+4e00}\N{U+6708}",
      "\N{U+4e8c}\N{U+6708}",
      "\N{U+4e09}\N{U+6708}",
      "\N{U+56db}\N{U+6708}",
      "\N{U+4e94}\N{U+6708}",
      "\N{U+516d}\N{U+6708}",
      "\N{U+4e03}\N{U+6708}",
      "\N{U+516b}\N{U+6708}",
      "\N{U+4e5d}\N{U+6708}",
      "\N{U+5341}\N{U+6708}",
      "\N{U+5341}\N{U+4e00}\N{U+6708}",
      "\N{U+5341}\N{U+4e8c}\N{U+6708}"
    ],
    name => "Chinese Hong Kong SAR China Simplified",
    native_language => "\N{U+4e2d}\N{U+6587}",
    native_name => "\N{U+4e2d}\N{U+6587} \N{U+4e2d}\N{U+56fd}\N{U+9999}\N{U+6e2f}\N{U+7279}\N{U+522b}\N{U+884c}\N{U+653f}\N{U+533a} \N{U+7b80}\N{U+4f53}",
    native_script => "\N{U+7b80}\N{U+4f53}",
    native_territory => "\N{U+4e2d}\N{U+56fd}\N{U+9999}\N{U+6e2f}\N{U+7279}\N{U+522b}\N{U+884c}\N{U+653f}\N{U+533a}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1\N{U+5b63}\N{U+5ea6}",
      "2\N{U+5b63}\N{U+5ea6}",
      "3\N{U+5b63}\N{U+5ea6}",
      "4\N{U+5b63}\N{U+5ea6}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+7b2c}\N{U+4e00}\N{U+5b63}\N{U+5ea6}",
      "\N{U+7b2c}\N{U+4e8c}\N{U+5b63}\N{U+5ea6}",
      "\N{U+7b2c}\N{U+4e09}\N{U+5b63}\N{U+5ea6}",
      "\N{U+7b2c}\N{U+56db}\N{U+5b63}\N{U+5ea6}"
    ],
    quarter_stand_alone_abbreviated => [
      "1\N{U+5b63}\N{U+5ea6}",
      "2\N{U+5b63}\N{U+5ea6}",
      "3\N{U+5b63}\N{U+5ea6}",
      "4\N{U+5b63}\N{U+5ea6}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+7b2c}\N{U+4e00}\N{U+5b63}\N{U+5ea6}",
      "\N{U+7b2c}\N{U+4e8c}\N{U+5b63}\N{U+5ea6}",
      "\N{U+7b2c}\N{U+4e09}\N{U+5b63}\N{U+5ea6}",
      "\N{U+7b2c}\N{U+56db}\N{U+5b63}\N{U+5ea6}"
    ],
    script => "Simplified",
    territory => "Hong Kong SAR China",
    time_format_full => "zzzz ah:mm:ss",
    time_format_long => "z ah:mm:ss",
    time_format_medium => "ah:mm:ss",
    time_format_short => "ah:mm",
    variant => undef,
    version => 28
  }
  __[ zh-Hans-MO ]__
  {
    am_pm_abbreviated => [
      "\N{U+4e0a}\N{U+5348}",
      "\N{U+4e0b}\N{U+5348}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "EHH:mm",
      EHms => "EHH:mm:ss",
      Ed => "d\N{U+65e5}E",
      Ehm => "E ah:mm",
      Ehms => "E ah:mm:ss",
      Gy => "Gy\N{U+5e74}",
      GyMMM => "Gy\N{U+5e74}M\N{U+6708}",
      GyMMMEd => "Gy\N{U+5e74}M\N{U+6708}d\N{U+65e5}E",
      GyMMMd => "Gy\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
      H => "H\N{U+65f6}",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "v HH:mm:ss",
      Hmv => "v HH:mm",
      M => "M\N{U+6708}",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "M\N{U+6708}d\N{U+65e5}E",
      MMMMd => "M\N{U+6708}d\N{U+65e5}",
      MMMMdd => "M\N{U+6708}d\N{U+65e5}",
      MMMd => "M\N{U+6708}d\N{U+65e5}",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d\N{U+65e5}",
      h => "ah\N{U+65f6}",
      hm => "ah:mm",
      hms => "ah:mm:ss",
      hmsv => "v ah:mm:ss",
      hmv => "v ah:mm",
      ms => "mm:ss",
      y => "y\N{U+5e74}",
      yM => "y\N{U+5e74}M\N{U+6708}",
      yMEd => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}\N{U+ff0c}E",
      yMM => "y\N{U+5e74}M\N{U+6708}",
      yMMM => "y\N{U+5e74}M\N{U+6708}",
      yMMMEd => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}E",
      yMMMM => "y\N{U+5e74}M\N{U+6708}",
      yMMMd => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
      yMd => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
      yQQQ => "y\N{U+5e74}\N{U+7b2c}Q\N{U+5b63}\N{U+5ea6}",
      yQQQQ => "y\N{U+5e74}\N{U+7b2c}Q\N{U+5b63}\N{U+5ea6}"
    },
    code => "zh-Hans-MO",
    date_format_full => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}EEEE",
    date_format_long => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
    date_format_medium => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
    date_format_short => "d/M/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+5468}\N{U+4e00}",
      "\N{U+5468}\N{U+4e8c}",
      "\N{U+5468}\N{U+4e09}",
      "\N{U+5468}\N{U+56db}",
      "\N{U+5468}\N{U+4e94}",
      "\N{U+5468}\N{U+516d}",
      "\N{U+5468}\N{U+65e5}"
    ],
    day_format_narrow => [
      "\N{U+4e00}",
      "\N{U+4e8c}",
      "\N{U+4e09}",
      "\N{U+56db}",
      "\N{U+4e94}",
      "\N{U+516d}",
      "\N{U+65e5}"
    ],
    day_format_wide => [
      "\N{U+661f}\N{U+671f}\N{U+4e00}",
      "\N{U+661f}\N{U+671f}\N{U+4e8c}",
      "\N{U+661f}\N{U+671f}\N{U+4e09}",
      "\N{U+661f}\N{U+671f}\N{U+56db}",
      "\N{U+661f}\N{U+671f}\N{U+4e94}",
      "\N{U+661f}\N{U+671f}\N{U+516d}",
      "\N{U+661f}\N{U+671f}\N{U+65e5}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+5468}\N{U+4e00}",
      "\N{U+5468}\N{U+4e8c}",
      "\N{U+5468}\N{U+4e09}",
      "\N{U+5468}\N{U+56db}",
      "\N{U+5468}\N{U+4e94}",
      "\N{U+5468}\N{U+516d}",
      "\N{U+5468}\N{U+65e5}"
    ],
    day_stand_alone_narrow => [
      "\N{U+4e00}",
      "\N{U+4e8c}",
      "\N{U+4e09}",
      "\N{U+56db}",
      "\N{U+4e94}",
      "\N{U+516d}",
      "\N{U+65e5}"
    ],
    day_stand_alone_wide => [
      "\N{U+661f}\N{U+671f}\N{U+4e00}",
      "\N{U+661f}\N{U+671f}\N{U+4e8c}",
      "\N{U+661f}\N{U+671f}\N{U+4e09}",
      "\N{U+661f}\N{U+671f}\N{U+56db}",
      "\N{U+661f}\N{U+671f}\N{U+4e94}",
      "\N{U+661f}\N{U+671f}\N{U+516d}",
      "\N{U+661f}\N{U+671f}\N{U+65e5}"
    ],
    era_abbreviated => [
      "\N{U+516c}\N{U+5143}\N{U+524d}",
      "\N{U+516c}\N{U+5143}"
    ],
    era_narrow => [
      "\N{U+516c}\N{U+5143}\N{U+524d}",
      "\N{U+516c}\N{U+5143}"
    ],
    era_wide => [
      "\N{U+516c}\N{U+5143}\N{U+524d}",
      "\N{U+516c}\N{U+5143}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Chinese",
    month_format_abbreviated => [
      "1\N{U+6708}",
      "2\N{U+6708}",
      "3\N{U+6708}",
      "4\N{U+6708}",
      "5\N{U+6708}",
      "6\N{U+6708}",
      "7\N{U+6708}",
      "8\N{U+6708}",
      "9\N{U+6708}",
      "10\N{U+6708}",
      "11\N{U+6708}",
      "12\N{U+6708}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+4e00}\N{U+6708}",
      "\N{U+4e8c}\N{U+6708}",
      "\N{U+4e09}\N{U+6708}",
      "\N{U+56db}\N{U+6708}",
      "\N{U+4e94}\N{U+6708}",
      "\N{U+516d}\N{U+6708}",
      "\N{U+4e03}\N{U+6708}",
      "\N{U+516b}\N{U+6708}",
      "\N{U+4e5d}\N{U+6708}",
      "\N{U+5341}\N{U+6708}",
      "\N{U+5341}\N{U+4e00}\N{U+6708}",
      "\N{U+5341}\N{U+4e8c}\N{U+6708}"
    ],
    month_stand_alone_abbreviated => [
      "1\N{U+6708}",
      "2\N{U+6708}",
      "3\N{U+6708}",
      "4\N{U+6708}",
      "5\N{U+6708}",
      "6\N{U+6708}",
      "7\N{U+6708}",
      "8\N{U+6708}",
      "9\N{U+6708}",
      "10\N{U+6708}",
      "11\N{U+6708}",
      "12\N{U+6708}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+4e00}\N{U+6708}",
      "\N{U+4e8c}\N{U+6708}",
      "\N{U+4e09}\N{U+6708}",
      "\N{U+56db}\N{U+6708}",
      "\N{U+4e94}\N{U+6708}",
      "\N{U+516d}\N{U+6708}",
      "\N{U+4e03}\N{U+6708}",
      "\N{U+516b}\N{U+6708}",
      "\N{U+4e5d}\N{U+6708}",
      "\N{U+5341}\N{U+6708}",
      "\N{U+5341}\N{U+4e00}\N{U+6708}",
      "\N{U+5341}\N{U+4e8c}\N{U+6708}"
    ],
    name => "Chinese Macau SAR China Simplified",
    native_language => "\N{U+4e2d}\N{U+6587}",
    native_name => "\N{U+4e2d}\N{U+6587} \N{U+4e2d}\N{U+56fd}\N{U+6fb3}\N{U+95e8}\N{U+7279}\N{U+522b}\N{U+884c}\N{U+653f}\N{U+533a} \N{U+7b80}\N{U+4f53}",
    native_script => "\N{U+7b80}\N{U+4f53}",
    native_territory => "\N{U+4e2d}\N{U+56fd}\N{U+6fb3}\N{U+95e8}\N{U+7279}\N{U+522b}\N{U+884c}\N{U+653f}\N{U+533a}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1\N{U+5b63}\N{U+5ea6}",
      "2\N{U+5b63}\N{U+5ea6}",
      "3\N{U+5b63}\N{U+5ea6}",
      "4\N{U+5b63}\N{U+5ea6}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+7b2c}\N{U+4e00}\N{U+5b63}\N{U+5ea6}",
      "\N{U+7b2c}\N{U+4e8c}\N{U+5b63}\N{U+5ea6}",
      "\N{U+7b2c}\N{U+4e09}\N{U+5b63}\N{U+5ea6}",
      "\N{U+7b2c}\N{U+56db}\N{U+5b63}\N{U+5ea6}"
    ],
    quarter_stand_alone_abbreviated => [
      "1\N{U+5b63}\N{U+5ea6}",
      "2\N{U+5b63}\N{U+5ea6}",
      "3\N{U+5b63}\N{U+5ea6}",
      "4\N{U+5b63}\N{U+5ea6}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+7b2c}\N{U+4e00}\N{U+5b63}\N{U+5ea6}",
      "\N{U+7b2c}\N{U+4e8c}\N{U+5b63}\N{U+5ea6}",
      "\N{U+7b2c}\N{U+4e09}\N{U+5b63}\N{U+5ea6}",
      "\N{U+7b2c}\N{U+56db}\N{U+5b63}\N{U+5ea6}"
    ],
    script => "Simplified",
    territory => "Macau SAR China",
    time_format_full => "zzzz ah:mm:ss",
    time_format_long => "z ah:mm:ss",
    time_format_medium => "ah:mm:ss",
    time_format_short => "ah:mm",
    variant => undef,
    version => 28
  }
  __[ zh-Hans-SG ]__
  {
    am_pm_abbreviated => [
      "\N{U+4e0a}\N{U+5348}",
      "\N{U+4e0b}\N{U+5348}"
    ],
    available_formats => {
      E => "ccc",
      EHm => "EHH:mm",
      EHms => "EHH:mm:ss",
      Ed => "d\N{U+65e5}E",
      Ehm => "E ah:mm",
      Ehms => "E ah:mm:ss",
      Gy => "Gy\N{U+5e74}",
      GyMMM => "Gy\N{U+5e74}M\N{U+6708}",
      GyMMMEd => "Gy\N{U+5e74}M\N{U+6708}d\N{U+65e5}E",
      GyMMMd => "Gy\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
      H => "H\N{U+65f6}",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "v HH:mm:ss",
      Hmv => "v HH:mm",
      M => "M\N{U+6708}",
      MEd => "M-dE",
      MMM => "M\N{U+6708}",
      MMMEd => "M\N{U+6708}d\N{U+65e5}E",
      MMMMd => "M\N{U+6708}d\N{U+65e5}",
      MMMMdd => "M\N{U+6708}d\N{U+65e5}",
      MMMd => "M\N{U+6708}d\N{U+65e5}",
      MMdd => "MM-dd",
      Md => "M-d",
      d => "d\N{U+65e5}",
      h => "ah\N{U+65f6}",
      hm => "ah:mm",
      hms => "ah:mm:ss",
      hmsv => "v ah:mm:ss",
      hmv => "v ah:mm",
      ms => "mm:ss",
      y => "y\N{U+5e74}",
      yM => "y\N{U+5e74}M\N{U+6708}",
      yMEd => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}\N{U+ff0c}E",
      yMM => "y\N{U+5e74}M\N{U+6708}",
      yMMM => "y\N{U+5e74}M\N{U+6708}",
      yMMMEd => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}E",
      yMMMM => "y\N{U+5e74}M\N{U+6708}",
      yMMMd => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
      yMd => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
      yQQQ => "y\N{U+5e74}\N{U+7b2c}Q\N{U+5b63}\N{U+5ea6}",
      yQQQQ => "y\N{U+5e74}\N{U+7b2c}Q\N{U+5b63}\N{U+5ea6}"
    },
    code => "zh-Hans-SG",
    date_format_full => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}EEEE",
    date_format_long => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
    date_format_medium => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
    date_format_short => "dd/MM/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+5468}\N{U+4e00}",
      "\N{U+5468}\N{U+4e8c}",
      "\N{U+5468}\N{U+4e09}",
      "\N{U+5468}\N{U+56db}",
      "\N{U+5468}\N{U+4e94}",
      "\N{U+5468}\N{U+516d}",
      "\N{U+5468}\N{U+65e5}"
    ],
    day_format_narrow => [
      "\N{U+4e00}",
      "\N{U+4e8c}",
      "\N{U+4e09}",
      "\N{U+56db}",
      "\N{U+4e94}",
      "\N{U+516d}",
      "\N{U+65e5}"
    ],
    day_format_wide => [
      "\N{U+661f}\N{U+671f}\N{U+4e00}",
      "\N{U+661f}\N{U+671f}\N{U+4e8c}",
      "\N{U+661f}\N{U+671f}\N{U+4e09}",
      "\N{U+661f}\N{U+671f}\N{U+56db}",
      "\N{U+661f}\N{U+671f}\N{U+4e94}",
      "\N{U+661f}\N{U+671f}\N{U+516d}",
      "\N{U+661f}\N{U+671f}\N{U+65e5}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+5468}\N{U+4e00}",
      "\N{U+5468}\N{U+4e8c}",
      "\N{U+5468}\N{U+4e09}",
      "\N{U+5468}\N{U+56db}",
      "\N{U+5468}\N{U+4e94}",
      "\N{U+5468}\N{U+516d}",
      "\N{U+5468}\N{U+65e5}"
    ],
    day_stand_alone_narrow => [
      "\N{U+4e00}",
      "\N{U+4e8c}",
      "\N{U+4e09}",
      "\N{U+56db}",
      "\N{U+4e94}",
      "\N{U+516d}",
      "\N{U+65e5}"
    ],
    day_stand_alone_wide => [
      "\N{U+661f}\N{U+671f}\N{U+4e00}",
      "\N{U+661f}\N{U+671f}\N{U+4e8c}",
      "\N{U+661f}\N{U+671f}\N{U+4e09}",
      "\N{U+661f}\N{U+671f}\N{U+56db}",
      "\N{U+661f}\N{U+671f}\N{U+4e94}",
      "\N{U+661f}\N{U+671f}\N{U+516d}",
      "\N{U+661f}\N{U+671f}\N{U+65e5}"
    ],
    era_abbreviated => [
      "\N{U+516c}\N{U+5143}\N{U+524d}",
      "\N{U+516c}\N{U+5143}"
    ],
    era_narrow => [
      "\N{U+516c}\N{U+5143}\N{U+524d}",
      "\N{U+516c}\N{U+5143}"
    ],
    era_wide => [
      "\N{U+516c}\N{U+5143}\N{U+524d}",
      "\N{U+516c}\N{U+5143}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Chinese",
    month_format_abbreviated => [
      "1\N{U+6708}",
      "2\N{U+6708}",
      "3\N{U+6708}",
      "4\N{U+6708}",
      "5\N{U+6708}",
      "6\N{U+6708}",
      "7\N{U+6708}",
      "8\N{U+6708}",
      "9\N{U+6708}",
      "10\N{U+6708}",
      "11\N{U+6708}",
      "12\N{U+6708}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "\N{U+4e00}\N{U+6708}",
      "\N{U+4e8c}\N{U+6708}",
      "\N{U+4e09}\N{U+6708}",
      "\N{U+56db}\N{U+6708}",
      "\N{U+4e94}\N{U+6708}",
      "\N{U+516d}\N{U+6708}",
      "\N{U+4e03}\N{U+6708}",
      "\N{U+516b}\N{U+6708}",
      "\N{U+4e5d}\N{U+6708}",
      "\N{U+5341}\N{U+6708}",
      "\N{U+5341}\N{U+4e00}\N{U+6708}",
      "\N{U+5341}\N{U+4e8c}\N{U+6708}"
    ],
    month_stand_alone_abbreviated => [
      "1\N{U+6708}",
      "2\N{U+6708}",
      "3\N{U+6708}",
      "4\N{U+6708}",
      "5\N{U+6708}",
      "6\N{U+6708}",
      "7\N{U+6708}",
      "8\N{U+6708}",
      "9\N{U+6708}",
      "10\N{U+6708}",
      "11\N{U+6708}",
      "12\N{U+6708}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "\N{U+4e00}\N{U+6708}",
      "\N{U+4e8c}\N{U+6708}",
      "\N{U+4e09}\N{U+6708}",
      "\N{U+56db}\N{U+6708}",
      "\N{U+4e94}\N{U+6708}",
      "\N{U+516d}\N{U+6708}",
      "\N{U+4e03}\N{U+6708}",
      "\N{U+516b}\N{U+6708}",
      "\N{U+4e5d}\N{U+6708}",
      "\N{U+5341}\N{U+6708}",
      "\N{U+5341}\N{U+4e00}\N{U+6708}",
      "\N{U+5341}\N{U+4e8c}\N{U+6708}"
    ],
    name => "Chinese Singapore Simplified",
    native_language => "\N{U+4e2d}\N{U+6587}",
    native_name => "\N{U+4e2d}\N{U+6587} \N{U+65b0}\N{U+52a0}\N{U+5761} \N{U+7b80}\N{U+4f53}",
    native_script => "\N{U+7b80}\N{U+4f53}",
    native_territory => "\N{U+65b0}\N{U+52a0}\N{U+5761}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "1\N{U+5b63}\N{U+5ea6}",
      "2\N{U+5b63}\N{U+5ea6}",
      "3\N{U+5b63}\N{U+5ea6}",
      "4\N{U+5b63}\N{U+5ea6}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+7b2c}\N{U+4e00}\N{U+5b63}\N{U+5ea6}",
      "\N{U+7b2c}\N{U+4e8c}\N{U+5b63}\N{U+5ea6}",
      "\N{U+7b2c}\N{U+4e09}\N{U+5b63}\N{U+5ea6}",
      "\N{U+7b2c}\N{U+56db}\N{U+5b63}\N{U+5ea6}"
    ],
    quarter_stand_alone_abbreviated => [
      "1\N{U+5b63}\N{U+5ea6}",
      "2\N{U+5b63}\N{U+5ea6}",
      "3\N{U+5b63}\N{U+5ea6}",
      "4\N{U+5b63}\N{U+5ea6}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+7b2c}\N{U+4e00}\N{U+5b63}\N{U+5ea6}",
      "\N{U+7b2c}\N{U+4e8c}\N{U+5b63}\N{U+5ea6}",
      "\N{U+7b2c}\N{U+4e09}\N{U+5b63}\N{U+5ea6}",
      "\N{U+7b2c}\N{U+56db}\N{U+5b63}\N{U+5ea6}"
    ],
    script => "Simplified",
    territory => "Singapore",
    time_format_full => "zzzz ah:mm:ss",
    time_format_long => "z ah:mm:ss",
    time_format_medium => "ah:mm:ss",
    time_format_short => "ah:mm",
    variant => undef,
    version => 28
  }
  __[ zh-Hant ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E ah:mm",
      Ehms => "E ah:mm:ss",
      Gy => "Gy\N{U+5e74}",
      GyMMM => "Gy\N{U+5e74}M\N{U+6708}",
      GyMMMEd => "Gy\N{U+5e74}M\N{U+6708}d\N{U+65e5} E",
      GyMMMd => "Gy\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
      H => "H\N{U+6642}",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss [v]",
      Hmv => "HH:mm [v]",
      M => "M\N{U+6708}",
      MEd => "M/d\N{U+ff08}E\N{U+ff09}",
      MMM => "LLL",
      MMMEd => "M\N{U+6708}d\N{U+65e5} E",
      MMMMd => "M\N{U+6708}d\N{U+65e5}",
      MMMd => "M\N{U+6708}d\N{U+65e5}",
      MMdd => "MM/dd",
      Md => "M/d",
      d => "d\N{U+65e5}",
      h => "ah\N{U+6642}",
      hm => "ah:mm",
      hms => "ah:mm:ss",
      hmsv => "ah:mm:ss [v]",
      hmv => "ah:mm [v]",
      ms => "mm:ss",
      y => "y\N{U+5e74}",
      yM => "y/M",
      yMEd => "y/M/d\N{U+ff08}E\N{U+ff09}",
      yMM => "y/MM",
      yMMM => "y\N{U+5e74}M\N{U+6708}",
      yMMMEd => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5} E",
      yMMMM => "y\N{U+5e74}M\N{U+6708}",
      yMMMd => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
      yMd => "y/M/d",
      yQQQ => "y\N{U+5e74}QQQ",
      yQQQQ => "y\N{U+5e74}QQQQ"
    },
    code => "zh-Hant",
    date_format_full => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5} EEEE",
    date_format_long => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
    date_format_medium => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
    date_format_short => "y/M/d",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+9031}\N{U+4e00}",
      "\N{U+9031}\N{U+4e8c}",
      "\N{U+9031}\N{U+4e09}",
      "\N{U+9031}\N{U+56db}",
      "\N{U+9031}\N{U+4e94}",
      "\N{U+9031}\N{U+516d}",
      "\N{U+9031}\N{U+65e5}"
    ],
    day_format_narrow => [
      "\N{U+4e00}",
      "\N{U+4e8c}",
      "\N{U+4e09}",
      "\N{U+56db}",
      "\N{U+4e94}",
      "\N{U+516d}",
      "\N{U+65e5}"
    ],
    day_format_wide => [
      "\N{U+661f}\N{U+671f}\N{U+4e00}",
      "\N{U+661f}\N{U+671f}\N{U+4e8c}",
      "\N{U+661f}\N{U+671f}\N{U+4e09}",
      "\N{U+661f}\N{U+671f}\N{U+56db}",
      "\N{U+661f}\N{U+671f}\N{U+4e94}",
      "\N{U+661f}\N{U+671f}\N{U+516d}",
      "\N{U+661f}\N{U+671f}\N{U+65e5}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+9031}\N{U+4e00}",
      "\N{U+9031}\N{U+4e8c}",
      "\N{U+9031}\N{U+4e09}",
      "\N{U+9031}\N{U+56db}",
      "\N{U+9031}\N{U+4e94}",
      "\N{U+9031}\N{U+516d}",
      "\N{U+9031}\N{U+65e5}"
    ],
    day_stand_alone_narrow => [
      "\N{U+4e00}",
      "\N{U+4e8c}",
      "\N{U+4e09}",
      "\N{U+56db}",
      "\N{U+4e94}",
      "\N{U+516d}",
      "\N{U+65e5}"
    ],
    day_stand_alone_wide => [
      "\N{U+661f}\N{U+671f}\N{U+4e00}",
      "\N{U+661f}\N{U+671f}\N{U+4e8c}",
      "\N{U+661f}\N{U+671f}\N{U+4e09}",
      "\N{U+661f}\N{U+671f}\N{U+56db}",
      "\N{U+661f}\N{U+671f}\N{U+4e94}",
      "\N{U+661f}\N{U+671f}\N{U+516d}",
      "\N{U+661f}\N{U+671f}\N{U+65e5}"
    ],
    era_abbreviated => [
      "\N{U+897f}\N{U+5143}\N{U+524d}",
      "\N{U+897f}\N{U+5143}"
    ],
    era_narrow => [
      "\N{U+897f}\N{U+5143}\N{U+524d}",
      "\N{U+897f}\N{U+5143}"
    ],
    era_wide => [
      "\N{U+897f}\N{U+5143}\N{U+524d}",
      "\N{U+897f}\N{U+5143}"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Chinese",
    month_format_abbreviated => [
      "1\N{U+6708}",
      "2\N{U+6708}",
      "3\N{U+6708}",
      "4\N{U+6708}",
      "5\N{U+6708}",
      "6\N{U+6708}",
      "7\N{U+6708}",
      "8\N{U+6708}",
      "9\N{U+6708}",
      "10\N{U+6708}",
      "11\N{U+6708}",
      "12\N{U+6708}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "1\N{U+6708}",
      "2\N{U+6708}",
      "3\N{U+6708}",
      "4\N{U+6708}",
      "5\N{U+6708}",
      "6\N{U+6708}",
      "7\N{U+6708}",
      "8\N{U+6708}",
      "9\N{U+6708}",
      "10\N{U+6708}",
      "11\N{U+6708}",
      "12\N{U+6708}"
    ],
    month_stand_alone_abbreviated => [
      "1\N{U+6708}",
      "2\N{U+6708}",
      "3\N{U+6708}",
      "4\N{U+6708}",
      "5\N{U+6708}",
      "6\N{U+6708}",
      "7\N{U+6708}",
      "8\N{U+6708}",
      "9\N{U+6708}",
      "10\N{U+6708}",
      "11\N{U+6708}",
      "12\N{U+6708}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "1\N{U+6708}",
      "2\N{U+6708}",
      "3\N{U+6708}",
      "4\N{U+6708}",
      "5\N{U+6708}",
      "6\N{U+6708}",
      "7\N{U+6708}",
      "8\N{U+6708}",
      "9\N{U+6708}",
      "10\N{U+6708}",
      "11\N{U+6708}",
      "12\N{U+6708}"
    ],
    name => "Chinese Traditional",
    native_language => "\N{U+4e2d}\N{U+6587}",
    native_name => "\N{U+4e2d}\N{U+6587} \N{U+7e41}\N{U+9ad4}",
    native_script => "\N{U+7e41}\N{U+9ad4}",
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "1\N{U+5b63}",
      "2\N{U+5b63}",
      "3\N{U+5b63}",
      "4\N{U+5b63}"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+7b2c}1\N{U+5b63}",
      "\N{U+7b2c}2\N{U+5b63}",
      "\N{U+7b2c}3\N{U+5b63}",
      "\N{U+7b2c}4\N{U+5b63}"
    ],
    quarter_stand_alone_abbreviated => [
      "1\N{U+5b63}",
      "2\N{U+5b63}",
      "3\N{U+5b63}",
      "4\N{U+5b63}"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+7b2c}1\N{U+5b63}",
      "\N{U+7b2c}2\N{U+5b63}",
      "\N{U+7b2c}3\N{U+5b63}",
      "\N{U+7b2c}4\N{U+5b63}"
    ],
    script => "Traditional",
    territory => undef,
    time_format_full => "ah:mm:ss [zzzz]",
    time_format_long => "ah:mm:ss [z]",
    time_format_medium => "ah:mm:ss",
    time_format_short => "ah:mm",
    variant => undef,
    version => 28
  }
  __[ zh-Hant-HK ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "cccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d\N{U+65e5}E",
      Ehm => "E ah:mm",
      Ehms => "E ah:mm:ss",
      Gy => "Gy\N{U+5e74}",
      GyMMM => "Gy\N{U+5e74}M\N{U+6708}",
      GyMMMEd => "Gy\N{U+5e74}M\N{U+6708}d\N{U+65e5}E",
      GyMMMd => "Gy\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
      H => "H\N{U+6642}",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss [v]",
      Hmv => "HH:mm [v]",
      M => "M\N{U+6708}",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "M\N{U+6708}d\N{U+65e5}E",
      MMMMd => "M\N{U+6708}d\N{U+65e5}",
      MMMd => "M\N{U+6708}d\N{U+65e5}",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d\N{U+65e5}",
      h => "ah\N{U+6642}",
      hm => "ah:mm",
      hms => "ah:mm:ss",
      hmsv => "ah:mm:ss [v]",
      hmv => "ah:mm [v]",
      ms => "mm:ss",
      y => "y\N{U+5e74}",
      yM => "M/y",
      yMEd => "y/M/dE",
      yMM => "MM/y",
      yMMM => "y\N{U+5e74}M\N{U+6708}",
      yMMMEd => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}E",
      yMMMM => "y\N{U+5e74}M\N{U+6708}",
      yMMMd => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
      yMd => "d/M/y",
      yQQQ => "y\N{U+5e74}QQQ",
      yQQQQ => "y\N{U+5e74}QQQQ"
    },
    code => "zh-Hant-HK",
    date_format_full => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}EEEE",
    date_format_long => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
    date_format_medium => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+9031}\N{U+4e00}",
      "\N{U+9031}\N{U+4e8c}",
      "\N{U+9031}\N{U+4e09}",
      "\N{U+9031}\N{U+56db}",
      "\N{U+9031}\N{U+4e94}",
      "\N{U+9031}\N{U+516d}",
      "\N{U+9031}\N{U+65e5}"
    ],
    day_format_narrow => [
      "\N{U+4e00}",
      "\N{U+4e8c}",
      "\N{U+4e09}",
      "\N{U+56db}",
      "\N{U+4e94}",
      "\N{U+516d}",
      "\N{U+65e5}"
    ],
    day_format_wide => [
      "\N{U+661f}\N{U+671f}\N{U+4e00}",
      "\N{U+661f}\N{U+671f}\N{U+4e8c}",
      "\N{U+661f}\N{U+671f}\N{U+4e09}",
      "\N{U+661f}\N{U+671f}\N{U+56db}",
      "\N{U+661f}\N{U+671f}\N{U+4e94}",
      "\N{U+661f}\N{U+671f}\N{U+516d}",
      "\N{U+661f}\N{U+671f}\N{U+65e5}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+9031}\N{U+4e00}",
      "\N{U+9031}\N{U+4e8c}",
      "\N{U+9031}\N{U+4e09}",
      "\N{U+9031}\N{U+56db}",
      "\N{U+9031}\N{U+4e94}",
      "\N{U+9031}\N{U+516d}",
      "\N{U+9031}\N{U+65e5}"
    ],
    day_stand_alone_narrow => [
      "\N{U+4e00}",
      "\N{U+4e8c}",
      "\N{U+4e09}",
      "\N{U+56db}",
      "\N{U+4e94}",
      "\N{U+516d}",
      "\N{U+65e5}"
    ],
    day_stand_alone_wide => [
      "\N{U+661f}\N{U+671f}\N{U+4e00}",
      "\N{U+661f}\N{U+671f}\N{U+4e8c}",
      "\N{U+661f}\N{U+671f}\N{U+4e09}",
      "\N{U+661f}\N{U+671f}\N{U+56db}",
      "\N{U+661f}\N{U+671f}\N{U+4e94}",
      "\N{U+661f}\N{U+671f}\N{U+516d}",
      "\N{U+661f}\N{U+671f}\N{U+65e5}"
    ],
    era_abbreviated => [
      "\N{U+516c}\N{U+5143}\N{U+524d}",
      "\N{U+516c}\N{U+5143}"
    ],
    era_narrow => [
      "\N{U+897f}\N{U+5143}\N{U+524d}",
      "\N{U+897f}\N{U+5143}"
    ],
    era_wide => [
      "\N{U+516c}\N{U+5143}\N{U+524d}",
      "\N{U+516c}\N{U+5143}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Chinese",
    month_format_abbreviated => [
      "1\N{U+6708}",
      "2\N{U+6708}",
      "3\N{U+6708}",
      "4\N{U+6708}",
      "5\N{U+6708}",
      "6\N{U+6708}",
      "7\N{U+6708}",
      "8\N{U+6708}",
      "9\N{U+6708}",
      "10\N{U+6708}",
      "11\N{U+6708}",
      "12\N{U+6708}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "1\N{U+6708}",
      "2\N{U+6708}",
      "3\N{U+6708}",
      "4\N{U+6708}",
      "5\N{U+6708}",
      "6\N{U+6708}",
      "7\N{U+6708}",
      "8\N{U+6708}",
      "9\N{U+6708}",
      "10\N{U+6708}",
      "11\N{U+6708}",
      "12\N{U+6708}"
    ],
    month_stand_alone_abbreviated => [
      "1\N{U+6708}",
      "2\N{U+6708}",
      "3\N{U+6708}",
      "4\N{U+6708}",
      "5\N{U+6708}",
      "6\N{U+6708}",
      "7\N{U+6708}",
      "8\N{U+6708}",
      "9\N{U+6708}",
      "10\N{U+6708}",
      "11\N{U+6708}",
      "12\N{U+6708}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "1\N{U+6708}",
      "2\N{U+6708}",
      "3\N{U+6708}",
      "4\N{U+6708}",
      "5\N{U+6708}",
      "6\N{U+6708}",
      "7\N{U+6708}",
      "8\N{U+6708}",
      "9\N{U+6708}",
      "10\N{U+6708}",
      "11\N{U+6708}",
      "12\N{U+6708}"
    ],
    name => "Chinese Hong Kong SAR China Traditional",
    native_language => "\N{U+4e2d}\N{U+6587}",
    native_name => "\N{U+4e2d}\N{U+6587} \N{U+4e2d}\N{U+83ef}\N{U+4eba}\N{U+6c11}\N{U+5171}\N{U+548c}\N{U+570b}\N{U+9999}\N{U+6e2f}\N{U+7279}\N{U+5225}\N{U+884c}\N{U+653f}\N{U+5340} \N{U+7e41}\N{U+9ad4}\N{U+5b57}",
    native_script => "\N{U+7e41}\N{U+9ad4}\N{U+5b57}",
    native_territory => "\N{U+4e2d}\N{U+83ef}\N{U+4eba}\N{U+6c11}\N{U+5171}\N{U+548c}\N{U+570b}\N{U+9999}\N{U+6e2f}\N{U+7279}\N{U+5225}\N{U+884c}\N{U+653f}\N{U+5340}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+7b2c}1\N{U+5b63}",
      "\N{U+7b2c}2\N{U+5b63}",
      "\N{U+7b2c}3\N{U+5b63}",
      "\N{U+7b2c}4\N{U+5b63}"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+7b2c}1\N{U+5b63}",
      "\N{U+7b2c}2\N{U+5b63}",
      "\N{U+7b2c}3\N{U+5b63}",
      "\N{U+7b2c}4\N{U+5b63}"
    ],
    script => "Traditional",
    territory => "Hong Kong SAR China",
    time_format_full => "ah:mm:ss [zzzz]",
    time_format_long => "ah:mm:ss [z]",
    time_format_medium => "ah:mm:ss",
    time_format_short => "ah:mm",
    variant => undef,
    version => 28
  }
  __[ zh-Hant-MO ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "cccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d\N{U+65e5}E",
      Ehm => "E ah:mm",
      Ehms => "E ah:mm:ss",
      Gy => "Gy\N{U+5e74}",
      GyMMM => "Gy\N{U+5e74}M\N{U+6708}",
      GyMMMEd => "Gy\N{U+5e74}M\N{U+6708}d\N{U+65e5}E",
      GyMMMd => "Gy\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
      H => "H\N{U+6642}",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss [v]",
      Hmv => "HH:mm [v]",
      M => "M\N{U+6708}",
      MEd => "E, d/M",
      MMM => "LLL",
      MMMEd => "M\N{U+6708}d\N{U+65e5}E",
      MMMMd => "M\N{U+6708}d\N{U+65e5}",
      MMMd => "M\N{U+6708}d\N{U+65e5}",
      MMdd => "dd/MM",
      Md => "d/M",
      d => "d\N{U+65e5}",
      h => "ah\N{U+6642}",
      hm => "ah:mm",
      hms => "ah:mm:ss",
      hmsv => "ah:mm:ss [v]",
      hmv => "ah:mm [v]",
      ms => "mm:ss",
      y => "y\N{U+5e74}",
      yM => "M/y",
      yMEd => "y/M/dE",
      yMM => "MM/y",
      yMMM => "y\N{U+5e74}M\N{U+6708}",
      yMMMEd => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}E",
      yMMMM => "y\N{U+5e74}M\N{U+6708}",
      yMMMd => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
      yMd => "d/M/y",
      yQQQ => "y\N{U+5e74}QQQ",
      yQQQQ => "y\N{U+5e74}QQQQ"
    },
    code => "zh-Hant-MO",
    date_format_full => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}EEEE",
    date_format_long => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
    date_format_medium => "y\N{U+5e74}M\N{U+6708}d\N{U+65e5}",
    date_format_short => "d/M/y",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "\N{U+9031}\N{U+4e00}",
      "\N{U+9031}\N{U+4e8c}",
      "\N{U+9031}\N{U+4e09}",
      "\N{U+9031}\N{U+56db}",
      "\N{U+9031}\N{U+4e94}",
      "\N{U+9031}\N{U+516d}",
      "\N{U+9031}\N{U+65e5}"
    ],
    day_format_narrow => [
      "\N{U+4e00}",
      "\N{U+4e8c}",
      "\N{U+4e09}",
      "\N{U+56db}",
      "\N{U+4e94}",
      "\N{U+516d}",
      "\N{U+65e5}"
    ],
    day_format_wide => [
      "\N{U+661f}\N{U+671f}\N{U+4e00}",
      "\N{U+661f}\N{U+671f}\N{U+4e8c}",
      "\N{U+661f}\N{U+671f}\N{U+4e09}",
      "\N{U+661f}\N{U+671f}\N{U+56db}",
      "\N{U+661f}\N{U+671f}\N{U+4e94}",
      "\N{U+661f}\N{U+671f}\N{U+516d}",
      "\N{U+661f}\N{U+671f}\N{U+65e5}"
    ],
    day_stand_alone_abbreviated => [
      "\N{U+9031}\N{U+4e00}",
      "\N{U+9031}\N{U+4e8c}",
      "\N{U+9031}\N{U+4e09}",
      "\N{U+9031}\N{U+56db}",
      "\N{U+9031}\N{U+4e94}",
      "\N{U+9031}\N{U+516d}",
      "\N{U+9031}\N{U+65e5}"
    ],
    day_stand_alone_narrow => [
      "\N{U+4e00}",
      "\N{U+4e8c}",
      "\N{U+4e09}",
      "\N{U+56db}",
      "\N{U+4e94}",
      "\N{U+516d}",
      "\N{U+65e5}"
    ],
    day_stand_alone_wide => [
      "\N{U+661f}\N{U+671f}\N{U+4e00}",
      "\N{U+661f}\N{U+671f}\N{U+4e8c}",
      "\N{U+661f}\N{U+671f}\N{U+4e09}",
      "\N{U+661f}\N{U+671f}\N{U+56db}",
      "\N{U+661f}\N{U+671f}\N{U+4e94}",
      "\N{U+661f}\N{U+671f}\N{U+516d}",
      "\N{U+661f}\N{U+671f}\N{U+65e5}"
    ],
    era_abbreviated => [
      "\N{U+516c}\N{U+5143}\N{U+524d}",
      "\N{U+516c}\N{U+5143}"
    ],
    era_narrow => [
      "\N{U+897f}\N{U+5143}\N{U+524d}",
      "\N{U+897f}\N{U+5143}"
    ],
    era_wide => [
      "\N{U+516c}\N{U+5143}\N{U+524d}",
      "\N{U+516c}\N{U+5143}"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Chinese",
    month_format_abbreviated => [
      "1\N{U+6708}",
      "2\N{U+6708}",
      "3\N{U+6708}",
      "4\N{U+6708}",
      "5\N{U+6708}",
      "6\N{U+6708}",
      "7\N{U+6708}",
      "8\N{U+6708}",
      "9\N{U+6708}",
      "10\N{U+6708}",
      "11\N{U+6708}",
      "12\N{U+6708}"
    ],
    month_format_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_format_wide => [
      "1\N{U+6708}",
      "2\N{U+6708}",
      "3\N{U+6708}",
      "4\N{U+6708}",
      "5\N{U+6708}",
      "6\N{U+6708}",
      "7\N{U+6708}",
      "8\N{U+6708}",
      "9\N{U+6708}",
      "10\N{U+6708}",
      "11\N{U+6708}",
      "12\N{U+6708}"
    ],
    month_stand_alone_abbreviated => [
      "1\N{U+6708}",
      "2\N{U+6708}",
      "3\N{U+6708}",
      "4\N{U+6708}",
      "5\N{U+6708}",
      "6\N{U+6708}",
      "7\N{U+6708}",
      "8\N{U+6708}",
      "9\N{U+6708}",
      "10\N{U+6708}",
      "11\N{U+6708}",
      "12\N{U+6708}"
    ],
    month_stand_alone_narrow => [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10,
      11,
      12
    ],
    month_stand_alone_wide => [
      "1\N{U+6708}",
      "2\N{U+6708}",
      "3\N{U+6708}",
      "4\N{U+6708}",
      "5\N{U+6708}",
      "6\N{U+6708}",
      "7\N{U+6708}",
      "8\N{U+6708}",
      "9\N{U+6708}",
      "10\N{U+6708}",
      "11\N{U+6708}",
      "12\N{U+6708}"
    ],
    name => "Chinese Macau SAR China Traditional",
    native_language => "\N{U+4e2d}\N{U+6587}",
    native_name => "\N{U+4e2d}\N{U+6587} \N{U+4e2d}\N{U+83ef}\N{U+4eba}\N{U+6c11}\N{U+5171}\N{U+548c}\N{U+570b}\N{U+6fb3}\N{U+9580}\N{U+7279}\N{U+5225}\N{U+884c}\N{U+653f}\N{U+5340} \N{U+7e41}\N{U+9ad4}\N{U+5b57}",
    native_script => "\N{U+7e41}\N{U+9ad4}\N{U+5b57}",
    native_territory => "\N{U+4e2d}\N{U+83ef}\N{U+4eba}\N{U+6c11}\N{U+5171}\N{U+548c}\N{U+570b}\N{U+6fb3}\N{U+9580}\N{U+7279}\N{U+5225}\N{U+884c}\N{U+653f}\N{U+5340}",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "\N{U+7b2c}1\N{U+5b63}",
      "\N{U+7b2c}2\N{U+5b63}",
      "\N{U+7b2c}3\N{U+5b63}",
      "\N{U+7b2c}4\N{U+5b63}"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "\N{U+7b2c}1\N{U+5b63}",
      "\N{U+7b2c}2\N{U+5b63}",
      "\N{U+7b2c}3\N{U+5b63}",
      "\N{U+7b2c}4\N{U+5b63}"
    ],
    script => "Traditional",
    territory => "Macau SAR China",
    time_format_full => "ah:mm:ss [zzzz]",
    time_format_long => "ah:mm:ss [z]",
    time_format_medium => "ah:mm:ss",
    time_format_short => "ah:mm",
    variant => undef,
    version => 28
  }
  __[ zu ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "MMM d, y",
      yMd => "M/d/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "zu",
    date_format_full => "EEEE, MMMM d, y",
    date_format_long => "MMMM d, y",
    date_format_medium => "MMM d, y",
    date_format_short => "M/d/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Mso",
      "Bil",
      "Tha",
      "Sin",
      "Hla",
      "Mgq",
      "Son"
    ],
    day_format_narrow => [
      "M",
      "B",
      "T",
      "S",
      "H",
      "M",
      "S"
    ],
    day_format_wide => [
      "UMsombuluko",
      "ULwesibili",
      "ULwesithathu",
      "ULwesine",
      "ULwesihlanu",
      "UMgqibelo",
      "ISonto"
    ],
    day_stand_alone_abbreviated => [
      "Mso",
      "Bil",
      "Tha",
      "Sin",
      "Hla",
      "Mgq",
      "Son"
    ],
    day_stand_alone_narrow => [
      "M",
      "B",
      "T",
      "S",
      "H",
      "M",
      "S"
    ],
    day_stand_alone_wide => [
      "UMsombuluko",
      "ULwesibili",
      "ULwesithathu",
      "ULwesine",
      "ULwesihlanu",
      "UMgqibelo",
      "ISonto"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "BC",
      "AD"
    ],
    first_day_of_week => 1,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%m/%d/%y",
    glibc_datetime_format => "%a %b %e %H:%M:%S %Y",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%H:%M:%S",
    language => "Zulu",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mas",
      "Eph",
      "Mey",
      "Jun",
      "Jul",
      "Aga",
      "Sep",
      "Okt",
      "Nov",
      "Dis"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "E",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januwari",
      "Februwari",
      "Mashi",
      "Ephreli",
      "Meyi",
      "Juni",
      "Julayi",
      "Agasti",
      "Septhemba",
      "Okthoba",
      "Novemba",
      "Disemba"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mas",
      "Eph",
      "Mey",
      "Jun",
      "Jul",
      "Aga",
      "Sep",
      "Okt",
      "Nov",
      "Dis"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januwari",
      "Februwari",
      "Mashi",
      "Ephreli",
      "Meyi",
      "Juni",
      "Julayi",
      "Agasti",
      "Septhemba",
      "Okthoba",
      "Novemba",
      "Disemba"
    ],
    name => "Zulu",
    native_language => "isiZulu",
    native_name => "isiZulu",
    native_script => undef,
    native_territory => undef,
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "ikota yesi-1",
      "ikota yesi-2",
      "ikota yesi-3",
      "ikota yesi-4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "ikota yesi-1",
      "ikota yesi-2",
      "ikota yesi-3",
      "ikota yesi-4"
    ],
    script => undef,
    territory => undef,
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  __[ zu-ZA ]__
  {
    am_pm_abbreviated => [
      "AM",
      "PM"
    ],
    available_formats => {
      E => "ccc",
      EHm => "E HH:mm",
      EHms => "E HH:mm:ss",
      Ed => "d E",
      Ehm => "E h:mm a",
      Ehms => "E h:mm:ss a",
      Gy => "G y",
      GyMMM => "G y MMM",
      GyMMMEd => "G y MMM d, E",
      GyMMMd => "G y MMM d",
      H => "HH",
      Hm => "HH:mm",
      Hms => "HH:mm:ss",
      Hmsv => "HH:mm:ss v",
      Hmv => "HH:mm v",
      M => "L",
      MEd => "E, M/d",
      MMM => "LLL",
      MMMEd => "E, MMM d",
      MMMMd => "MMMM d",
      MMMd => "MMM d",
      Md => "M/d",
      d => "d",
      h => "h a",
      hm => "h:mm a",
      hms => "h:mm:ss a",
      hmsv => "h:mm:ss a v",
      hmv => "h:mm a v",
      ms => "mm:ss",
      y => "y",
      yM => "M/y",
      yMEd => "E, M/d/y",
      yMMM => "MMM y",
      yMMMEd => "E, MMM d, y",
      yMMMM => "MMMM y",
      yMMMd => "MMM d, y",
      yMd => "M/d/y",
      yQQQ => "QQQ y",
      yQQQQ => "QQQQ y"
    },
    code => "zu-ZA",
    date_format_full => "EEEE, MMMM d, y",
    date_format_long => "MMMM d, y",
    date_format_medium => "MMM d, y",
    date_format_short => "M/d/yy",
    datetime_format_full => "{1} {0}",
    datetime_format_long => "{1} {0}",
    datetime_format_medium => "{1} {0}",
    datetime_format_short => "{1} {0}",
    day_format_abbreviated => [
      "Mso",
      "Bil",
      "Tha",
      "Sin",
      "Hla",
      "Mgq",
      "Son"
    ],
    day_format_narrow => [
      "M",
      "B",
      "T",
      "S",
      "H",
      "M",
      "S"
    ],
    day_format_wide => [
      "UMsombuluko",
      "ULwesibili",
      "ULwesithathu",
      "ULwesine",
      "ULwesihlanu",
      "UMgqibelo",
      "ISonto"
    ],
    day_stand_alone_abbreviated => [
      "Mso",
      "Bil",
      "Tha",
      "Sin",
      "Hla",
      "Mgq",
      "Son"
    ],
    day_stand_alone_narrow => [
      "M",
      "B",
      "T",
      "S",
      "H",
      "M",
      "S"
    ],
    day_stand_alone_wide => [
      "UMsombuluko",
      "ULwesibili",
      "ULwesithathu",
      "ULwesine",
      "ULwesihlanu",
      "UMgqibelo",
      "ISonto"
    ],
    era_abbreviated => [
      "BC",
      "AD"
    ],
    era_narrow => [
      "BC",
      "AD"
    ],
    era_wide => [
      "BC",
      "AD"
    ],
    first_day_of_week => 7,
    glibc_date_1_format => "%a %b %e %H:%M:%S %Z %Y",
    glibc_date_format => "%d/%m/%Y",
    glibc_datetime_format => "%a %d %b %Y %T %Z",
    glibc_time_12_format => "%I:%M:%S %p",
    glibc_time_format => "%T",
    language => "Zulu",
    month_format_abbreviated => [
      "Jan",
      "Feb",
      "Mas",
      "Eph",
      "Mey",
      "Jun",
      "Jul",
      "Aga",
      "Sep",
      "Okt",
      "Nov",
      "Dis"
    ],
    month_format_narrow => [
      "J",
      "F",
      "M",
      "E",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_format_wide => [
      "Januwari",
      "Februwari",
      "Mashi",
      "Ephreli",
      "Meyi",
      "Juni",
      "Julayi",
      "Agasti",
      "Septhemba",
      "Okthoba",
      "Novemba",
      "Disemba"
    ],
    month_stand_alone_abbreviated => [
      "Jan",
      "Feb",
      "Mas",
      "Eph",
      "Mey",
      "Jun",
      "Jul",
      "Aga",
      "Sep",
      "Okt",
      "Nov",
      "Dis"
    ],
    month_stand_alone_narrow => [
      "J",
      "F",
      "M",
      "A",
      "M",
      "J",
      "J",
      "A",
      "S",
      "O",
      "N",
      "D"
    ],
    month_stand_alone_wide => [
      "Januwari",
      "Februwari",
      "Mashi",
      "Ephreli",
      "Meyi",
      "Juni",
      "Julayi",
      "Agasti",
      "Septhemba",
      "Okthoba",
      "Novemba",
      "Disemba"
    ],
    name => "Zulu South Africa",
    native_language => "isiZulu",
    native_name => "isiZulu i-South Africa",
    native_script => undef,
    native_territory => "i-South Africa",
    native_variant => undef,
    quarter_format_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_format_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_format_wide => [
      "ikota yesi-1",
      "ikota yesi-2",
      "ikota yesi-3",
      "ikota yesi-4"
    ],
    quarter_stand_alone_abbreviated => [
      "Q1",
      "Q2",
      "Q3",
      "Q4"
    ],
    quarter_stand_alone_narrow => [
      1,
      2,
      3,
      4
    ],
    quarter_stand_alone_wide => [
      "ikota yesi-1",
      "ikota yesi-2",
      "ikota yesi-3",
      "ikota yesi-4"
    ],
    script => undef,
    territory => "South Africa",
    time_format_full => "h:mm:ss a zzzz",
    time_format_long => "h:mm:ss a z",
    time_format_medium => "h:mm:ss a",
    time_format_short => "h:mm a",
    variant => undef,
    version => 28
  }
  
  __END__
  
  =pod
  
  =encoding UTF-8
  
  =head1 DESCRIPTION
  
  There are no user-facing parts in this module.
  
  =cut
DATETIME_LOCALE_DATA

$fatpacked{"DateTime/Locale/FromData.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_LOCALE_FROMDATA';
  package DateTime::Locale::FromData;use strict;use warnings;use DateTime::Locale::Util qw(parse_locale_code);use Params::Validate qw(validate_pos);our$VERSION='1.02';my@FormatLengths;BEGIN {my@methods=qw(code name language script territory variant native_name native_language native_script native_territory native_variant am_pm_abbreviated date_format_full date_format_long date_format_medium date_format_short time_format_full time_format_long time_format_medium time_format_short day_format_abbreviated day_format_narrow day_format_wide day_stand_alone_abbreviated day_stand_alone_narrow day_stand_alone_wide month_format_abbreviated month_format_narrow month_format_wide month_stand_alone_abbreviated month_stand_alone_narrow month_stand_alone_wide quarter_format_abbreviated quarter_format_narrow quarter_format_wide quarter_stand_alone_abbreviated quarter_stand_alone_narrow quarter_stand_alone_wide era_abbreviated era_narrow era_wide default_date_format_length default_time_format_length first_day_of_week version glibc_datetime_format glibc_date_format glibc_date_1_format glibc_time_format glibc_time_12_format);for my$meth (@methods){my$sub=sub {$_[0]->{$meth}};no strict 'refs';*{$meth}=$sub}@FormatLengths=qw(short medium long full);for my$length (@FormatLengths){my$meth='datetime_format_' .$length;my$key='computed_' .$meth;my$sub=sub {my$self=shift;return$self->{$key}if exists$self->{$key};return$self->{$key}=$self->_make_datetime_format($length)};no strict 'refs';*{$meth}=$sub}}sub new {my$class=shift;my$data=shift;return bless {%{$data},default_date_format_length=>'medium',default_time_format_length=>'medium',},$class}sub date_format_default {return $_[0]->date_format_medium}sub time_format_default {return $_[0]->time_format_medium}sub datetime_format {return $_[0]->{datetime_format_medium}}sub datetime_format_default {return $_[0]->datetime_format_medium}sub _make_datetime_format {my$self=shift;my$length=shift;my$dt_key='datetime_format_' .$length;my$date_meth='date_format_' .$length;my$time_meth='time_format_' .$length;my$dt_format=$self->{$dt_key};$dt_format =~ s/\{0\}/$self->$time_meth/eg;$dt_format =~ s/\{1\}/$self->$date_meth/eg;return$dt_format}sub set_default_date_format_length {my$self=shift;my ($l)=validate_pos(@_,{regex=>qr/^(?:full|long|medium|short)$/i });$self->{default_date_format_length}=lc$l}sub set_default_time_format_length {my$self=shift;my ($l)=validate_pos(@_,{regex=>qr/^(?:full|long|medium|short)/i });$self->{default_time_format_length}=lc$l}sub date_formats {my%formats;for my$length (@FormatLengths){my$meth='date_format_' .$length;$formats{$length}=$_[0]->$meth}return \%formats}sub time_formats {my%formats;for my$length (@FormatLengths){my$meth='time_format_' .$length;$formats{$length}=$_[0]->$meth}return \%formats}sub available_formats {my$self=shift;$self->{computed_available_formats}||= [sort keys %{$self->_available_formats}];return @{$self->{computed_available_formats}}}sub format_for {my$self=shift;my$for=shift;return$self->_available_formats->{$for}}sub _available_formats {$_[0]->{available_formats}}sub prefers_24_hour_time {my$self=shift;return$self->{prefers_24_hour_time}if exists$self->{prefers_24_hour_time};$self->{prefers_24_hour_time}=$self->time_format_short =~ /h|K/ ? 0 : 1}sub language_code {my$self=shift;return ($self->{parsed_code}||= {parse_locale_code($self->code)})->{language}}sub script_code {my$self=shift;return ($self->{parsed_code}||= {parse_locale_code($self->code)})->{script}}sub territory_code {my$self=shift;return ($self->{parsed_code}||= {parse_locale_code($self->code)})->{territory}}sub variant_code {my$self=shift;return ($self->{parsed_code}||= {parse_locale_code($self->code)})->{variant}}sub id {$_[0]->code}sub language_id {$_[0]->language_code}sub script_id {$_[0]->script_code}sub territory_id {$_[0]->territory_code}sub variant_id {$_[0]->variant_code}sub STORABLE_freeze {my$self=shift;my$cloning=shift;return if$cloning;return$self->code}sub STORABLE_thaw {my$self=shift;shift;my$serialized=shift;my$obj=DateTime::Locale->load($serialized);%{$self}=%{$obj};return$self}1;
DATETIME_LOCALE_FROMDATA

$fatpacked{"DateTime/Locale/Util.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_LOCALE_UTIL';
  package DateTime::Locale::Util;use strict;use warnings;use Exporter qw(import);our$VERSION='1.02';our@EXPORT_OK='parse_locale_code';sub parse_locale_code {my@pieces=split /-/,$_[0];return unless@pieces;my%codes=(language=>lc shift@pieces);if (@pieces==1){if (length$pieces[0]==2){$codes{territory}=uc shift@pieces}}elsif (@pieces==3){$codes{script}=_tc(shift@pieces);$codes{territory}=uc shift@pieces;$codes{variant}=uc shift@pieces}elsif (@pieces==2){if (length$pieces[1]==2){$codes{script}=_tc(shift@pieces);$codes{territory}=uc shift@pieces}else {$codes{territory}=uc shift@pieces;$codes{variant}=uc shift@pieces}}return%codes}sub _tc {return ucfirst lc $_[0]}1;
DATETIME_LOCALE_UTIL

$fatpacked{"DateTime/PP.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_PP';
  package DateTime::PP;use strict;use warnings;our$VERSION='1.21';$DateTime::IsPurePerl=1;my@MonthLengths=(31,28,31,30,31,30,31,31,30,31,30,31);my@LeapYearMonthLengths=@MonthLengths;$LeapYearMonthLengths[1]++;my@EndOfLastMonthDayOfYear;{my$x=0;for my$length (@MonthLengths){push@EndOfLastMonthDayOfYear,$x;$x += $length}}my@EndOfLastMonthDayOfLeapYear=@EndOfLastMonthDayOfYear;$EndOfLastMonthDayOfLeapYear[$_]++ for 2 .. 11;sub _time_as_seconds {shift;my ($hour,$min,$sec)=@_;$hour ||= 0;$min ||= 0;$sec ||= 0;my$secs=$hour * 3600 + $min * 60 + $sec;return$secs}sub _rd2ymd {my$class=shift;use integer;my$d=shift;my$rd=$d;my$yadj=0;my ($c,$y,$m);if (($d += 306)<= 0){$yadj=-(-$d / 146097 + 1);$d -= $yadj * 146097}$c=($d * 4 - 1)/ 146097;$d -= $c * 146097 / 4;$y=($d * 4 - 1)/ 1461;$d -= $y * 1461 / 4;$m=($d * 12 + 1093)/ 367;$d -= ($m * 367 - 1094)/ 12;$y += $c * 100 + $yadj * 400;++$y,$m -= 12 if$m > 12;if ($_[0]){my$dow;if ($rd < -6){$dow=($rd + 6)% 7;$dow += $dow ? 8 : 1}else {$dow=(($rd + 6)% 7)+ 1}my$doy=$class->_end_of_last_month_day_of_year($y,$m);$doy += $d;my$quarter;{no integer;$quarter=int((1 / 3.1)* $m)+ 1}my$qm=(3 * $quarter)- 2;my$doq =($doy - $class->_end_of_last_month_day_of_year($y,$qm));return ($y,$m,$d,$dow,$doy,$quarter,$doq)}return ($y,$m,$d)}sub _ymd2rd {shift;use integer;my ($y,$m,$d)=@_;my$adj;if ($m <= 2){$y -= ($adj=(14 - $m)/ 12);$m += 12 * $adj}elsif ($m > 14){$y += ($adj=($m - 3)/ 12);$m -= 12 * $adj}if ($y < 0){$d -= 146097 * ($adj=(399 - $y)/ 400);$y += 400 * $adj}$d += ($m * 367 - 1094)/ 12 + $y % 100 * 1461 / 4 + ($y / 100 * 36524 + $y / 400)- 306}sub _seconds_as_components {shift;my$secs=shift;my$utc_secs=shift;my$modifier=shift || 0;use integer;$secs -= $modifier;my$hour=$secs / 3600;$secs -= $hour * 3600;my$minute=$secs / 60;my$second=$secs - ($minute * 60);if ($utc_secs && $utc_secs >= 86400){die "Invalid UTC RD seconds value: $utc_secs" if$utc_secs > 86401;$second += $utc_secs - 86400 + 60;$minute=59;$hour--;$hour=23 if$hour < 0}return ($hour,$minute,$second)}sub _end_of_last_month_day_of_year {my$class=shift;my ($y,$m)=@_;$m--;return ($class->_is_leap_year($y)? $EndOfLastMonthDayOfLeapYear[$m]: $EndOfLastMonthDayOfYear[$m])}sub _is_leap_year {shift;my$year=shift;return 0 if$year==DateTime::INFINITY()|| $year==DateTime::NEG_INFINITY();return 0 if$year % 4;return 1 if$year % 100;return 0 if$year % 400;return 1}sub _day_length {DateTime::LeapSecond::day_length($_[1])}sub _accumulated_leap_seconds {DateTime::LeapSecond::leap_seconds($_[1])}my@subs=qw(_time_as_seconds _rd2ymd _ymd2rd _seconds_as_components _end_of_last_month_day_of_year _is_leap_year _day_length _accumulated_leap_seconds);for my$sub (@subs){no strict 'refs';*{'DateTime::' .$sub}=__PACKAGE__->can($sub)}require DateTime::PPExtra;1;
DATETIME_PP

$fatpacked{"DateTime/PPExtra.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_PPEXTRA';
  package DateTime::PPExtra;use strict;use warnings;our$VERSION='1.21';use DateTime::LeapSecond;sub _normalize_tai_seconds {return if grep {$_==DateTime::INFINITY()|| $_==DateTime::NEG_INFINITY()}@_[1,2 ];use integer;my$adj;if ($_[2]< 0){$adj=($_[2]- 86399)/ 86400}else {$adj=$_[2]/ 86400}$_[1]+= $adj;$_[2]-= $adj * 86400}sub _normalize_leap_seconds {my$delta_days;use integer;if ($_[2]< 0){$delta_days=($_[2]- 86399)/ 86400}else {$delta_days=$_[2]/ 86400}my$new_day=$_[1]+ $delta_days;my$delta_seconds =(86400 * $delta_days)+ DateTime::LeapSecond::leap_seconds($new_day)- DateTime::LeapSecond::leap_seconds($_[1]);$_[2]-= $delta_seconds;$_[1]=$new_day;my$day_length=DateTime::LeapSecond::day_length($new_day);if ($_[2]>= $day_length){$_[2]-= $day_length;$_[1]++}elsif ($_[2]< 0){$day_length=DateTime::LeapSecond::day_length($new_day - 1);$_[2]+= $day_length;$_[1]--}}my@subs=qw(_normalize_tai_seconds _normalize_leap_seconds);for my$sub (@subs){no strict 'refs';*{'DateTime::' .$sub}=__PACKAGE__->can($sub)}1;
DATETIME_PPEXTRA

$fatpacked{"DateTime/TimeZone.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE';
  package DateTime::TimeZone;$DateTime::TimeZone::VERSION='1.95';use 5.006;use strict;use warnings;use DateTime::TimeZone::Catalog;use DateTime::TimeZone::Floating;use DateTime::TimeZone::Local;use DateTime::TimeZone::OffsetOnly;use DateTime::TimeZone::OlsonDB::Change;use DateTime::TimeZone::UTC;use Module::Runtime qw(require_module);use Params::Validate 0.72 qw(validate validate_pos SCALAR ARRAYREF BOOLEAN);use Try::Tiny;use constant INFINITY=>100**1000;use constant NEG_INFINITY=>-1 * (100**1000);use constant UTC_START=>0;use constant UTC_END=>1;use constant LOCAL_START=>2;use constant LOCAL_END=>3;use constant OFFSET=>4;use constant IS_DST=>5;use constant SHORT_NAME=>6;my%SpecialName=map {$_=>1}qw(EST MST HST CET EET MET WET EST5EDT CST6CDT MST7MDT PST8PDT);sub new {my$class=shift;my%p=validate(@_,{name=>{type=>SCALAR }},);if (exists$DateTime::TimeZone::Catalog::LINKS{$p{name}}){$p{name}=$DateTime::TimeZone::Catalog::LINKS{$p{name}}}elsif (exists$DateTime::TimeZone::Catalog::LINKS{uc$p{name}}){$p{name}=$DateTime::TimeZone::Catalog::LINKS{uc$p{name}}}unless ($p{name}=~ m{/} || $SpecialName{$p{name}}){if ($p{name}eq 'floating'){return DateTime::TimeZone::Floating->instance}if ($p{name}eq 'local'){return DateTime::TimeZone::Local->TimeZone()}if ($p{name}eq 'UTC' || $p{name}eq 'Z'){return DateTime::TimeZone::UTC->instance}return DateTime::TimeZone::OffsetOnly->new(offset=>$p{name})}my$subclass=$p{name};$subclass =~ s{/}{::}g;$subclass =~ s/-(\d)/_Minus$1/;$subclass =~ s/\+/_Plus/;$subclass =~ s/-/_/g;my$real_class="DateTime::TimeZone::$subclass";die "The timezone '$p{name}' is an invalid name.\n" unless$real_class =~ /^\w+(::\w+)*$/;unless ($real_class->can('instance')){($real_class)=$real_class =~ m{\A([a-zA-Z0-9_]+(?:::[a-zA-Z0-9_]+)*)\z};my$e;try {local$SIG{__DIE__};require_module($real_class)}catch {$e=$_};if ($e){my$regex=join '.',split /::/,$real_class;$regex .= '\\.pm';if ($e =~ /^Can't locate $regex/i){die "The timezone '$p{name}' could not be loaded, or is an invalid name.\n"}else {die$e}}}my$zone=$real_class->instance(name=>$p{name},is_olson=>1);if ($zone->is_olson()){my$object_version =$zone->can('olson_version')? $zone->olson_version(): 'unknown';my$catalog_version=DateTime::TimeZone::Catalog->OlsonVersion();if ($object_version ne $catalog_version){warn "Loaded $real_class, which is from a different version ($object_version) of the Olson database than this installation of DateTime::TimeZone ($catalog_version).\n"}}return$zone}sub _init {my$class=shift;my%p=validate(@_,{name=>{type=>SCALAR },spans=>{type=>ARRAYREF },is_olson=>{type=>BOOLEAN,default=>0 },},);my$self=bless {name=>$p{name},spans=>$p{spans},is_olson=>$p{is_olson},},$class;for my$k (qw(last_offset last_observance rules max_year)){my$m="_$k";$self->{$k}=$self->$m()if$self->can($m)}return$self}sub is_olson {$_[0]->{is_olson}}sub is_dst_for_datetime {my$self=shift;my$span=$self->_span_for_datetime('utc',$_[0]);return$span->[IS_DST]}sub offset_for_datetime {my$self=shift;my$span=$self->_span_for_datetime('utc',$_[0]);return$span->[OFFSET]}sub offset_for_local_datetime {my$self=shift;my$span=$self->_span_for_datetime('local',$_[0]);return$span->[OFFSET]}sub short_name_for_datetime {my$self=shift;my$span=$self->_span_for_datetime('utc',$_[0]);return$span->[SHORT_NAME]}sub _span_for_datetime {my$self=shift;my$type=shift;my$dt=shift;my$method=$type .'_rd_as_seconds';my$end=$type eq 'utc' ? UTC_END : LOCAL_END;my$span;my$seconds=$dt->$method();if ($seconds < $self->max_span->[$end]){$span=$self->_spans_binary_search($type,$seconds)}else {my$until_year=$dt->utc_year + 1;$span=$self->_generate_spans_until_match($until_year,$seconds,$type)}unless (defined$span){my$err='Invalid local time for date';$err .= ' ' .$dt->iso8601 if$type eq 'utc';$err .= ' in time zone: ' .$self->name;$err .= "\n";die$err}return$span}sub _spans_binary_search {my$self=shift;my ($type,$seconds)=@_;my ($start,$end)=_keys_for_type($type);my$min=0;my$max=scalar @{$self->{spans}}+ 1;my$i=int($max / 2);$i++ if$max % 2 && $max!=3;$i=0 if @{$self->{spans}}==1;while (1){my$current=$self->{spans}[$i];if ($seconds < $current->[$start]){$max=$i;my$c=int(($i - $min)/ 2);$c ||= 1;$i -= $c;return if$i < $min}elsif ($seconds >= $current->[$end]){$min=$i;my$c=int(($max - $i)/ 2);$c ||= 1;$i += $c;return if$i >= $max}else {if ($current->[IS_DST]&& $type eq 'local'){return$current if$current->[UTC_END]==INFINITY;my$next=$self->{spans}[$i + 1 ];$next ||= $self->_generate_next_span;die "No next span in $self->{max_year}" unless defined$next;if ((!$next->[IS_DST])&& $next->[$start]<= $seconds && $seconds <= $next->[$end]){return$next}}return$current}}}sub _generate_next_span {my$self=shift;my$last_idx=$#{$self->{spans}};my$max_span=$self->max_span;$self->_generate_spans_until_match($self->{max_year}+ 2,$max_span->[UTC_END]+ (366 * 86400),'utc');return$self->{spans}[$last_idx + 1 ]}sub _generate_spans_until_match {my$self=shift;my$generate_until_year=shift;my$seconds=shift;my$type=shift;my@changes;my@rules=@{$self->_rules};for my$year ($self->{max_year}.. $generate_until_year){for (my$x=0;$x < @rules;$x++ ){my$last_offset_from_std;if (@rules==2){$last_offset_from_std =$x ? $rules[0]->offset_from_std : $rules[1]->offset_from_std}elsif (@rules==1){$last_offset_from_std=$rules[0]->offset_from_std}else {my$count=scalar@rules;die "Cannot generate future changes for zone with $count infinite rules\n"}my$rule=$rules[$x];my$next=$rule->utc_start_datetime_for_year($year,$self->{last_offset},$last_offset_from_std);next if$next->utc_rd_as_seconds < $self->max_span->[UTC_END];push@changes,DateTime::TimeZone::OlsonDB::Change->new(type=>'rule',utc_start_datetime=>$next,local_start_datetime=>$next + DateTime::Duration->new(seconds=>$self->{last_observance}->total_offset + $rule->offset_from_std),short_name=>$self->{last_observance}->formatted_short_name($rule->letter),observance=>$self->{last_observance},rule=>$rule,)}}$self->{max_year}=$generate_until_year;my@sorted =sort {$a->utc_start_datetime <=> $b->utc_start_datetime}@changes;my ($start,$end)=_keys_for_type($type);my$match;for (my$x=1;$x < @sorted;$x++ ){my$last_total_offset =$x==1 ? $self->max_span->[OFFSET]: $sorted[$x - 2 ]->total_offset;my$span=DateTime::TimeZone::OlsonDB::Change::two_changes_as_span(@sorted[$x - 1,$x ],$last_total_offset);$span=_span_as_array($span);push @{$self->{spans}},$span;$match=$span if$seconds >= $span->[$start]&& $seconds < $span->[$end]}return$match}sub max_span {$_[0]->{spans}[-1]}sub _keys_for_type {$_[0]eq 'utc' ? (UTC_START,UTC_END): (LOCAL_START,LOCAL_END)}sub _span_as_array {[@{$_[0]}{qw(utc_start utc_end local_start local_end offset is_dst short_name) }]}sub is_floating {0}sub is_utc {0}sub has_dst_changes {0}sub name {$_[0]->{name}}sub category {(split /\//,$_[0]->{name},2)[0]}sub is_valid_name {my$class=shift;my$name=shift;my$tz=try {local$SIG{__DIE__};$class->new(name=>$name)};return$tz && $tz->isa('DateTime::TimeZone')? 1 : 0}sub STORABLE_freeze {my$self=shift;return$self->name}sub STORABLE_thaw {my$self=shift;my$cloning=shift;my$serialized=shift;my$class=ref$self || $self;my$obj;if ($class->isa(__PACKAGE__)){$obj=__PACKAGE__->new(name=>$serialized)}else {$obj=$class->new(name=>$serialized)}%$self=%$obj;return$self}sub offset_as_seconds {my$offset=shift;$offset=shift if try {local$SIG{__DIE__};$offset->isa('DateTime::TimeZone')};return undef unless defined$offset;return 0 if$offset eq '0';my ($sign,$hours,$minutes,$seconds);if ($offset =~ /^([\+\-])?(\d\d?):(\d\d)(?::(\d\d))?$/){($sign,$hours,$minutes,$seconds)=($1,$2,$3,$4)}elsif ($offset =~ /^([\+\-])?(\d\d)(\d\d)(\d\d)?$/){($sign,$hours,$minutes,$seconds)=($1,$2,$3,$4)}else {return undef}$sign='+' unless defined$sign;return undef unless$hours >= 0 && $hours <= 99;return undef unless$minutes >= 0 && $minutes <= 59;return undef unless!defined($seconds)|| ($seconds >= 0 && $seconds <= 59);my$total=$hours * 3600 + $minutes * 60;$total += $seconds if$seconds;$total *= -1 if$sign eq '-';return$total}sub offset_as_string {my$offset=shift;$offset=shift if try {local$SIG{__DIE__};$offset->isa('DateTime::TimeZone')};return undef unless defined$offset;return undef unless$offset >= -359999 && $offset <= 359999;my$sign=$offset < 0 ? '-' : '+';$offset=abs($offset);my$hours=int($offset / 3600);$offset %= 3600;my$mins=int($offset / 60);$offset %= 60;my$secs=int($offset);return ($secs ? sprintf('%s%02d%02d%02d',$sign,$hours,$mins,$secs): sprintf('%s%02d%02d',$sign,$hours,$mins))}sub all_names {return wantarray ? @DateTime::TimeZone::Catalog::ALL : [@DateTime::TimeZone::Catalog::ALL]}sub categories {return wantarray ? @DateTime::TimeZone::Catalog::CATEGORY_NAMES : [@DateTime::TimeZone::Catalog::CATEGORY_NAMES]}sub links {return wantarray ? %DateTime::TimeZone::Catalog::LINKS : {%DateTime::TimeZone::Catalog::LINKS}}sub names_in_category {shift if $_[0]->isa('DateTime::TimeZone');return unless exists$DateTime::TimeZone::Catalog::CATEGORIES{$_[0]};return wantarray ? @{$DateTime::TimeZone::Catalog::CATEGORIES{$_[0]}}: $DateTime::TimeZone::Catalog::CATEGORIES{$_[0]}}sub countries {wantarray ? (sort keys%DateTime::TimeZone::Catalog::ZONES_BY_COUNTRY): [sort keys%DateTime::TimeZone::Catalog::ZONES_BY_COUNTRY ]}sub names_in_country {shift if $_[0]->isa('DateTime::TimeZone');return unless exists$DateTime::TimeZone::Catalog::ZONES_BY_COUNTRY{lc $_[0]};return wantarray ? @{$DateTime::TimeZone::Catalog::ZONES_BY_COUNTRY{lc $_[0]}}: $DateTime::TimeZone::Catalog::ZONES_BY_COUNTRY{lc $_[0]}}1;
DATETIME_TIMEZONE

$fatpacked{"DateTime/TimeZone/Africa/Abidjan.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AFRICA_ABIDJAN';
  package DateTime::TimeZone::Africa::Abidjan;$DateTime::TimeZone::Africa::Abidjan::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Africa::Abidjan::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60305300168,DateTime::TimeZone::NEG_INFINITY,60305299200,-968,0,'LMT',],[60305300168,DateTime::TimeZone::INFINITY,60305300168,DateTime::TimeZone::INFINITY,0,0,'GMT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AFRICA_ABIDJAN

$fatpacked{"DateTime/TimeZone/Africa/Accra.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AFRICA_ACCRA';
  package DateTime::TimeZone::Africa::Accra;$DateTime::TimeZone::Africa::Accra::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Africa::Accra::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60494688052,DateTime::TimeZone::NEG_INFINITY,60494688000,-52,0,'LMT',],[60494688052,60578841600,60494688052,60578841600,0,0,'GMT',],[60578841600,60589294800,60578842800,60589296000,1200,1,'GHST',],[60589294800,60610377600,60589294800,60610377600,0,0,'GMT',],[60610377600,60620830800,60610378800,60620832000,1200,1,'GHST',],[60620830800,60641913600,60620830800,60641913600,0,0,'GMT',],[60641913600,60652366800,60641914800,60652368000,1200,1,'GHST',],[60652366800,60673449600,60652366800,60673449600,0,0,'GMT',],[60673449600,60683902800,60673450800,60683904000,1200,1,'GHST',],[60683902800,60705072000,60683902800,60705072000,0,0,'GMT',],[60705072000,60715525200,60705073200,60715526400,1200,1,'GHST',],[60715525200,60736608000,60715525200,60736608000,0,0,'GMT',],[60736608000,60747061200,60736609200,60747062400,1200,1,'GHST',],[60747061200,60768144000,60747061200,60768144000,0,0,'GMT',],[60768144000,60778597200,60768145200,60778598400,1200,1,'GHST',],[60778597200,60799680000,60778597200,60799680000,0,0,'GMT',],[60799680000,60810133200,60799681200,60810134400,1200,1,'GHST',],[60810133200,60831302400,60810133200,60831302400,0,0,'GMT',],[60831302400,60841755600,60831303600,60841756800,1200,1,'GHST',],[60841755600,60862838400,60841755600,60862838400,0,0,'GMT',],[60862838400,60873291600,60862839600,60873292800,1200,1,'GHST',],[60873291600,60894374400,60873291600,60894374400,0,0,'GMT',],[60894374400,60904827600,60894375600,60904828800,1200,1,'GHST',],[60904827600,60925910400,60904827600,60925910400,0,0,'GMT',],[60925910400,60936363600,60925911600,60936364800,1200,1,'GHST',],[60936363600,60957532800,60936363600,60957532800,0,0,'GMT',],[60957532800,60967986000,60957534000,60967987200,1200,1,'GHST',],[60967986000,60989068800,60967986000,60989068800,0,0,'GMT',],[60989068800,60999522000,60989070000,60999523200,1200,1,'GHST',],[60999522000,61020604800,60999522000,61020604800,0,0,'GMT',],[61020604800,61031058000,61020606000,61031059200,1200,1,'GHST',],[61031058000,61052140800,61031058000,61052140800,0,0,'GMT',],[61052140800,61062594000,61052142000,61062595200,1200,1,'GHST',],[61062594000,61083763200,61062594000,61083763200,0,0,'GMT',],[61083763200,61094216400,61083764400,61094217600,1200,1,'GHST',],[61094216400,61115299200,61094216400,61115299200,0,0,'GMT',],[61115299200,61125752400,61115300400,61125753600,1200,1,'GHST',],[61125752400,61146835200,61125752400,61146835200,0,0,'GMT',],[61146835200,61157288400,61146836400,61157289600,1200,1,'GHST',],[61157288400,61178371200,61157288400,61178371200,0,0,'GMT',],[61178371200,61188824400,61178372400,61188825600,1200,1,'GHST',],[61188824400,61209993600,61188824400,61209993600,0,0,'GMT',],[61209993600,61220446800,61209994800,61220448000,1200,1,'GHST',],[61220446800,61241529600,61220446800,61241529600,0,0,'GMT',],[61241529600,61251982800,61241530800,61251984000,1200,1,'GHST',],[61251982800,61273065600,61251982800,61273065600,0,0,'GMT',],[61273065600,61283518800,61273066800,61283520000,1200,1,'GHST',],[61283518800,DateTime::TimeZone::INFINITY,61283518800,DateTime::TimeZone::INFINITY,0,0,'GMT',],];sub olson_version {'2016a'}sub has_dst_changes {23}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AFRICA_ACCRA

$fatpacked{"DateTime/TimeZone/Africa/Algiers.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AFRICA_ALGIERS';
  package DateTime::TimeZone::Africa::Algiers;$DateTime::TimeZone::Africa::Algiers::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Africa::Algiers::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59649004128,DateTime::TimeZone::NEG_INFINITY,59649004860,732,0,'LMT',],[59649004128,60279724239,59649004689,60279724800,561,0,'PMT',],[60279724239,60445868400,60279724239,60445868400,0,0,'WET',],[60445868400,60455286000,60445872000,60455289600,3600,1,'WEST',],[60455286000,60470319600,60455286000,60470319600,0,0,'WET',],[60470319600,60487340400,60470323200,60487344000,3600,1,'WEST',],[60487340400,60500559600,60487340400,60500559600,0,0,'WET',],[60500559600,60518790000,60500563200,60518793600,3600,1,'WEST',],[60518790000,60531404400,60518790000,60531404400,0,0,'WET',],[60531404400,60550239600,60531408000,60550243200,3600,1,'WEST',],[60550239600,60561644400,60550239600,60561644400,0,0,'WET',],[60561644400,60583417200,60561648000,60583420800,3600,1,'WEST',],[60583417200,60595686000,60583417200,60595686000,0,0,'WET',],[60595686000,60604239600,60595689600,60604243200,3600,1,'WEST',],[60604239600,61179318000,60604239600,61179318000,0,0,'WET',],[61179318000,61185196800,61179321600,61185200400,3600,1,'WEST',],[61185196800,61193671200,61185196800,61193671200,0,0,'WET',],[61193671200,61323181200,61193674800,61323184800,3600,0,'CET',],[61323181200,61339420800,61323188400,61339428000,7200,1,'CEST',],[61339420800,61354630800,61339424400,61354634400,3600,0,'CET',],[61354630800,61369052400,61354638000,61369059600,7200,1,'CEST',],[61369052400,61402402800,61369056000,61402406400,3600,0,'CET',],[61402402800,61696252800,61402402800,61696252800,0,0,'WET',],[61696252800,61923654000,61696256400,61923657600,3600,0,'CET',],[61923654000,62177151600,61923654000,62177151600,0,0,'WET',],[62177151600,62190457200,62177155200,62190460800,3600,1,'WEST',],[62190457200,62367408000,62190457200,62367408000,0,0,'WET',],[62367408000,62381919600,62367411600,62381923200,3600,1,'WEST',],[62381919600,62395228800,62381923200,62395232400,3600,0,'CET',],[62395228800,62410957200,62395236000,62410964400,7200,1,'CEST',],[62410957200,62445423600,62410960800,62445427200,3600,0,'CET',],[62445423600,62461152000,62445423600,62461152000,0,0,'WET',],[62461152000,62477485200,62461155600,62477488800,3600,1,'WEST',],[62477485200,62493206400,62477485200,62493206400,0,0,'WET',],[62493206400,DateTime::TimeZone::INFINITY,62493210000,DateTime::TimeZone::INFINITY,3600,0,'CET',],];sub olson_version {'2016a'}sub has_dst_changes {13}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AFRICA_ALGIERS

$fatpacked{"DateTime/TimeZone/Africa/Bissau.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AFRICA_BISSAU';
  package DateTime::TimeZone::Africa::Bissau;$DateTime::TimeZone::Africa::Bissau::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Africa::Bissau::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60305302940,DateTime::TimeZone::NEG_INFINITY,60305299200,-3740,0,'LMT',],[60305302940,62293453200,60305299340,62293449600,-3600,0,'WAT',],[62293453200,DateTime::TimeZone::INFINITY,62293453200,DateTime::TimeZone::INFINITY,0,0,'GMT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AFRICA_BISSAU

$fatpacked{"DateTime/TimeZone/Africa/Cairo.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AFRICA_CAIRO';
  package DateTime::TimeZone::Africa::Cairo;$DateTime::TimeZone::Africa::Cairo::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Africa::Cairo::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59950274091,DateTime::TimeZone::NEG_INFINITY,59950281600,7509,0,'LMT',],[59950274091,61205839200,59950281291,61205846400,7200,0,'EET',],[61205839200,61212574800,61205850000,61212585600,10800,1,'EEST',],[61212574800,61229512800,61212582000,61229520000,7200,0,'EET',],[61229512800,61242814800,61229523600,61242825600,10800,1,'EEST',],[61242814800,61259839200,61242822000,61259846400,7200,0,'EET',],[61259839200,61277893200,61259850000,61277904000,10800,1,'EEST',],[61277893200,61291375200,61277900400,61291382400,7200,0,'EET',],[61291375200,61309861200,61291386000,61309872000,10800,1,'EEST',],[61309861200,61322997600,61309868400,61323004800,7200,0,'EET',],[61322997600,61341483600,61323008400,61341494400,10800,1,'EEST',],[61341483600,61355829600,61341490800,61355836800,7200,0,'EET',],[61355829600,61373019600,61355840400,61373030400,10800,1,'EEST',],[61373019600,61736594400,61373026800,61736601600,7200,0,'EET',],[61736594400,61749032400,61736605200,61749043200,10800,1,'EEST',],[61749032400,61767352800,61749039600,61767360000,7200,0,'EET',],[61767352800,61780568400,61767363600,61780579200,10800,1,'EEST',],[61780568400,61798892400,61780575600,61798899600,7200,0,'EET',],[61798892400,61812028800,61798903200,61812039600,10800,1,'EEST',],[61812028800,61830514800,61812036000,61830522000,7200,0,'EET',],[61830514800,61843651200,61830525600,61843662000,10800,1,'EEST',],[61843651200,61862050800,61843658400,61862058000,7200,0,'EET',],[61862050800,61875187200,61862061600,61875198000,10800,1,'EEST',],[61875187200,61893586800,61875194400,61893594000,7200,0,'EET',],[61893586800,61906723200,61893597600,61906734000,10800,1,'EEST',],[61906723200,61925122800,61906730400,61925130000,7200,0,'EET',],[61925122800,61938259200,61925133600,61938270000,10800,1,'EEST',],[61938259200,61956745200,61938266400,61956752400,7200,0,'EET',],[61956745200,61969881600,61956756000,61969892400,10800,1,'EEST',],[61969881600,61988281200,61969888800,61988288400,7200,0,'EET',],[61988281200,62001417600,61988292000,62001428400,10800,1,'EEST',],[62001417600,62019817200,62001424800,62019824400,7200,0,'EET',],[62019817200,62033040000,62019828000,62033050800,10800,1,'EEST',],[62033040000,62051353200,62033047200,62051360400,7200,0,'EET',],[62051353200,62064576000,62051364000,62064586800,10800,1,'EEST',],[62064576000,62082975600,62064583200,62082982800,7200,0,'EET',],[62082975600,62096198400,62082986400,62096209200,10800,1,'EEST',],[62096198400,62114511600,62096205600,62114518800,7200,0,'EET',],[62114511600,62127734400,62114522400,62127745200,10800,1,'EEST',],[62127734400,62146047600,62127741600,62146054800,7200,0,'EET',],[62146047600,62159270400,62146058400,62159281200,10800,1,'EEST',],[62159270400,62177583600,62159277600,62177590800,7200,0,'EET',],[62177583600,62190806400,62177594400,62190817200,10800,1,'EEST',],[62190806400,62209206000,62190813600,62209213200,7200,0,'EET',],[62209206000,62222428800,62209216800,62222439600,10800,1,'EEST',],[62222428800,62240742000,62222436000,62240749200,7200,0,'EET',],[62240742000,62253964800,62240752800,62253975600,10800,1,'EEST',],[62253964800,62272278000,62253972000,62272285200,7200,0,'EET',],[62272278000,62285500800,62272288800,62285511600,10800,1,'EEST',],[62285500800,62303814000,62285508000,62303821200,7200,0,'EET',],[62303814000,62317036800,62303824800,62317047600,10800,1,'EEST',],[62317036800,62335436400,62317044000,62335443600,7200,0,'EET',],[62335436400,62348659200,62335447200,62348670000,10800,1,'EEST',],[62348659200,62366972400,62348666400,62366979600,7200,0,'EET',],[62366972400,62380195200,62366983200,62380206000,10800,1,'EEST',],[62380195200,62398508400,62380202400,62398515600,7200,0,'EET',],[62398508400,62411731200,62398519200,62411742000,10800,1,'EEST',],[62411731200,62430044400,62411738400,62430051600,7200,0,'EET',],[62430044400,62443267200,62430055200,62443278000,10800,1,'EEST',],[62443267200,62461666800,62443274400,62461674000,7200,0,'EET',],[62461666800,62474889600,62461677600,62474900400,10800,1,'EEST',],[62474889600,62493202800,62474896800,62493210000,7200,0,'EET',],[62493202800,62506425600,62493213600,62506436400,10800,1,'EEST',],[62506425600,62532082800,62506432800,62532090000,7200,0,'EET',],[62532082800,62537961600,62532093600,62537972400,10800,1,'EEST',],[62537961600,62562495600,62537968800,62562502800,7200,0,'EET',],[62562495600,62569497600,62562506400,62569508400,10800,1,'EEST',],[62569497600,62587897200,62569504800,62587904400,7200,0,'EET',],[62587897200,62601120000,62587908000,62601130800,10800,1,'EEST',],[62601120000,62619433200,62601127200,62619440400,7200,0,'EET',],[62619433200,62632656000,62619444000,62632666800,10800,1,'EEST',],[62632656000,62650969200,62632663200,62650976400,7200,0,'EET',],[62650969200,62664192000,62650980000,62664202800,10800,1,'EEST',],[62664192000,62682505200,62664199200,62682512400,7200,0,'EET',],[62682505200,62695728000,62682516000,62695738800,10800,1,'EEST',],[62695728000,62714127600,62695735200,62714134800,7200,0,'EET',],[62714127600,62727350400,62714138400,62727361200,10800,1,'EEST',],[62727350400,62746095600,62727357600,62746102800,7200,0,'EET',],[62746095600,62758886400,62746106400,62758897200,10800,1,'EEST',],[62758886400,62777199600,62758893600,62777206800,7200,0,'EET',],[62777199600,62790422400,62777210400,62790433200,10800,1,'EEST',],[62790422400,62808735600,62790429600,62808742800,7200,0,'EET',],[62808735600,62821958400,62808746400,62821969200,10800,1,'EEST',],[62821958400,62840358000,62821965600,62840365200,7200,0,'EET',],[62840358000,62853580800,62840368800,62853591600,10800,1,'EEST',],[62853580800,62871894000,62853588000,62871901200,7200,0,'EET',],[62871894000,62885116800,62871904800,62885127600,10800,1,'EEST',],[62885116800,62903430000,62885124000,62903437200,7200,0,'EET',],[62903430000,62916652800,62903440800,62916663600,10800,1,'EEST',],[62916652800,62934703200,62916660000,62934710400,7200,0,'EET',],[62934703200,62948005200,62934714000,62948016000,10800,1,'EEST',],[62948005200,62966152800,62948012400,62966160000,7200,0,'EET',],[62966152800,62979454800,62966163600,62979465600,10800,1,'EEST',],[62979454800,62997602400,62979462000,62997609600,7200,0,'EET',],[62997602400,63010904400,62997613200,63010915200,10800,1,'EEST',],[63010904400,63029052000,63010911600,63029059200,7200,0,'EET',],[63029052000,63042354000,63029062800,63042364800,10800,1,'EEST',],[63042354000,63061106400,63042361200,63061113600,7200,0,'EET',],[63061106400,63074408400,63061117200,63074419200,10800,1,'EEST',],[63074408400,63092556000,63074415600,63092563200,7200,0,'EET',],[63092556000,63105858000,63092566800,63105868800,10800,1,'EEST',],[63105858000,63124005600,63105865200,63124012800,7200,0,'EET',],[63124005600,63137307600,63124016400,63137318400,10800,1,'EEST',],[63137307600,63155455200,63137314800,63155462400,7200,0,'EET',],[63155455200,63168757200,63155466000,63168768000,10800,1,'EEST',],[63168757200,63186904800,63168764400,63186912000,7200,0,'EET',],[63186904800,63200206800,63186915600,63200217600,10800,1,'EEST',],[63200206800,63218959200,63200214000,63218966400,7200,0,'EET',],[63218959200,63232261200,63218970000,63232272000,10800,1,'EEST',],[63232261200,63250408800,63232268400,63250416000,7200,0,'EET',],[63250408800,63263710800,63250419600,63263721600,10800,1,'EEST',],[63263710800,63281858400,63263718000,63281865600,7200,0,'EET',],[63281858400,63294555600,63281869200,63294566400,10800,1,'EEST',],[63294555600,63313308000,63294562800,63313315200,7200,0,'EET',],[63313308000,63324795600,63313318800,63324806400,10800,1,'EEST',],[63324795600,63344757600,63324802800,63344764800,7200,0,'EET',],[63344757600,63355640400,63344768400,63355651200,10800,1,'EEST',],[63355640400,63376207200,63355647600,63376214400,7200,0,'EET',],[63376207200,63386485200,63376218000,63386496000,10800,1,'EEST',],[63386485200,63408261600,63386492400,63408268800,7200,0,'EET',],[63408261600,63417157200,63408272400,63417168000,10800,1,'EEST',],[63417157200,63419752800,63417164400,63419760000,7200,0,'EET',],[63419752800,63421563600,63419763600,63421574400,10800,1,'EEST',],[63421563600,63535874400,63421570800,63535881600,7200,0,'EET',],[63535874400,63539499600,63535885200,63539510400,10800,1,'EEST',],[63539499600,63542527200,63539506800,63542534400,7200,0,'EET',],[63542527200,63547362000,63542538000,63547372800,10800,1,'EEST',],[63547362000,DateTime::TimeZone::INFINITY,63547369200,DateTime::TimeZone::INFINITY,7200,0,'EET',],];sub olson_version {'2016a'}sub has_dst_changes {63}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AFRICA_CAIRO

$fatpacked{"DateTime/TimeZone/Africa/Casablanca.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AFRICA_CASABLANCA';
  package DateTime::TimeZone::Africa::Casablanca;$DateTime::TimeZone::Africa::Casablanca::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Africa::Casablanca::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60362670620,DateTime::TimeZone::NEG_INFINITY,60362668800,-1820,0,'LMT',],[60362670620,61179321600,60362670620,61179321600,0,0,'WET',],[61179321600,61185193200,61179325200,61185196800,3600,1,'WEST',],[61185193200,61193664000,61185193200,61193664000,0,0,'WET',],[61193664000,61374495600,61193667600,61374499200,3600,1,'WEST',],[61374495600,61518441600,61374495600,61518441600,0,0,'WET',],[61518441600,61530534000,61518445200,61530537600,3600,1,'WEST',],[61530534000,62054251200,61530534000,62054251200,0,0,'WET',],[62054251200,62064572400,62054254800,62064576000,3600,1,'WEST',],[62064572400,62276947200,62064572400,62276947200,0,0,'WET',],[62276947200,62282905200,62276950800,62282908800,3600,1,'WEST',],[62282905200,62335440000,62282905200,62335440000,0,0,'WET',],[62335440000,62343385200,62335443600,62343388800,3600,1,'WEST',],[62343385200,62366976000,62343385200,62366976000,0,0,'WET',],[62366976000,62379932400,62366979600,62379936000,3600,1,'WEST',],[62379932400,62401190400,62379932400,62401190400,0,0,'WET',],[62401190400,62406716400,62401194000,62406720000,3600,1,'WEST',],[62406716400,62583926400,62406716400,62583926400,0,0,'WET',],[62583926400,62640601200,62583930000,62640604800,3600,0,'CET',],[62640601200,63347961600,62640601200,63347961600,0,0,'WET',],[63347961600,63355906800,63347965200,63355910400,3600,1,'WEST',],[63355906800,63379497600,63355906800,63379497600,0,0,'WET',],[63379497600,63386492400,63379501200,63386496000,3600,1,'WEST',],[63386492400,63408441600,63386492400,63408441600,0,0,'WET',],[63408441600,63416905200,63408445200,63416908800,3600,1,'WEST',],[63416905200,63437472000,63416905200,63437472000,0,0,'WET',],[63437472000,63447750000,63437475600,63447753600,3600,1,'WEST',],[63447750000,63471348000,63447750000,63471348000,0,0,'WET',],[63471348000,63478432800,63471351600,63478436400,3600,1,'WEST',],[63478432800,63481111200,63478432800,63481111200,0,0,'WET',],[63481111200,63484653600,63481114800,63484657200,3600,1,'WEST',],[63484653600,63502797600,63484653600,63502797600,0,0,'WET',],[63502797600,63508845600,63502801200,63508849200,3600,1,'WEST',],[63508845600,63511783200,63508845600,63511783200,0,0,'WET',],[63511783200,63518522400,63511786800,63518526000,3600,1,'WEST',],[63518522400,63531828000,63518522400,63531828000,0,0,'WET',],[63531828000,63539604000,63531831600,63539607600,3600,1,'WEST',],[63539604000,63542628000,63539604000,63542628000,0,0,'WET',],[63542628000,63549972000,63542631600,63549975600,3600,1,'WEST',],[63549972000,63563277600,63549972000,63563277600,0,0,'WET',],[63563277600,63569930400,63563281200,63569934000,3600,1,'WEST',],[63569930400,63572954400,63569930400,63572954400,0,0,'WET',],[63572954400,63581421600,63572958000,63581425200,3600,1,'WEST',],[63581421600,63594727200,63581421600,63594727200,0,0,'WET',],[63594727200,63600775200,63594730800,63600778800,3600,1,'WEST',],[63600775200,63603799200,63600775200,63603799200,0,0,'WET',],[63603799200,63613476000,63603802800,63613479600,3600,1,'WEST',],[63613476000,63626176800,63613476000,63626176800,0,0,'WET',],[63626176800,63631015200,63626180400,63631018800,3600,1,'WEST',],[63631015200,63634644000,63631015200,63634644000,0,0,'WET',],[63634644000,63644925600,63634647600,63644929200,3600,1,'WEST',],[63644925600,63657626400,63644925600,63657626400,0,0,'WET',],[63657626400,63661860000,63657630000,63661863600,3600,1,'WEST',],[63661860000,63664884000,63661860000,63664884000,0,0,'WET',],[63664884000,63676375200,63664887600,63676378800,3600,1,'WEST',],[63676375200,63689680800,63676375200,63689680800,0,0,'WET',],[63689680800,63692704800,63689684400,63692708400,3600,1,'WEST',],[63692704800,63695728800,63692704800,63695728800,0,0,'WET',],[63695728800,63707824800,63695732400,63707828400,3600,1,'WEST',],[63707824800,63721130400,63707824800,63721130400,0,0,'WET',],[63721130400,63722944800,63721134000,63722948400,3600,1,'WEST',],[63722944800,63725968800,63722944800,63725968800,0,0,'WET',],[63725968800,63739274400,63725972400,63739278000,3600,1,'WEST',],[63739274400,63752580000,63739274400,63752580000,0,0,'WET',],[63752580000,63753789600,63752583600,63753793200,3600,1,'WEST',],[63753789600,63756813600,63753789600,63756813600,0,0,'WET',],[63756813600,63771328800,63756817200,63771332400,3600,1,'WEST',],[63771328800,63787658400,63771328800,63787658400,0,0,'WET',],[63787658400,63802778400,63787662000,63802782000,3600,1,'WEST',],[63802778400,63817898400,63802778400,63817898400,0,0,'WET',],[63817898400,63834228000,63817902000,63834231600,3600,1,'WEST',],[63834228000,63848743200,63834228000,63848743200,0,0,'WET',],[63848743200,63865677600,63848746800,63865681200,3600,1,'WEST',],[63865677600,63879588000,63865677600,63879588000,0,0,'WET',],[63879588000,63897127200,63879591600,63897130800,3600,1,'WEST',],[63897127200,63910432800,63897127200,63910432800,0,0,'WET',],[63910432800,63928576800,63910436400,63928580400,3600,1,'WEST',],[63928576800,63941882400,63928576800,63941882400,0,0,'WET',],[63941882400,63960631200,63941886000,63960634800,3600,1,'WEST',],[63960631200,63973332000,63960631200,63973332000,0,0,'WET',],[63973332000,63992080800,63973335600,63992084400,3600,1,'WEST',],[63992080800,64004781600,63992080800,64004781600,0,0,'WET',],[64004781600,64023530400,64004785200,64023534000,3600,1,'WEST',],[64023530400,64036836000,64023530400,64036836000,0,0,'WET',],[64036836000,64054980000,64036839600,64054983600,3600,1,'WEST',],[64054980000,64068285600,64054980000,64068285600,0,0,'WET',],[64068285600,64086429600,64068289200,64086433200,3600,1,'WEST',],[64086429600,64099735200,64086429600,64099735200,0,0,'WET',],[64099735200,64118484000,64099738800,64118487600,3600,1,'WEST',],[64118484000,64131184800,64118484000,64131184800,0,0,'WET',],[64131184800,64149933600,64131188400,64149937200,3600,1,'WEST',],[64149933600,64162634400,64149933600,64162634400,0,0,'WET',],[64162634400,64181383200,64162638000,64181386800,3600,1,'WEST',],[64181383200,64194084000,64181383200,64194084000,0,0,'WET',],[64194084000,64212832800,64194087600,64212836400,3600,1,'WEST',],[64212832800,64226138400,64212832800,64226138400,0,0,'WET',],[64226138400,64243677600,64226142000,64243681200,3600,1,'WEST',],[64243677600,64257588000,64243677600,64257588000,0,0,'WET',],[64257588000,64275732000,64257591600,64275735600,3600,1,'WEST',],[64275732000,64289037600,64275732000,64289037600,0,0,'WET',],[64289037600,64307786400,64289041200,64307790000,3600,1,'WEST',],];sub olson_version {'2016a'}sub has_dst_changes {49}sub _max_year {2037}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {0}my$last_observance=bless({'format'=>'WE%sT','gmtoff'=>'0:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>725006,'local_rd_secs'=>82800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>725006,'utc_rd_secs'=>82800,'utc_year'=>1986 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>0,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>725006,'local_rd_secs'=>82800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>725006,'utc_rd_secs'=>82800,'utc_year'=>1986 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'3:00','from'=>'2013','in'=>'Oct','letter'=>'','name'=>'Morocco','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2026','in'=>'Mar','letter'=>'S','name'=>'Morocco','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AFRICA_CASABLANCA

$fatpacked{"DateTime/TimeZone/Africa/Ceuta.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AFRICA_CEUTA';
  package DateTime::TimeZone::Africa::Ceuta;$DateTime::TimeZone::Africa::Ceuta::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Africa::Ceuta::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59958231676,DateTime::TimeZone::NEG_INFINITY,59958230400,-1276,0,'LMT',],[59958231676,60505570800,59958231676,60505570800,0,0,'WET',],[60505570800,60518872800,60505574400,60518876400,3600,1,'WEST',],[60518872800,60683990400,60518872800,60683990400,0,0,'WET',],[60683990400,60693231600,60683990400,60693231600,0,0,'WET',],[60693231600,60708006000,60693235200,60708009600,3600,1,'WEST',],[60708006000,60756390000,60708006000,60756390000,0,0,'WET',],[60756390000,60770905200,60756393600,60770908800,3600,1,'WEST',],[60770905200,60787234800,60770905200,60787234800,0,0,'WET',],[60787234800,60802354800,60787238400,60802358400,3600,1,'WEST',],[60802354800,60819289200,60802354800,60819289200,0,0,'WET',],[60819289200,60834409200,60819292800,60834412800,3600,1,'WEST',],[60834409200,60841843200,60834409200,60841843200,0,0,'WET',],[60841843200,62054251200,60841843200,62054251200,0,0,'WET',],[62054251200,62064572400,62054254800,62064576000,3600,1,'WEST',],[62064572400,62276947200,62064572400,62276947200,0,0,'WET',],[62276947200,62282905200,62276950800,62282908800,3600,1,'WEST',],[62282905200,62335440000,62282905200,62335440000,0,0,'WET',],[62335440000,62343385200,62335443600,62343388800,3600,1,'WEST',],[62343385200,62366976000,62343385200,62366976000,0,0,'WET',],[62366976000,62379932400,62366979600,62379936000,3600,1,'WEST',],[62379932400,62401190400,62379932400,62401190400,0,0,'WET',],[62401190400,62406716400,62401194000,62406720000,3600,1,'WEST',],[62406716400,62583926400,62406716400,62583926400,0,0,'WET',],[62583926400,62640601200,62583930000,62640604800,3600,0,'CET',],[62640601200,62648211600,62640604800,62648215200,3600,0,'CET',],[62648211600,62663936400,62648218800,62663943600,7200,1,'CEST',],[62663936400,62679661200,62663940000,62679664800,3600,0,'CET',],[62679661200,62695386000,62679668400,62695393200,7200,1,'CEST',],[62695386000,62711110800,62695389600,62711114400,3600,0,'CET',],[62711110800,62726835600,62711118000,62726842800,7200,1,'CEST',],[62726835600,62742560400,62726839200,62742564000,3600,0,'CET',],[62742560400,62758285200,62742567600,62758292400,7200,1,'CEST',],[62758285200,62774010000,62758288800,62774013600,3600,0,'CET',],[62774010000,62790339600,62774017200,62790346800,7200,1,'CEST',],[62790339600,62806064400,62790343200,62806068000,3600,0,'CET',],[62806064400,62821789200,62806071600,62821796400,7200,1,'CEST',],[62821789200,62837514000,62821792800,62837517600,3600,0,'CET',],[62837514000,62853238800,62837521200,62853246000,7200,1,'CEST',],[62853238800,62868963600,62853242400,62868967200,3600,0,'CET',],[62868963600,62884688400,62868970800,62884695600,7200,1,'CEST',],[62884688400,62900413200,62884692000,62900416800,3600,0,'CET',],[62900413200,62916138000,62900420400,62916145200,7200,1,'CEST',],[62916138000,62931862800,62916141600,62931866400,3600,0,'CET',],[62931862800,62947587600,62931870000,62947594800,7200,1,'CEST',],[62947587600,62963917200,62947591200,62963920800,3600,0,'CET',],[62963917200,62982061200,62963924400,62982068400,7200,1,'CEST',],[62982061200,62995366800,62982064800,62995370400,3600,0,'CET',],[62995366800,63013510800,62995374000,63013518000,7200,1,'CEST',],[63013510800,63026816400,63013514400,63026820000,3600,0,'CET',],[63026816400,63044960400,63026823600,63044967600,7200,1,'CEST',],[63044960400,63058266000,63044964000,63058269600,3600,0,'CET',],[63058266000,63077014800,63058273200,63077022000,7200,1,'CEST',],[63077014800,63089715600,63077018400,63089719200,3600,0,'CET',],[63089715600,63108464400,63089722800,63108471600,7200,1,'CEST',],[63108464400,63121165200,63108468000,63121168800,3600,0,'CET',],[63121165200,63139914000,63121172400,63139921200,7200,1,'CEST',],[63139914000,63153219600,63139917600,63153223200,3600,0,'CET',],[63153219600,63171363600,63153226800,63171370800,7200,1,'CEST',],[63171363600,63184669200,63171367200,63184672800,3600,0,'CET',],[63184669200,63202813200,63184676400,63202820400,7200,1,'CEST',],[63202813200,63216118800,63202816800,63216122400,3600,0,'CET',],[63216118800,63234867600,63216126000,63234874800,7200,1,'CEST',],[63234867600,63247568400,63234871200,63247572000,3600,0,'CET',],[63247568400,63266317200,63247575600,63266324400,7200,1,'CEST',],[63266317200,63279018000,63266320800,63279021600,3600,0,'CET',],[63279018000,63297766800,63279025200,63297774000,7200,1,'CEST',],[63297766800,63310467600,63297770400,63310471200,3600,0,'CET',],[63310467600,63329216400,63310474800,63329223600,7200,1,'CEST',],[63329216400,63342522000,63329220000,63342525600,3600,0,'CET',],[63342522000,63360666000,63342529200,63360673200,7200,1,'CEST',],[63360666000,63373971600,63360669600,63373975200,3600,0,'CET',],[63373971600,63392115600,63373978800,63392122800,7200,1,'CEST',],[63392115600,63405421200,63392119200,63405424800,3600,0,'CET',],[63405421200,63424170000,63405428400,63424177200,7200,1,'CEST',],[63424170000,63436870800,63424173600,63436874400,3600,0,'CET',],[63436870800,63455619600,63436878000,63455626800,7200,1,'CEST',],[63455619600,63468320400,63455623200,63468324000,3600,0,'CET',],[63468320400,63487069200,63468327600,63487076400,7200,1,'CEST',],[63487069200,63500374800,63487072800,63500378400,3600,0,'CET',],[63500374800,63518518800,63500382000,63518526000,7200,1,'CEST',],[63518518800,63531824400,63518522400,63531828000,3600,0,'CET',],[63531824400,63549968400,63531831600,63549975600,7200,1,'CEST',],[63549968400,63563274000,63549972000,63563277600,3600,0,'CET',],[63563274000,63581418000,63563281200,63581425200,7200,1,'CEST',],[63581418000,63594723600,63581421600,63594727200,3600,0,'CET',],[63594723600,63613472400,63594730800,63613479600,7200,1,'CEST',],[63613472400,63626173200,63613476000,63626176800,3600,0,'CET',],[63626173200,63644922000,63626180400,63644929200,7200,1,'CEST',],[63644922000,63657622800,63644925600,63657626400,3600,0,'CET',],[63657622800,63676371600,63657630000,63676378800,7200,1,'CEST',],[63676371600,63689677200,63676375200,63689680800,3600,0,'CET',],[63689677200,63707821200,63689684400,63707828400,7200,1,'CEST',],[63707821200,63721126800,63707824800,63721130400,3600,0,'CET',],[63721126800,63739270800,63721134000,63739278000,7200,1,'CEST',],[63739270800,63752576400,63739274400,63752580000,3600,0,'CET',],[63752576400,63771325200,63752583600,63771332400,7200,1,'CEST',],[63771325200,63784026000,63771328800,63784029600,3600,0,'CET',],[63784026000,63802774800,63784033200,63802782000,7200,1,'CEST',],[63802774800,63815475600,63802778400,63815479200,3600,0,'CET',],[63815475600,63834224400,63815482800,63834231600,7200,1,'CEST',],[63834224400,63847530000,63834228000,63847533600,3600,0,'CET',],[63847530000,63865674000,63847537200,63865681200,7200,1,'CEST',],[63865674000,63878979600,63865677600,63878983200,3600,0,'CET',],[63878979600,63897123600,63878986800,63897130800,7200,1,'CEST',],[63897123600,63910429200,63897127200,63910432800,3600,0,'CET',],[63910429200,63928573200,63910436400,63928580400,7200,1,'CEST',],[63928573200,63941878800,63928576800,63941882400,3600,0,'CET',],[63941878800,63960627600,63941886000,63960634800,7200,1,'CEST',],];sub olson_version {'2016a'}sub has_dst_changes {52}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {3600}my$last_observance=bless({'format'=>'CE%sT','gmtoff'=>'1:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>725007,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>725007,'utc_rd_secs'=>0,'utc_year'=>1987 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>3600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>725006,'local_rd_secs'=>82800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>725006,'utc_rd_secs'=>82800,'utc_year'=>1986 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AFRICA_CEUTA

$fatpacked{"DateTime/TimeZone/Africa/El_Aaiun.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AFRICA_EL_AAIUN';
  package DateTime::TimeZone::Africa::El_Aaiun;$DateTime::TimeZone::Africa::El_Aaiun::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Africa::El_Aaiun::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60999612768,DateTime::TimeZone::NEG_INFINITY,60999609600,-3168,0,'LMT',],[60999612768,62333974800,60999609168,62333971200,-3600,0,'WAT',],[62333974800,62335440000,62333974800,62335440000,0,0,'WET',],[62335440000,62343385200,62335443600,62343388800,3600,1,'WEST',],[62343385200,62366976000,62343385200,62366976000,0,0,'WET',],[62366976000,62379932400,62366979600,62379936000,3600,1,'WEST',],[62379932400,62401190400,62379932400,62401190400,0,0,'WET',],[62401190400,62406716400,62401194000,62406720000,3600,1,'WEST',],[62406716400,63347961600,62406716400,63347961600,0,0,'WET',],[63347961600,63355906800,63347965200,63355910400,3600,1,'WEST',],[63355906800,63379497600,63355906800,63379497600,0,0,'WET',],[63379497600,63386492400,63379501200,63386496000,3600,1,'WEST',],[63386492400,63408441600,63386492400,63408441600,0,0,'WET',],[63408441600,63416905200,63408445200,63416908800,3600,1,'WEST',],[63416905200,63437472000,63416905200,63437472000,0,0,'WET',],[63437472000,63447750000,63437475600,63447753600,3600,1,'WEST',],[63447750000,63471348000,63447750000,63471348000,0,0,'WET',],[63471348000,63478432800,63471351600,63478436400,3600,1,'WEST',],[63478432800,63481111200,63478432800,63481111200,0,0,'WET',],[63481111200,63484653600,63481114800,63484657200,3600,1,'WEST',],[63484653600,63502797600,63484653600,63502797600,0,0,'WET',],[63502797600,63508845600,63502801200,63508849200,3600,1,'WEST',],[63508845600,63511783200,63508845600,63511783200,0,0,'WET',],[63511783200,63518522400,63511786800,63518526000,3600,1,'WEST',],[63518522400,63531828000,63518522400,63531828000,0,0,'WET',],[63531828000,63539604000,63531831600,63539607600,3600,1,'WEST',],[63539604000,63542628000,63539604000,63542628000,0,0,'WET',],[63542628000,63549972000,63542631600,63549975600,3600,1,'WEST',],[63549972000,63563277600,63549972000,63563277600,0,0,'WET',],[63563277600,63569930400,63563281200,63569934000,3600,1,'WEST',],[63569930400,63572954400,63569930400,63572954400,0,0,'WET',],[63572954400,63581421600,63572958000,63581425200,3600,1,'WEST',],[63581421600,63594727200,63581421600,63594727200,0,0,'WET',],[63594727200,63600775200,63594730800,63600778800,3600,1,'WEST',],[63600775200,63603799200,63600775200,63603799200,0,0,'WET',],[63603799200,63613476000,63603802800,63613479600,3600,1,'WEST',],[63613476000,63626176800,63613476000,63626176800,0,0,'WET',],[63626176800,63631015200,63626180400,63631018800,3600,1,'WEST',],[63631015200,63634644000,63631015200,63634644000,0,0,'WET',],[63634644000,63644925600,63634647600,63644929200,3600,1,'WEST',],[63644925600,63657626400,63644925600,63657626400,0,0,'WET',],[63657626400,63661860000,63657630000,63661863600,3600,1,'WEST',],[63661860000,63664884000,63661860000,63664884000,0,0,'WET',],[63664884000,63676375200,63664887600,63676378800,3600,1,'WEST',],[63676375200,63689680800,63676375200,63689680800,0,0,'WET',],[63689680800,63692704800,63689684400,63692708400,3600,1,'WEST',],[63692704800,63695728800,63692704800,63695728800,0,0,'WET',],[63695728800,63707824800,63695732400,63707828400,3600,1,'WEST',],[63707824800,63721130400,63707824800,63721130400,0,0,'WET',],[63721130400,63722944800,63721134000,63722948400,3600,1,'WEST',],[63722944800,63725968800,63722944800,63725968800,0,0,'WET',],[63725968800,63739274400,63725972400,63739278000,3600,1,'WEST',],[63739274400,63752580000,63739274400,63752580000,0,0,'WET',],[63752580000,63753789600,63752583600,63753793200,3600,1,'WEST',],[63753789600,63756813600,63753789600,63756813600,0,0,'WET',],[63756813600,63771328800,63756817200,63771332400,3600,1,'WEST',],[63771328800,63787658400,63771328800,63787658400,0,0,'WET',],[63787658400,63802778400,63787662000,63802782000,3600,1,'WEST',],[63802778400,63817898400,63802778400,63817898400,0,0,'WET',],[63817898400,63834228000,63817902000,63834231600,3600,1,'WEST',],[63834228000,63848743200,63834228000,63848743200,0,0,'WET',],[63848743200,63865677600,63848746800,63865681200,3600,1,'WEST',],[63865677600,63879588000,63865677600,63879588000,0,0,'WET',],[63879588000,63897127200,63879591600,63897130800,3600,1,'WEST',],[63897127200,63910432800,63897127200,63910432800,0,0,'WET',],[63910432800,63928576800,63910436400,63928580400,3600,1,'WEST',],[63928576800,63941882400,63928576800,63941882400,0,0,'WET',],[63941882400,63960631200,63941886000,63960634800,3600,1,'WEST',],[63960631200,63973332000,63960631200,63973332000,0,0,'WET',],[63973332000,63992080800,63973335600,63992084400,3600,1,'WEST',],[63992080800,64004781600,63992080800,64004781600,0,0,'WET',],[64004781600,64023530400,64004785200,64023534000,3600,1,'WEST',],[64023530400,64036836000,64023530400,64036836000,0,0,'WET',],[64036836000,64054980000,64036839600,64054983600,3600,1,'WEST',],[64054980000,64068285600,64054980000,64068285600,0,0,'WET',],[64068285600,64086429600,64068289200,64086433200,3600,1,'WEST',],[64086429600,64099735200,64086429600,64099735200,0,0,'WET',],[64099735200,64118484000,64099738800,64118487600,3600,1,'WEST',],[64118484000,64131184800,64118484000,64131184800,0,0,'WET',],[64131184800,64149933600,64131188400,64149937200,3600,1,'WEST',],[64149933600,64162634400,64149933600,64162634400,0,0,'WET',],[64162634400,64181383200,64162638000,64181386800,3600,1,'WEST',],[64181383200,64194084000,64181383200,64194084000,0,0,'WET',],[64194084000,64212832800,64194087600,64212836400,3600,1,'WEST',],[64212832800,64226138400,64212832800,64226138400,0,0,'WET',],[64226138400,64243677600,64226142000,64243681200,3600,1,'WEST',],[64243677600,64257588000,64243677600,64257588000,0,0,'WET',],[64257588000,64275732000,64257591600,64275735600,3600,1,'WEST',],[64275732000,64289037600,64275732000,64289037600,0,0,'WET',],[64289037600,64307786400,64289041200,64307790000,3600,1,'WEST',],];sub olson_version {'2016a'}sub has_dst_changes {44}sub _max_year {2037}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {0}my$last_observance=bless({'format'=>'WE%sT','gmtoff'=>'0:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>721458,'local_rd_secs'=>3600,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>721458,'utc_rd_secs'=>3600,'utc_year'=>1977 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>0,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>721458,'local_rd_secs'=>3600,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>721458,'utc_rd_secs'=>3600,'utc_year'=>1977 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2026','in'=>'Mar','letter'=>'S','name'=>'Morocco','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'3:00','from'=>'2013','in'=>'Oct','letter'=>'','name'=>'Morocco','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AFRICA_EL_AAIUN

$fatpacked{"DateTime/TimeZone/Africa/Johannesburg.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AFRICA_JOHANNESBURG';
  package DateTime::TimeZone::Africa::Johannesburg;$DateTime::TimeZone::Africa::Johannesburg::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Africa::Johannesburg::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59677510080,DateTime::TimeZone::NEG_INFINITY,59677516800,6720,0,'LMT',],[59677510080,60026394600,59677515480,60026400000,5400,0,'SAST',],[60026394600,61274707200,60026401800,61274714400,7200,0,'SAST',],[61274707200,61290428400,61274718000,61290439200,10800,1,'SAST',],[61290428400,61306156800,61290435600,61306164000,7200,0,'SAST',],[61306156800,61321878000,61306167600,61321888800,10800,1,'SAST',],[61321878000,DateTime::TimeZone::INFINITY,61321885200,DateTime::TimeZone::INFINITY,7200,0,'SAST',],];sub olson_version {'2016a'}sub has_dst_changes {2}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AFRICA_JOHANNESBURG

$fatpacked{"DateTime/TimeZone/Africa/Khartoum.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AFRICA_KHARTOUM';
  package DateTime::TimeZone::Africa::Khartoum;$DateTime::TimeZone::Africa::Khartoum::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Africa::Khartoum::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60904907392,DateTime::TimeZone::NEG_INFINITY,60904915200,7808,0,'LMT',],[60904907392,62146044000,60904914592,62146051200,7200,0,'CAT',],[62146044000,62160469200,62146054800,62160480000,10800,1,'CAST',],[62160469200,62177493600,62160476400,62177500800,7200,0,'CAT',],[62177493600,62192005200,62177504400,62192016000,10800,1,'CAST',],[62192005200,62209116000,62192012400,62209123200,7200,0,'CAT',],[62209116000,62223627600,62209126800,62223638400,10800,1,'CAST',],[62223627600,62240565600,62223634800,62240572800,7200,0,'CAT',],[62240565600,62255163600,62240576400,62255174400,10800,1,'CAST',],[62255163600,62272015200,62255170800,62272022400,7200,0,'CAT',],[62272015200,62286699600,62272026000,62286710400,10800,1,'CAST',],[62286699600,62303464800,62286706800,62303472000,7200,0,'CAT',],[62303464800,62318235600,62303475600,62318246400,10800,1,'CAST',],[62318235600,62334914400,62318242800,62334921600,7200,0,'CAT',],[62334914400,62349858000,62334925200,62349868800,10800,1,'CAST',],[62349858000,62366364000,62349865200,62366371200,7200,0,'CAT',],[62366364000,62381394000,62366374800,62381404800,10800,1,'CAST',],[62381394000,62398418400,62381401200,62398425600,7200,0,'CAT',],[62398418400,62412930000,62398429200,62412940800,10800,1,'CAST',],[62412930000,62429868000,62412937200,62429875200,7200,0,'CAT',],[62429868000,62444466000,62429878800,62444476800,10800,1,'CAST',],[62444466000,62461317600,62444473200,62461324800,7200,0,'CAT',],[62461317600,62476088400,62461328400,62476099200,10800,1,'CAST',],[62476088400,62492767200,62476095600,62492774400,7200,0,'CAT',],[62492767200,62507624400,62492778000,62507635200,10800,1,'CAST',],[62507624400,62524216800,62507631600,62524224000,7200,0,'CAT',],[62524216800,62539160400,62524227600,62539171200,10800,1,'CAST',],[62539160400,62555666400,62539167600,62555673600,7200,0,'CAT',],[62555666400,62570696400,62555677200,62570707200,10800,1,'CAST',],[62570696400,62587720800,62570703600,62587728000,7200,0,'CAT',],[62587720800,62602318800,62587731600,62602329600,10800,1,'CAST',],[62602318800,62619170400,62602326000,62619177600,7200,0,'CAT',],[62619170400,62633854800,62619181200,62633865600,10800,1,'CAST',],[62633854800,63083613600,62633862000,63083620800,7200,0,'CAT',],[63083613600,DateTime::TimeZone::INFINITY,63083624400,DateTime::TimeZone::INFINITY,10800,0,'EAT',],];sub olson_version {'2016a'}sub has_dst_changes {16}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AFRICA_KHARTOUM

$fatpacked{"DateTime/TimeZone/Africa/Lagos.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AFRICA_LAGOS';
  package DateTime::TimeZone::Africa::Lagos;$DateTime::TimeZone::Africa::Lagos::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Africa::Lagos::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60547218384,DateTime::TimeZone::NEG_INFINITY,60547219200,816,0,'LMT',],[60547218384,DateTime::TimeZone::INFINITY,60547221984,DateTime::TimeZone::INFINITY,3600,0,'WAT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AFRICA_LAGOS

$fatpacked{"DateTime/TimeZone/Africa/Maputo.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AFRICA_MAPUTO';
  package DateTime::TimeZone::Africa::Maputo;$DateTime::TimeZone::Africa::Maputo::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Africa::Maputo::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60026392180,DateTime::TimeZone::NEG_INFINITY,60026400000,7820,0,'LMT',],[60026392180,DateTime::TimeZone::INFINITY,60026399380,DateTime::TimeZone::INFINITY,7200,0,'CAT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AFRICA_MAPUTO

$fatpacked{"DateTime/TimeZone/Africa/Monrovia.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AFRICA_MONROVIA';
  package DateTime::TimeZone::Africa::Monrovia;$DateTime::TimeZone::Africa::Monrovia::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Africa::Monrovia::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59358703388,DateTime::TimeZone::NEG_INFINITY,59358700800,-2588,0,'LMT',],[59358703388,60531324188,59358700800,60531321600,-2588,0,'MMT',],[60531324188,62209212270,60531321518,62209209600,-2670,0,'LRT',],[62209212270,DateTime::TimeZone::INFINITY,62209212270,DateTime::TimeZone::INFINITY,0,0,'GMT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AFRICA_MONROVIA

$fatpacked{"DateTime/TimeZone/Africa/Nairobi.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AFRICA_NAIROBI';
  package DateTime::TimeZone::Africa::Nairobi;$DateTime::TimeZone::Africa::Nairobi::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Africa::Nairobi::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60825936764,DateTime::TimeZone::NEG_INFINITY,60825945600,8836,0,'LMT',],[60825936764,60873368400,60825947564,60873379200,10800,0,'EAT',],[60873368400,61188903000,60873377400,61188912000,9000,0,'BEAT',],[61188903000,61820054100,61188912900,61820064000,9900,0,'BEAUT',],[61820054100,DateTime::TimeZone::INFINITY,61820064900,DateTime::TimeZone::INFINITY,10800,0,'EAT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AFRICA_NAIROBI

$fatpacked{"DateTime/TimeZone/Africa/Ndjamena.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AFRICA_NDJAMENA';
  package DateTime::TimeZone::Africa::Ndjamena;$DateTime::TimeZone::Africa::Ndjamena::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Africa::Ndjamena::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60305295588,DateTime::TimeZone::NEG_INFINITY,60305299200,3612,0,'LMT',],[60305295588,62444386800,60305299188,62444390400,3600,0,'WAT',],[62444386800,62456997600,62444394000,62457004800,7200,1,'WAST',],[62456997600,DateTime::TimeZone::INFINITY,62457001200,DateTime::TimeZone::INFINITY,3600,0,'WAT',],];sub olson_version {'2016a'}sub has_dst_changes {1}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AFRICA_NDJAMENA

$fatpacked{"DateTime/TimeZone/Africa/Tripoli.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AFRICA_TRIPOLI';
  package DateTime::TimeZone::Africa::Tripoli;$DateTime::TimeZone::Africa::Tripoli::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Africa::Tripoli::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60557756836,DateTime::TimeZone::NEG_INFINITY,60557760000,3164,0,'LMT',],[60557756836,61560781200,60557760436,61560784800,3600,0,'CET',],[61560781200,61567596000,61560788400,61567603200,7200,1,'CEST',],[61567596000,61623507600,61567599600,61623511200,3600,0,'CET',],[61623507600,61630754400,61623514800,61630761600,7200,1,'CEST',],[61630754400,61685794800,61630758000,61685798400,3600,0,'CET',],[61685794800,61693826400,61685802000,61693833600,7200,1,'CEST',],[61693826400,61788524400,61693830000,61788528000,3600,0,'CET',],[61788524400,62514367200,61788531600,62514374400,7200,0,'EET',],[62514367200,62522146800,62514370800,62522150400,3600,0,'CET',],[62522146800,62537954400,62522154000,62537961600,7200,1,'CEST',],[62537954400,62553682800,62537958000,62553686400,3600,0,'CET',],[62553682800,62569490400,62553690000,62569497600,7200,1,'CEST',],[62569490400,62585305200,62569494000,62585308800,3600,0,'CET',],[62585305200,62601112800,62585312400,62601120000,7200,1,'CEST',],[62601112800,62617273200,62601116400,62617276800,3600,0,'CET',],[62617273200,62632648800,62617280400,62632656000,7200,1,'CEST',],[62632648800,62648636400,62632652400,62648640000,3600,0,'CET',],[62648636400,62664357600,62648643600,62664364800,7200,1,'CEST',],[62664357600,62679913200,62664361200,62679916800,3600,0,'CET',],[62679913200,62695720800,62679920400,62695728000,7200,1,'CEST',],[62695720800,62711535600,62695724400,62711539200,3600,0,'CET',],[62711535600,62727343200,62711542800,62727350400,7200,1,'CEST',],[62727343200,62743071600,62727346800,62743075200,3600,0,'CET',],[62743071600,62758879200,62743078800,62758886400,7200,1,'CEST',],[62758879200,62777458800,62758882800,62777462400,3600,0,'CET',],[62777458800,62979717600,62777466000,62979724800,7200,0,'EET',],[62979717600,62995791600,62979721200,62995795200,3600,0,'CET',],[62995791600,63011599200,62995798800,63011606400,7200,1,'CEST',],[63011599200,63488188800,63011606400,63488196000,7200,0,'EET',],[63488188800,63500198400,63488192400,63500202000,3600,0,'CET',],[63500198400,63518342400,63500205600,63518349600,7200,1,'CEST',],[63518342400,DateTime::TimeZone::INFINITY,63518349600,DateTime::TimeZone::INFINITY,7200,0,'EET',],];sub olson_version {'2016a'}sub has_dst_changes {13}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AFRICA_TRIPOLI

$fatpacked{"DateTime/TimeZone/Africa/Tunis.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AFRICA_TUNIS';
  package DateTime::TimeZone::Africa::Tunis;$DateTime::TimeZone::Africa::Tunis::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Africa::Tunis::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59338480756,DateTime::TimeZone::NEG_INFINITY,59338483200,2444,0,'LMT',],[59338480756,60279724239,59338481317,60279724800,561,0,'PMT',],[60279724239,61166440800,60279727839,61166444400,3600,0,'CET',],[61166440800,61185189600,61166448000,61185196800,7200,1,'CEST',],[61185189600,61193743200,61185193200,61193746800,3600,0,'CET',],[61193743200,61244546400,61193750400,61244553600,7200,1,'CEST',],[61244546400,61257855600,61244550000,61257859200,3600,0,'CET',],[61257855600,61278426000,61257862800,61278433200,7200,1,'CEST',],[61278426000,61291126800,61278429600,61291130400,3600,0,'CET',],[61291126800,61292764800,61291134000,61292772000,7200,1,'CEST',],[61292764800,61293459600,61292768400,61293463200,3600,0,'CET',],[61293459600,61307452800,61293466800,61307460000,7200,1,'CEST',],[61307452800,61323181200,61307456400,61323184800,3600,0,'CET',],[61323181200,61339413600,61323188400,61339420800,7200,1,'CEST',],[61339413600,61354630800,61339417200,61354634400,3600,0,'CET',],[61354630800,61369048800,61354638000,61369056000,7200,1,'CEST',],[61369048800,62366886000,61369052400,62366889600,3600,0,'CET',],[62366886000,62379586800,62366893200,62379594000,7200,1,'CEST',],[62379586800,62398508400,62379590400,62398512000,3600,0,'CET',],[62398508400,62411727600,62398515600,62411734800,7200,1,'CEST',],[62411727600,62716806000,62411731200,62716809600,3600,0,'CET',],[62716806000,62726828400,62716813200,62726835600,7200,1,'CEST',],[62726828400,62742553200,62726832000,62742556800,3600,0,'CET',],[62742553200,62758278000,62742560400,62758285200,7200,1,'CEST',],[62758278000,62777199600,62758281600,62777203200,3600,0,'CET',],[62777199600,62790332400,62777206800,62790339600,7200,1,'CEST',],[62790332400,63250585200,62790336000,63250588800,3600,0,'CET',],[63250585200,63263721600,63250592400,63263728800,7200,1,'CEST',],[63263721600,63279018000,63263725200,63279021600,3600,0,'CET',],[63279018000,63297766800,63279025200,63297774000,7200,1,'CEST',],[63297766800,63310467600,63297770400,63310471200,3600,0,'CET',],[63310467600,63329216400,63310474800,63329223600,7200,1,'CEST',],[63329216400,63342522000,63329220000,63342525600,3600,0,'CET',],[63342522000,63360666000,63342529200,63360673200,7200,1,'CEST',],[63360666000,DateTime::TimeZone::INFINITY,63360669600,DateTime::TimeZone::INFINITY,3600,0,'CET',],];sub olson_version {'2016a'}sub has_dst_changes {16}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AFRICA_TUNIS

$fatpacked{"DateTime/TimeZone/Africa/Windhoek.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AFRICA_WINDHOEK';
  package DateTime::TimeZone::Africa::Windhoek;$DateTime::TimeZone::Africa::Windhoek::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Africa::Windhoek::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59677512696,DateTime::TimeZone::NEG_INFINITY,59677516800,4104,0,'LMT',],[59677512696,60026394600,59677518096,60026400000,5400,0,'SWAT',],[60026394600,61274707200,60026401800,61274714400,7200,0,'SAST',],[61274707200,61290428400,61274718000,61290439200,10800,1,'SAST',],[61290428400,62773653600,61290435600,62773660800,7200,0,'SAST',],[62773653600,62901007200,62773660800,62901014400,7200,0,'CAT',],[62901007200,62914323600,62901010800,62914327200,3600,0,'WAT',],[62914323600,62932464000,62914330800,62932471200,7200,1,'WAST',],[62932464000,62945773200,62932467600,62945776800,3600,0,'WAT',],[62945773200,62964518400,62945780400,62964525600,7200,1,'WAST',],[62964518400,62977222800,62964522000,62977226400,3600,0,'WAT',],[62977222800,62995968000,62977230000,62995975200,7200,1,'WAST',],[62995968000,63009277200,62995971600,63009280800,3600,0,'WAT',],[63009277200,63027417600,63009284400,63027424800,7200,1,'WAST',],[63027417600,63040726800,63027421200,63040730400,3600,0,'WAT',],[63040726800,63058867200,63040734000,63058874400,7200,1,'WAST',],[63058867200,63072176400,63058870800,63072180000,3600,0,'WAT',],[63072176400,63090316800,63072183600,63090324000,7200,1,'WAST',],[63090316800,63103626000,63090320400,63103629600,3600,0,'WAT',],[63103626000,63121766400,63103633200,63121773600,7200,1,'WAST',],[63121766400,63135075600,63121770000,63135079200,3600,0,'WAT',],[63135075600,63153820800,63135082800,63153828000,7200,1,'WAST',],[63153820800,63166525200,63153824400,63166528800,3600,0,'WAT',],[63166525200,63185270400,63166532400,63185277600,7200,1,'WAST',],[63185270400,63198579600,63185274000,63198583200,3600,0,'WAT',],[63198579600,63216720000,63198586800,63216727200,7200,1,'WAST',],[63216720000,63230029200,63216723600,63230032800,3600,0,'WAT',],[63230029200,63248169600,63230036400,63248176800,7200,1,'WAST',],[63248169600,63261478800,63248173200,63261482400,3600,0,'WAT',],[63261478800,63279619200,63261486000,63279626400,7200,1,'WAST',],[63279619200,63292928400,63279622800,63292932000,3600,0,'WAT',],[63292928400,63311068800,63292935600,63311076000,7200,1,'WAST',],[63311068800,63324378000,63311072400,63324381600,3600,0,'WAT',],[63324378000,63343123200,63324385200,63343130400,7200,1,'WAST',],[63343123200,63356432400,63343126800,63356436000,3600,0,'WAT',],[63356432400,63374572800,63356439600,63374580000,7200,1,'WAST',],[63374572800,63387882000,63374576400,63387885600,3600,0,'WAT',],[63387882000,63406022400,63387889200,63406029600,7200,1,'WAST',],[63406022400,63419331600,63406026000,63419335200,3600,0,'WAT',],[63419331600,63437472000,63419338800,63437479200,7200,1,'WAST',],[63437472000,63450781200,63437475600,63450784800,3600,0,'WAT',],[63450781200,63468921600,63450788400,63468928800,7200,1,'WAST',],[63468921600,63482230800,63468925200,63482234400,3600,0,'WAT',],[63482230800,63500976000,63482238000,63500983200,7200,1,'WAST',],[63500976000,63513680400,63500979600,63513684000,3600,0,'WAT',],[63513680400,63532425600,63513687600,63532432800,7200,1,'WAST',],[63532425600,63545734800,63532429200,63545738400,3600,0,'WAT',],[63545734800,63563875200,63545742000,63563882400,7200,1,'WAST',],[63563875200,63577184400,63563878800,63577188000,3600,0,'WAT',],[63577184400,63595324800,63577191600,63595332000,7200,1,'WAST',],[63595324800,63608634000,63595328400,63608637600,3600,0,'WAT',],[63608634000,63626774400,63608641200,63626781600,7200,1,'WAST',],[63626774400,63640083600,63626778000,63640087200,3600,0,'WAT',],[63640083600,63658224000,63640090800,63658231200,7200,1,'WAST',],[63658224000,63671533200,63658227600,63671536800,3600,0,'WAT',],[63671533200,63690278400,63671540400,63690285600,7200,1,'WAST',],[63690278400,63702982800,63690282000,63702986400,3600,0,'WAT',],[63702982800,63721728000,63702990000,63721735200,7200,1,'WAST',],[63721728000,63735037200,63721731600,63735040800,3600,0,'WAT',],[63735037200,63753177600,63735044400,63753184800,7200,1,'WAST',],[63753177600,63766486800,63753181200,63766490400,3600,0,'WAT',],[63766486800,63784627200,63766494000,63784634400,7200,1,'WAST',],[63784627200,63797936400,63784630800,63797940000,3600,0,'WAT',],[63797936400,63816076800,63797943600,63816084000,7200,1,'WAST',],[63816076800,63829386000,63816080400,63829389600,3600,0,'WAT',],[63829386000,63848131200,63829393200,63848138400,7200,1,'WAST',],[63848131200,63860835600,63848134800,63860839200,3600,0,'WAT',],[63860835600,63879580800,63860842800,63879588000,7200,1,'WAST',],[63879580800,63892890000,63879584400,63892893600,3600,0,'WAT',],[63892890000,63911030400,63892897200,63911037600,7200,1,'WAST',],[63911030400,63924339600,63911034000,63924343200,3600,0,'WAT',],[63924339600,63942480000,63924346800,63942487200,7200,1,'WAST',],[63942480000,63955789200,63942483600,63955792800,3600,0,'WAT',],];sub olson_version {'2016a'}sub has_dst_changes {35}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {3600}my$last_observance=bless({'format'=>'WA%sT','gmtoff'=>'1:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>728020,'local_rd_secs'=>82800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>728020,'utc_rd_secs'=>82800,'utc_year'=>1995 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>3600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>728020,'local_rd_secs'=>79200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>728020,'utc_rd_secs'=>79200,'utc_year'=>1995 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'1994','in'=>'Sep','letter'=>'S','name'=>'Namibia','offset_from_std'=>3600,'on'=>'Sun>=1','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'1995','in'=>'Apr','letter'=>'','name'=>'Namibia','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AFRICA_WINDHOEK

$fatpacked{"DateTime/TimeZone/America/Adak.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_ADAK';
  package DateTime::TimeZone::America::Adak;$DateTime::TimeZone::America::Adak::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Adak::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,58910327199,DateTime::TimeZone::NEG_INFINITY,58910371200,44001,0,'LMT',],[58910327199,59946738398,58910284801,59946696000,-42398,0,'LMT',],[59946738398,61252110000,59946698798,61252070400,-39600,0,'NST',],[61252110000,61255486800,61252070400,61255447200,-39600,0,'NST',],[61255486800,61366287600,61255450800,61366251600,-36000,1,'NWT',],[61366287600,61370308800,61366251600,61370272800,-36000,1,'NPT',],[61370308800,61378340400,61370269200,61378300800,-39600,0,'NST',],[61378340400,62048804400,61378300800,62048764800,-39600,0,'NST',],[62048804400,62104186800,62048764800,62104147200,-39600,0,'BST',],[62104186800,62114216400,62104147200,62114176800,-39600,0,'BST',],[62114216400,62129937600,62114180400,62129901600,-36000,1,'BDT',],[62129937600,62145666000,62129898000,62145626400,-39600,0,'BST',],[62145666000,62161387200,62145630000,62161351200,-36000,1,'BDT',],[62161387200,62177115600,62161347600,62177076000,-39600,0,'BST',],[62177115600,62193441600,62177079600,62193405600,-36000,1,'BDT',],[62193441600,62209170000,62193402000,62209130400,-39600,0,'BST',],[62209170000,62224891200,62209134000,62224855200,-36000,1,'BDT',],[62224891200,62240619600,62224851600,62240580000,-39600,0,'BST',],[62240619600,62256340800,62240583600,62256304800,-36000,1,'BDT',],[62256340800,62262392400,62256301200,62262352800,-39600,0,'BST',],[62262392400,62287790400,62262356400,62287754400,-36000,1,'BDT',],[62287790400,62298075600,62287750800,62298036000,-39600,0,'BST',],[62298075600,62319240000,62298039600,62319204000,-36000,1,'BDT',],[62319240000,62334968400,62319200400,62334928800,-39600,0,'BST',],[62334968400,62351294400,62334932400,62351258400,-36000,1,'BDT',],[62351294400,62366418000,62351254800,62366378400,-39600,0,'BST',],[62366418000,62382744000,62366382000,62382708000,-36000,1,'BDT',],[62382744000,62398472400,62382704400,62398432800,-39600,0,'BST',],[62398472400,62414193600,62398436400,62414157600,-36000,1,'BDT',],[62414193600,62429922000,62414154000,62429882400,-39600,0,'BST',],[62429922000,62445643200,62429886000,62445607200,-36000,1,'BDT',],[62445643200,62461371600,62445603600,62461332000,-39600,0,'BST',],[62461371600,62477092800,62461335600,62477056800,-36000,1,'BDT',],[62477092800,62492821200,62477053200,62492781600,-39600,0,'BST',],[62492821200,62508542400,62492785200,62508506400,-36000,1,'BDT',],[62508542400,62524270800,62508502800,62524231200,-39600,0,'BST',],[62524270800,62540596800,62524234800,62540560800,-36000,1,'BDT',],[62540596800,62555720400,62540557200,62555680800,-39600,0,'BST',],[62555720400,62572046400,62555684400,62572010400,-36000,1,'BDT',],[62572046400,62574717600,62572010400,62574681600,-36000,0,'AHST',],[62574717600,62587771200,62574681600,62587735200,-36000,0,'HST',],[62587771200,62603492400,62587738800,62603460000,-32400,1,'HDT',],[62603492400,62619220800,62603456400,62619184800,-36000,0,'HST',],[62619220800,62634942000,62619188400,62634909600,-32400,1,'HDT',],[62634942000,62650670400,62634906000,62650634400,-36000,0,'HST',],[62650670400,62666391600,62650638000,62666359200,-32400,1,'HDT',],[62666391600,62680305600,62666355600,62680269600,-36000,0,'HST',],[62680305600,62697841200,62680273200,62697808800,-32400,1,'HDT',],[62697841200,62711755200,62697805200,62711719200,-36000,0,'HST',],[62711755200,62729895600,62711722800,62729863200,-32400,1,'HDT',],[62729895600,62743204800,62729859600,62743168800,-36000,0,'HST',],[62743204800,62761345200,62743172400,62761312800,-32400,1,'HDT',],[62761345200,62774654400,62761309200,62774618400,-36000,0,'HST',],[62774654400,62792794800,62774622000,62792762400,-32400,1,'HDT',],[62792794800,62806708800,62792758800,62806672800,-36000,0,'HST',],[62806708800,62824244400,62806676400,62824212000,-32400,1,'HDT',],[62824244400,62838158400,62824208400,62838122400,-36000,0,'HST',],[62838158400,62855694000,62838126000,62855661600,-32400,1,'HDT',],[62855694000,62869608000,62855658000,62869572000,-36000,0,'HST',],[62869608000,62887748400,62869575600,62887716000,-32400,1,'HDT',],[62887748400,62901057600,62887712400,62901021600,-36000,0,'HST',],[62901057600,62919198000,62901025200,62919165600,-32400,1,'HDT',],[62919198000,62932507200,62919162000,62932471200,-36000,0,'HST',],[62932507200,62950647600,62932474800,62950615200,-32400,1,'HDT',],[62950647600,62964561600,62950611600,62964525600,-36000,0,'HST',],[62964561600,62982097200,62964529200,62982064800,-32400,1,'HDT',],[62982097200,62996011200,62982061200,62995975200,-36000,0,'HST',],[62996011200,63013546800,62995978800,63013514400,-32400,1,'HDT',],[63013546800,63027460800,63013510800,63027424800,-36000,0,'HST',],[63027460800,63044996400,63027428400,63044964000,-32400,1,'HDT',],[63044996400,63058910400,63044960400,63058874400,-36000,0,'HST',],[63058910400,63077050800,63058878000,63077018400,-32400,1,'HDT',],[63077050800,63090360000,63077014800,63090324000,-36000,0,'HST',],[63090360000,63108500400,63090327600,63108468000,-32400,1,'HDT',],[63108500400,63121809600,63108464400,63121773600,-36000,0,'HST',],[63121809600,63139950000,63121777200,63139917600,-32400,1,'HDT',],[63139950000,63153864000,63139914000,63153828000,-36000,0,'HST',],[63153864000,63171399600,63153831600,63171367200,-32400,1,'HDT',],[63171399600,63185313600,63171363600,63185277600,-36000,0,'HST',],[63185313600,63202849200,63185281200,63202816800,-32400,1,'HDT',],[63202849200,63216763200,63202813200,63216727200,-36000,0,'HST',],[63216763200,63234903600,63216730800,63234871200,-32400,1,'HDT',],[63234903600,63248212800,63234867600,63248176800,-36000,0,'HST',],[63248212800,63266353200,63248180400,63266320800,-32400,1,'HDT',],[63266353200,63279662400,63266317200,63279626400,-36000,0,'HST',],[63279662400,63297802800,63279630000,63297770400,-32400,1,'HDT',],[63297802800,63309297600,63297766800,63309261600,-36000,0,'HST',],[63309297600,63329857200,63309265200,63329824800,-32400,1,'HDT',],[63329857200,63340747200,63329821200,63340711200,-36000,0,'HST',],[63340747200,63361306800,63340714800,63361274400,-32400,1,'HDT',],[63361306800,63372196800,63361270800,63372160800,-36000,0,'HST',],[63372196800,63392756400,63372164400,63392724000,-32400,1,'HDT',],[63392756400,63404251200,63392720400,63404215200,-36000,0,'HST',],[63404251200,63424810800,63404218800,63424778400,-32400,1,'HDT',],[63424810800,63435700800,63424774800,63435664800,-36000,0,'HST',],[63435700800,63456260400,63435668400,63456228000,-32400,1,'HDT',],[63456260400,63467150400,63456224400,63467114400,-36000,0,'HST',],[63467150400,63487710000,63467118000,63487677600,-32400,1,'HDT',],[63487710000,63498600000,63487674000,63498564000,-36000,0,'HST',],[63498600000,63519159600,63498567600,63519127200,-32400,1,'HDT',],[63519159600,63530049600,63519123600,63530013600,-36000,0,'HST',],[63530049600,63550609200,63530017200,63550576800,-32400,1,'HDT',],[63550609200,63561499200,63550573200,63561463200,-36000,0,'HST',],[63561499200,63582058800,63561466800,63582026400,-32400,1,'HDT',],[63582058800,63593553600,63582022800,63593517600,-36000,0,'HST',],[63593553600,63614113200,63593521200,63614080800,-32400,1,'HDT',],[63614113200,63625003200,63614077200,63624967200,-36000,0,'HST',],[63625003200,63645562800,63624970800,63645530400,-32400,1,'HDT',],[63645562800,63656452800,63645526800,63656416800,-36000,0,'HST',],[63656452800,63677012400,63656420400,63676980000,-32400,1,'HDT',],[63677012400,63687902400,63676976400,63687866400,-36000,0,'HST',],[63687902400,63708462000,63687870000,63708429600,-32400,1,'HDT',],[63708462000,63719352000,63708426000,63719316000,-36000,0,'HST',],[63719352000,63739911600,63719319600,63739879200,-32400,1,'HDT',],[63739911600,63751406400,63739875600,63751370400,-36000,0,'HST',],[63751406400,63771966000,63751374000,63771933600,-32400,1,'HDT',],[63771966000,63782856000,63771930000,63782820000,-36000,0,'HST',],[63782856000,63803415600,63782823600,63803383200,-32400,1,'HDT',],[63803415600,63814305600,63803379600,63814269600,-36000,0,'HST',],[63814305600,63834865200,63814273200,63834832800,-32400,1,'HDT',],[63834865200,63845755200,63834829200,63845719200,-36000,0,'HST',],[63845755200,63866314800,63845722800,63866282400,-32400,1,'HDT',],[63866314800,63877204800,63866278800,63877168800,-36000,0,'HST',],[63877204800,63897764400,63877172400,63897732000,-32400,1,'HDT',],[63897764400,63908654400,63897728400,63908618400,-36000,0,'HST',],[63908654400,63929214000,63908622000,63929181600,-32400,1,'HDT',],[63929214000,63940708800,63929178000,63940672800,-36000,0,'HST',],[63940708800,63961268400,63940676400,63961236000,-32400,1,'HDT',],];sub olson_version {'2016a'}sub has_dst_changes {61}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-36000}my$last_observance=bless({'format'=>'H%sT','gmtoff'=>'-10:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>724244,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>724244,'utc_rd_secs'=>0,'utc_year'=>1984 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-36000,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>724244,'local_rd_secs'=>36000,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>724244,'utc_rd_secs'=>36000,'utc_year'=>1984 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_ADAK

$fatpacked{"DateTime/TimeZone/America/Anchorage.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_ANCHORAGE';
  package DateTime::TimeZone::America::Anchorage;$DateTime::TimeZone::America::Anchorage::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Anchorage::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,58910320776,DateTime::TimeZone::NEG_INFINITY,58910371200,50424,0,'LMT',],[58910320776,59946731976,58910284800,59946696000,-35976,0,'LMT',],[59946731976,61252106400,59946695976,61252070400,-36000,0,'CAT',],[61252106400,61255483200,61252070400,61255447200,-36000,0,'CAT',],[61255483200,61366287600,61255450800,61366255200,-32400,1,'CAWT',],[61366287600,61370305200,61366255200,61370272800,-32400,1,'CAPT',],[61370305200,61378336800,61370269200,61378300800,-36000,0,'CAT',],[61378336800,62048800800,61378300800,62048764800,-36000,0,'CAT',],[62048800800,62104183200,62048764800,62104147200,-36000,0,'AHST',],[62104183200,62114212800,62104147200,62114176800,-36000,0,'AHST',],[62114212800,62129934000,62114180400,62129901600,-32400,1,'AHDT',],[62129934000,62145662400,62129898000,62145626400,-36000,0,'AHST',],[62145662400,62161383600,62145630000,62161351200,-32400,1,'AHDT',],[62161383600,62177112000,62161347600,62177076000,-36000,0,'AHST',],[62177112000,62193438000,62177079600,62193405600,-32400,1,'AHDT',],[62193438000,62209166400,62193402000,62209130400,-36000,0,'AHST',],[62209166400,62224887600,62209134000,62224855200,-32400,1,'AHDT',],[62224887600,62240616000,62224851600,62240580000,-36000,0,'AHST',],[62240616000,62256337200,62240583600,62256304800,-32400,1,'AHDT',],[62256337200,62262388800,62256301200,62262352800,-36000,0,'AHST',],[62262388800,62287786800,62262356400,62287754400,-32400,1,'AHDT',],[62287786800,62298072000,62287750800,62298036000,-36000,0,'AHST',],[62298072000,62319236400,62298039600,62319204000,-32400,1,'AHDT',],[62319236400,62334964800,62319200400,62334928800,-36000,0,'AHST',],[62334964800,62351290800,62334932400,62351258400,-32400,1,'AHDT',],[62351290800,62366414400,62351254800,62366378400,-36000,0,'AHST',],[62366414400,62382740400,62366382000,62382708000,-32400,1,'AHDT',],[62382740400,62398468800,62382704400,62398432800,-36000,0,'AHST',],[62398468800,62414190000,62398436400,62414157600,-32400,1,'AHDT',],[62414190000,62429918400,62414154000,62429882400,-36000,0,'AHST',],[62429918400,62445639600,62429886000,62445607200,-32400,1,'AHDT',],[62445639600,62461368000,62445603600,62461332000,-36000,0,'AHST',],[62461368000,62477089200,62461335600,62477056800,-32400,1,'AHDT',],[62477089200,62492817600,62477053200,62492781600,-36000,0,'AHST',],[62492817600,62508538800,62492785200,62508506400,-32400,1,'AHDT',],[62508538800,62524267200,62508502800,62524231200,-36000,0,'AHST',],[62524267200,62540593200,62524234800,62540560800,-32400,1,'AHDT',],[62540593200,62555716800,62540557200,62555680800,-36000,0,'AHST',],[62555716800,62572042800,62555684400,62572010400,-32400,1,'AHDT',],[62572042800,62574714000,62572010400,62574681600,-32400,0,'YST',],[62574714000,62587767600,62574681600,62587735200,-32400,0,'AKST',],[62587767600,62603488800,62587738800,62603460000,-28800,1,'AKDT',],[62603488800,62619217200,62603456400,62619184800,-32400,0,'AKST',],[62619217200,62634938400,62619188400,62634909600,-28800,1,'AKDT',],[62634938400,62650666800,62634906000,62650634400,-32400,0,'AKST',],[62650666800,62666388000,62650638000,62666359200,-28800,1,'AKDT',],[62666388000,62680302000,62666355600,62680269600,-32400,0,'AKST',],[62680302000,62697837600,62680273200,62697808800,-28800,1,'AKDT',],[62697837600,62711751600,62697805200,62711719200,-32400,0,'AKST',],[62711751600,62729892000,62711722800,62729863200,-28800,1,'AKDT',],[62729892000,62743201200,62729859600,62743168800,-32400,0,'AKST',],[62743201200,62761341600,62743172400,62761312800,-28800,1,'AKDT',],[62761341600,62774650800,62761309200,62774618400,-32400,0,'AKST',],[62774650800,62792791200,62774622000,62792762400,-28800,1,'AKDT',],[62792791200,62806705200,62792758800,62806672800,-32400,0,'AKST',],[62806705200,62824240800,62806676400,62824212000,-28800,1,'AKDT',],[62824240800,62838154800,62824208400,62838122400,-32400,0,'AKST',],[62838154800,62855690400,62838126000,62855661600,-28800,1,'AKDT',],[62855690400,62869604400,62855658000,62869572000,-32400,0,'AKST',],[62869604400,62887744800,62869575600,62887716000,-28800,1,'AKDT',],[62887744800,62901054000,62887712400,62901021600,-32400,0,'AKST',],[62901054000,62919194400,62901025200,62919165600,-28800,1,'AKDT',],[62919194400,62932503600,62919162000,62932471200,-32400,0,'AKST',],[62932503600,62950644000,62932474800,62950615200,-28800,1,'AKDT',],[62950644000,62964558000,62950611600,62964525600,-32400,0,'AKST',],[62964558000,62982093600,62964529200,62982064800,-28800,1,'AKDT',],[62982093600,62996007600,62982061200,62995975200,-32400,0,'AKST',],[62996007600,63013543200,62995978800,63013514400,-28800,1,'AKDT',],[63013543200,63027457200,63013510800,63027424800,-32400,0,'AKST',],[63027457200,63044992800,63027428400,63044964000,-28800,1,'AKDT',],[63044992800,63058906800,63044960400,63058874400,-32400,0,'AKST',],[63058906800,63077047200,63058878000,63077018400,-28800,1,'AKDT',],[63077047200,63090356400,63077014800,63090324000,-32400,0,'AKST',],[63090356400,63108496800,63090327600,63108468000,-28800,1,'AKDT',],[63108496800,63121806000,63108464400,63121773600,-32400,0,'AKST',],[63121806000,63139946400,63121777200,63139917600,-28800,1,'AKDT',],[63139946400,63153860400,63139914000,63153828000,-32400,0,'AKST',],[63153860400,63171396000,63153831600,63171367200,-28800,1,'AKDT',],[63171396000,63185310000,63171363600,63185277600,-32400,0,'AKST',],[63185310000,63202845600,63185281200,63202816800,-28800,1,'AKDT',],[63202845600,63216759600,63202813200,63216727200,-32400,0,'AKST',],[63216759600,63234900000,63216730800,63234871200,-28800,1,'AKDT',],[63234900000,63248209200,63234867600,63248176800,-32400,0,'AKST',],[63248209200,63266349600,63248180400,63266320800,-28800,1,'AKDT',],[63266349600,63279658800,63266317200,63279626400,-32400,0,'AKST',],[63279658800,63297799200,63279630000,63297770400,-28800,1,'AKDT',],[63297799200,63309294000,63297766800,63309261600,-32400,0,'AKST',],[63309294000,63329853600,63309265200,63329824800,-28800,1,'AKDT',],[63329853600,63340743600,63329821200,63340711200,-32400,0,'AKST',],[63340743600,63361303200,63340714800,63361274400,-28800,1,'AKDT',],[63361303200,63372193200,63361270800,63372160800,-32400,0,'AKST',],[63372193200,63392752800,63372164400,63392724000,-28800,1,'AKDT',],[63392752800,63404247600,63392720400,63404215200,-32400,0,'AKST',],[63404247600,63424807200,63404218800,63424778400,-28800,1,'AKDT',],[63424807200,63435697200,63424774800,63435664800,-32400,0,'AKST',],[63435697200,63456256800,63435668400,63456228000,-28800,1,'AKDT',],[63456256800,63467146800,63456224400,63467114400,-32400,0,'AKST',],[63467146800,63487706400,63467118000,63487677600,-28800,1,'AKDT',],[63487706400,63498596400,63487674000,63498564000,-32400,0,'AKST',],[63498596400,63519156000,63498567600,63519127200,-28800,1,'AKDT',],[63519156000,63530046000,63519123600,63530013600,-32400,0,'AKST',],[63530046000,63550605600,63530017200,63550576800,-28800,1,'AKDT',],[63550605600,63561495600,63550573200,63561463200,-32400,0,'AKST',],[63561495600,63582055200,63561466800,63582026400,-28800,1,'AKDT',],[63582055200,63593550000,63582022800,63593517600,-32400,0,'AKST',],[63593550000,63614109600,63593521200,63614080800,-28800,1,'AKDT',],[63614109600,63624999600,63614077200,63624967200,-32400,0,'AKST',],[63624999600,63645559200,63624970800,63645530400,-28800,1,'AKDT',],[63645559200,63656449200,63645526800,63656416800,-32400,0,'AKST',],[63656449200,63677008800,63656420400,63676980000,-28800,1,'AKDT',],[63677008800,63687898800,63676976400,63687866400,-32400,0,'AKST',],[63687898800,63708458400,63687870000,63708429600,-28800,1,'AKDT',],[63708458400,63719348400,63708426000,63719316000,-32400,0,'AKST',],[63719348400,63739908000,63719319600,63739879200,-28800,1,'AKDT',],[63739908000,63751402800,63739875600,63751370400,-32400,0,'AKST',],[63751402800,63771962400,63751374000,63771933600,-28800,1,'AKDT',],[63771962400,63782852400,63771930000,63782820000,-32400,0,'AKST',],[63782852400,63803412000,63782823600,63803383200,-28800,1,'AKDT',],[63803412000,63814302000,63803379600,63814269600,-32400,0,'AKST',],[63814302000,63834861600,63814273200,63834832800,-28800,1,'AKDT',],[63834861600,63845751600,63834829200,63845719200,-32400,0,'AKST',],[63845751600,63866311200,63845722800,63866282400,-28800,1,'AKDT',],[63866311200,63877201200,63866278800,63877168800,-32400,0,'AKST',],[63877201200,63897760800,63877172400,63897732000,-28800,1,'AKDT',],[63897760800,63908650800,63897728400,63908618400,-32400,0,'AKST',],[63908650800,63929210400,63908622000,63929181600,-28800,1,'AKDT',],[63929210400,63940705200,63929178000,63940672800,-32400,0,'AKST',],[63940705200,63961264800,63940676400,63961236000,-28800,1,'AKDT',],];sub olson_version {'2016a'}sub has_dst_changes {61}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-32400}my$last_observance=bless({'format'=>'AK%sT','gmtoff'=>'-9:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>724244,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>724244,'utc_rd_secs'=>0,'utc_year'=>1984 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-32400,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>724244,'local_rd_secs'=>32400,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>724244,'utc_rd_secs'=>32400,'utc_year'=>1984 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_ANCHORAGE

$fatpacked{"DateTime/TimeZone/America/Araguaina.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_ARAGUAINA';
  package DateTime::TimeZone::America::Araguaina;$DateTime::TimeZone::America::Araguaina::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Araguaina::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60368469168,DateTime::TimeZone::NEG_INFINITY,60368457600,-11568,0,'LMT',],[60368469168,60928725600,60368458368,60928714800,-10800,0,'BRT',],[60928725600,60944320800,60928718400,60944313600,-7200,1,'BRST',],[60944320800,60960308400,60944310000,60960297600,-10800,0,'BRT',],[60960308400,60975856800,60960301200,60975849600,-7200,1,'BRST',],[60975856800,61501863600,60975846000,61501852800,-10800,0,'BRT',],[61501863600,61513614000,61501856400,61513606800,-7200,1,'BRST',],[61513614000,61533399600,61513603200,61533388800,-10800,0,'BRT',],[61533399600,61543850400,61533392400,61543843200,-7200,1,'BRST',],[61543850400,61564935600,61543839600,61564924800,-10800,0,'BRT',],[61564935600,61575472800,61564928400,61575465600,-7200,1,'BRST',],[61575472800,61596558000,61575462000,61596547200,-10800,0,'BRT',],[61596558000,61604330400,61596550800,61604323200,-7200,1,'BRST',],[61604330400,61944318000,61604319600,61944307200,-10800,0,'BRT',],[61944318000,61951485600,61944310800,61951478400,-7200,1,'BRST',],[61951485600,61980519600,61951474800,61980508800,-10800,0,'BRT',],[61980519600,61985613600,61980512400,61985606400,-7200,1,'BRST',],[61985613600,62006785200,61985602800,62006774400,-10800,0,'BRT',],[62006785200,62014557600,62006778000,62014550400,-7200,1,'BRST',],[62014557600,62035729200,62014546800,62035718400,-10800,0,'BRT',],[62035729200,62046093600,62035722000,62046086400,-7200,1,'BRST',],[62046093600,62067265200,62046082800,62067254400,-10800,0,'BRT',],[62067265200,62077716000,62067258000,62077708800,-7200,1,'BRST',],[62077716000,62635431600,62077705200,62635420800,-10800,0,'BRT',],[62635431600,62646919200,62635424400,62646912000,-7200,1,'BRST',],[62646919200,62666276400,62646908400,62666265600,-10800,0,'BRT',],[62666276400,62675949600,62666269200,62675942400,-7200,1,'BRST',],[62675949600,62697812400,62675938800,62697801600,-10800,0,'BRT',],[62697812400,62706880800,62697805200,62706873600,-7200,1,'BRST',],[62706880800,62728657200,62706870000,62728646400,-10800,0,'BRT',],[62728657200,62737725600,62728650000,62737718400,-7200,1,'BRST',],[62737725600,62760106800,62737714800,62760096000,-10800,0,'BRT',],[62760106800,62770384800,62760099600,62770377600,-7200,1,'BRST',],[62770384800,62789223600,62770374000,62789212800,-10800,0,'BRT',],[62789223600,62946730800,62789212800,62946720000,-10800,0,'BRT',],[62946730800,62949409200,62946720000,62949398400,-10800,0,'BRT',],[62949409200,62959687200,62949402000,62959680000,-7200,1,'BRST',],[62959687200,62980254000,62959676400,62980243200,-10800,0,'BRT',],[62980254000,62991741600,62980246800,62991734400,-7200,1,'BRST',],[62991741600,63011790000,62991730800,63011779200,-10800,0,'BRT',],[63011790000,63024400800,63011782800,63024393600,-7200,1,'BRST',],[63024400800,63043758000,63024390000,63043747200,-10800,0,'BRT',],[63043758000,63055245600,63043750800,63055238400,-7200,1,'BRST',],[63055245600,63074602800,63055234800,63074592000,-10800,0,'BRT',],[63074602800,63087300000,63074595600,63087292800,-7200,1,'BRST',],[63087300000,63106657200,63087289200,63106646400,-10800,0,'BRT',],[63106657200,63118144800,63106650000,63118137600,-7200,1,'BRST',],[63118144800,63138711600,63118134000,63138700800,-10800,0,'BRT',],[63138711600,63149594400,63138704400,63149587200,-7200,1,'BRST',],[63149594400,63171975600,63149583600,63171964800,-10800,0,'BRT',],[63171975600,63181044000,63171968400,63181036800,-7200,1,'BRST',],[63181044000,63200055600,63181033200,63200044800,-10800,0,'BRT',],[63200055600,63486471600,63200044800,63486460800,-10800,0,'BRT',],[63486471600,63496749600,63486464400,63496742400,-7200,1,'BRST',],[63496749600,63513687600,63496738800,63513676800,-10800,0,'BRT',],[63513687600,DateTime::TimeZone::INFINITY,63513676800,DateTime::TimeZone::INFINITY,-10800,0,'BRT',],];sub olson_version {'2016a'}sub has_dst_changes {25}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_ARAGUAINA

$fatpacked{"DateTime/TimeZone/America/Argentina/Buenos_Aires.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_ARGENTINA_BUENOS_AIRES';
  package DateTime::TimeZone::America::Argentina::Buenos_Aires;$DateTime::TimeZone::America::Argentina::Buenos_Aires::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Argentina::Buenos_Aires::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59763585228,DateTime::TimeZone::NEG_INFINITY,59763571200,-14028,0,'LMT',],[59763585228,60568229808,59763569820,60568214400,-15408,0,'CMT',],[60568229808,60902251200,60568215408,60902236800,-14400,0,'ART',],[60902251200,60912702000,60902240400,60912691200,-10800,1,'ARST',],[60912702000,60929726400,60912687600,60929712000,-14400,0,'ART',],[60929726400,60941646000,60929715600,60941635200,-10800,1,'ARST',],[60941646000,60962817600,60941631600,60962803200,-14400,0,'ART',],[60962817600,60973182000,60962806800,60973171200,-10800,1,'ARST',],[60973182000,60994353600,60973167600,60994339200,-14400,0,'ART',],[60994353600,61004718000,60994342800,61004707200,-10800,1,'ARST',],[61004718000,61025889600,61004703600,61025875200,-14400,0,'ART',],[61025889600,61036254000,61025878800,61036243200,-10800,1,'ARST',],[61036254000,61057425600,61036239600,61057411200,-14400,0,'ART',],[61057425600,61067876400,61057414800,61067865600,-10800,1,'ARST',],[61067876400,61089048000,61067862000,61089033600,-14400,0,'ART',],[61089048000,61099412400,61089037200,61099401600,-10800,1,'ARST',],[61099412400,61120584000,61099398000,61120569600,-14400,0,'ART',],[61120584000,61130948400,61120573200,61130937600,-10800,1,'ARST',],[61130948400,61152120000,61130934000,61152105600,-14400,0,'ART',],[61152120000,61162484400,61152109200,61162473600,-10800,1,'ARST',],[61162484400,61183656000,61162470000,61183641600,-14400,0,'ART',],[61183656000,61194106800,61183645200,61194096000,-10800,1,'ARST',],[61194106800,61204651200,61194092400,61204636800,-14400,0,'ART',],[61204651200,61234801200,61204640400,61234790400,-10800,1,'ARST',],[61234801200,61245345600,61234786800,61245331200,-14400,0,'ART',],[61245345600,61301934000,61245334800,61301923200,-10800,1,'ARST',],[61301934000,61308417600,61301919600,61308403200,-14400,0,'ART',],[61308417600,61383409200,61308406800,61383398400,-10800,1,'ARST',],[61383409200,61401902400,61383394800,61401888000,-14400,0,'ART',],[61401902400,61938356400,61401891600,61938345600,-10800,1,'ARST',],[61938356400,61944840000,61938342000,61944825600,-14400,0,'ART',],[61944840000,61951489200,61944829200,61951478400,-10800,1,'ARST',],[61951489200,61971192000,61951474800,61971177600,-14400,0,'ART',],[61971192000,61983025200,61971181200,61983014400,-10800,1,'ARST',],[61983025200,62002728000,61983010800,62002713600,-14400,0,'ART',],[62002728000,62014561200,62002717200,62014550400,-10800,1,'ARST',],[62014561200,62034264000,62014546800,62034249600,-14400,0,'ART',],[62034264000,62048862000,62034253200,62048851200,-10800,1,'ARST',],[62048862000,62064590400,62048847600,62064576000,-14400,0,'ART',],[62064590400,62080916400,62064579600,62080905600,-10800,1,'ARST',],[62080916400,62096644800,62080902000,62096630400,-14400,0,'ART',],[62096644800,62112366000,62096634000,62112355200,-10800,1,'ARST',],[62112366000,62128094400,62112351600,62128080000,-14400,0,'ART',],[62128094400,62263825200,62128083600,62263814400,-10800,0,'ART',],[62263825200,62272288800,62263818000,62272281600,-7200,1,'ARST',],[62272288800,62732631600,62272278000,62732620800,-10800,0,'ART',],[62732631600,62740749600,62732624400,62740742400,-7200,1,'ARST',],[62740749600,62760106800,62740738800,62760096000,-10800,0,'ART',],[62760106800,62772199200,62760099600,62772192000,-7200,1,'ARST',],[62772199200,62792161200,62772188400,62792150400,-10800,0,'ART',],[62792161200,62803648800,62792154000,62803641600,-7200,1,'ARST',],[62803648800,62823610800,62803638000,62823600000,-10800,0,'ART',],[62823610800,62835098400,62823603600,62835091200,-7200,1,'ARST',],[62835098400,62855060400,62835087600,62855049600,-10800,0,'ART',],[62855060400,62867152800,62855053200,62867145600,-7200,1,'ARST',],[62867152800,63074602800,62867142000,63074592000,-10800,0,'ART',],[63074602800,63087735600,63074592000,63087724800,-10800,1,'ARST',],[63087735600,63334666800,63087724800,63334656000,-10800,0,'ART',],[63334666800,63341316000,63334659600,63341308800,-7200,1,'ARST',],[63341316000,63360068400,63341305200,63360057600,-10800,0,'ART',],[63360068400,63372765600,63360061200,63372758400,-7200,1,'ARST',],[63372765600,DateTime::TimeZone::INFINITY,63372754800,DateTime::TimeZone::INFINITY,-10800,0,'ART',],];sub olson_version {'2016a'}sub has_dst_changes {29}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_ARGENTINA_BUENOS_AIRES

$fatpacked{"DateTime/TimeZone/America/Argentina/Catamarca.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_ARGENTINA_CATAMARCA';
  package DateTime::TimeZone::America::Argentina::Catamarca;$DateTime::TimeZone::America::Argentina::Catamarca::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Argentina::Catamarca::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59763586988,DateTime::TimeZone::NEG_INFINITY,59763571200,-15788,0,'LMT',],[59763586988,60568229808,59763571580,60568214400,-15408,0,'CMT',],[60568229808,60902251200,60568215408,60902236800,-14400,0,'ART',],[60902251200,60912702000,60902240400,60912691200,-10800,1,'ARST',],[60912702000,60929726400,60912687600,60929712000,-14400,0,'ART',],[60929726400,60941646000,60929715600,60941635200,-10800,1,'ARST',],[60941646000,60962817600,60941631600,60962803200,-14400,0,'ART',],[60962817600,60973182000,60962806800,60973171200,-10800,1,'ARST',],[60973182000,60994353600,60973167600,60994339200,-14400,0,'ART',],[60994353600,61004718000,60994342800,61004707200,-10800,1,'ARST',],[61004718000,61025889600,61004703600,61025875200,-14400,0,'ART',],[61025889600,61036254000,61025878800,61036243200,-10800,1,'ARST',],[61036254000,61057425600,61036239600,61057411200,-14400,0,'ART',],[61057425600,61067876400,61057414800,61067865600,-10800,1,'ARST',],[61067876400,61089048000,61067862000,61089033600,-14400,0,'ART',],[61089048000,61099412400,61089037200,61099401600,-10800,1,'ARST',],[61099412400,61120584000,61099398000,61120569600,-14400,0,'ART',],[61120584000,61130948400,61120573200,61130937600,-10800,1,'ARST',],[61130948400,61152120000,61130934000,61152105600,-14400,0,'ART',],[61152120000,61162484400,61152109200,61162473600,-10800,1,'ARST',],[61162484400,61183656000,61162470000,61183641600,-14400,0,'ART',],[61183656000,61194106800,61183645200,61194096000,-10800,1,'ARST',],[61194106800,61204651200,61194092400,61204636800,-14400,0,'ART',],[61204651200,61234801200,61204640400,61234790400,-10800,1,'ARST',],[61234801200,61245345600,61234786800,61245331200,-14400,0,'ART',],[61245345600,61301934000,61245334800,61301923200,-10800,1,'ARST',],[61301934000,61308417600,61301919600,61308403200,-14400,0,'ART',],[61308417600,61383409200,61308406800,61383398400,-10800,1,'ARST',],[61383409200,61401902400,61383394800,61401888000,-14400,0,'ART',],[61401902400,61938356400,61401891600,61938345600,-10800,1,'ARST',],[61938356400,61944840000,61938342000,61944825600,-14400,0,'ART',],[61944840000,61951489200,61944829200,61951478400,-10800,1,'ARST',],[61951489200,61971192000,61951474800,61971177600,-14400,0,'ART',],[61971192000,61983025200,61971181200,61983014400,-10800,1,'ARST',],[61983025200,62002728000,61983010800,62002713600,-14400,0,'ART',],[62002728000,62014561200,62002717200,62014550400,-10800,1,'ARST',],[62014561200,62034264000,62014546800,62034249600,-14400,0,'ART',],[62034264000,62048862000,62034253200,62048851200,-10800,1,'ARST',],[62048862000,62064590400,62048847600,62064576000,-14400,0,'ART',],[62064590400,62080916400,62064579600,62080905600,-10800,1,'ARST',],[62080916400,62096644800,62080902000,62096630400,-14400,0,'ART',],[62096644800,62112366000,62096634000,62112355200,-10800,1,'ARST',],[62112366000,62128094400,62112351600,62128080000,-14400,0,'ART',],[62128094400,62263825200,62128083600,62263814400,-10800,0,'ART',],[62263825200,62272288800,62263818000,62272281600,-7200,1,'ARST',],[62272288800,62732631600,62272278000,62732620800,-10800,0,'ART',],[62732631600,62740749600,62732624400,62740742400,-7200,1,'ARST',],[62740749600,62760106800,62740738800,62760096000,-10800,0,'ART',],[62760106800,62772199200,62760099600,62772192000,-7200,1,'ARST',],[62772199200,62792161200,62772188400,62792150400,-10800,0,'ART',],[62792161200,62803648800,62792154000,62803641600,-7200,1,'ARST',],[62803648800,62823614400,62803634400,62823600000,-14400,0,'WART',],[62823614400,62835098400,62823607200,62835091200,-7200,1,'ARST',],[62835098400,62855060400,62835087600,62855049600,-10800,0,'ART',],[62855060400,62867152800,62855053200,62867145600,-7200,1,'ARST',],[62867152800,63074602800,62867142000,63074592000,-10800,0,'ART',],[63074602800,63087735600,63074592000,63087724800,-10800,1,'ARST',],[63087735600,63221742000,63087724800,63221731200,-10800,0,'ART',],[63221742000,63223387200,63221727600,63223372800,-14400,0,'WART',],[63223387200,63334666800,63223376400,63334656000,-10800,0,'ART',],[63334666800,63341316000,63334659600,63341308800,-7200,1,'ARST',],[63341316000,63359982000,63341305200,63359971200,-10800,0,'ART',],[63359982000,DateTime::TimeZone::INFINITY,63359971200,DateTime::TimeZone::INFINITY,-10800,0,'ART',],];sub olson_version {'2016a'}sub has_dst_changes {28}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_ARGENTINA_CATAMARCA

$fatpacked{"DateTime/TimeZone/America/Argentina/Cordoba.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_ARGENTINA_CORDOBA';
  package DateTime::TimeZone::America::Argentina::Cordoba;$DateTime::TimeZone::America::Argentina::Cordoba::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Argentina::Cordoba::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59763586608,DateTime::TimeZone::NEG_INFINITY,59763571200,-15408,0,'LMT',],[59763586608,60568229808,59763571200,60568214400,-15408,0,'CMT',],[60568229808,60902251200,60568215408,60902236800,-14400,0,'ART',],[60902251200,60912702000,60902240400,60912691200,-10800,1,'ARST',],[60912702000,60929726400,60912687600,60929712000,-14400,0,'ART',],[60929726400,60941646000,60929715600,60941635200,-10800,1,'ARST',],[60941646000,60962817600,60941631600,60962803200,-14400,0,'ART',],[60962817600,60973182000,60962806800,60973171200,-10800,1,'ARST',],[60973182000,60994353600,60973167600,60994339200,-14400,0,'ART',],[60994353600,61004718000,60994342800,61004707200,-10800,1,'ARST',],[61004718000,61025889600,61004703600,61025875200,-14400,0,'ART',],[61025889600,61036254000,61025878800,61036243200,-10800,1,'ARST',],[61036254000,61057425600,61036239600,61057411200,-14400,0,'ART',],[61057425600,61067876400,61057414800,61067865600,-10800,1,'ARST',],[61067876400,61089048000,61067862000,61089033600,-14400,0,'ART',],[61089048000,61099412400,61089037200,61099401600,-10800,1,'ARST',],[61099412400,61120584000,61099398000,61120569600,-14400,0,'ART',],[61120584000,61130948400,61120573200,61130937600,-10800,1,'ARST',],[61130948400,61152120000,61130934000,61152105600,-14400,0,'ART',],[61152120000,61162484400,61152109200,61162473600,-10800,1,'ARST',],[61162484400,61183656000,61162470000,61183641600,-14400,0,'ART',],[61183656000,61194106800,61183645200,61194096000,-10800,1,'ARST',],[61194106800,61204651200,61194092400,61204636800,-14400,0,'ART',],[61204651200,61234801200,61204640400,61234790400,-10800,1,'ARST',],[61234801200,61245345600,61234786800,61245331200,-14400,0,'ART',],[61245345600,61301934000,61245334800,61301923200,-10800,1,'ARST',],[61301934000,61308417600,61301919600,61308403200,-14400,0,'ART',],[61308417600,61383409200,61308406800,61383398400,-10800,1,'ARST',],[61383409200,61401902400,61383394800,61401888000,-14400,0,'ART',],[61401902400,61938356400,61401891600,61938345600,-10800,1,'ARST',],[61938356400,61944840000,61938342000,61944825600,-14400,0,'ART',],[61944840000,61951489200,61944829200,61951478400,-10800,1,'ARST',],[61951489200,61971192000,61951474800,61971177600,-14400,0,'ART',],[61971192000,61983025200,61971181200,61983014400,-10800,1,'ARST',],[61983025200,62002728000,61983010800,62002713600,-14400,0,'ART',],[62002728000,62014561200,62002717200,62014550400,-10800,1,'ARST',],[62014561200,62034264000,62014546800,62034249600,-14400,0,'ART',],[62034264000,62048862000,62034253200,62048851200,-10800,1,'ARST',],[62048862000,62064590400,62048847600,62064576000,-14400,0,'ART',],[62064590400,62080916400,62064579600,62080905600,-10800,1,'ARST',],[62080916400,62096644800,62080902000,62096630400,-14400,0,'ART',],[62096644800,62112366000,62096634000,62112355200,-10800,1,'ARST',],[62112366000,62128094400,62112351600,62128080000,-14400,0,'ART',],[62128094400,62263825200,62128083600,62263814400,-10800,0,'ART',],[62263825200,62272288800,62263818000,62272281600,-7200,1,'ARST',],[62272288800,62732631600,62272278000,62732620800,-10800,0,'ART',],[62732631600,62740749600,62732624400,62740742400,-7200,1,'ARST',],[62740749600,62760106800,62740738800,62760096000,-10800,0,'ART',],[62760106800,62772199200,62760099600,62772192000,-7200,1,'ARST',],[62772199200,62792161200,62772188400,62792150400,-10800,0,'ART',],[62792161200,62803648800,62792154000,62803641600,-7200,1,'ARST',],[62803648800,62823614400,62803634400,62823600000,-14400,0,'WART',],[62823614400,62835098400,62823607200,62835091200,-7200,1,'ARST',],[62835098400,62855060400,62835087600,62855049600,-10800,0,'ART',],[62855060400,62867152800,62855053200,62867145600,-7200,1,'ARST',],[62867152800,63074602800,62867142000,63074592000,-10800,0,'ART',],[63074602800,63087735600,63074592000,63087724800,-10800,1,'ARST',],[63087735600,63334666800,63087724800,63334656000,-10800,0,'ART',],[63334666800,63341316000,63334659600,63341308800,-7200,1,'ARST',],[63341316000,63360068400,63341305200,63360057600,-10800,0,'ART',],[63360068400,63372765600,63360061200,63372758400,-7200,1,'ARST',],[63372765600,DateTime::TimeZone::INFINITY,63372754800,DateTime::TimeZone::INFINITY,-10800,0,'ART',],];sub olson_version {'2016a'}sub has_dst_changes {29}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_ARGENTINA_CORDOBA

$fatpacked{"DateTime/TimeZone/America/Argentina/Jujuy.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_ARGENTINA_JUJUY';
  package DateTime::TimeZone::America::Argentina::Jujuy;$DateTime::TimeZone::America::Argentina::Jujuy::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Argentina::Jujuy::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59763586872,DateTime::TimeZone::NEG_INFINITY,59763571200,-15672,0,'LMT',],[59763586872,60568229808,59763571464,60568214400,-15408,0,'CMT',],[60568229808,60902251200,60568215408,60902236800,-14400,0,'ART',],[60902251200,60912702000,60902240400,60912691200,-10800,1,'ARST',],[60912702000,60929726400,60912687600,60929712000,-14400,0,'ART',],[60929726400,60941646000,60929715600,60941635200,-10800,1,'ARST',],[60941646000,60962817600,60941631600,60962803200,-14400,0,'ART',],[60962817600,60973182000,60962806800,60973171200,-10800,1,'ARST',],[60973182000,60994353600,60973167600,60994339200,-14400,0,'ART',],[60994353600,61004718000,60994342800,61004707200,-10800,1,'ARST',],[61004718000,61025889600,61004703600,61025875200,-14400,0,'ART',],[61025889600,61036254000,61025878800,61036243200,-10800,1,'ARST',],[61036254000,61057425600,61036239600,61057411200,-14400,0,'ART',],[61057425600,61067876400,61057414800,61067865600,-10800,1,'ARST',],[61067876400,61089048000,61067862000,61089033600,-14400,0,'ART',],[61089048000,61099412400,61089037200,61099401600,-10800,1,'ARST',],[61099412400,61120584000,61099398000,61120569600,-14400,0,'ART',],[61120584000,61130948400,61120573200,61130937600,-10800,1,'ARST',],[61130948400,61152120000,61130934000,61152105600,-14400,0,'ART',],[61152120000,61162484400,61152109200,61162473600,-10800,1,'ARST',],[61162484400,61183656000,61162470000,61183641600,-14400,0,'ART',],[61183656000,61194106800,61183645200,61194096000,-10800,1,'ARST',],[61194106800,61204651200,61194092400,61204636800,-14400,0,'ART',],[61204651200,61234801200,61204640400,61234790400,-10800,1,'ARST',],[61234801200,61245345600,61234786800,61245331200,-14400,0,'ART',],[61245345600,61301934000,61245334800,61301923200,-10800,1,'ARST',],[61301934000,61308417600,61301919600,61308403200,-14400,0,'ART',],[61308417600,61383409200,61308406800,61383398400,-10800,1,'ARST',],[61383409200,61401902400,61383394800,61401888000,-14400,0,'ART',],[61401902400,61938356400,61401891600,61938345600,-10800,1,'ARST',],[61938356400,61944840000,61938342000,61944825600,-14400,0,'ART',],[61944840000,61951489200,61944829200,61951478400,-10800,1,'ARST',],[61951489200,61971192000,61951474800,61971177600,-14400,0,'ART',],[61971192000,61983025200,61971181200,61983014400,-10800,1,'ARST',],[61983025200,62002728000,61983010800,62002713600,-14400,0,'ART',],[62002728000,62014561200,62002717200,62014550400,-10800,1,'ARST',],[62014561200,62034264000,62014546800,62034249600,-14400,0,'ART',],[62034264000,62048862000,62034253200,62048851200,-10800,1,'ARST',],[62048862000,62064590400,62048847600,62064576000,-14400,0,'ART',],[62064590400,62080916400,62064579600,62080905600,-10800,1,'ARST',],[62080916400,62096644800,62080902000,62096630400,-14400,0,'ART',],[62096644800,62112366000,62096634000,62112355200,-10800,1,'ARST',],[62112366000,62128094400,62112351600,62128080000,-14400,0,'ART',],[62128094400,62263825200,62128083600,62263814400,-10800,0,'ART',],[62263825200,62272288800,62263818000,62272281600,-7200,1,'ARST',],[62272288800,62732631600,62272278000,62732620800,-10800,0,'ART',],[62732631600,62740749600,62732624400,62740742400,-7200,1,'ARST',],[62740749600,62760106800,62740738800,62760096000,-10800,0,'ART',],[62760106800,62772199200,62760099600,62772192000,-7200,1,'ARST',],[62772199200,62792769600,62772184800,62792755200,-14400,0,'WART',],[62792769600,62804862000,62792758800,62804851200,-10800,1,'WARST',],[62804862000,62822404800,62804847600,62822390400,-14400,0,'WART',],[62822404800,62829914400,62822397600,62829907200,-7200,1,'ARST',],[62829914400,62835098400,62829907200,62835091200,-7200,1,'ARST',],[62835098400,62855060400,62835087600,62855049600,-10800,0,'ART',],[62855060400,62867152800,62855053200,62867145600,-7200,1,'ARST',],[62867152800,63074602800,62867142000,63074592000,-10800,0,'ART',],[63074602800,63087735600,63074592000,63087724800,-10800,1,'ARST',],[63087735600,63334666800,63087724800,63334656000,-10800,0,'ART',],[63334666800,63341316000,63334659600,63341308800,-7200,1,'ARST',],[63341316000,63359982000,63341305200,63359971200,-10800,0,'ART',],[63359982000,DateTime::TimeZone::INFINITY,63359971200,DateTime::TimeZone::INFINITY,-10800,0,'ART',],];sub olson_version {'2016a'}sub has_dst_changes {29}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_ARGENTINA_JUJUY

$fatpacked{"DateTime/TimeZone/America/Argentina/La_Rioja.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_ARGENTINA_LA_RIOJA';
  package DateTime::TimeZone::America::Argentina::La_Rioja;$DateTime::TimeZone::America::Argentina::La_Rioja::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Argentina::La_Rioja::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59763587244,DateTime::TimeZone::NEG_INFINITY,59763571200,-16044,0,'LMT',],[59763587244,60568229808,59763571836,60568214400,-15408,0,'CMT',],[60568229808,60902251200,60568215408,60902236800,-14400,0,'ART',],[60902251200,60912702000,60902240400,60912691200,-10800,1,'ARST',],[60912702000,60929726400,60912687600,60929712000,-14400,0,'ART',],[60929726400,60941646000,60929715600,60941635200,-10800,1,'ARST',],[60941646000,60962817600,60941631600,60962803200,-14400,0,'ART',],[60962817600,60973182000,60962806800,60973171200,-10800,1,'ARST',],[60973182000,60994353600,60973167600,60994339200,-14400,0,'ART',],[60994353600,61004718000,60994342800,61004707200,-10800,1,'ARST',],[61004718000,61025889600,61004703600,61025875200,-14400,0,'ART',],[61025889600,61036254000,61025878800,61036243200,-10800,1,'ARST',],[61036254000,61057425600,61036239600,61057411200,-14400,0,'ART',],[61057425600,61067876400,61057414800,61067865600,-10800,1,'ARST',],[61067876400,61089048000,61067862000,61089033600,-14400,0,'ART',],[61089048000,61099412400,61089037200,61099401600,-10800,1,'ARST',],[61099412400,61120584000,61099398000,61120569600,-14400,0,'ART',],[61120584000,61130948400,61120573200,61130937600,-10800,1,'ARST',],[61130948400,61152120000,61130934000,61152105600,-14400,0,'ART',],[61152120000,61162484400,61152109200,61162473600,-10800,1,'ARST',],[61162484400,61183656000,61162470000,61183641600,-14400,0,'ART',],[61183656000,61194106800,61183645200,61194096000,-10800,1,'ARST',],[61194106800,61204651200,61194092400,61204636800,-14400,0,'ART',],[61204651200,61234801200,61204640400,61234790400,-10800,1,'ARST',],[61234801200,61245345600,61234786800,61245331200,-14400,0,'ART',],[61245345600,61301934000,61245334800,61301923200,-10800,1,'ARST',],[61301934000,61308417600,61301919600,61308403200,-14400,0,'ART',],[61308417600,61383409200,61308406800,61383398400,-10800,1,'ARST',],[61383409200,61401902400,61383394800,61401888000,-14400,0,'ART',],[61401902400,61938356400,61401891600,61938345600,-10800,1,'ARST',],[61938356400,61944840000,61938342000,61944825600,-14400,0,'ART',],[61944840000,61951489200,61944829200,61951478400,-10800,1,'ARST',],[61951489200,61971192000,61951474800,61971177600,-14400,0,'ART',],[61971192000,61983025200,61971181200,61983014400,-10800,1,'ARST',],[61983025200,62002728000,61983010800,62002713600,-14400,0,'ART',],[62002728000,62014561200,62002717200,62014550400,-10800,1,'ARST',],[62014561200,62034264000,62014546800,62034249600,-14400,0,'ART',],[62034264000,62048862000,62034253200,62048851200,-10800,1,'ARST',],[62048862000,62064590400,62048847600,62064576000,-14400,0,'ART',],[62064590400,62080916400,62064579600,62080905600,-10800,1,'ARST',],[62080916400,62096644800,62080902000,62096630400,-14400,0,'ART',],[62096644800,62112366000,62096634000,62112355200,-10800,1,'ARST',],[62112366000,62128094400,62112351600,62128080000,-14400,0,'ART',],[62128094400,62263825200,62128083600,62263814400,-10800,0,'ART',],[62263825200,62272288800,62263818000,62272281600,-7200,1,'ARST',],[62272288800,62732631600,62272278000,62732620800,-10800,0,'ART',],[62732631600,62740749600,62732624400,62740742400,-7200,1,'ARST',],[62740749600,62760106800,62740738800,62760096000,-10800,0,'ART',],[62760106800,62772199200,62760099600,62772192000,-7200,1,'ARST',],[62772199200,62792161200,62772188400,62792150400,-10800,0,'ART',],[62792161200,62803476000,62792154000,62803468800,-7200,1,'ARST',],[62803476000,62809272000,62803461600,62809257600,-14400,0,'WART',],[62809272000,62823610800,62809261200,62823600000,-10800,0,'ART',],[62823610800,62835098400,62823603600,62835091200,-7200,1,'ARST',],[62835098400,62855060400,62835087600,62855049600,-10800,0,'ART',],[62855060400,62867152800,62855053200,62867145600,-7200,1,'ARST',],[62867152800,63074602800,62867142000,63074592000,-10800,0,'ART',],[63074602800,63087735600,63074592000,63087724800,-10800,1,'ARST',],[63087735600,63221742000,63087724800,63221731200,-10800,0,'ART',],[63221742000,63223387200,63221727600,63223372800,-14400,0,'WART',],[63223387200,63334666800,63223376400,63334656000,-10800,0,'ART',],[63334666800,63341316000,63334659600,63341308800,-7200,1,'ARST',],[63341316000,63359982000,63341305200,63359971200,-10800,0,'ART',],[63359982000,DateTime::TimeZone::INFINITY,63359971200,DateTime::TimeZone::INFINITY,-10800,0,'ART',],];sub olson_version {'2016a'}sub has_dst_changes {28}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_ARGENTINA_LA_RIOJA

$fatpacked{"DateTime/TimeZone/America/Argentina/Mendoza.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_ARGENTINA_MENDOZA';
  package DateTime::TimeZone::America::Argentina::Mendoza;$DateTime::TimeZone::America::Argentina::Mendoza::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Argentina::Mendoza::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59763587716,DateTime::TimeZone::NEG_INFINITY,59763571200,-16516,0,'LMT',],[59763587716,60568229808,59763572308,60568214400,-15408,0,'CMT',],[60568229808,60902251200,60568215408,60902236800,-14400,0,'ART',],[60902251200,60912702000,60902240400,60912691200,-10800,1,'ARST',],[60912702000,60929726400,60912687600,60929712000,-14400,0,'ART',],[60929726400,60941646000,60929715600,60941635200,-10800,1,'ARST',],[60941646000,60962817600,60941631600,60962803200,-14400,0,'ART',],[60962817600,60973182000,60962806800,60973171200,-10800,1,'ARST',],[60973182000,60994353600,60973167600,60994339200,-14400,0,'ART',],[60994353600,61004718000,60994342800,61004707200,-10800,1,'ARST',],[61004718000,61025889600,61004703600,61025875200,-14400,0,'ART',],[61025889600,61036254000,61025878800,61036243200,-10800,1,'ARST',],[61036254000,61057425600,61036239600,61057411200,-14400,0,'ART',],[61057425600,61067876400,61057414800,61067865600,-10800,1,'ARST',],[61067876400,61089048000,61067862000,61089033600,-14400,0,'ART',],[61089048000,61099412400,61089037200,61099401600,-10800,1,'ARST',],[61099412400,61120584000,61099398000,61120569600,-14400,0,'ART',],[61120584000,61130948400,61120573200,61130937600,-10800,1,'ARST',],[61130948400,61152120000,61130934000,61152105600,-14400,0,'ART',],[61152120000,61162484400,61152109200,61162473600,-10800,1,'ARST',],[61162484400,61183656000,61162470000,61183641600,-14400,0,'ART',],[61183656000,61194106800,61183645200,61194096000,-10800,1,'ARST',],[61194106800,61204651200,61194092400,61204636800,-14400,0,'ART',],[61204651200,61234801200,61204640400,61234790400,-10800,1,'ARST',],[61234801200,61245345600,61234786800,61245331200,-14400,0,'ART',],[61245345600,61301934000,61245334800,61301923200,-10800,1,'ARST',],[61301934000,61308417600,61301919600,61308403200,-14400,0,'ART',],[61308417600,61383409200,61308406800,61383398400,-10800,1,'ARST',],[61383409200,61401902400,61383394800,61401888000,-14400,0,'ART',],[61401902400,61938356400,61401891600,61938345600,-10800,1,'ARST',],[61938356400,61944840000,61938342000,61944825600,-14400,0,'ART',],[61944840000,61951489200,61944829200,61951478400,-10800,1,'ARST',],[61951489200,61971192000,61951474800,61971177600,-14400,0,'ART',],[61971192000,61983025200,61971181200,61983014400,-10800,1,'ARST',],[61983025200,62002728000,61983010800,62002713600,-14400,0,'ART',],[62002728000,62014561200,62002717200,62014550400,-10800,1,'ARST',],[62014561200,62034264000,62014546800,62034249600,-14400,0,'ART',],[62034264000,62048862000,62034253200,62048851200,-10800,1,'ARST',],[62048862000,62064590400,62048847600,62064576000,-14400,0,'ART',],[62064590400,62080916400,62064579600,62080905600,-10800,1,'ARST',],[62080916400,62096644800,62080902000,62096630400,-14400,0,'ART',],[62096644800,62112366000,62096634000,62112355200,-10800,1,'ARST',],[62112366000,62128094400,62112351600,62128080000,-14400,0,'ART',],[62128094400,62263825200,62128083600,62263814400,-10800,0,'ART',],[62263825200,62272288800,62263818000,62272281600,-7200,1,'ARST',],[62272288800,62732631600,62272278000,62732620800,-10800,0,'ART',],[62732631600,62740749600,62732624400,62740742400,-7200,1,'ARST',],[62740749600,62760106800,62740738800,62760096000,-10800,0,'ART',],[62760106800,62772199200,62760099600,62772192000,-7200,1,'ARST',],[62772199200,62791646400,62772184800,62791632000,-14400,0,'WART',],[62791646400,62803479600,62791635600,62803468800,-10800,1,'WARST',],[62803479600,62823182400,62803465200,62823168000,-14400,0,'WART',],[62823182400,62835102000,62823171600,62835091200,-10800,1,'WARST',],[62835102000,62855064000,62835087600,62855049600,-14400,0,'WART',],[62855064000,62867152800,62855056800,62867145600,-7200,1,'ARST',],[62867152800,63074602800,62867142000,63074592000,-10800,0,'ART',],[63074602800,63087735600,63074592000,63087724800,-10800,1,'ARST',],[63087735600,63220964400,63087724800,63220953600,-10800,0,'ART',],[63220964400,63231854400,63220950000,63231840000,-14400,0,'WART',],[63231854400,63334666800,63231843600,63334656000,-10800,0,'ART',],[63334666800,63341316000,63334659600,63341308800,-7200,1,'ARST',],[63341316000,63359982000,63341305200,63359971200,-10800,0,'ART',],[63359982000,DateTime::TimeZone::INFINITY,63359971200,DateTime::TimeZone::INFINITY,-10800,0,'ART',],];sub olson_version {'2016a'}sub has_dst_changes {28}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_ARGENTINA_MENDOZA

$fatpacked{"DateTime/TimeZone/America/Argentina/Rio_Gallegos.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_ARGENTINA_RIO_GALLEGOS';
  package DateTime::TimeZone::America::Argentina::Rio_Gallegos;$DateTime::TimeZone::America::Argentina::Rio_Gallegos::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Argentina::Rio_Gallegos::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59763587812,DateTime::TimeZone::NEG_INFINITY,59763571200,-16612,0,'LMT',],[59763587812,60568229808,59763572404,60568214400,-15408,0,'CMT',],[60568229808,60902251200,60568215408,60902236800,-14400,0,'ART',],[60902251200,60912702000,60902240400,60912691200,-10800,1,'ARST',],[60912702000,60929726400,60912687600,60929712000,-14400,0,'ART',],[60929726400,60941646000,60929715600,60941635200,-10800,1,'ARST',],[60941646000,60962817600,60941631600,60962803200,-14400,0,'ART',],[60962817600,60973182000,60962806800,60973171200,-10800,1,'ARST',],[60973182000,60994353600,60973167600,60994339200,-14400,0,'ART',],[60994353600,61004718000,60994342800,61004707200,-10800,1,'ARST',],[61004718000,61025889600,61004703600,61025875200,-14400,0,'ART',],[61025889600,61036254000,61025878800,61036243200,-10800,1,'ARST',],[61036254000,61057425600,61036239600,61057411200,-14400,0,'ART',],[61057425600,61067876400,61057414800,61067865600,-10800,1,'ARST',],[61067876400,61089048000,61067862000,61089033600,-14400,0,'ART',],[61089048000,61099412400,61089037200,61099401600,-10800,1,'ARST',],[61099412400,61120584000,61099398000,61120569600,-14400,0,'ART',],[61120584000,61130948400,61120573200,61130937600,-10800,1,'ARST',],[61130948400,61152120000,61130934000,61152105600,-14400,0,'ART',],[61152120000,61162484400,61152109200,61162473600,-10800,1,'ARST',],[61162484400,61183656000,61162470000,61183641600,-14400,0,'ART',],[61183656000,61194106800,61183645200,61194096000,-10800,1,'ARST',],[61194106800,61204651200,61194092400,61204636800,-14400,0,'ART',],[61204651200,61234801200,61204640400,61234790400,-10800,1,'ARST',],[61234801200,61245345600,61234786800,61245331200,-14400,0,'ART',],[61245345600,61301934000,61245334800,61301923200,-10800,1,'ARST',],[61301934000,61308417600,61301919600,61308403200,-14400,0,'ART',],[61308417600,61383409200,61308406800,61383398400,-10800,1,'ARST',],[61383409200,61401902400,61383394800,61401888000,-14400,0,'ART',],[61401902400,61938356400,61401891600,61938345600,-10800,1,'ARST',],[61938356400,61944840000,61938342000,61944825600,-14400,0,'ART',],[61944840000,61951489200,61944829200,61951478400,-10800,1,'ARST',],[61951489200,61971192000,61951474800,61971177600,-14400,0,'ART',],[61971192000,61983025200,61971181200,61983014400,-10800,1,'ARST',],[61983025200,62002728000,61983010800,62002713600,-14400,0,'ART',],[62002728000,62014561200,62002717200,62014550400,-10800,1,'ARST',],[62014561200,62034264000,62014546800,62034249600,-14400,0,'ART',],[62034264000,62048862000,62034253200,62048851200,-10800,1,'ARST',],[62048862000,62064590400,62048847600,62064576000,-14400,0,'ART',],[62064590400,62080916400,62064579600,62080905600,-10800,1,'ARST',],[62080916400,62096644800,62080902000,62096630400,-14400,0,'ART',],[62096644800,62112366000,62096634000,62112355200,-10800,1,'ARST',],[62112366000,62128094400,62112351600,62128080000,-14400,0,'ART',],[62128094400,62263825200,62128083600,62263814400,-10800,0,'ART',],[62263825200,62272288800,62263818000,62272281600,-7200,1,'ARST',],[62272288800,62732631600,62272278000,62732620800,-10800,0,'ART',],[62732631600,62740749600,62732624400,62740742400,-7200,1,'ARST',],[62740749600,62760106800,62740738800,62760096000,-10800,0,'ART',],[62760106800,62772199200,62760099600,62772192000,-7200,1,'ARST',],[62772199200,62792161200,62772188400,62792150400,-10800,0,'ART',],[62792161200,62803648800,62792154000,62803641600,-7200,1,'ARST',],[62803648800,62823610800,62803638000,62823600000,-10800,0,'ART',],[62823610800,62835098400,62823603600,62835091200,-7200,1,'ARST',],[62835098400,62855060400,62835087600,62855049600,-10800,0,'ART',],[62855060400,62867152800,62855053200,62867145600,-7200,1,'ARST',],[62867152800,63074602800,62867142000,63074592000,-10800,0,'ART',],[63074602800,63087735600,63074592000,63087724800,-10800,1,'ARST',],[63087735600,63221742000,63087724800,63221731200,-10800,0,'ART',],[63221742000,63223387200,63221727600,63223372800,-14400,0,'WART',],[63223387200,63334666800,63223376400,63334656000,-10800,0,'ART',],[63334666800,63341316000,63334659600,63341308800,-7200,1,'ARST',],[63341316000,63359982000,63341305200,63359971200,-10800,0,'ART',],[63359982000,DateTime::TimeZone::INFINITY,63359971200,DateTime::TimeZone::INFINITY,-10800,0,'ART',],];sub olson_version {'2016a'}sub has_dst_changes {28}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_ARGENTINA_RIO_GALLEGOS

$fatpacked{"DateTime/TimeZone/America/Argentina/Salta.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_ARGENTINA_SALTA';
  package DateTime::TimeZone::America::Argentina::Salta;$DateTime::TimeZone::America::Argentina::Salta::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Argentina::Salta::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59763586900,DateTime::TimeZone::NEG_INFINITY,59763571200,-15700,0,'LMT',],[59763586900,60568229808,59763571492,60568214400,-15408,0,'CMT',],[60568229808,60902251200,60568215408,60902236800,-14400,0,'ART',],[60902251200,60912702000,60902240400,60912691200,-10800,1,'ARST',],[60912702000,60929726400,60912687600,60929712000,-14400,0,'ART',],[60929726400,60941646000,60929715600,60941635200,-10800,1,'ARST',],[60941646000,60962817600,60941631600,60962803200,-14400,0,'ART',],[60962817600,60973182000,60962806800,60973171200,-10800,1,'ARST',],[60973182000,60994353600,60973167600,60994339200,-14400,0,'ART',],[60994353600,61004718000,60994342800,61004707200,-10800,1,'ARST',],[61004718000,61025889600,61004703600,61025875200,-14400,0,'ART',],[61025889600,61036254000,61025878800,61036243200,-10800,1,'ARST',],[61036254000,61057425600,61036239600,61057411200,-14400,0,'ART',],[61057425600,61067876400,61057414800,61067865600,-10800,1,'ARST',],[61067876400,61089048000,61067862000,61089033600,-14400,0,'ART',],[61089048000,61099412400,61089037200,61099401600,-10800,1,'ARST',],[61099412400,61120584000,61099398000,61120569600,-14400,0,'ART',],[61120584000,61130948400,61120573200,61130937600,-10800,1,'ARST',],[61130948400,61152120000,61130934000,61152105600,-14400,0,'ART',],[61152120000,61162484400,61152109200,61162473600,-10800,1,'ARST',],[61162484400,61183656000,61162470000,61183641600,-14400,0,'ART',],[61183656000,61194106800,61183645200,61194096000,-10800,1,'ARST',],[61194106800,61204651200,61194092400,61204636800,-14400,0,'ART',],[61204651200,61234801200,61204640400,61234790400,-10800,1,'ARST',],[61234801200,61245345600,61234786800,61245331200,-14400,0,'ART',],[61245345600,61301934000,61245334800,61301923200,-10800,1,'ARST',],[61301934000,61308417600,61301919600,61308403200,-14400,0,'ART',],[61308417600,61383409200,61308406800,61383398400,-10800,1,'ARST',],[61383409200,61401902400,61383394800,61401888000,-14400,0,'ART',],[61401902400,61938356400,61401891600,61938345600,-10800,1,'ARST',],[61938356400,61944840000,61938342000,61944825600,-14400,0,'ART',],[61944840000,61951489200,61944829200,61951478400,-10800,1,'ARST',],[61951489200,61971192000,61951474800,61971177600,-14400,0,'ART',],[61971192000,61983025200,61971181200,61983014400,-10800,1,'ARST',],[61983025200,62002728000,61983010800,62002713600,-14400,0,'ART',],[62002728000,62014561200,62002717200,62014550400,-10800,1,'ARST',],[62014561200,62034264000,62014546800,62034249600,-14400,0,'ART',],[62034264000,62048862000,62034253200,62048851200,-10800,1,'ARST',],[62048862000,62064590400,62048847600,62064576000,-14400,0,'ART',],[62064590400,62080916400,62064579600,62080905600,-10800,1,'ARST',],[62080916400,62096644800,62080902000,62096630400,-14400,0,'ART',],[62096644800,62112366000,62096634000,62112355200,-10800,1,'ARST',],[62112366000,62128094400,62112351600,62128080000,-14400,0,'ART',],[62128094400,62263825200,62128083600,62263814400,-10800,0,'ART',],[62263825200,62272288800,62263818000,62272281600,-7200,1,'ARST',],[62272288800,62732631600,62272278000,62732620800,-10800,0,'ART',],[62732631600,62740749600,62732624400,62740742400,-7200,1,'ARST',],[62740749600,62760106800,62740738800,62760096000,-10800,0,'ART',],[62760106800,62772199200,62760099600,62772192000,-7200,1,'ARST',],[62772199200,62792161200,62772188400,62792150400,-10800,0,'ART',],[62792161200,62803648800,62792154000,62803641600,-7200,1,'ARST',],[62803648800,62823614400,62803634400,62823600000,-14400,0,'WART',],[62823614400,62835098400,62823607200,62835091200,-7200,1,'ARST',],[62835098400,62855060400,62835087600,62855049600,-10800,0,'ART',],[62855060400,62867152800,62855053200,62867145600,-7200,1,'ARST',],[62867152800,63074602800,62867142000,63074592000,-10800,0,'ART',],[63074602800,63087735600,63074592000,63087724800,-10800,1,'ARST',],[63087735600,63334666800,63087724800,63334656000,-10800,0,'ART',],[63334666800,63341316000,63334659600,63341308800,-7200,1,'ARST',],[63341316000,63359982000,63341305200,63359971200,-10800,0,'ART',],[63359982000,DateTime::TimeZone::INFINITY,63359971200,DateTime::TimeZone::INFINITY,-10800,0,'ART',],];sub olson_version {'2016a'}sub has_dst_changes {28}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_ARGENTINA_SALTA

$fatpacked{"DateTime/TimeZone/America/Argentina/San_Juan.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_ARGENTINA_SAN_JUAN';
  package DateTime::TimeZone::America::Argentina::San_Juan;$DateTime::TimeZone::America::Argentina::San_Juan::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Argentina::San_Juan::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59763587644,DateTime::TimeZone::NEG_INFINITY,59763571200,-16444,0,'LMT',],[59763587644,60568229808,59763572236,60568214400,-15408,0,'CMT',],[60568229808,60902251200,60568215408,60902236800,-14400,0,'ART',],[60902251200,60912702000,60902240400,60912691200,-10800,1,'ARST',],[60912702000,60929726400,60912687600,60929712000,-14400,0,'ART',],[60929726400,60941646000,60929715600,60941635200,-10800,1,'ARST',],[60941646000,60962817600,60941631600,60962803200,-14400,0,'ART',],[60962817600,60973182000,60962806800,60973171200,-10800,1,'ARST',],[60973182000,60994353600,60973167600,60994339200,-14400,0,'ART',],[60994353600,61004718000,60994342800,61004707200,-10800,1,'ARST',],[61004718000,61025889600,61004703600,61025875200,-14400,0,'ART',],[61025889600,61036254000,61025878800,61036243200,-10800,1,'ARST',],[61036254000,61057425600,61036239600,61057411200,-14400,0,'ART',],[61057425600,61067876400,61057414800,61067865600,-10800,1,'ARST',],[61067876400,61089048000,61067862000,61089033600,-14400,0,'ART',],[61089048000,61099412400,61089037200,61099401600,-10800,1,'ARST',],[61099412400,61120584000,61099398000,61120569600,-14400,0,'ART',],[61120584000,61130948400,61120573200,61130937600,-10800,1,'ARST',],[61130948400,61152120000,61130934000,61152105600,-14400,0,'ART',],[61152120000,61162484400,61152109200,61162473600,-10800,1,'ARST',],[61162484400,61183656000,61162470000,61183641600,-14400,0,'ART',],[61183656000,61194106800,61183645200,61194096000,-10800,1,'ARST',],[61194106800,61204651200,61194092400,61204636800,-14400,0,'ART',],[61204651200,61234801200,61204640400,61234790400,-10800,1,'ARST',],[61234801200,61245345600,61234786800,61245331200,-14400,0,'ART',],[61245345600,61301934000,61245334800,61301923200,-10800,1,'ARST',],[61301934000,61308417600,61301919600,61308403200,-14400,0,'ART',],[61308417600,61383409200,61308406800,61383398400,-10800,1,'ARST',],[61383409200,61401902400,61383394800,61401888000,-14400,0,'ART',],[61401902400,61938356400,61401891600,61938345600,-10800,1,'ARST',],[61938356400,61944840000,61938342000,61944825600,-14400,0,'ART',],[61944840000,61951489200,61944829200,61951478400,-10800,1,'ARST',],[61951489200,61971192000,61951474800,61971177600,-14400,0,'ART',],[61971192000,61983025200,61971181200,61983014400,-10800,1,'ARST',],[61983025200,62002728000,61983010800,62002713600,-14400,0,'ART',],[62002728000,62014561200,62002717200,62014550400,-10800,1,'ARST',],[62014561200,62034264000,62014546800,62034249600,-14400,0,'ART',],[62034264000,62048862000,62034253200,62048851200,-10800,1,'ARST',],[62048862000,62064590400,62048847600,62064576000,-14400,0,'ART',],[62064590400,62080916400,62064579600,62080905600,-10800,1,'ARST',],[62080916400,62096644800,62080902000,62096630400,-14400,0,'ART',],[62096644800,62112366000,62096634000,62112355200,-10800,1,'ARST',],[62112366000,62128094400,62112351600,62128080000,-14400,0,'ART',],[62128094400,62263825200,62128083600,62263814400,-10800,0,'ART',],[62263825200,62272288800,62263818000,62272281600,-7200,1,'ARST',],[62272288800,62732631600,62272278000,62732620800,-10800,0,'ART',],[62732631600,62740749600,62732624400,62740742400,-7200,1,'ARST',],[62740749600,62760106800,62740738800,62760096000,-10800,0,'ART',],[62760106800,62772199200,62760099600,62772192000,-7200,1,'ARST',],[62772199200,62792161200,62772188400,62792150400,-10800,0,'ART',],[62792161200,62803476000,62792154000,62803468800,-7200,1,'ARST',],[62803476000,62809272000,62803461600,62809257600,-14400,0,'WART',],[62809272000,62823610800,62809261200,62823600000,-10800,0,'ART',],[62823610800,62835098400,62823603600,62835091200,-7200,1,'ARST',],[62835098400,62855060400,62835087600,62855049600,-10800,0,'ART',],[62855060400,62867152800,62855053200,62867145600,-7200,1,'ARST',],[62867152800,63074602800,62867142000,63074592000,-10800,0,'ART',],[63074602800,63087735600,63074592000,63087724800,-10800,1,'ARST',],[63087735600,63221655600,63087724800,63221644800,-10800,0,'ART',],[63221655600,63226411200,63221641200,63226396800,-14400,0,'WART',],[63226411200,63334666800,63226400400,63334656000,-10800,0,'ART',],[63334666800,63341316000,63334659600,63341308800,-7200,1,'ARST',],[63341316000,63359982000,63341305200,63359971200,-10800,0,'ART',],[63359982000,DateTime::TimeZone::INFINITY,63359971200,DateTime::TimeZone::INFINITY,-10800,0,'ART',],];sub olson_version {'2016a'}sub has_dst_changes {28}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_ARGENTINA_SAN_JUAN

$fatpacked{"DateTime/TimeZone/America/Argentina/San_Luis.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_ARGENTINA_SAN_LUIS';
  package DateTime::TimeZone::America::Argentina::San_Luis;$DateTime::TimeZone::America::Argentina::San_Luis::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Argentina::San_Luis::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59763587124,DateTime::TimeZone::NEG_INFINITY,59763571200,-15924,0,'LMT',],[59763587124,60568229808,59763571716,60568214400,-15408,0,'CMT',],[60568229808,60902251200,60568215408,60902236800,-14400,0,'ART',],[60902251200,60912702000,60902240400,60912691200,-10800,1,'ARST',],[60912702000,60929726400,60912687600,60929712000,-14400,0,'ART',],[60929726400,60941646000,60929715600,60941635200,-10800,1,'ARST',],[60941646000,60962817600,60941631600,60962803200,-14400,0,'ART',],[60962817600,60973182000,60962806800,60973171200,-10800,1,'ARST',],[60973182000,60994353600,60973167600,60994339200,-14400,0,'ART',],[60994353600,61004718000,60994342800,61004707200,-10800,1,'ARST',],[61004718000,61025889600,61004703600,61025875200,-14400,0,'ART',],[61025889600,61036254000,61025878800,61036243200,-10800,1,'ARST',],[61036254000,61057425600,61036239600,61057411200,-14400,0,'ART',],[61057425600,61067876400,61057414800,61067865600,-10800,1,'ARST',],[61067876400,61089048000,61067862000,61089033600,-14400,0,'ART',],[61089048000,61099412400,61089037200,61099401600,-10800,1,'ARST',],[61099412400,61120584000,61099398000,61120569600,-14400,0,'ART',],[61120584000,61130948400,61120573200,61130937600,-10800,1,'ARST',],[61130948400,61152120000,61130934000,61152105600,-14400,0,'ART',],[61152120000,61162484400,61152109200,61162473600,-10800,1,'ARST',],[61162484400,61183656000,61162470000,61183641600,-14400,0,'ART',],[61183656000,61194106800,61183645200,61194096000,-10800,1,'ARST',],[61194106800,61204651200,61194092400,61204636800,-14400,0,'ART',],[61204651200,61234801200,61204640400,61234790400,-10800,1,'ARST',],[61234801200,61245345600,61234786800,61245331200,-14400,0,'ART',],[61245345600,61301934000,61245334800,61301923200,-10800,1,'ARST',],[61301934000,61308417600,61301919600,61308403200,-14400,0,'ART',],[61308417600,61383409200,61308406800,61383398400,-10800,1,'ARST',],[61383409200,61401902400,61383394800,61401888000,-14400,0,'ART',],[61401902400,61938356400,61401891600,61938345600,-10800,1,'ARST',],[61938356400,61944840000,61938342000,61944825600,-14400,0,'ART',],[61944840000,61951489200,61944829200,61951478400,-10800,1,'ARST',],[61951489200,61971192000,61951474800,61971177600,-14400,0,'ART',],[61971192000,61983025200,61971181200,61983014400,-10800,1,'ARST',],[61983025200,62002728000,61983010800,62002713600,-14400,0,'ART',],[62002728000,62014561200,62002717200,62014550400,-10800,1,'ARST',],[62014561200,62034264000,62014546800,62034249600,-14400,0,'ART',],[62034264000,62048862000,62034253200,62048851200,-10800,1,'ARST',],[62048862000,62064590400,62048847600,62064576000,-14400,0,'ART',],[62064590400,62080916400,62064579600,62080905600,-10800,1,'ARST',],[62080916400,62096644800,62080902000,62096630400,-14400,0,'ART',],[62096644800,62112366000,62096634000,62112355200,-10800,1,'ARST',],[62112366000,62128094400,62112351600,62128080000,-14400,0,'ART',],[62128094400,62263825200,62128083600,62263814400,-10800,0,'ART',],[62263825200,62272288800,62263818000,62272281600,-7200,1,'ARST',],[62272288800,62732631600,62272278000,62732620800,-10800,0,'ART',],[62732631600,62740749600,62732624400,62740742400,-7200,1,'ARST',],[62740749600,62760106800,62740738800,62760096000,-10800,0,'ART',],[62760106800,62766842400,62760099600,62766835200,-7200,1,'ARST',],[62766842400,62773063200,62766835200,62773056000,-7200,1,'ARST',],[62773063200,62791646400,62773048800,62791632000,-14400,0,'WART',],[62791646400,62803479600,62791635600,62803468800,-10800,1,'WARST',],[62803479600,62811432000,62803465200,62811417600,-14400,0,'WART',],[62811432000,63074602800,62811421200,63074592000,-10800,0,'ART',],[63074602800,63087735600,63074592000,63087724800,-10800,1,'WARST',],[63087735600,63221655600,63087724800,63221644800,-10800,0,'ART',],[63221655600,63226411200,63221641200,63226396800,-14400,0,'WART',],[63226411200,63334666800,63226400400,63334656000,-10800,0,'ART',],[63334666800,63336564000,63334659600,63336556800,-7200,1,'ARST',],[63336564000,63340714800,63336553200,63340704000,-10800,1,'WARST',],[63340714800,63359467200,63340700400,63359452800,-14400,0,'WART',],[63359467200,63372164400,63359456400,63372153600,-10800,1,'WARST',],[63372164400,63390916800,63372150000,63390902400,-14400,0,'WART',],[63390916800,DateTime::TimeZone::INFINITY,63390906000,DateTime::TimeZone::INFINITY,-10800,0,'ART',],];sub olson_version {'2016a'}sub has_dst_changes {29}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_ARGENTINA_SAN_LUIS

$fatpacked{"DateTime/TimeZone/America/Argentina/Tucuman.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_ARGENTINA_TUCUMAN';
  package DateTime::TimeZone::America::Argentina::Tucuman;$DateTime::TimeZone::America::Argentina::Tucuman::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Argentina::Tucuman::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59763586852,DateTime::TimeZone::NEG_INFINITY,59763571200,-15652,0,'LMT',],[59763586852,60568229808,59763571444,60568214400,-15408,0,'CMT',],[60568229808,60902251200,60568215408,60902236800,-14400,0,'ART',],[60902251200,60912702000,60902240400,60912691200,-10800,1,'ARST',],[60912702000,60929726400,60912687600,60929712000,-14400,0,'ART',],[60929726400,60941646000,60929715600,60941635200,-10800,1,'ARST',],[60941646000,60962817600,60941631600,60962803200,-14400,0,'ART',],[60962817600,60973182000,60962806800,60973171200,-10800,1,'ARST',],[60973182000,60994353600,60973167600,60994339200,-14400,0,'ART',],[60994353600,61004718000,60994342800,61004707200,-10800,1,'ARST',],[61004718000,61025889600,61004703600,61025875200,-14400,0,'ART',],[61025889600,61036254000,61025878800,61036243200,-10800,1,'ARST',],[61036254000,61057425600,61036239600,61057411200,-14400,0,'ART',],[61057425600,61067876400,61057414800,61067865600,-10800,1,'ARST',],[61067876400,61089048000,61067862000,61089033600,-14400,0,'ART',],[61089048000,61099412400,61089037200,61099401600,-10800,1,'ARST',],[61099412400,61120584000,61099398000,61120569600,-14400,0,'ART',],[61120584000,61130948400,61120573200,61130937600,-10800,1,'ARST',],[61130948400,61152120000,61130934000,61152105600,-14400,0,'ART',],[61152120000,61162484400,61152109200,61162473600,-10800,1,'ARST',],[61162484400,61183656000,61162470000,61183641600,-14400,0,'ART',],[61183656000,61194106800,61183645200,61194096000,-10800,1,'ARST',],[61194106800,61204651200,61194092400,61204636800,-14400,0,'ART',],[61204651200,61234801200,61204640400,61234790400,-10800,1,'ARST',],[61234801200,61245345600,61234786800,61245331200,-14400,0,'ART',],[61245345600,61301934000,61245334800,61301923200,-10800,1,'ARST',],[61301934000,61308417600,61301919600,61308403200,-14400,0,'ART',],[61308417600,61383409200,61308406800,61383398400,-10800,1,'ARST',],[61383409200,61401902400,61383394800,61401888000,-14400,0,'ART',],[61401902400,61938356400,61401891600,61938345600,-10800,1,'ARST',],[61938356400,61944840000,61938342000,61944825600,-14400,0,'ART',],[61944840000,61951489200,61944829200,61951478400,-10800,1,'ARST',],[61951489200,61971192000,61951474800,61971177600,-14400,0,'ART',],[61971192000,61983025200,61971181200,61983014400,-10800,1,'ARST',],[61983025200,62002728000,61983010800,62002713600,-14400,0,'ART',],[62002728000,62014561200,62002717200,62014550400,-10800,1,'ARST',],[62014561200,62034264000,62014546800,62034249600,-14400,0,'ART',],[62034264000,62048862000,62034253200,62048851200,-10800,1,'ARST',],[62048862000,62064590400,62048847600,62064576000,-14400,0,'ART',],[62064590400,62080916400,62064579600,62080905600,-10800,1,'ARST',],[62080916400,62096644800,62080902000,62096630400,-14400,0,'ART',],[62096644800,62112366000,62096634000,62112355200,-10800,1,'ARST',],[62112366000,62128094400,62112351600,62128080000,-14400,0,'ART',],[62128094400,62263825200,62128083600,62263814400,-10800,0,'ART',],[62263825200,62272288800,62263818000,62272281600,-7200,1,'ARST',],[62272288800,62732631600,62272278000,62732620800,-10800,0,'ART',],[62732631600,62740749600,62732624400,62740742400,-7200,1,'ARST',],[62740749600,62760106800,62740738800,62760096000,-10800,0,'ART',],[62760106800,62772199200,62760099600,62772192000,-7200,1,'ARST',],[62772199200,62792161200,62772188400,62792150400,-10800,0,'ART',],[62792161200,62803648800,62792154000,62803641600,-7200,1,'ARST',],[62803648800,62823614400,62803634400,62823600000,-14400,0,'WART',],[62823614400,62835098400,62823607200,62835091200,-7200,1,'ARST',],[62835098400,62855060400,62835087600,62855049600,-10800,0,'ART',],[62855060400,62867152800,62855053200,62867145600,-7200,1,'ARST',],[62867152800,63074602800,62867142000,63074592000,-10800,0,'ART',],[63074602800,63087735600,63074592000,63087724800,-10800,1,'ARST',],[63087735600,63221742000,63087724800,63221731200,-10800,0,'ART',],[63221742000,63222782400,63221727600,63222768000,-14400,0,'WART',],[63222782400,63334666800,63222771600,63334656000,-10800,0,'ART',],[63334666800,63341316000,63334659600,63341308800,-7200,1,'ARST',],[63341316000,63360068400,63341305200,63360057600,-10800,0,'ART',],[63360068400,63372765600,63360061200,63372758400,-7200,1,'ARST',],[63372765600,DateTime::TimeZone::INFINITY,63372754800,DateTime::TimeZone::INFINITY,-10800,0,'ART',],];sub olson_version {'2016a'}sub has_dst_changes {29}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_ARGENTINA_TUCUMAN

$fatpacked{"DateTime/TimeZone/America/Argentina/Ushuaia.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_ARGENTINA_USHUAIA';
  package DateTime::TimeZone::America::Argentina::Ushuaia;$DateTime::TimeZone::America::Argentina::Ushuaia::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Argentina::Ushuaia::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59763587592,DateTime::TimeZone::NEG_INFINITY,59763571200,-16392,0,'LMT',],[59763587592,60568229808,59763572184,60568214400,-15408,0,'CMT',],[60568229808,60902251200,60568215408,60902236800,-14400,0,'ART',],[60902251200,60912702000,60902240400,60912691200,-10800,1,'ARST',],[60912702000,60929726400,60912687600,60929712000,-14400,0,'ART',],[60929726400,60941646000,60929715600,60941635200,-10800,1,'ARST',],[60941646000,60962817600,60941631600,60962803200,-14400,0,'ART',],[60962817600,60973182000,60962806800,60973171200,-10800,1,'ARST',],[60973182000,60994353600,60973167600,60994339200,-14400,0,'ART',],[60994353600,61004718000,60994342800,61004707200,-10800,1,'ARST',],[61004718000,61025889600,61004703600,61025875200,-14400,0,'ART',],[61025889600,61036254000,61025878800,61036243200,-10800,1,'ARST',],[61036254000,61057425600,61036239600,61057411200,-14400,0,'ART',],[61057425600,61067876400,61057414800,61067865600,-10800,1,'ARST',],[61067876400,61089048000,61067862000,61089033600,-14400,0,'ART',],[61089048000,61099412400,61089037200,61099401600,-10800,1,'ARST',],[61099412400,61120584000,61099398000,61120569600,-14400,0,'ART',],[61120584000,61130948400,61120573200,61130937600,-10800,1,'ARST',],[61130948400,61152120000,61130934000,61152105600,-14400,0,'ART',],[61152120000,61162484400,61152109200,61162473600,-10800,1,'ARST',],[61162484400,61183656000,61162470000,61183641600,-14400,0,'ART',],[61183656000,61194106800,61183645200,61194096000,-10800,1,'ARST',],[61194106800,61204651200,61194092400,61204636800,-14400,0,'ART',],[61204651200,61234801200,61204640400,61234790400,-10800,1,'ARST',],[61234801200,61245345600,61234786800,61245331200,-14400,0,'ART',],[61245345600,61301934000,61245334800,61301923200,-10800,1,'ARST',],[61301934000,61308417600,61301919600,61308403200,-14400,0,'ART',],[61308417600,61383409200,61308406800,61383398400,-10800,1,'ARST',],[61383409200,61401902400,61383394800,61401888000,-14400,0,'ART',],[61401902400,61938356400,61401891600,61938345600,-10800,1,'ARST',],[61938356400,61944840000,61938342000,61944825600,-14400,0,'ART',],[61944840000,61951489200,61944829200,61951478400,-10800,1,'ARST',],[61951489200,61971192000,61951474800,61971177600,-14400,0,'ART',],[61971192000,61983025200,61971181200,61983014400,-10800,1,'ARST',],[61983025200,62002728000,61983010800,62002713600,-14400,0,'ART',],[62002728000,62014561200,62002717200,62014550400,-10800,1,'ARST',],[62014561200,62034264000,62014546800,62034249600,-14400,0,'ART',],[62034264000,62048862000,62034253200,62048851200,-10800,1,'ARST',],[62048862000,62064590400,62048847600,62064576000,-14400,0,'ART',],[62064590400,62080916400,62064579600,62080905600,-10800,1,'ARST',],[62080916400,62096644800,62080902000,62096630400,-14400,0,'ART',],[62096644800,62112366000,62096634000,62112355200,-10800,1,'ARST',],[62112366000,62128094400,62112351600,62128080000,-14400,0,'ART',],[62128094400,62263825200,62128083600,62263814400,-10800,0,'ART',],[62263825200,62272288800,62263818000,62272281600,-7200,1,'ARST',],[62272288800,62732631600,62272278000,62732620800,-10800,0,'ART',],[62732631600,62740749600,62732624400,62740742400,-7200,1,'ARST',],[62740749600,62760106800,62740738800,62760096000,-10800,0,'ART',],[62760106800,62772199200,62760099600,62772192000,-7200,1,'ARST',],[62772199200,62792161200,62772188400,62792150400,-10800,0,'ART',],[62792161200,62803648800,62792154000,62803641600,-7200,1,'ARST',],[62803648800,62823610800,62803638000,62823600000,-10800,0,'ART',],[62823610800,62835098400,62823603600,62835091200,-7200,1,'ARST',],[62835098400,62855060400,62835087600,62855049600,-10800,0,'ART',],[62855060400,62867152800,62855053200,62867145600,-7200,1,'ARST',],[62867152800,63074602800,62867142000,63074592000,-10800,0,'ART',],[63074602800,63087735600,63074592000,63087724800,-10800,1,'ARST',],[63087735600,63221569200,63087724800,63221558400,-10800,0,'ART',],[63221569200,63223387200,63221554800,63223372800,-14400,0,'WART',],[63223387200,63334666800,63223376400,63334656000,-10800,0,'ART',],[63334666800,63341316000,63334659600,63341308800,-7200,1,'ARST',],[63341316000,63359982000,63341305200,63359971200,-10800,0,'ART',],[63359982000,DateTime::TimeZone::INFINITY,63359971200,DateTime::TimeZone::INFINITY,-10800,0,'ART',],];sub olson_version {'2016a'}sub has_dst_changes {28}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_ARGENTINA_USHUAIA

$fatpacked{"DateTime/TimeZone/America/Asuncion.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_ASUNCION';
  package DateTime::TimeZone::America::Asuncion;$DateTime::TimeZone::America::Asuncion::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Asuncion::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59611175440,DateTime::TimeZone::NEG_INFINITY,59611161600,-13840,0,'LMT',],[59611175440,60929293840,59611161600,60929280000,-13840,0,'AMT',],[60929293840,62222443200,60929279440,62222428800,-14400,0,'PYT',],[62222443200,62269700400,62222432400,62269689600,-10800,0,'PYT',],[62269700400,62317051200,62269686000,62317036800,-14400,0,'PYT',],[62317051200,62330180400,62317040400,62330169600,-10800,1,'PYST',],[62330180400,62348673600,62330166000,62348659200,-14400,0,'PYT',],[62348673600,62361716400,62348662800,62361705600,-10800,1,'PYST',],[62361716400,62380209600,62361702000,62380195200,-14400,0,'PYT',],[62380209600,62393252400,62380198800,62393241600,-10800,1,'PYST',],[62393252400,62411745600,62393238000,62411731200,-14400,0,'PYT',],[62411745600,62427466800,62411734800,62427456000,-10800,1,'PYST',],[62427466800,62443281600,62427452400,62443267200,-14400,0,'PYT',],[62443281600,62459089200,62443270800,62459078400,-10800,1,'PYST',],[62459089200,62474904000,62459074800,62474889600,-14400,0,'PYT',],[62474904000,62490625200,62474893200,62490614400,-10800,1,'PYST',],[62490625200,62506440000,62490610800,62506425600,-14400,0,'PYT',],[62506440000,62522161200,62506429200,62522150400,-10800,1,'PYST',],[62522161200,62537976000,62522146800,62537961600,-14400,0,'PYT',],[62537976000,62553697200,62537965200,62553686400,-10800,1,'PYST',],[62553697200,62569512000,62553682800,62569497600,-14400,0,'PYT',],[62569512000,62585319600,62569501200,62585308800,-10800,1,'PYST',],[62585319600,62601134400,62585305200,62601120000,-14400,0,'PYT',],[62601134400,62616855600,62601123600,62616844800,-10800,1,'PYST',],[62616855600,62632670400,62616841200,62632656000,-14400,0,'PYT',],[62632670400,62648391600,62632659600,62648380800,-10800,1,'PYST',],[62648391600,62664206400,62648377200,62664192000,-14400,0,'PYT',],[62664206400,62679927600,62664195600,62679916800,-10800,1,'PYST',],[62679927600,62695742400,62679913200,62695728000,-14400,0,'PYT',],[62695742400,62711550000,62695731600,62711539200,-10800,1,'PYST',],[62711550000,62727364800,62711535600,62727350400,-14400,0,'PYT',],[62727364800,62743086000,62727354000,62743075200,-10800,1,'PYST',],[62743086000,62760715200,62743071600,62760700800,-14400,0,'PYT',],[62760715200,62774622000,62760704400,62774611200,-10800,1,'PYST',],[62774622000,62790436800,62774607600,62790422400,-14400,0,'PYT',],[62790436800,62806158000,62790426000,62806147200,-10800,1,'PYST',],[62806158000,62822404800,62806143600,62822390400,-14400,0,'PYT',],[62822404800,62835102000,62822394000,62835091200,-10800,1,'PYST',],[62835102000,62853940800,62835087600,62853926400,-14400,0,'PYT',],[62853940800,62869230000,62853930000,62869219200,-10800,1,'PYST',],[62869230000,62885131200,62869215600,62885116800,-14400,0,'PYT',],[62885131200,62898001200,62885120400,62897990400,-10800,1,'PYST',],[62898001200,62916667200,62897986800,62916652800,-14400,0,'PYT',],[62916667200,62929450800,62916656400,62929440000,-10800,1,'PYST',],[62929450800,62948203200,62929436400,62948188800,-14400,0,'PYT',],[62948203200,62961332400,62948192400,62961321600,-10800,1,'PYST',],[62961332400,62980257600,62961318000,62980243200,-14400,0,'PYT',],[62980257600,62992350000,62980246800,62992339200,-10800,1,'PYST',],[62992350000,63011707200,62992335600,63011692800,-14400,0,'PYT',],[63011707200,63024404400,63011696400,63024393600,-10800,1,'PYST',],[63024404400,63043156800,63024390000,63043142400,-14400,0,'PYT',],[63043156800,63056458800,63043146000,63056448000,-10800,1,'PYST',],[63056458800,63074606400,63056444400,63074592000,-14400,0,'PYT',],[63074606400,63087908400,63074595600,63087897600,-10800,1,'PYST',],[63087908400,63106056000,63087894000,63106041600,-14400,0,'PYT',],[63106056000,63119358000,63106045200,63119347200,-10800,1,'PYST',],[63119358000,63138110400,63119343600,63138096000,-14400,0,'PYT',],[63138110400,63153831600,63138099600,63153820800,-10800,1,'PYST',],[63153831600,63166536000,63153817200,63166521600,-14400,0,'PYT',],[63166536000,63185281200,63166525200,63185270400,-10800,1,'PYST',],[63185281200,63198590400,63185266800,63198576000,-14400,0,'PYT',],[63198590400,63216730800,63198579600,63216720000,-10800,1,'PYST',],[63216730800,63233668800,63216716400,63233654400,-14400,0,'PYT',],[63233668800,63246366000,63233658000,63246355200,-10800,1,'PYST',],[63246366000,63265118400,63246351600,63265104000,-14400,0,'PYT',],[63265118400,63277815600,63265107600,63277804800,-10800,1,'PYST',],[63277815600,63296568000,63277801200,63296553600,-14400,0,'PYT',],[63296568000,63309265200,63296557200,63309254400,-10800,1,'PYST',],[63309265200,63328622400,63309250800,63328608000,-14400,0,'PYT',],[63328622400,63340714800,63328611600,63340704000,-10800,1,'PYST',],[63340714800,63360072000,63340700400,63360057600,-14400,0,'PYT',],[63360072000,63372164400,63360061200,63372153600,-10800,1,'PYST',],[63372164400,63391521600,63372150000,63391507200,-14400,0,'PYT',],[63391521600,63406638000,63391510800,63406627200,-10800,1,'PYST',],[63406638000,63421761600,63406623600,63421747200,-14400,0,'PYT',],[63421761600,63438087600,63421750800,63438076800,-10800,1,'PYST',],[63438087600,63453211200,63438073200,63453196800,-14400,0,'PYT',],[63453211200,63469537200,63453200400,63469526400,-10800,1,'PYST',],[63469537200,63485265600,63469522800,63485251200,-14400,0,'PYT',],[63485265600,63499777200,63485254800,63499766400,-10800,1,'PYST',],[63499777200,63516715200,63499762800,63516700800,-14400,0,'PYT',],[63516715200,63531226800,63516704400,63531216000,-10800,1,'PYST',],[63531226800,63548164800,63531212400,63548150400,-14400,0,'PYT',],[63548164800,63562676400,63548154000,63562665600,-10800,1,'PYST',],[63562676400,63579614400,63562662000,63579600000,-14400,0,'PYT',],[63579614400,63594730800,63579603600,63594720000,-10800,1,'PYST',],[63594730800,63611064000,63594716400,63611049600,-14400,0,'PYT',],[63611064000,63626180400,63611053200,63626169600,-10800,1,'PYST',],[63626180400,63642513600,63626166000,63642499200,-14400,0,'PYT',],[63642513600,63657630000,63642502800,63657619200,-10800,1,'PYST',],[63657630000,63674568000,63657615600,63674553600,-14400,0,'PYT',],[63674568000,63689079600,63674557200,63689068800,-10800,1,'PYST',],[63689079600,63706017600,63689065200,63706003200,-14400,0,'PYT',],[63706017600,63720529200,63706006800,63720518400,-10800,1,'PYST',],[63720529200,63737467200,63720514800,63737452800,-14400,0,'PYT',],[63737467200,63752583600,63737456400,63752572800,-10800,1,'PYST',],[63752583600,63768916800,63752569200,63768902400,-14400,0,'PYT',],[63768916800,63784033200,63768906000,63784022400,-10800,1,'PYST',],[63784033200,63800366400,63784018800,63800352000,-14400,0,'PYT',],[63800366400,63815482800,63800355600,63815472000,-10800,1,'PYST',],[63815482800,63831816000,63815468400,63831801600,-14400,0,'PYT',],[63831816000,63846932400,63831805200,63846921600,-10800,1,'PYST',],[63846932400,63863870400,63846918000,63863856000,-14400,0,'PYT',],[63863870400,63878382000,63863859600,63878371200,-10800,1,'PYST',],[63878382000,63895320000,63878367600,63895305600,-14400,0,'PYT',],[63895320000,63909831600,63895309200,63909820800,-10800,1,'PYST',],[63909831600,63926769600,63909817200,63926755200,-14400,0,'PYT',],[63926769600,63941886000,63926758800,63941875200,-10800,1,'PYST',],[63941886000,63958219200,63941871600,63958204800,-14400,0,'PYT',],];sub olson_version {'2016a'}sub has_dst_changes {53}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-14400}my$last_observance=bless({'format'=>'PY%sT','gmtoff'=>'-4:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>720713,'local_rd_secs'=>82800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>720713,'utc_rd_secs'=>82800,'utc_year'=>1975 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-14400,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>720714,'local_rd_secs'=>10800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>720714,'utc_rd_secs'=>10800,'utc_year'=>1975 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'0:00','from'=>'2010','in'=>'Oct','letter'=>'S','name'=>'Para','offset_from_std'=>3600,'on'=>'Sun>=1','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'0:00','from'=>'2013','in'=>'Mar','letter'=>'','name'=>'Para','offset_from_std'=>0,'on'=>'Sun>=22','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_ASUNCION

$fatpacked{"DateTime/TimeZone/America/Atikokan.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_ATIKOKAN';
  package DateTime::TimeZone::America::Atikokan;$DateTime::TimeZone::America::Atikokan::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Atikokan::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59768949988,DateTime::TimeZone::NEG_INFINITY,59768928000,-21988,0,'LMT',],[59768949988,60503616000,59768928388,60503594400,-21600,0,'CST',],[60503616000,60520546800,60503598000,60520528800,-18000,1,'CDT',],[60520546800,61212434400,60520525200,61212412800,-21600,0,'CST',],[61212434400,61255468800,61212416400,61255450800,-18000,1,'CDT',],[61255468800,61366287600,61255450800,61366269600,-18000,1,'CWT',],[61366287600,61370290800,61366269600,61370272800,-18000,1,'CPT',],[61370290800,DateTime::TimeZone::INFINITY,61370272800,DateTime::TimeZone::INFINITY,-18000,0,'EST',],];sub olson_version {'2016a'}sub has_dst_changes {4}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_ATIKOKAN

$fatpacked{"DateTime/TimeZone/America/Bahia.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_BAHIA';
  package DateTime::TimeZone::America::Bahia;$DateTime::TimeZone::America::Bahia::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Bahia::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60368466844,DateTime::TimeZone::NEG_INFINITY,60368457600,-9244,0,'LMT',],[60368466844,60928725600,60368456044,60928714800,-10800,0,'BRT',],[60928725600,60944320800,60928718400,60944313600,-7200,1,'BRST',],[60944320800,60960308400,60944310000,60960297600,-10800,0,'BRT',],[60960308400,60975856800,60960301200,60975849600,-7200,1,'BRST',],[60975856800,61501863600,60975846000,61501852800,-10800,0,'BRT',],[61501863600,61513614000,61501856400,61513606800,-7200,1,'BRST',],[61513614000,61533399600,61513603200,61533388800,-10800,0,'BRT',],[61533399600,61543850400,61533392400,61543843200,-7200,1,'BRST',],[61543850400,61564935600,61543839600,61564924800,-10800,0,'BRT',],[61564935600,61575472800,61564928400,61575465600,-7200,1,'BRST',],[61575472800,61596558000,61575462000,61596547200,-10800,0,'BRT',],[61596558000,61604330400,61596550800,61604323200,-7200,1,'BRST',],[61604330400,61944318000,61604319600,61944307200,-10800,0,'BRT',],[61944318000,61951485600,61944310800,61951478400,-7200,1,'BRST',],[61951485600,61980519600,61951474800,61980508800,-10800,0,'BRT',],[61980519600,61985613600,61980512400,61985606400,-7200,1,'BRST',],[61985613600,62006785200,61985602800,62006774400,-10800,0,'BRT',],[62006785200,62014557600,62006778000,62014550400,-7200,1,'BRST',],[62014557600,62035729200,62014546800,62035718400,-10800,0,'BRT',],[62035729200,62046093600,62035722000,62046086400,-7200,1,'BRST',],[62046093600,62067265200,62046082800,62067254400,-10800,0,'BRT',],[62067265200,62077716000,62067258000,62077708800,-7200,1,'BRST',],[62077716000,62635431600,62077705200,62635420800,-10800,0,'BRT',],[62635431600,62646919200,62635424400,62646912000,-7200,1,'BRST',],[62646919200,62666276400,62646908400,62666265600,-10800,0,'BRT',],[62666276400,62675949600,62666269200,62675942400,-7200,1,'BRST',],[62675949600,62697812400,62675938800,62697801600,-10800,0,'BRT',],[62697812400,62706880800,62697805200,62706873600,-7200,1,'BRST',],[62706880800,62728657200,62706870000,62728646400,-10800,0,'BRT',],[62728657200,62737725600,62728650000,62737718400,-7200,1,'BRST',],[62737725600,62760106800,62737714800,62760096000,-10800,0,'BRT',],[62760106800,62770384800,62760099600,62770377600,-7200,1,'BRST',],[62770384800,62792161200,62770374000,62792150400,-10800,0,'BRT',],[62792161200,62802439200,62792154000,62802432000,-7200,1,'BRST',],[62802439200,62823610800,62802428400,62823600000,-10800,0,'BRT',],[62823610800,62833284000,62823603600,62833276800,-7200,1,'BRST',],[62833284000,62855665200,62833273200,62855654400,-10800,0,'BRT',],[62855665200,62864128800,62855658000,62864121600,-7200,1,'BRST',],[62864128800,62886510000,62864118000,62886499200,-10800,0,'BRT',],[62886510000,62897392800,62886502800,62897385600,-7200,1,'BRST',],[62897392800,62917959600,62897382000,62917948800,-10800,0,'BRT',],[62917959600,62928842400,62917952400,62928835200,-7200,1,'BRST',],[62928842400,62949409200,62928831600,62949398400,-10800,0,'BRT',],[62949409200,62959687200,62949402000,62959680000,-7200,1,'BRST',],[62959687200,62980254000,62959676400,62980243200,-10800,0,'BRT',],[62980254000,62991741600,62980246800,62991734400,-7200,1,'BRST',],[62991741600,63011790000,62991730800,63011779200,-10800,0,'BRT',],[63011790000,63024400800,63011782800,63024393600,-7200,1,'BRST',],[63024400800,63043758000,63024390000,63043747200,-10800,0,'BRT',],[63043758000,63055245600,63043750800,63055238400,-7200,1,'BRST',],[63055245600,63074602800,63055234800,63074592000,-10800,0,'BRT',],[63074602800,63087300000,63074595600,63087292800,-7200,1,'BRST',],[63087300000,63106657200,63087289200,63106646400,-10800,0,'BRT',],[63106657200,63118144800,63106650000,63118137600,-7200,1,'BRST',],[63118144800,63138711600,63118134000,63138700800,-10800,0,'BRT',],[63138711600,63149594400,63138704400,63149587200,-7200,1,'BRST',],[63149594400,63171975600,63149583600,63171964800,-10800,0,'BRT',],[63171975600,63181044000,63171968400,63181036800,-7200,1,'BRST',],[63181044000,63200055600,63181033200,63200044800,-10800,0,'BRT',],[63200055600,63454417200,63200044800,63454406400,-10800,0,'BRT',],[63454417200,63465904800,63454410000,63465897600,-7200,1,'BRST',],[63465904800,63486471600,63465894000,63486460800,-10800,0,'BRT',],[63486471600,DateTime::TimeZone::INFINITY,63486460800,DateTime::TimeZone::INFINITY,-10800,0,'BRT',],];sub olson_version {'2016a'}sub has_dst_changes {30}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_BAHIA

$fatpacked{"DateTime/TimeZone/America/Bahia_Banderas.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_BAHIA_BANDERAS';
  package DateTime::TimeZone::America::Bahia_Banderas;$DateTime::TimeZone::America::Bahia_Banderas::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Bahia_Banderas::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60620943600,DateTime::TimeZone::NEG_INFINITY,60620918340,-25260,0,'LMT',],[60620943600,60792616800,60620918400,60792591600,-25200,0,'MST',],[60792616800,60900876000,60792595200,60900854400,-21600,0,'CST',],[60900876000,60915391200,60900850800,60915366000,-25200,0,'MST',],[60915391200,60928524000,60915369600,60928502400,-21600,0,'CST',],[60928524000,60944338800,60928498800,60944313600,-25200,0,'MST',],[60944338800,61261855200,60944317200,61261833600,-21600,0,'CST',],[61261855200,61474143600,61261830000,61474118400,-25200,0,'MST',],[61474143600,62135712000,61474114800,62135683200,-28800,0,'PST',],[62135712000,62964550800,62135686800,62964525600,-25200,0,'MST',],[62964550800,62982086400,62964529200,62982064800,-21600,1,'MDT',],[62982086400,62996000400,62982061200,62995975200,-25200,0,'MST',],[62996000400,63013536000,62995978800,63013514400,-21600,1,'MDT',],[63013536000,63027450000,63013510800,63027424800,-25200,0,'MST',],[63027450000,63044985600,63027428400,63044964000,-21600,1,'MDT',],[63044985600,63058899600,63044960400,63058874400,-25200,0,'MST',],[63058899600,63077040000,63058878000,63077018400,-21600,1,'MDT',],[63077040000,63090349200,63077014800,63090324000,-25200,0,'MST',],[63090349200,63108489600,63090327600,63108468000,-21600,1,'MDT',],[63108489600,63124822800,63108464400,63124797600,-25200,0,'MST',],[63124822800,63137520000,63124801200,63137498400,-21600,1,'MDT',],[63137520000,63153853200,63137494800,63153828000,-25200,0,'MST',],[63153853200,63171388800,63153831600,63171367200,-21600,1,'MDT',],[63171388800,63185302800,63171363600,63185277600,-25200,0,'MST',],[63185302800,63202838400,63185281200,63202816800,-21600,1,'MDT',],[63202838400,63216752400,63202813200,63216727200,-25200,0,'MST',],[63216752400,63234892800,63216730800,63234871200,-21600,1,'MDT',],[63234892800,63248202000,63234867600,63248176800,-25200,0,'MST',],[63248202000,63266342400,63248180400,63266320800,-21600,1,'MDT',],[63266342400,63279651600,63266317200,63279626400,-25200,0,'MST',],[63279651600,63297792000,63279630000,63297770400,-21600,1,'MDT',],[63297792000,63311101200,63297766800,63311076000,-25200,0,'MST',],[63311101200,63329241600,63311079600,63329220000,-21600,1,'MDT',],[63329241600,63343155600,63329216400,63343130400,-25200,0,'MST',],[63343155600,63360691200,63343134000,63360669600,-21600,1,'MDT',],[63360691200,63374605200,63360666000,63374580000,-25200,0,'MST',],[63374605200,63392140800,63374583600,63392119200,-21600,1,'MDT',],[63392140800,63406054800,63392115600,63406029600,-25200,0,'MST',],[63406054800,63424191600,63406036800,63424173600,-18000,1,'CDT',],[63424191600,63437500800,63424170000,63437479200,-21600,0,'CST',],[63437500800,63455641200,63437482800,63455623200,-18000,1,'CDT',],[63455641200,63468950400,63455619600,63468928800,-21600,0,'CST',],[63468950400,63487090800,63468932400,63487072800,-18000,1,'CDT',],[63487090800,63501004800,63487069200,63500983200,-21600,0,'CST',],[63501004800,63518540400,63500986800,63518522400,-18000,1,'CDT',],[63518540400,63532454400,63518518800,63532432800,-21600,0,'CST',],[63532454400,63549990000,63532436400,63549972000,-18000,1,'CDT',],[63549990000,63563904000,63549968400,63563882400,-21600,0,'CST',],[63563904000,63581439600,63563886000,63581421600,-18000,1,'CDT',],[63581439600,63595353600,63581418000,63595332000,-21600,0,'CST',],[63595353600,63613494000,63595335600,63613476000,-18000,1,'CDT',],[63613494000,63626803200,63613472400,63626781600,-21600,0,'CST',],[63626803200,63644943600,63626785200,63644925600,-18000,1,'CDT',],[63644943600,63658252800,63644922000,63658231200,-21600,0,'CST',],[63658252800,63676393200,63658234800,63676375200,-18000,1,'CDT',],[63676393200,63690307200,63676371600,63690285600,-21600,0,'CST',],[63690307200,63707842800,63690289200,63707824800,-18000,1,'CDT',],[63707842800,63721756800,63707821200,63721735200,-21600,0,'CST',],[63721756800,63739292400,63721738800,63739274400,-18000,1,'CDT',],[63739292400,63753206400,63739270800,63753184800,-21600,0,'CST',],[63753206400,63771346800,63753188400,63771328800,-18000,1,'CDT',],[63771346800,63784656000,63771325200,63784634400,-21600,0,'CST',],[63784656000,63802796400,63784638000,63802778400,-18000,1,'CDT',],[63802796400,63816105600,63802774800,63816084000,-21600,0,'CST',],[63816105600,63834246000,63816087600,63834228000,-18000,1,'CDT',],[63834246000,63848160000,63834224400,63848138400,-21600,0,'CST',],[63848160000,63865695600,63848142000,63865677600,-18000,1,'CDT',],[63865695600,63879609600,63865674000,63879588000,-21600,0,'CST',],[63879609600,63897145200,63879591600,63897127200,-18000,1,'CDT',],[63897145200,63911059200,63897123600,63911037600,-21600,0,'CST',],[63911059200,63928594800,63911041200,63928576800,-18000,1,'CDT',],[63928594800,63942508800,63928573200,63942487200,-21600,0,'CST',],[63942508800,63960649200,63942490800,63960631200,-18000,1,'CDT',],];sub olson_version {'2016a'}sub has_dst_changes {32}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-21600}my$last_observance=bless({'format'=>'C%sT','gmtoff'=>'-6:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>733866,'local_rd_secs'=>14400,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>733866,'utc_rd_secs'=>14400,'utc_year'=>2011 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-21600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>733866,'local_rd_secs'=>32400,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>733866,'utc_rd_secs'=>32400,'utc_year'=>2011 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2002','in'=>'Oct','letter'=>'S','name'=>'Mexico','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2002','in'=>'Apr','letter'=>'D','name'=>'Mexico','offset_from_std'=>3600,'on'=>'Sun>=1','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_BAHIA_BANDERAS

$fatpacked{"DateTime/TimeZone/America/Barbados.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_BARBADOS';
  package DateTime::TimeZone::America::Barbados;$DateTime::TimeZone::America::Barbados::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Barbados::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60684004709,DateTime::TimeZone::NEG_INFINITY,60683990400,-14309,0,'LMT',],[60684004709,60936465509,60683990400,60936451200,-14309,0,'BMT',],[60936465509,62370626400,60936451109,62370612000,-14400,0,'AST',],[62370626400,62380299600,62370615600,62380288800,-10800,1,'ADT',],[62380299600,62397237600,62380285200,62397223200,-14400,0,'AST',],[62397237600,62411749200,62397226800,62411738400,-10800,1,'ADT',],[62411749200,62428687200,62411734800,62428672800,-14400,0,'AST',],[62428687200,62443198800,62428676400,62443188000,-10800,1,'ADT',],[62443198800,62460741600,62443184400,62460727200,-14400,0,'AST',],[62460741600,62474389200,62460730800,62474378400,-10800,1,'ADT',],[62474389200,DateTime::TimeZone::INFINITY,62474374800,DateTime::TimeZone::INFINITY,-14400,0,'AST',],];sub olson_version {'2016a'}sub has_dst_changes {4}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_BARBADOS

$fatpacked{"DateTime/TimeZone/America/Belem.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_BELEM';
  package DateTime::TimeZone::America::Belem;$DateTime::TimeZone::America::Belem::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Belem::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60368469236,DateTime::TimeZone::NEG_INFINITY,60368457600,-11636,0,'LMT',],[60368469236,60928725600,60368458436,60928714800,-10800,0,'BRT',],[60928725600,60944320800,60928718400,60944313600,-7200,1,'BRST',],[60944320800,60960308400,60944310000,60960297600,-10800,0,'BRT',],[60960308400,60975856800,60960301200,60975849600,-7200,1,'BRST',],[60975856800,61501863600,60975846000,61501852800,-10800,0,'BRT',],[61501863600,61513614000,61501856400,61513606800,-7200,1,'BRST',],[61513614000,61533399600,61513603200,61533388800,-10800,0,'BRT',],[61533399600,61543850400,61533392400,61543843200,-7200,1,'BRST',],[61543850400,61564935600,61543839600,61564924800,-10800,0,'BRT',],[61564935600,61575472800,61564928400,61575465600,-7200,1,'BRST',],[61575472800,61596558000,61575462000,61596547200,-10800,0,'BRT',],[61596558000,61604330400,61596550800,61604323200,-7200,1,'BRST',],[61604330400,61944318000,61604319600,61944307200,-10800,0,'BRT',],[61944318000,61951485600,61944310800,61951478400,-7200,1,'BRST',],[61951485600,61980519600,61951474800,61980508800,-10800,0,'BRT',],[61980519600,61985613600,61980512400,61985606400,-7200,1,'BRST',],[61985613600,62006785200,61985602800,62006774400,-10800,0,'BRT',],[62006785200,62014557600,62006778000,62014550400,-7200,1,'BRST',],[62014557600,62035729200,62014546800,62035718400,-10800,0,'BRT',],[62035729200,62046093600,62035722000,62046086400,-7200,1,'BRST',],[62046093600,62067265200,62046082800,62067254400,-10800,0,'BRT',],[62067265200,62077716000,62067258000,62077708800,-7200,1,'BRST',],[62077716000,62635431600,62077705200,62635420800,-10800,0,'BRT',],[62635431600,62646919200,62635424400,62646912000,-7200,1,'BRST',],[62646919200,62666276400,62646908400,62666265600,-10800,0,'BRT',],[62666276400,62675949600,62666269200,62675942400,-7200,1,'BRST',],[62675949600,62697812400,62675938800,62697801600,-10800,0,'BRT',],[62697812400,62706880800,62697805200,62706873600,-7200,1,'BRST',],[62706880800,62725719600,62706870000,62725708800,-10800,0,'BRT',],[62725719600,DateTime::TimeZone::INFINITY,62725708800,DateTime::TimeZone::INFINITY,-10800,0,'BRT',],];sub olson_version {'2016a'}sub has_dst_changes {14}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_BELEM

$fatpacked{"DateTime/TimeZone/America/Belize.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_BELIZE';
  package DateTime::TimeZone::America::Belize;$DateTime::TimeZone::America::Belize::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Belize::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60313182768,DateTime::TimeZone::NEG_INFINITY,60313161600,-21168,0,'LMT',],[60313182768,60518728800,60313161168,60518707200,-21600,0,'CST',],[60518728800,60529613400,60518709000,60529593600,-19800,1,'CHDT',],[60529613400,60550178400,60529591800,60550156800,-21600,0,'CST',],[60550178400,60561667800,60550158600,60561648000,-19800,1,'CHDT',],[60561667800,60581628000,60561646200,60581606400,-21600,0,'CST',],[60581628000,60593117400,60581608200,60593097600,-19800,1,'CHDT',],[60593117400,60613077600,60593095800,60613056000,-21600,0,'CST',],[60613077600,60624567000,60613057800,60624547200,-19800,1,'CHDT',],[60624567000,60645132000,60624545400,60645110400,-21600,0,'CST',],[60645132000,60656016600,60645112200,60655996800,-19800,1,'CHDT',],[60656016600,60676581600,60655995000,60676560000,-21600,0,'CST',],[60676581600,60687466200,60676561800,60687446400,-19800,1,'CHDT',],[60687466200,60708031200,60687444600,60708009600,-21600,0,'CST',],[60708031200,60719520600,60708011400,60719500800,-19800,1,'CHDT',],[60719520600,60739480800,60719499000,60739459200,-21600,0,'CST',],[60739480800,60750970200,60739461000,60750950400,-19800,1,'CHDT',],[60750970200,60770930400,60750948600,60770908800,-21600,0,'CST',],[60770930400,60782419800,60770910600,60782400000,-19800,1,'CHDT',],[60782419800,60802380000,60782398200,60802358400,-21600,0,'CST',],[60802380000,60813869400,60802360200,60813849600,-19800,1,'CHDT',],[60813869400,60834434400,60813847800,60834412800,-21600,0,'CST',],[60834434400,60845319000,60834414600,60845299200,-19800,1,'CHDT',],[60845319000,60865884000,60845297400,60865862400,-21600,0,'CST',],[60865884000,60876768600,60865864200,60876748800,-19800,1,'CHDT',],[60876768600,60897333600,60876747000,60897312000,-21600,0,'CST',],[60897333600,60908823000,60897313800,60908803200,-19800,1,'CHDT',],[60908823000,60928783200,60908801400,60928761600,-21600,0,'CST',],[60928783200,60940272600,60928763400,60940252800,-19800,1,'CHDT',],[60940272600,60960232800,60940251000,60960211200,-21600,0,'CST',],[60960232800,60971722200,60960213000,60971702400,-19800,1,'CHDT',],[60971722200,60992287200,60971700600,60992265600,-21600,0,'CST',],[60992287200,61003171800,60992267400,61003152000,-19800,1,'CHDT',],[61003171800,61023736800,61003150200,61023715200,-21600,0,'CST',],[61023736800,61034621400,61023717000,61034601600,-19800,1,'CHDT',],[61034621400,61055186400,61034599800,61055164800,-21600,0,'CST',],[61055186400,61066071000,61055166600,61066051200,-19800,1,'CHDT',],[61066071000,61086636000,61066049400,61086614400,-21600,0,'CST',],[61086636000,61098125400,61086616200,61098105600,-19800,1,'CHDT',],[61098125400,61118085600,61098103800,61118064000,-21600,0,'CST',],[61118085600,61129575000,61118065800,61129555200,-19800,1,'CHDT',],[61129575000,61149535200,61129553400,61149513600,-21600,0,'CST',],[61149535200,61161024600,61149515400,61161004800,-19800,1,'CHDT',],[61161024600,61181589600,61161003000,61181568000,-21600,0,'CST',],[61181589600,61192474200,61181569800,61192454400,-19800,1,'CHDT',],[61192474200,61213039200,61192452600,61213017600,-21600,0,'CST',],[61213039200,61223923800,61213019400,61223904000,-19800,1,'CHDT',],[61223923800,61244488800,61223902200,61244467200,-21600,0,'CST',],[61244488800,61255978200,61244469000,61255958400,-19800,1,'CHDT',],[61255978200,61275938400,61255956600,61275916800,-21600,0,'CST',],[61275938400,61287427800,61275918600,61287408000,-19800,1,'CHDT',],[61287427800,62259602400,61287406200,62259580800,-21600,0,'CST',],[62259602400,62265301200,62259584400,62265283200,-18000,1,'CDT',],[62265301200,62544722400,62265279600,62544700800,-21600,0,'CST',],[62544722400,62549557200,62544704400,62549539200,-18000,1,'CDT',],[62549557200,DateTime::TimeZone::INFINITY,62549535600,DateTime::TimeZone::INFINITY,-21600,0,'CST',],];sub olson_version {'2016a'}sub has_dst_changes {27}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_BELIZE

$fatpacked{"DateTime/TimeZone/America/Blanc_Sablon.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_BLANC_SABLON';
  package DateTime::TimeZone::America::Blanc_Sablon;$DateTime::TimeZone::America::Blanc_Sablon::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Blanc_Sablon::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59421786508,DateTime::TimeZone::NEG_INFINITY,59421772800,-13708,0,'LMT',],[59421786508,60503608800,59421772108,60503594400,-14400,0,'AST',],[60503608800,60520539600,60503598000,60520528800,-10800,1,'ADT',],[60520539600,61255461600,60520525200,61255447200,-14400,0,'AST',],[61255461600,61366287600,61255450800,61366276800,-10800,1,'AWT',],[61366287600,61370283600,61366276800,61370272800,-10800,1,'APT',],[61370283600,62135697600,61370269200,62135683200,-14400,0,'AST',],[62135697600,DateTime::TimeZone::INFINITY,62135683200,DateTime::TimeZone::INFINITY,-14400,0,'AST',],];sub olson_version {'2016a'}sub has_dst_changes {3}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_BLANC_SABLON

$fatpacked{"DateTime/TimeZone/America/Boa_Vista.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_BOA_VISTA';
  package DateTime::TimeZone::America::Boa_Vista;$DateTime::TimeZone::America::Boa_Vista::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Boa_Vista::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60368472160,DateTime::TimeZone::NEG_INFINITY,60368457600,-14560,0,'LMT',],[60368472160,60928729200,60368457760,60928714800,-14400,0,'AMT',],[60928729200,60944324400,60928718400,60944313600,-10800,1,'AMST',],[60944324400,60960312000,60944310000,60960297600,-14400,0,'AMT',],[60960312000,60975860400,60960301200,60975849600,-10800,1,'AMST',],[60975860400,61501867200,60975846000,61501852800,-14400,0,'AMT',],[61501867200,61513617600,61501856400,61513606800,-10800,1,'AMST',],[61513617600,61533403200,61513603200,61533388800,-14400,0,'AMT',],[61533403200,61543854000,61533392400,61543843200,-10800,1,'AMST',],[61543854000,61564939200,61543839600,61564924800,-14400,0,'AMT',],[61564939200,61575476400,61564928400,61575465600,-10800,1,'AMST',],[61575476400,61596561600,61575462000,61596547200,-14400,0,'AMT',],[61596561600,61604334000,61596550800,61604323200,-10800,1,'AMST',],[61604334000,61944321600,61604319600,61944307200,-14400,0,'AMT',],[61944321600,61951489200,61944310800,61951478400,-10800,1,'AMST',],[61951489200,61980523200,61951474800,61980508800,-14400,0,'AMT',],[61980523200,61985617200,61980512400,61985606400,-10800,1,'AMST',],[61985617200,62006788800,61985602800,62006774400,-14400,0,'AMT',],[62006788800,62014561200,62006778000,62014550400,-10800,1,'AMST',],[62014561200,62035732800,62014546800,62035718400,-14400,0,'AMT',],[62035732800,62046097200,62035722000,62046086400,-10800,1,'AMST',],[62046097200,62067268800,62046082800,62067254400,-14400,0,'AMT',],[62067268800,62077719600,62067258000,62077708800,-10800,1,'AMST',],[62077719600,62635435200,62077705200,62635420800,-14400,0,'AMT',],[62635435200,62646922800,62635424400,62646912000,-10800,1,'AMST',],[62646922800,62666280000,62646908400,62666265600,-14400,0,'AMT',],[62666280000,62675953200,62666269200,62675942400,-10800,1,'AMST',],[62675953200,62697816000,62675938800,62697801600,-14400,0,'AMT',],[62697816000,62706884400,62697805200,62706873600,-10800,1,'AMST',],[62706884400,62725723200,62706870000,62725708800,-14400,0,'AMT',],[62725723200,63074347200,62725708800,63074332800,-14400,0,'AMT',],[63074347200,63074606400,63074332800,63074592000,-14400,0,'AMT',],[63074606400,63087303600,63074595600,63087292800,-10800,1,'AMST',],[63087303600,63106660800,63087289200,63106646400,-14400,0,'AMT',],[63106660800,63107262000,63106650000,63107251200,-10800,1,'AMST',],[63107262000,DateTime::TimeZone::INFINITY,63107247600,DateTime::TimeZone::INFINITY,-14400,0,'AMT',],];sub olson_version {'2016a'}sub has_dst_changes {16}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_BOA_VISTA

$fatpacked{"DateTime/TimeZone/America/Bogota.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_BOGOTA';
  package DateTime::TimeZone::America::Bogota;$DateTime::TimeZone::America::Bogota::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Bogota::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59428011376,DateTime::TimeZone::NEG_INFINITY,59427993600,-17776,0,'LMT',],[59428011376,60396641776,59427993600,60396624000,-17776,0,'BMT',],[60396641776,62840552400,60396623776,62840534400,-18000,0,'COT',],[62840552400,62869579200,62840538000,62869564800,-14400,1,'COST',],[62869579200,DateTime::TimeZone::INFINITY,62869561200,DateTime::TimeZone::INFINITY,-18000,0,'COT',],];sub olson_version {'2016a'}sub has_dst_changes {1}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_BOGOTA

$fatpacked{"DateTime/TimeZone/America/Boise.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_BOISE';
  package DateTime::TimeZone::America::Boise;$DateTime::TimeZone::America::Boise::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Boise::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59418043200,DateTime::TimeZone::NEG_INFINITY,59418015311,-27889,0,'LMT',],[59418043200,60502413600,59418014400,60502384800,-28800,0,'PST',],[60502413600,60520554000,60502388400,60520528800,-25200,1,'PDT',],[60520554000,60533863200,60520525200,60533834400,-28800,0,'PST',],[60533863200,60552003600,60533838000,60551978400,-25200,1,'PDT',],[60552003600,60663895200,60551974800,60663866400,-28800,0,'PST',],[60663895200,61255472400,60663870000,61255447200,-25200,0,'MST',],[61255472400,61366287600,61255450800,61366266000,-21600,1,'MWT',],[61366287600,61370294400,61366266000,61370272800,-21600,1,'MPT',],[61370294400,62051302800,61370269200,62051277600,-25200,0,'MST',],[62051302800,62067024000,62051281200,62067002400,-21600,1,'MDT',],[62067024000,62082752400,62066998800,62082727200,-25200,0,'MST',],[62082752400,62098473600,62082730800,62098452000,-21600,1,'MDT',],[62098473600,62114202000,62098448400,62114176800,-25200,0,'MST',],[62114202000,62129923200,62114180400,62129901600,-21600,1,'MDT',],[62129923200,62145651600,62129898000,62145626400,-25200,0,'MST',],[62145651600,62161372800,62145630000,62161351200,-21600,1,'MDT',],[62161372800,62177101200,62161347600,62177076000,-25200,0,'MST',],[62177101200,62193427200,62177079600,62193405600,-21600,1,'MDT',],[62193427200,62209155600,62193402000,62209130400,-25200,0,'MST',],[62209155600,62224876800,62209134000,62224855200,-21600,1,'MDT',],[62224876800,62240605200,62224851600,62240580000,-25200,0,'MST',],[62240605200,62256326400,62240583600,62256304800,-21600,1,'MDT',],[62256326400,62261938800,62256301200,62261913600,-25200,0,'MST',],[62261938800,62264797200,62261913600,62264772000,-25200,0,'MST',],[62264797200,62287776000,62264775600,62287754400,-21600,1,'MDT',],[62287776000,62298061200,62287750800,62298036000,-25200,0,'MST',],[62298061200,62319225600,62298039600,62319204000,-21600,1,'MDT',],[62319225600,62334954000,62319200400,62334928800,-25200,0,'MST',],[62334954000,62351280000,62334932400,62351258400,-21600,1,'MDT',],[62351280000,62366403600,62351254800,62366378400,-25200,0,'MST',],[62366403600,62382729600,62366382000,62382708000,-21600,1,'MDT',],[62382729600,62398458000,62382704400,62398432800,-25200,0,'MST',],[62398458000,62414179200,62398436400,62414157600,-21600,1,'MDT',],[62414179200,62429907600,62414154000,62429882400,-25200,0,'MST',],[62429907600,62445628800,62429886000,62445607200,-21600,1,'MDT',],[62445628800,62461357200,62445603600,62461332000,-25200,0,'MST',],[62461357200,62477078400,62461335600,62477056800,-21600,1,'MDT',],[62477078400,62492806800,62477053200,62492781600,-25200,0,'MST',],[62492806800,62508528000,62492785200,62508506400,-21600,1,'MDT',],[62508528000,62524256400,62508502800,62524231200,-25200,0,'MST',],[62524256400,62540582400,62524234800,62540560800,-21600,1,'MDT',],[62540582400,62555706000,62540557200,62555680800,-25200,0,'MST',],[62555706000,62572032000,62555684400,62572010400,-21600,1,'MDT',],[62572032000,62587760400,62572006800,62587735200,-25200,0,'MST',],[62587760400,62603481600,62587738800,62603460000,-21600,1,'MDT',],[62603481600,62619210000,62603456400,62619184800,-25200,0,'MST',],[62619210000,62634931200,62619188400,62634909600,-21600,1,'MDT',],[62634931200,62650659600,62634906000,62650634400,-25200,0,'MST',],[62650659600,62666380800,62650638000,62666359200,-21600,1,'MDT',],[62666380800,62680294800,62666355600,62680269600,-25200,0,'MST',],[62680294800,62697830400,62680273200,62697808800,-21600,1,'MDT',],[62697830400,62711744400,62697805200,62711719200,-25200,0,'MST',],[62711744400,62729884800,62711722800,62729863200,-21600,1,'MDT',],[62729884800,62743194000,62729859600,62743168800,-25200,0,'MST',],[62743194000,62761334400,62743172400,62761312800,-21600,1,'MDT',],[62761334400,62774643600,62761309200,62774618400,-25200,0,'MST',],[62774643600,62792784000,62774622000,62792762400,-21600,1,'MDT',],[62792784000,62806698000,62792758800,62806672800,-25200,0,'MST',],[62806698000,62824233600,62806676400,62824212000,-21600,1,'MDT',],[62824233600,62838147600,62824208400,62838122400,-25200,0,'MST',],[62838147600,62855683200,62838126000,62855661600,-21600,1,'MDT',],[62855683200,62869597200,62855658000,62869572000,-25200,0,'MST',],[62869597200,62887737600,62869575600,62887716000,-21600,1,'MDT',],[62887737600,62901046800,62887712400,62901021600,-25200,0,'MST',],[62901046800,62919187200,62901025200,62919165600,-21600,1,'MDT',],[62919187200,62932496400,62919162000,62932471200,-25200,0,'MST',],[62932496400,62950636800,62932474800,62950615200,-21600,1,'MDT',],[62950636800,62964550800,62950611600,62964525600,-25200,0,'MST',],[62964550800,62982086400,62964529200,62982064800,-21600,1,'MDT',],[62982086400,62996000400,62982061200,62995975200,-25200,0,'MST',],[62996000400,63013536000,62995978800,63013514400,-21600,1,'MDT',],[63013536000,63027450000,63013510800,63027424800,-25200,0,'MST',],[63027450000,63044985600,63027428400,63044964000,-21600,1,'MDT',],[63044985600,63058899600,63044960400,63058874400,-25200,0,'MST',],[63058899600,63077040000,63058878000,63077018400,-21600,1,'MDT',],[63077040000,63090349200,63077014800,63090324000,-25200,0,'MST',],[63090349200,63108489600,63090327600,63108468000,-21600,1,'MDT',],[63108489600,63121798800,63108464400,63121773600,-25200,0,'MST',],[63121798800,63139939200,63121777200,63139917600,-21600,1,'MDT',],[63139939200,63153853200,63139914000,63153828000,-25200,0,'MST',],[63153853200,63171388800,63153831600,63171367200,-21600,1,'MDT',],[63171388800,63185302800,63171363600,63185277600,-25200,0,'MST',],[63185302800,63202838400,63185281200,63202816800,-21600,1,'MDT',],[63202838400,63216752400,63202813200,63216727200,-25200,0,'MST',],[63216752400,63234892800,63216730800,63234871200,-21600,1,'MDT',],[63234892800,63248202000,63234867600,63248176800,-25200,0,'MST',],[63248202000,63266342400,63248180400,63266320800,-21600,1,'MDT',],[63266342400,63279651600,63266317200,63279626400,-25200,0,'MST',],[63279651600,63297792000,63279630000,63297770400,-21600,1,'MDT',],[63297792000,63309286800,63297766800,63309261600,-25200,0,'MST',],[63309286800,63329846400,63309265200,63329824800,-21600,1,'MDT',],[63329846400,63340736400,63329821200,63340711200,-25200,0,'MST',],[63340736400,63361296000,63340714800,63361274400,-21600,1,'MDT',],[63361296000,63372186000,63361270800,63372160800,-25200,0,'MST',],[63372186000,63392745600,63372164400,63392724000,-21600,1,'MDT',],[63392745600,63404240400,63392720400,63404215200,-25200,0,'MST',],[63404240400,63424800000,63404218800,63424778400,-21600,1,'MDT',],[63424800000,63435690000,63424774800,63435664800,-25200,0,'MST',],[63435690000,63456249600,63435668400,63456228000,-21600,1,'MDT',],[63456249600,63467139600,63456224400,63467114400,-25200,0,'MST',],[63467139600,63487699200,63467118000,63487677600,-21600,1,'MDT',],[63487699200,63498589200,63487674000,63498564000,-25200,0,'MST',],[63498589200,63519148800,63498567600,63519127200,-21600,1,'MDT',],[63519148800,63530038800,63519123600,63530013600,-25200,0,'MST',],[63530038800,63550598400,63530017200,63550576800,-21600,1,'MDT',],[63550598400,63561488400,63550573200,63561463200,-25200,0,'MST',],[63561488400,63582048000,63561466800,63582026400,-21600,1,'MDT',],[63582048000,63593542800,63582022800,63593517600,-25200,0,'MST',],[63593542800,63614102400,63593521200,63614080800,-21600,1,'MDT',],[63614102400,63624992400,63614077200,63624967200,-25200,0,'MST',],[63624992400,63645552000,63624970800,63645530400,-21600,1,'MDT',],[63645552000,63656442000,63645526800,63656416800,-25200,0,'MST',],[63656442000,63677001600,63656420400,63676980000,-21600,1,'MDT',],[63677001600,63687891600,63676976400,63687866400,-25200,0,'MST',],[63687891600,63708451200,63687870000,63708429600,-21600,1,'MDT',],[63708451200,63719341200,63708426000,63719316000,-25200,0,'MST',],[63719341200,63739900800,63719319600,63739879200,-21600,1,'MDT',],[63739900800,63751395600,63739875600,63751370400,-25200,0,'MST',],[63751395600,63771955200,63751374000,63771933600,-21600,1,'MDT',],[63771955200,63782845200,63771930000,63782820000,-25200,0,'MST',],[63782845200,63803404800,63782823600,63803383200,-21600,1,'MDT',],[63803404800,63814294800,63803379600,63814269600,-25200,0,'MST',],[63814294800,63834854400,63814273200,63834832800,-21600,1,'MDT',],[63834854400,63845744400,63834829200,63845719200,-25200,0,'MST',],[63845744400,63866304000,63845722800,63866282400,-21600,1,'MDT',],[63866304000,63877194000,63866278800,63877168800,-25200,0,'MST',],[63877194000,63897753600,63877172400,63897732000,-21600,1,'MDT',],[63897753600,63908643600,63897728400,63908618400,-25200,0,'MST',],[63908643600,63929203200,63908622000,63929181600,-21600,1,'MDT',],[63929203200,63940698000,63929178000,63940672800,-25200,0,'MST',],[63940698000,63961257600,63940676400,63961236000,-21600,1,'MDT',],];sub olson_version {'2016a'}sub has_dst_changes {65}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-25200}my$last_observance=bless({'format'=>'M%sT','gmtoff'=>'-7:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>720657,'local_rd_secs'=>10800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>720657,'utc_rd_secs'=>10800,'utc_year'=>1975 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-25200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>720657,'local_rd_secs'=>32400,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>720657,'utc_rd_secs'=>32400,'utc_year'=>1975 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_BOISE

$fatpacked{"DateTime/TimeZone/America/Cambridge_Bay.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_CAMBRIDGE_BAY';
  package DateTime::TimeZone::America::Cambridge_Bay;$DateTime::TimeZone::America::Cambridge_Bay::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Cambridge_Bay::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60557760000,DateTime::TimeZone::NEG_INFINITY,60557760000,0,0,'zzz',],[60557760000,61255472400,60557734800,61255447200,-25200,0,'MST',],[61255472400,61366287600,61255450800,61366266000,-21600,1,'MWT',],[61366287600,61370294400,61366266000,61370272800,-21600,1,'MPT',],[61370294400,61987791600,61370269200,61987766400,-25200,0,'MST',],[61987791600,62004121200,61987773600,62004103200,-18000,1,'MDDT',],[62004121200,62461357200,62004096000,62461332000,-25200,0,'MST',],[62461357200,62477078400,62461335600,62477056800,-21600,1,'MDT',],[62477078400,62492806800,62477053200,62492781600,-25200,0,'MST',],[62492806800,62508528000,62492785200,62508506400,-21600,1,'MDT',],[62508528000,62524256400,62508502800,62524231200,-25200,0,'MST',],[62524256400,62540582400,62524234800,62540560800,-21600,1,'MDT',],[62540582400,62555706000,62540557200,62555680800,-25200,0,'MST',],[62555706000,62572032000,62555684400,62572010400,-21600,1,'MDT',],[62572032000,62587760400,62572006800,62587735200,-25200,0,'MST',],[62587760400,62603481600,62587738800,62603460000,-21600,1,'MDT',],[62603481600,62619210000,62603456400,62619184800,-25200,0,'MST',],[62619210000,62634931200,62619188400,62634909600,-21600,1,'MDT',],[62634931200,62650659600,62634906000,62650634400,-25200,0,'MST',],[62650659600,62666380800,62650638000,62666359200,-21600,1,'MDT',],[62666380800,62680294800,62666355600,62680269600,-25200,0,'MST',],[62680294800,62697830400,62680273200,62697808800,-21600,1,'MDT',],[62697830400,62711744400,62697805200,62711719200,-25200,0,'MST',],[62711744400,62729884800,62711722800,62729863200,-21600,1,'MDT',],[62729884800,62743194000,62729859600,62743168800,-25200,0,'MST',],[62743194000,62761334400,62743172400,62761312800,-21600,1,'MDT',],[62761334400,62774643600,62761309200,62774618400,-25200,0,'MST',],[62774643600,62792784000,62774622000,62792762400,-21600,1,'MDT',],[62792784000,62806698000,62792758800,62806672800,-25200,0,'MST',],[62806698000,62824233600,62806676400,62824212000,-21600,1,'MDT',],[62824233600,62838147600,62824208400,62838122400,-25200,0,'MST',],[62838147600,62855683200,62838126000,62855661600,-21600,1,'MDT',],[62855683200,62869597200,62855658000,62869572000,-25200,0,'MST',],[62869597200,62887737600,62869575600,62887716000,-21600,1,'MDT',],[62887737600,62901046800,62887712400,62901021600,-25200,0,'MST',],[62901046800,62919187200,62901025200,62919165600,-21600,1,'MDT',],[62919187200,62932496400,62919162000,62932471200,-25200,0,'MST',],[62932496400,62950636800,62932474800,62950615200,-21600,1,'MDT',],[62950636800,62964550800,62950611600,62964525600,-25200,0,'MST',],[62964550800,62982086400,62964529200,62982064800,-21600,1,'MDT',],[62982086400,62996000400,62982061200,62995975200,-25200,0,'MST',],[62996000400,63013536000,62995978800,63013514400,-21600,1,'MDT',],[63013536000,63027450000,63013510800,63027424800,-25200,0,'MST',],[63027450000,63044985600,63027428400,63044964000,-21600,1,'MDT',],[63044985600,63058899600,63044960400,63058874400,-25200,0,'MST',],[63058899600,63077040000,63058878000,63077018400,-21600,1,'MDT',],[63077040000,63090345600,63077018400,63090324000,-21600,0,'CST',],[63090345600,63108486000,63090327600,63108468000,-18000,1,'CDT',],[63108486000,63109083600,63108468000,63109065600,-18000,0,'EST',],[63109083600,63121798800,63109062000,63121777200,-21600,0,'CST',],[63121798800,63139939200,63121777200,63139917600,-21600,1,'MDT',],[63139939200,63153853200,63139914000,63153828000,-25200,0,'MST',],[63153853200,63171388800,63153831600,63171367200,-21600,1,'MDT',],[63171388800,63185302800,63171363600,63185277600,-25200,0,'MST',],[63185302800,63202838400,63185281200,63202816800,-21600,1,'MDT',],[63202838400,63216752400,63202813200,63216727200,-25200,0,'MST',],[63216752400,63234892800,63216730800,63234871200,-21600,1,'MDT',],[63234892800,63248202000,63234867600,63248176800,-25200,0,'MST',],[63248202000,63266342400,63248180400,63266320800,-21600,1,'MDT',],[63266342400,63279651600,63266317200,63279626400,-25200,0,'MST',],[63279651600,63297792000,63279630000,63297770400,-21600,1,'MDT',],[63297792000,63309286800,63297766800,63309261600,-25200,0,'MST',],[63309286800,63329846400,63309265200,63329824800,-21600,1,'MDT',],[63329846400,63340736400,63329821200,63340711200,-25200,0,'MST',],[63340736400,63361296000,63340714800,63361274400,-21600,1,'MDT',],[63361296000,63372186000,63361270800,63372160800,-25200,0,'MST',],[63372186000,63392745600,63372164400,63392724000,-21600,1,'MDT',],[63392745600,63404240400,63392720400,63404215200,-25200,0,'MST',],[63404240400,63424800000,63404218800,63424778400,-21600,1,'MDT',],[63424800000,63435690000,63424774800,63435664800,-25200,0,'MST',],[63435690000,63456249600,63435668400,63456228000,-21600,1,'MDT',],[63456249600,63467139600,63456224400,63467114400,-25200,0,'MST',],[63467139600,63487699200,63467118000,63487677600,-21600,1,'MDT',],[63487699200,63498589200,63487674000,63498564000,-25200,0,'MST',],[63498589200,63519148800,63498567600,63519127200,-21600,1,'MDT',],[63519148800,63530038800,63519123600,63530013600,-25200,0,'MST',],[63530038800,63550598400,63530017200,63550576800,-21600,1,'MDT',],[63550598400,63561488400,63550573200,63561463200,-25200,0,'MST',],[63561488400,63582048000,63561466800,63582026400,-21600,1,'MDT',],[63582048000,63593542800,63582022800,63593517600,-25200,0,'MST',],[63593542800,63614102400,63593521200,63614080800,-21600,1,'MDT',],[63614102400,63624992400,63614077200,63624967200,-25200,0,'MST',],[63624992400,63645552000,63624970800,63645530400,-21600,1,'MDT',],[63645552000,63656442000,63645526800,63656416800,-25200,0,'MST',],[63656442000,63677001600,63656420400,63676980000,-21600,1,'MDT',],[63677001600,63687891600,63676976400,63687866400,-25200,0,'MST',],[63687891600,63708451200,63687870000,63708429600,-21600,1,'MDT',],[63708451200,63719341200,63708426000,63719316000,-25200,0,'MST',],[63719341200,63739900800,63719319600,63739879200,-21600,1,'MDT',],[63739900800,63751395600,63739875600,63751370400,-25200,0,'MST',],[63751395600,63771955200,63751374000,63771933600,-21600,1,'MDT',],[63771955200,63782845200,63771930000,63782820000,-25200,0,'MST',],[63782845200,63803404800,63782823600,63803383200,-21600,1,'MDT',],[63803404800,63814294800,63803379600,63814269600,-25200,0,'MST',],[63814294800,63834854400,63814273200,63834832800,-21600,1,'MDT',],[63834854400,63845744400,63834829200,63845719200,-25200,0,'MST',],[63845744400,63866304000,63845722800,63866282400,-21600,1,'MDT',],[63866304000,63877194000,63866278800,63877168800,-25200,0,'MST',],[63877194000,63897753600,63877172400,63897732000,-21600,1,'MDT',],[63897753600,63908643600,63897728400,63908618400,-25200,0,'MST',],[63908643600,63929203200,63908622000,63929181600,-21600,1,'MDT',],[63929203200,63940698000,63929178000,63940672800,-25200,0,'MST',],[63940698000,63961257600,63940676400,63961236000,-21600,1,'MDT',],];sub olson_version {'2016a'}sub has_dst_changes {51}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-25200}my$last_observance=bless({'format'=>'M%sT','gmtoff'=>'-7:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>730576,'local_rd_secs'=>10800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>730576,'utc_rd_secs'=>10800,'utc_year'=>2002 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-25200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>730576,'local_rd_secs'=>32400,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>730576,'utc_rd_secs'=>32400,'utc_year'=>2002 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'Canada','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'Canada','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_CAMBRIDGE_BAY

$fatpacked{"DateTime/TimeZone/America/Campo_Grande.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_CAMPO_GRANDE';
  package DateTime::TimeZone::America::Campo_Grande;$DateTime::TimeZone::America::Campo_Grande::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Campo_Grande::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60368470708,DateTime::TimeZone::NEG_INFINITY,60368457600,-13108,0,'LMT',],[60368470708,60928729200,60368456308,60928714800,-14400,0,'AMT',],[60928729200,60944324400,60928718400,60944313600,-10800,1,'AMST',],[60944324400,60960312000,60944310000,60960297600,-14400,0,'AMT',],[60960312000,60975860400,60960301200,60975849600,-10800,1,'AMST',],[60975860400,61501867200,60975846000,61501852800,-14400,0,'AMT',],[61501867200,61513617600,61501856400,61513606800,-10800,1,'AMST',],[61513617600,61533403200,61513603200,61533388800,-14400,0,'AMT',],[61533403200,61543854000,61533392400,61543843200,-10800,1,'AMST',],[61543854000,61564939200,61543839600,61564924800,-14400,0,'AMT',],[61564939200,61575476400,61564928400,61575465600,-10800,1,'AMST',],[61575476400,61596561600,61575462000,61596547200,-14400,0,'AMT',],[61596561600,61604334000,61596550800,61604323200,-10800,1,'AMST',],[61604334000,61944321600,61604319600,61944307200,-14400,0,'AMT',],[61944321600,61951489200,61944310800,61951478400,-10800,1,'AMST',],[61951489200,61980523200,61951474800,61980508800,-14400,0,'AMT',],[61980523200,61985617200,61980512400,61985606400,-10800,1,'AMST',],[61985617200,62006788800,61985602800,62006774400,-14400,0,'AMT',],[62006788800,62014561200,62006778000,62014550400,-10800,1,'AMST',],[62014561200,62035732800,62014546800,62035718400,-14400,0,'AMT',],[62035732800,62046097200,62035722000,62046086400,-10800,1,'AMST',],[62046097200,62067268800,62046082800,62067254400,-14400,0,'AMT',],[62067268800,62077719600,62067258000,62077708800,-10800,1,'AMST',],[62077719600,62635435200,62077705200,62635420800,-14400,0,'AMT',],[62635435200,62646922800,62635424400,62646912000,-10800,1,'AMST',],[62646922800,62666280000,62646908400,62666265600,-14400,0,'AMT',],[62666280000,62675953200,62666269200,62675942400,-10800,1,'AMST',],[62675953200,62697816000,62675938800,62697801600,-14400,0,'AMT',],[62697816000,62706884400,62697805200,62706873600,-10800,1,'AMST',],[62706884400,62728660800,62706870000,62728646400,-14400,0,'AMT',],[62728660800,62737729200,62728650000,62737718400,-10800,1,'AMST',],[62737729200,62760110400,62737714800,62760096000,-14400,0,'AMT',],[62760110400,62770388400,62760099600,62770377600,-10800,1,'AMST',],[62770388400,62792164800,62770374000,62792150400,-14400,0,'AMT',],[62792164800,62802442800,62792154000,62802432000,-10800,1,'AMST',],[62802442800,62823614400,62802428400,62823600000,-14400,0,'AMT',],[62823614400,62833287600,62823603600,62833276800,-10800,1,'AMST',],[62833287600,62855668800,62833273200,62855654400,-14400,0,'AMT',],[62855668800,62864132400,62855658000,62864121600,-10800,1,'AMST',],[62864132400,62886513600,62864118000,62886499200,-14400,0,'AMT',],[62886513600,62897396400,62886502800,62897385600,-10800,1,'AMST',],[62897396400,62917963200,62897382000,62917948800,-14400,0,'AMT',],[62917963200,62928846000,62917952400,62928835200,-10800,1,'AMST',],[62928846000,62949412800,62928831600,62949398400,-14400,0,'AMT',],[62949412800,62959690800,62949402000,62959680000,-10800,1,'AMST',],[62959690800,62980257600,62959676400,62980243200,-14400,0,'AMT',],[62980257600,62991745200,62980246800,62991734400,-10800,1,'AMST',],[62991745200,63011793600,62991730800,63011779200,-14400,0,'AMT',],[63011793600,63024404400,63011782800,63024393600,-10800,1,'AMST',],[63024404400,63043761600,63024390000,63043747200,-14400,0,'AMT',],[63043761600,63055249200,63043750800,63055238400,-10800,1,'AMST',],[63055249200,63074606400,63055234800,63074592000,-14400,0,'AMT',],[63074606400,63087303600,63074595600,63087292800,-10800,1,'AMST',],[63087303600,63106660800,63087289200,63106646400,-14400,0,'AMT',],[63106660800,63118148400,63106650000,63118137600,-10800,1,'AMST',],[63118148400,63138715200,63118134000,63138700800,-14400,0,'AMT',],[63138715200,63149598000,63138704400,63149587200,-10800,1,'AMST',],[63149598000,63171979200,63149583600,63171964800,-14400,0,'AMT',],[63171979200,63181047600,63171968400,63181036800,-10800,1,'AMST',],[63181047600,63202219200,63181033200,63202204800,-14400,0,'AMT',],[63202219200,63212497200,63202208400,63212486400,-10800,1,'AMST',],[63212497200,63235051200,63212482800,63235036800,-14400,0,'AMT',],[63235051200,63244551600,63235040400,63244540800,-10800,1,'AMST',],[63244551600,63265118400,63244537200,63265104000,-14400,0,'AMT',],[63265118400,63276001200,63265107600,63275990400,-10800,1,'AMST',],[63276001200,63298382400,63275986800,63298368000,-14400,0,'AMT',],[63298382400,63308055600,63298371600,63308044800,-10800,1,'AMST',],[63308055600,63328017600,63308041200,63328003200,-14400,0,'AMT',],[63328017600,63338900400,63328006800,63338889600,-10800,1,'AMST',],[63338900400,63360072000,63338886000,63360057600,-14400,0,'AMT',],[63360072000,63370350000,63360061200,63370339200,-10800,1,'AMST',],[63370350000,63391521600,63370335600,63391507200,-14400,0,'AMT',],[63391521600,63402404400,63391510800,63402393600,-10800,1,'AMST',],[63402404400,63422971200,63402390000,63422956800,-14400,0,'AMT',],[63422971200,63433854000,63422960400,63433843200,-10800,1,'AMST',],[63433854000,63454420800,63433839600,63454406400,-14400,0,'AMT',],[63454420800,63465908400,63454410000,63465897600,-10800,1,'AMST',],[63465908400,63486475200,63465894000,63486460800,-14400,0,'AMT',],[63486475200,63496753200,63486464400,63496742400,-10800,1,'AMST',],[63496753200,63517924800,63496738800,63517910400,-14400,0,'AMT',],[63517924800,63528202800,63517914000,63528192000,-10800,1,'AMST',],[63528202800,63549374400,63528188400,63549360000,-14400,0,'AMT',],[63549374400,63560257200,63549363600,63560246400,-10800,1,'AMST',],[63560257200,63580824000,63560242800,63580809600,-14400,0,'AMT',],[63580824000,63591706800,63580813200,63591696000,-10800,1,'AMST',],[63591706800,63612273600,63591692400,63612259200,-14400,0,'AMT',],[63612273600,63623156400,63612262800,63623145600,-10800,1,'AMST',],[63623156400,63643723200,63623142000,63643708800,-14400,0,'AMT',],[63643723200,63654606000,63643712400,63654595200,-10800,1,'AMST',],[63654606000,63675777600,63654591600,63675763200,-14400,0,'AMT',],[63675777600,63686055600,63675766800,63686044800,-10800,1,'AMST',],[63686055600,63707227200,63686041200,63707212800,-14400,0,'AMT',],[63707227200,63717505200,63707216400,63717494400,-10800,1,'AMST',],[63717505200,63738676800,63717490800,63738662400,-14400,0,'AMT',],[63738676800,63749559600,63738666000,63749548800,-10800,1,'AMST',],[63749559600,63770126400,63749545200,63770112000,-14400,0,'AMT',],[63770126400,63781009200,63770115600,63780998400,-10800,1,'AMST',],[63781009200,63801576000,63780994800,63801561600,-14400,0,'AMT',],[63801576000,63813063600,63801565200,63813052800,-10800,1,'AMST',],[63813063600,63833025600,63813049200,63833011200,-14400,0,'AMT',],[63833025600,63843908400,63833014800,63843897600,-10800,1,'AMST',],[63843908400,63865080000,63843894000,63865065600,-14400,0,'AMT',],[63865080000,63875358000,63865069200,63875347200,-10800,1,'AMST',],[63875358000,63896529600,63875343600,63896515200,-14400,0,'AMT',],[63896529600,63907412400,63896518800,63907401600,-10800,1,'AMST',],[63907412400,63927979200,63907398000,63927964800,-14400,0,'AMT',],[63927979200,63938862000,63927968400,63938851200,-10800,1,'AMST',],[63938862000,63959428800,63938847600,63959414400,-14400,0,'AMT',],[63959428800,63970311600,63959418000,63970300800,-10800,1,'AMST',],[63970311600,63990878400,63970297200,63990864000,-14400,0,'AMT',],[63990878400,64001761200,63990867600,64001750400,-10800,1,'AMST',],[64001761200,64022932800,64001746800,64022918400,-14400,0,'AMT',],[64022932800,64033210800,64022922000,64033200000,-10800,1,'AMST',],[64033210800,64054382400,64033196400,64054368000,-14400,0,'AMT',],[64054382400,64064660400,64054371600,64064649600,-10800,1,'AMST',],[64064660400,64085832000,64064646000,64085817600,-14400,0,'AMT',],[64085832000,64096110000,64085821200,64096099200,-10800,1,'AMST',],[64096110000,64117281600,64096095600,64117267200,-14400,0,'AMT',],[64117281600,64128164400,64117270800,64128153600,-10800,1,'AMST',],[64128164400,64148731200,64128150000,64148716800,-14400,0,'AMT',],[64148731200,64160218800,64148720400,64160208000,-10800,1,'AMST',],[64160218800,64180180800,64160204400,64180166400,-14400,0,'AMT',],[64180180800,64191063600,64180170000,64191052800,-10800,1,'AMST',],[64191063600,64212235200,64191049200,64212220800,-14400,0,'AMT',],[64212235200,64222513200,64212224400,64222502400,-10800,1,'AMST',],[64222513200,64243684800,64222498800,64243670400,-14400,0,'AMT',],[64243684800,64254567600,64243674000,64254556800,-10800,1,'AMST',],[64254567600,64275134400,64254553200,64275120000,-14400,0,'AMT',],[64275134400,64286017200,64275123600,64286006400,-10800,1,'AMST',],[64286017200,64306584000,64286002800,64306569600,-14400,0,'AMT',],[64306584000,64317466800,64306573200,64317456000,-10800,1,'AMST',],[64317466800,64338033600,64317452400,64338019200,-14400,0,'AMT',],];sub olson_version {'2016a'}sub has_dst_changes {66}sub _max_year {2038}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-14400}my$last_observance=bless({'format'=>'AM%sT','gmtoff'=>'-4:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>698708,'local_rd_secs'=>85108,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>698708,'utc_rd_secs'=>85108,'utc_year'=>1914 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-14400,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>698709,'local_rd_secs'=>13108,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>698709,'utc_rd_secs'=>13108,'utc_year'=>1915 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'0:00','from'=>'2008','in'=>'Oct','letter'=>'S','name'=>'Brazil','offset_from_std'=>3600,'on'=>'Sun>=15','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'0:00','from'=>'2038','in'=>'Feb','letter'=>'','name'=>'Brazil','offset_from_std'=>0,'on'=>'Sun>=15','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_CAMPO_GRANDE

$fatpacked{"DateTime/TimeZone/America/Cancun.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_CANCUN';
  package DateTime::TimeZone::America::Cancun;$DateTime::TimeZone::America::Cancun::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Cancun::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60620940000,DateTime::TimeZone::NEG_INFINITY,60620919176,-20824,0,'LMT',],[60620940000,62513618400,60620918400,62513596800,-21600,0,'CST',],[62513618400,62964543600,62513600400,62964525600,-18000,0,'EST',],[62964543600,62982079200,62964529200,62982064800,-14400,1,'EDT',],[62982079200,62995993200,62982061200,62995975200,-18000,0,'EST',],[62995993200,63013528800,62995978800,63013514400,-14400,1,'EDT',],[63013528800,63027442800,63013510800,63027424800,-18000,0,'EST',],[63027442800,63037720800,63027428400,63037706400,-14400,1,'EDT',],[63037720800,63044982000,63037702800,63044964000,-18000,1,'CDT',],[63044982000,63058896000,63044960400,63058874400,-21600,0,'CST',],[63058896000,63077036400,63058878000,63077018400,-18000,1,'CDT',],[63077036400,63090345600,63077014800,63090324000,-21600,0,'CST',],[63090345600,63108486000,63090327600,63108468000,-18000,1,'CDT',],[63108486000,63124819200,63108464400,63124797600,-21600,0,'CST',],[63124819200,63137516400,63124801200,63137498400,-18000,1,'CDT',],[63137516400,63153849600,63137494800,63153828000,-21600,0,'CST',],[63153849600,63171385200,63153831600,63171367200,-18000,1,'CDT',],[63171385200,63185299200,63171363600,63185277600,-21600,0,'CST',],[63185299200,63202834800,63185281200,63202816800,-18000,1,'CDT',],[63202834800,63216748800,63202813200,63216727200,-21600,0,'CST',],[63216748800,63234889200,63216730800,63234871200,-18000,1,'CDT',],[63234889200,63248198400,63234867600,63248176800,-21600,0,'CST',],[63248198400,63266338800,63248180400,63266320800,-18000,1,'CDT',],[63266338800,63279648000,63266317200,63279626400,-21600,0,'CST',],[63279648000,63297788400,63279630000,63297770400,-18000,1,'CDT',],[63297788400,63311097600,63297766800,63311076000,-21600,0,'CST',],[63311097600,63329238000,63311079600,63329220000,-18000,1,'CDT',],[63329238000,63343152000,63329216400,63343130400,-21600,0,'CST',],[63343152000,63360687600,63343134000,63360669600,-18000,1,'CDT',],[63360687600,63374601600,63360666000,63374580000,-21600,0,'CST',],[63374601600,63392137200,63374583600,63392119200,-18000,1,'CDT',],[63392137200,63406051200,63392115600,63406029600,-21600,0,'CST',],[63406051200,63424191600,63406033200,63424173600,-18000,1,'CDT',],[63424191600,63437500800,63424170000,63437479200,-21600,0,'CST',],[63437500800,63455641200,63437482800,63455623200,-18000,1,'CDT',],[63455641200,63468950400,63455619600,63468928800,-21600,0,'CST',],[63468950400,63487090800,63468932400,63487072800,-18000,1,'CDT',],[63487090800,63501004800,63487069200,63500983200,-21600,0,'CST',],[63501004800,63518540400,63500986800,63518522400,-18000,1,'CDT',],[63518540400,63532454400,63518518800,63532432800,-21600,0,'CST',],[63532454400,63549990000,63532436400,63549972000,-18000,1,'CDT',],[63549990000,63558460800,63549968400,63558439200,-21600,0,'CST',],[63558460800,DateTime::TimeZone::INFINITY,63558442800,DateTime::TimeZone::INFINITY,-18000,0,'EST',],];sub olson_version {'2016a'}sub has_dst_changes {20}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_CANCUN

$fatpacked{"DateTime/TimeZone/America/Caracas.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_CARACAS';
  package DateTime::TimeZone::America::Caracas;$DateTime::TimeZone::America::Caracas::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Caracas::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59611177664,DateTime::TimeZone::NEG_INFINITY,59611161600,-16064,0,'LMT',],[59611177664,60308944060,59611161604,60308928000,-16060,0,'CMT',],[60308944060,61977933000,60308927860,61977916800,-16200,0,'VET',],[61977933000,63332866800,61977918600,63332852400,-14400,0,'VET',],[63332866800,DateTime::TimeZone::INFINITY,63332850600,DateTime::TimeZone::INFINITY,-16200,0,'VET',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_CARACAS

$fatpacked{"DateTime/TimeZone/America/Cayenne.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_CAYENNE';
  package DateTime::TimeZone::America::Cayenne;$DateTime::TimeZone::America::Cayenne::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Cayenne::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60289414160,DateTime::TimeZone::NEG_INFINITY,60289401600,-12560,0,'LMT',],[60289414160,62064590400,60289399760,62064576000,-14400,0,'GFT',],[62064590400,DateTime::TimeZone::INFINITY,62064579600,DateTime::TimeZone::INFINITY,-10800,0,'GFT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_CAYENNE

$fatpacked{"DateTime/TimeZone/America/Chicago.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_CHICAGO';
  package DateTime::TimeZone::America::Chicago;$DateTime::TimeZone::America::Chicago::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Chicago::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59418036000,DateTime::TimeZone::NEG_INFINITY,59418014964,-21036,0,'LMT',],[59418036000,60502406400,59418014400,60502384800,-21600,0,'CST',],[60502406400,60520546800,60502388400,60520528800,-18000,1,'CDT',],[60520546800,60533856000,60520525200,60533834400,-21600,0,'CST',],[60533856000,60551996400,60533838000,60551978400,-18000,1,'CDT',],[60551996400,60557781600,60551974800,60557760000,-21600,0,'CST',],[60557781600,60571958400,60557760000,60571936800,-21600,0,'CST',],[60571958400,60584050800,60571940400,60584032800,-18000,1,'CDT',],[60584050800,60596755200,60584029200,60596733600,-21600,0,'CST',],[60596755200,60615500400,60596737200,60615482400,-18000,1,'CDT',],[60615500400,60631228800,60615478800,60631207200,-21600,0,'CST',],[60631228800,60643926000,60631210800,60643908000,-18000,1,'CDT',],[60643926000,60662678400,60643904400,60662656800,-21600,0,'CST',],[60662678400,60675980400,60662660400,60675962400,-18000,1,'CDT',],[60675980400,60694128000,60675958800,60694106400,-21600,0,'CST',],[60694128000,60707430000,60694110000,60707412000,-18000,1,'CDT',],[60707430000,60725577600,60707408400,60725556000,-21600,0,'CST',],[60725577600,60738879600,60725559600,60738861600,-18000,1,'CDT',],[60738879600,60757027200,60738858000,60757005600,-21600,0,'CST',],[60757027200,60770329200,60757009200,60770311200,-18000,1,'CDT',],[60770329200,60788476800,60770307600,60788455200,-21600,0,'CST',],[60788476800,60801778800,60788458800,60801760800,-18000,1,'CDT',],[60801778800,60820531200,60801757200,60820509600,-21600,0,'CST',],[60820531200,60833833200,60820513200,60833815200,-18000,1,'CDT',],[60833833200,60851980800,60833811600,60851959200,-21600,0,'CST',],[60851980800,60865282800,60851962800,60865264800,-18000,1,'CDT',],[60865282800,60883430400,60865261200,60883408800,-21600,0,'CST',],[60883430400,60896732400,60883412400,60896714400,-18000,1,'CDT',],[60896732400,60914880000,60896710800,60914858400,-21600,0,'CST',],[60914880000,60928182000,60914862000,60928164000,-18000,1,'CDT',],[60928182000,60946329600,60928160400,60946308000,-21600,0,'CST',],[60946329600,60959631600,60946311600,60959613600,-18000,1,'CDT',],[60959631600,60978384000,60959610000,60978362400,-21600,0,'CST',],[60978384000,60991081200,60978366000,60991063200,-18000,1,'CDT',],[60991081200,61009833600,60991059600,61009812000,-21600,0,'CST',],[61009833600,61023135600,61009815600,61023117600,-18000,1,'CDT',],[61023135600,61041283200,61023114000,61041261600,-21600,0,'CST',],[61041283200,61054585200,61041265200,61054567200,-18000,1,'CDT',],[61054585200,61067894400,61054563600,61067872800,-21600,0,'CST',],[61067894400,61090268400,61067876400,61090250400,-18000,0,'EST',],[61090268400,61104182400,61090246800,61104160800,-21600,0,'CST',],[61104182400,61117484400,61104164400,61117466400,-18000,1,'CDT',],[61117484400,61135632000,61117462800,61135610400,-21600,0,'CST',],[61135632000,61148934000,61135614000,61148916000,-18000,1,'CDT',],[61148934000,61167686400,61148912400,61167664800,-21600,0,'CST',],[61167686400,61180383600,61167668400,61180365600,-18000,1,'CDT',],[61180383600,61199136000,61180362000,61199114400,-21600,0,'CST',],[61199136000,61212438000,61199118000,61212420000,-18000,1,'CDT',],[61212438000,61230585600,61212416400,61230564000,-21600,0,'CST',],[61230585600,61243887600,61230567600,61243869600,-18000,1,'CDT',],[61243887600,61252092000,61243866000,61252070400,-21600,0,'CST',],[61252092000,61255468800,61252070400,61255447200,-21600,0,'CST',],[61255468800,61366287600,61255450800,61366269600,-18000,1,'CWT',],[61366287600,61370290800,61366269600,61370272800,-18000,1,'CPT',],[61370290800,61378322400,61370269200,61378300800,-21600,0,'CST',],[61378322400,61388438400,61378300800,61388416800,-21600,0,'CST',],[61388438400,61401740400,61388420400,61401722400,-18000,1,'CDT',],[61401740400,61419888000,61401718800,61419866400,-21600,0,'CST',],[61419888000,61433190000,61419870000,61433172000,-18000,1,'CDT',],[61433190000,61451337600,61433168400,61451316000,-21600,0,'CST',],[61451337600,61464639600,61451319600,61464621600,-18000,1,'CDT',],[61464639600,61482787200,61464618000,61482765600,-21600,0,'CST',],[61482787200,61496089200,61482769200,61496071200,-18000,1,'CDT',],[61496089200,61514841600,61496067600,61514820000,-21600,0,'CST',],[61514841600,61527538800,61514823600,61527520800,-18000,1,'CDT',],[61527538800,61546291200,61527517200,61546269600,-21600,0,'CST',],[61546291200,61559593200,61546273200,61559575200,-18000,1,'CDT',],[61559593200,61577740800,61559571600,61577719200,-21600,0,'CST',],[61577740800,61591042800,61577722800,61591024800,-18000,1,'CDT',],[61591042800,61609190400,61591021200,61609168800,-21600,0,'CST',],[61609190400,61622492400,61609172400,61622474400,-18000,1,'CDT',],[61622492400,61640640000,61622470800,61640618400,-21600,0,'CST',],[61640640000,61653942000,61640622000,61653924000,-18000,1,'CDT',],[61653942000,61672089600,61653920400,61672068000,-21600,0,'CST',],[61672089600,61688415600,61672071600,61688397600,-18000,1,'CDT',],[61688415600,61704144000,61688394000,61704122400,-21600,0,'CST',],[61704144000,61719865200,61704126000,61719847200,-18000,1,'CDT',],[61719865200,61735593600,61719843600,61735572000,-21600,0,'CST',],[61735593600,61751314800,61735575600,61751296800,-18000,1,'CDT',],[61751314800,61767043200,61751293200,61767021600,-21600,0,'CST',],[61767043200,61782764400,61767025200,61782746400,-18000,1,'CDT',],[61782764400,61798492800,61782742800,61798471200,-21600,0,'CST',],[61798492800,61814214000,61798474800,61814196000,-18000,1,'CDT',],[61814214000,61829942400,61814192400,61829920800,-21600,0,'CST',],[61829942400,61846268400,61829924400,61846250400,-18000,1,'CDT',],[61846268400,61861996800,61846246800,61861975200,-21600,0,'CST',],[61861996800,61877718000,61861978800,61877700000,-18000,1,'CDT',],[61877718000,61893446400,61877696400,61893424800,-21600,0,'CST',],[61893446400,61909167600,61893428400,61909149600,-18000,1,'CDT',],[61909167600,61924896000,61909146000,61924874400,-21600,0,'CST',],[61924896000,61940617200,61924878000,61940599200,-18000,1,'CDT',],[61940617200,61956345600,61940595600,61956324000,-21600,0,'CST',],[61956345600,61972066800,61956327600,61972048800,-18000,1,'CDT',],[61972066800,61987795200,61972045200,61987773600,-21600,0,'CST',],[61987795200,62004121200,61987777200,62004103200,-18000,1,'CDT',],[62004121200,62019244800,62004099600,62019223200,-21600,0,'CST',],[62019244800,62035570800,62019226800,62035552800,-18000,1,'CDT',],[62035570800,62041010400,62035549200,62040988800,-21600,0,'CST',],[62041010400,62051299200,62040988800,62051277600,-21600,0,'CST',],[62051299200,62067020400,62051281200,62067002400,-18000,1,'CDT',],[62067020400,62082748800,62066998800,62082727200,-21600,0,'CST',],[62082748800,62098470000,62082730800,62098452000,-18000,1,'CDT',],[62098470000,62114198400,62098448400,62114176800,-21600,0,'CST',],[62114198400,62129919600,62114180400,62129901600,-18000,1,'CDT',],[62129919600,62145648000,62129898000,62145626400,-21600,0,'CST',],[62145648000,62161369200,62145630000,62161351200,-18000,1,'CDT',],[62161369200,62177097600,62161347600,62177076000,-21600,0,'CST',],[62177097600,62193423600,62177079600,62193405600,-18000,1,'CDT',],[62193423600,62209152000,62193402000,62209130400,-21600,0,'CST',],[62209152000,62224873200,62209134000,62224855200,-18000,1,'CDT',],[62224873200,62240601600,62224851600,62240580000,-21600,0,'CST',],[62240601600,62256322800,62240583600,62256304800,-18000,1,'CDT',],[62256322800,62262374400,62256301200,62262352800,-21600,0,'CST',],[62262374400,62287772400,62262356400,62287754400,-18000,1,'CDT',],[62287772400,62298057600,62287750800,62298036000,-21600,0,'CST',],[62298057600,62319222000,62298039600,62319204000,-18000,1,'CDT',],[62319222000,62334950400,62319200400,62334928800,-21600,0,'CST',],[62334950400,62351276400,62334932400,62351258400,-18000,1,'CDT',],[62351276400,62366400000,62351254800,62366378400,-21600,0,'CST',],[62366400000,62382726000,62366382000,62382708000,-18000,1,'CDT',],[62382726000,62398454400,62382704400,62398432800,-21600,0,'CST',],[62398454400,62414175600,62398436400,62414157600,-18000,1,'CDT',],[62414175600,62429904000,62414154000,62429882400,-21600,0,'CST',],[62429904000,62445625200,62429886000,62445607200,-18000,1,'CDT',],[62445625200,62461353600,62445603600,62461332000,-21600,0,'CST',],[62461353600,62477074800,62461335600,62477056800,-18000,1,'CDT',],[62477074800,62492803200,62477053200,62492781600,-21600,0,'CST',],[62492803200,62508524400,62492785200,62508506400,-18000,1,'CDT',],[62508524400,62524252800,62508502800,62524231200,-21600,0,'CST',],[62524252800,62540578800,62524234800,62540560800,-18000,1,'CDT',],[62540578800,62555702400,62540557200,62555680800,-21600,0,'CST',],[62555702400,62572028400,62555684400,62572010400,-18000,1,'CDT',],[62572028400,62587756800,62572006800,62587735200,-21600,0,'CST',],[62587756800,62603478000,62587738800,62603460000,-18000,1,'CDT',],[62603478000,62619206400,62603456400,62619184800,-21600,0,'CST',],[62619206400,62634927600,62619188400,62634909600,-18000,1,'CDT',],[62634927600,62650656000,62634906000,62650634400,-21600,0,'CST',],[62650656000,62666377200,62650638000,62666359200,-18000,1,'CDT',],[62666377200,62680291200,62666355600,62680269600,-21600,0,'CST',],[62680291200,62697826800,62680273200,62697808800,-18000,1,'CDT',],[62697826800,62711740800,62697805200,62711719200,-21600,0,'CST',],[62711740800,62729881200,62711722800,62729863200,-18000,1,'CDT',],[62729881200,62743190400,62729859600,62743168800,-21600,0,'CST',],[62743190400,62761330800,62743172400,62761312800,-18000,1,'CDT',],[62761330800,62774640000,62761309200,62774618400,-21600,0,'CST',],[62774640000,62792780400,62774622000,62792762400,-18000,1,'CDT',],[62792780400,62806694400,62792758800,62806672800,-21600,0,'CST',],[62806694400,62824230000,62806676400,62824212000,-18000,1,'CDT',],[62824230000,62838144000,62824208400,62838122400,-21600,0,'CST',],[62838144000,62855679600,62838126000,62855661600,-18000,1,'CDT',],[62855679600,62869593600,62855658000,62869572000,-21600,0,'CST',],[62869593600,62887734000,62869575600,62887716000,-18000,1,'CDT',],[62887734000,62901043200,62887712400,62901021600,-21600,0,'CST',],[62901043200,62919183600,62901025200,62919165600,-18000,1,'CDT',],[62919183600,62932492800,62919162000,62932471200,-21600,0,'CST',],[62932492800,62950633200,62932474800,62950615200,-18000,1,'CDT',],[62950633200,62964547200,62950611600,62964525600,-21600,0,'CST',],[62964547200,62982082800,62964529200,62982064800,-18000,1,'CDT',],[62982082800,62995996800,62982061200,62995975200,-21600,0,'CST',],[62995996800,63013532400,62995978800,63013514400,-18000,1,'CDT',],[63013532400,63027446400,63013510800,63027424800,-21600,0,'CST',],[63027446400,63044982000,63027428400,63044964000,-18000,1,'CDT',],[63044982000,63058896000,63044960400,63058874400,-21600,0,'CST',],[63058896000,63077036400,63058878000,63077018400,-18000,1,'CDT',],[63077036400,63090345600,63077014800,63090324000,-21600,0,'CST',],[63090345600,63108486000,63090327600,63108468000,-18000,1,'CDT',],[63108486000,63121795200,63108464400,63121773600,-21600,0,'CST',],[63121795200,63139935600,63121777200,63139917600,-18000,1,'CDT',],[63139935600,63153849600,63139914000,63153828000,-21600,0,'CST',],[63153849600,63171385200,63153831600,63171367200,-18000,1,'CDT',],[63171385200,63185299200,63171363600,63185277600,-21600,0,'CST',],[63185299200,63202834800,63185281200,63202816800,-18000,1,'CDT',],[63202834800,63216748800,63202813200,63216727200,-21600,0,'CST',],[63216748800,63234889200,63216730800,63234871200,-18000,1,'CDT',],[63234889200,63248198400,63234867600,63248176800,-21600,0,'CST',],[63248198400,63266338800,63248180400,63266320800,-18000,1,'CDT',],[63266338800,63279648000,63266317200,63279626400,-21600,0,'CST',],[63279648000,63297788400,63279630000,63297770400,-18000,1,'CDT',],[63297788400,63309283200,63297766800,63309261600,-21600,0,'CST',],[63309283200,63329842800,63309265200,63329824800,-18000,1,'CDT',],[63329842800,63340732800,63329821200,63340711200,-21600,0,'CST',],[63340732800,63361292400,63340714800,63361274400,-18000,1,'CDT',],[63361292400,63372182400,63361270800,63372160800,-21600,0,'CST',],[63372182400,63392742000,63372164400,63392724000,-18000,1,'CDT',],[63392742000,63404236800,63392720400,63404215200,-21600,0,'CST',],[63404236800,63424796400,63404218800,63424778400,-18000,1,'CDT',],[63424796400,63435686400,63424774800,63435664800,-21600,0,'CST',],[63435686400,63456246000,63435668400,63456228000,-18000,1,'CDT',],[63456246000,63467136000,63456224400,63467114400,-21600,0,'CST',],[63467136000,63487695600,63467118000,63487677600,-18000,1,'CDT',],[63487695600,63498585600,63487674000,63498564000,-21600,0,'CST',],[63498585600,63519145200,63498567600,63519127200,-18000,1,'CDT',],[63519145200,63530035200,63519123600,63530013600,-21600,0,'CST',],[63530035200,63550594800,63530017200,63550576800,-18000,1,'CDT',],[63550594800,63561484800,63550573200,63561463200,-21600,0,'CST',],[63561484800,63582044400,63561466800,63582026400,-18000,1,'CDT',],[63582044400,63593539200,63582022800,63593517600,-21600,0,'CST',],[63593539200,63614098800,63593521200,63614080800,-18000,1,'CDT',],[63614098800,63624988800,63614077200,63624967200,-21600,0,'CST',],[63624988800,63645548400,63624970800,63645530400,-18000,1,'CDT',],[63645548400,63656438400,63645526800,63656416800,-21600,0,'CST',],[63656438400,63676998000,63656420400,63676980000,-18000,1,'CDT',],[63676998000,63687888000,63676976400,63687866400,-21600,0,'CST',],[63687888000,63708447600,63687870000,63708429600,-18000,1,'CDT',],[63708447600,63719337600,63708426000,63719316000,-21600,0,'CST',],[63719337600,63739897200,63719319600,63739879200,-18000,1,'CDT',],[63739897200,63751392000,63739875600,63751370400,-21600,0,'CST',],[63751392000,63771951600,63751374000,63771933600,-18000,1,'CDT',],[63771951600,63782841600,63771930000,63782820000,-21600,0,'CST',],[63782841600,63803401200,63782823600,63803383200,-18000,1,'CDT',],[63803401200,63814291200,63803379600,63814269600,-21600,0,'CST',],[63814291200,63834850800,63814273200,63834832800,-18000,1,'CDT',],[63834850800,63845740800,63834829200,63845719200,-21600,0,'CST',],[63845740800,63866300400,63845722800,63866282400,-18000,1,'CDT',],[63866300400,63877190400,63866278800,63877168800,-21600,0,'CST',],[63877190400,63897750000,63877172400,63897732000,-18000,1,'CDT',],[63897750000,63908640000,63897728400,63908618400,-21600,0,'CST',],[63908640000,63929199600,63908622000,63929181600,-18000,1,'CDT',],[63929199600,63940694400,63929178000,63940672800,-21600,0,'CST',],[63940694400,63961254000,63940676400,63961236000,-18000,1,'CDT',],];sub olson_version {'2016a'}sub has_dst_changes {107}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-21600}my$last_observance=bless({'format'=>'C%sT','gmtoff'=>'-6:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>718067,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>718067,'utc_rd_secs'=>0,'utc_year'=>1968 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-21600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>718067,'local_rd_secs'=>21600,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>718067,'utc_rd_secs'=>21600,'utc_year'=>1968 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_CHICAGO

$fatpacked{"DateTime/TimeZone/America/Chihuahua.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_CHIHUAHUA';
  package DateTime::TimeZone::America::Chihuahua;$DateTime::TimeZone::America::Chihuahua::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Chihuahua::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60620943600,DateTime::TimeZone::NEG_INFINITY,60620918140,-25460,0,'LMT',],[60620943600,60792616800,60620918400,60792591600,-25200,0,'MST',],[60792616800,60900876000,60792595200,60900854400,-21600,0,'CST',],[60900876000,60915391200,60900850800,60915366000,-25200,0,'MST',],[60915391200,60928524000,60915369600,60928502400,-21600,0,'CST',],[60928524000,60944338800,60928498800,60944313600,-25200,0,'MST',],[60944338800,62956159200,60944317200,62956137600,-21600,0,'CST',],[62956159200,62964547200,62956137600,62964525600,-21600,0,'CST',],[62964547200,62982082800,62964529200,62982064800,-18000,1,'CDT',],[62982082800,62995996800,62982061200,62995975200,-21600,0,'CST',],[62995996800,63013532400,62995978800,63013514400,-18000,1,'CDT',],[63013532400,63019317600,63013510800,63019296000,-21600,0,'CST',],[63019317600,63027450000,63019296000,63027428400,-21600,0,'CST',],[63027450000,63044985600,63027428400,63044964000,-21600,1,'MDT',],[63044985600,63058899600,63044960400,63058874400,-25200,0,'MST',],[63058899600,63077040000,63058878000,63077018400,-21600,1,'MDT',],[63077040000,63090349200,63077014800,63090324000,-25200,0,'MST',],[63090349200,63108489600,63090327600,63108468000,-21600,1,'MDT',],[63108489600,63124822800,63108464400,63124797600,-25200,0,'MST',],[63124822800,63137520000,63124801200,63137498400,-21600,1,'MDT',],[63137520000,63153853200,63137494800,63153828000,-25200,0,'MST',],[63153853200,63171388800,63153831600,63171367200,-21600,1,'MDT',],[63171388800,63185302800,63171363600,63185277600,-25200,0,'MST',],[63185302800,63202838400,63185281200,63202816800,-21600,1,'MDT',],[63202838400,63216752400,63202813200,63216727200,-25200,0,'MST',],[63216752400,63234892800,63216730800,63234871200,-21600,1,'MDT',],[63234892800,63248202000,63234867600,63248176800,-25200,0,'MST',],[63248202000,63266342400,63248180400,63266320800,-21600,1,'MDT',],[63266342400,63279651600,63266317200,63279626400,-25200,0,'MST',],[63279651600,63297792000,63279630000,63297770400,-21600,1,'MDT',],[63297792000,63311101200,63297766800,63311076000,-25200,0,'MST',],[63311101200,63329241600,63311079600,63329220000,-21600,1,'MDT',],[63329241600,63343155600,63329216400,63343130400,-25200,0,'MST',],[63343155600,63360691200,63343134000,63360669600,-21600,1,'MDT',],[63360691200,63374605200,63360666000,63374580000,-25200,0,'MST',],[63374605200,63392140800,63374583600,63392119200,-21600,1,'MDT',],[63392140800,63406054800,63392115600,63406029600,-25200,0,'MST',],[63406054800,63424195200,63406033200,63424173600,-21600,1,'MDT',],[63424195200,63437504400,63424170000,63437479200,-25200,0,'MST',],[63437504400,63455644800,63437482800,63455623200,-21600,1,'MDT',],[63455644800,63468954000,63455619600,63468928800,-25200,0,'MST',],[63468954000,63487094400,63468932400,63487072800,-21600,1,'MDT',],[63487094400,63501008400,63487069200,63500983200,-25200,0,'MST',],[63501008400,63518544000,63500986800,63518522400,-21600,1,'MDT',],[63518544000,63532458000,63518518800,63532432800,-25200,0,'MST',],[63532458000,63549993600,63532436400,63549972000,-21600,1,'MDT',],[63549993600,63563907600,63549968400,63563882400,-25200,0,'MST',],[63563907600,63581443200,63563886000,63581421600,-21600,1,'MDT',],[63581443200,63595357200,63581418000,63595332000,-25200,0,'MST',],[63595357200,63613497600,63595335600,63613476000,-21600,1,'MDT',],[63613497600,63626806800,63613472400,63626781600,-25200,0,'MST',],[63626806800,63644947200,63626785200,63644925600,-21600,1,'MDT',],[63644947200,63658256400,63644922000,63658231200,-25200,0,'MST',],[63658256400,63676396800,63658234800,63676375200,-21600,1,'MDT',],[63676396800,63690310800,63676371600,63690285600,-25200,0,'MST',],[63690310800,63707846400,63690289200,63707824800,-21600,1,'MDT',],[63707846400,63721760400,63707821200,63721735200,-25200,0,'MST',],[63721760400,63739296000,63721738800,63739274400,-21600,1,'MDT',],[63739296000,63753210000,63739270800,63753184800,-25200,0,'MST',],[63753210000,63771350400,63753188400,63771328800,-21600,1,'MDT',],[63771350400,63784659600,63771325200,63784634400,-25200,0,'MST',],[63784659600,63802800000,63784638000,63802778400,-21600,1,'MDT',],[63802800000,63816109200,63802774800,63816084000,-25200,0,'MST',],[63816109200,63834249600,63816087600,63834228000,-21600,1,'MDT',],[63834249600,63848163600,63834224400,63848138400,-25200,0,'MST',],[63848163600,63865699200,63848142000,63865677600,-21600,1,'MDT',],[63865699200,63879613200,63865674000,63879588000,-25200,0,'MST',],[63879613200,63897148800,63879591600,63897127200,-21600,1,'MDT',],[63897148800,63911062800,63897123600,63911037600,-25200,0,'MST',],[63911062800,63928598400,63911041200,63928576800,-21600,1,'MDT',],[63928598400,63942512400,63928573200,63942487200,-25200,0,'MST',],[63942512400,63960652800,63942490800,63960631200,-21600,1,'MDT',],];sub olson_version {'2016a'}sub has_dst_changes {32}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-25200}my$last_observance=bless({'format'=>'M%sT','gmtoff'=>'-7:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>729484,'local_rd_secs'=>10800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>729484,'utc_rd_secs'=>10800,'utc_year'=>1999 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-25200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>729484,'local_rd_secs'=>32400,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>729484,'utc_rd_secs'=>32400,'utc_year'=>1999 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2002','in'=>'Oct','letter'=>'S','name'=>'Mexico','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2002','in'=>'Apr','letter'=>'D','name'=>'Mexico','offset_from_std'=>3600,'on'=>'Sun>=1','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_CHIHUAHUA

$fatpacked{"DateTime/TimeZone/America/Costa_Rica.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_COSTA_RICA';
  package DateTime::TimeZone::America::Costa_Rica;$DateTime::TimeZone::America::Costa_Rica::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Costa_Rica::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59611181773,DateTime::TimeZone::NEG_INFINITY,59611161600,-20173,0,'LMT',],[59611181773,60590612173,59611161600,60590592000,-20173,0,'SJMT',],[60590612173,62424453600,60590590573,62424432000,-21600,0,'CST',],[62424453600,62432917200,62424435600,62432899200,-18000,1,'CDT',],[62432917200,62455903200,62432895600,62455881600,-21600,0,'CST',],[62455903200,62464366800,62455885200,62464348800,-18000,1,'CDT',],[62464366800,62799948000,62464345200,62799926400,-21600,0,'CST',],[62799948000,62814027600,62799930000,62814009600,-18000,1,'CDT',],[62814027600,62831397600,62814006000,62831376000,-21600,0,'CST',],[62831397600,62836318800,62831379600,62836300800,-18000,1,'CDT',],[62836318800,DateTime::TimeZone::INFINITY,62836297200,DateTime::TimeZone::INFINITY,-21600,0,'CST',],];sub olson_version {'2016a'}sub has_dst_changes {4}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_COSTA_RICA

$fatpacked{"DateTime/TimeZone/America/Creston.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_CRESTON';
  package DateTime::TimeZone::America::Creston;$DateTime::TimeZone::America::Creston::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Creston::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59421800764,DateTime::TimeZone::NEG_INFINITY,59421772800,-27964,0,'LMT',],[59421800764,60455228400,59421775564,60455203200,-25200,0,'MST',],[60455228400,60507849600,60455199600,60507820800,-28800,0,'PST',],[60507849600,DateTime::TimeZone::INFINITY,60507824400,DateTime::TimeZone::INFINITY,-25200,0,'MST',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_CRESTON

$fatpacked{"DateTime/TimeZone/America/Cuiaba.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_CUIABA';
  package DateTime::TimeZone::America::Cuiaba;$DateTime::TimeZone::America::Cuiaba::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Cuiaba::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60368471060,DateTime::TimeZone::NEG_INFINITY,60368457600,-13460,0,'LMT',],[60368471060,60928729200,60368456660,60928714800,-14400,0,'AMT',],[60928729200,60944324400,60928718400,60944313600,-10800,1,'AMST',],[60944324400,60960312000,60944310000,60960297600,-14400,0,'AMT',],[60960312000,60975860400,60960301200,60975849600,-10800,1,'AMST',],[60975860400,61501867200,60975846000,61501852800,-14400,0,'AMT',],[61501867200,61513617600,61501856400,61513606800,-10800,1,'AMST',],[61513617600,61533403200,61513603200,61533388800,-14400,0,'AMT',],[61533403200,61543854000,61533392400,61543843200,-10800,1,'AMST',],[61543854000,61564939200,61543839600,61564924800,-14400,0,'AMT',],[61564939200,61575476400,61564928400,61575465600,-10800,1,'AMST',],[61575476400,61596561600,61575462000,61596547200,-14400,0,'AMT',],[61596561600,61604334000,61596550800,61604323200,-10800,1,'AMST',],[61604334000,61944321600,61604319600,61944307200,-14400,0,'AMT',],[61944321600,61951489200,61944310800,61951478400,-10800,1,'AMST',],[61951489200,61980523200,61951474800,61980508800,-14400,0,'AMT',],[61980523200,61985617200,61980512400,61985606400,-10800,1,'AMST',],[61985617200,62006788800,61985602800,62006774400,-14400,0,'AMT',],[62006788800,62014561200,62006778000,62014550400,-10800,1,'AMST',],[62014561200,62035732800,62014546800,62035718400,-14400,0,'AMT',],[62035732800,62046097200,62035722000,62046086400,-10800,1,'AMST',],[62046097200,62067268800,62046082800,62067254400,-14400,0,'AMT',],[62067268800,62077719600,62067258000,62077708800,-10800,1,'AMST',],[62077719600,62635435200,62077705200,62635420800,-14400,0,'AMT',],[62635435200,62646922800,62635424400,62646912000,-10800,1,'AMST',],[62646922800,62666280000,62646908400,62666265600,-14400,0,'AMT',],[62666280000,62675953200,62666269200,62675942400,-10800,1,'AMST',],[62675953200,62697816000,62675938800,62697801600,-14400,0,'AMT',],[62697816000,62706884400,62697805200,62706873600,-10800,1,'AMST',],[62706884400,62728660800,62706870000,62728646400,-14400,0,'AMT',],[62728660800,62737729200,62728650000,62737718400,-10800,1,'AMST',],[62737729200,62760110400,62737714800,62760096000,-14400,0,'AMT',],[62760110400,62770388400,62760099600,62770377600,-10800,1,'AMST',],[62770388400,62792164800,62770374000,62792150400,-14400,0,'AMT',],[62792164800,62802442800,62792154000,62802432000,-10800,1,'AMST',],[62802442800,62823614400,62802428400,62823600000,-14400,0,'AMT',],[62823614400,62833287600,62823603600,62833276800,-10800,1,'AMST',],[62833287600,62855668800,62833273200,62855654400,-14400,0,'AMT',],[62855668800,62864132400,62855658000,62864121600,-10800,1,'AMST',],[62864132400,62886513600,62864118000,62886499200,-14400,0,'AMT',],[62886513600,62897396400,62886502800,62897385600,-10800,1,'AMST',],[62897396400,62917963200,62897382000,62917948800,-14400,0,'AMT',],[62917963200,62928846000,62917952400,62928835200,-10800,1,'AMST',],[62928846000,62949412800,62928831600,62949398400,-14400,0,'AMT',],[62949412800,62959690800,62949402000,62959680000,-10800,1,'AMST',],[62959690800,62980257600,62959676400,62980243200,-14400,0,'AMT',],[62980257600,62991745200,62980246800,62991734400,-10800,1,'AMST',],[62991745200,63011793600,62991730800,63011779200,-14400,0,'AMT',],[63011793600,63024404400,63011782800,63024393600,-10800,1,'AMST',],[63024404400,63043761600,63024390000,63043747200,-14400,0,'AMT',],[63043761600,63055249200,63043750800,63055238400,-10800,1,'AMST',],[63055249200,63074606400,63055234800,63074592000,-14400,0,'AMT',],[63074606400,63087303600,63074595600,63087292800,-10800,1,'AMST',],[63087303600,63106660800,63087289200,63106646400,-14400,0,'AMT',],[63106660800,63118148400,63106650000,63118137600,-10800,1,'AMST',],[63118148400,63138715200,63118134000,63138700800,-14400,0,'AMT',],[63138715200,63149598000,63138704400,63149587200,-10800,1,'AMST',],[63149598000,63171979200,63149583600,63171964800,-14400,0,'AMT',],[63171979200,63181047600,63171968400,63181036800,-10800,1,'AMST',],[63181047600,63200059200,63181033200,63200044800,-14400,0,'AMT',],[63200059200,63232286400,63200044800,63232272000,-14400,0,'AMT',],[63232286400,63235051200,63232272000,63235036800,-14400,0,'AMT',],[63235051200,63244551600,63235040400,63244540800,-10800,1,'AMST',],[63244551600,63265118400,63244537200,63265104000,-14400,0,'AMT',],[63265118400,63276001200,63265107600,63275990400,-10800,1,'AMST',],[63276001200,63298382400,63275986800,63298368000,-14400,0,'AMT',],[63298382400,63308055600,63298371600,63308044800,-10800,1,'AMST',],[63308055600,63328017600,63308041200,63328003200,-14400,0,'AMT',],[63328017600,63338900400,63328006800,63338889600,-10800,1,'AMST',],[63338900400,63360072000,63338886000,63360057600,-14400,0,'AMT',],[63360072000,63370350000,63360061200,63370339200,-10800,1,'AMST',],[63370350000,63391521600,63370335600,63391507200,-14400,0,'AMT',],[63391521600,63402404400,63391510800,63402393600,-10800,1,'AMST',],[63402404400,63422971200,63402390000,63422956800,-14400,0,'AMT',],[63422971200,63433854000,63422960400,63433843200,-10800,1,'AMST',],[63433854000,63454420800,63433839600,63454406400,-14400,0,'AMT',],[63454420800,63465908400,63454410000,63465897600,-10800,1,'AMST',],[63465908400,63486475200,63465894000,63486460800,-14400,0,'AMT',],[63486475200,63496753200,63486464400,63496742400,-10800,1,'AMST',],[63496753200,63517924800,63496738800,63517910400,-14400,0,'AMT',],[63517924800,63528202800,63517914000,63528192000,-10800,1,'AMST',],[63528202800,63549374400,63528188400,63549360000,-14400,0,'AMT',],[63549374400,63560257200,63549363600,63560246400,-10800,1,'AMST',],[63560257200,63580824000,63560242800,63580809600,-14400,0,'AMT',],[63580824000,63591706800,63580813200,63591696000,-10800,1,'AMST',],[63591706800,63612273600,63591692400,63612259200,-14400,0,'AMT',],[63612273600,63623156400,63612262800,63623145600,-10800,1,'AMST',],[63623156400,63643723200,63623142000,63643708800,-14400,0,'AMT',],[63643723200,63654606000,63643712400,63654595200,-10800,1,'AMST',],[63654606000,63675777600,63654591600,63675763200,-14400,0,'AMT',],[63675777600,63686055600,63675766800,63686044800,-10800,1,'AMST',],[63686055600,63707227200,63686041200,63707212800,-14400,0,'AMT',],[63707227200,63717505200,63707216400,63717494400,-10800,1,'AMST',],[63717505200,63738676800,63717490800,63738662400,-14400,0,'AMT',],[63738676800,63749559600,63738666000,63749548800,-10800,1,'AMST',],[63749559600,63770126400,63749545200,63770112000,-14400,0,'AMT',],[63770126400,63781009200,63770115600,63780998400,-10800,1,'AMST',],[63781009200,63801576000,63780994800,63801561600,-14400,0,'AMT',],[63801576000,63813063600,63801565200,63813052800,-10800,1,'AMST',],[63813063600,63833025600,63813049200,63833011200,-14400,0,'AMT',],[63833025600,63843908400,63833014800,63843897600,-10800,1,'AMST',],[63843908400,63865080000,63843894000,63865065600,-14400,0,'AMT',],[63865080000,63875358000,63865069200,63875347200,-10800,1,'AMST',],[63875358000,63896529600,63875343600,63896515200,-14400,0,'AMT',],[63896529600,63907412400,63896518800,63907401600,-10800,1,'AMST',],[63907412400,63927979200,63907398000,63927964800,-14400,0,'AMT',],[63927979200,63938862000,63927968400,63938851200,-10800,1,'AMST',],[63938862000,63959428800,63938847600,63959414400,-14400,0,'AMT',],[63959428800,63970311600,63959418000,63970300800,-10800,1,'AMST',],[63970311600,63990878400,63970297200,63990864000,-14400,0,'AMT',],[63990878400,64001761200,63990867600,64001750400,-10800,1,'AMST',],[64001761200,64022932800,64001746800,64022918400,-14400,0,'AMT',],[64022932800,64033210800,64022922000,64033200000,-10800,1,'AMST',],[64033210800,64054382400,64033196400,64054368000,-14400,0,'AMT',],[64054382400,64064660400,64054371600,64064649600,-10800,1,'AMST',],[64064660400,64085832000,64064646000,64085817600,-14400,0,'AMT',],[64085832000,64096110000,64085821200,64096099200,-10800,1,'AMST',],[64096110000,64117281600,64096095600,64117267200,-14400,0,'AMT',],[64117281600,64128164400,64117270800,64128153600,-10800,1,'AMST',],[64128164400,64148731200,64128150000,64148716800,-14400,0,'AMT',],[64148731200,64160218800,64148720400,64160208000,-10800,1,'AMST',],[64160218800,64180180800,64160204400,64180166400,-14400,0,'AMT',],[64180180800,64191063600,64180170000,64191052800,-10800,1,'AMST',],[64191063600,64212235200,64191049200,64212220800,-14400,0,'AMT',],[64212235200,64222513200,64212224400,64222502400,-10800,1,'AMST',],[64222513200,64243684800,64222498800,64243670400,-14400,0,'AMT',],[64243684800,64254567600,64243674000,64254556800,-10800,1,'AMST',],[64254567600,64275134400,64254553200,64275120000,-14400,0,'AMT',],[64275134400,64286017200,64275123600,64286006400,-10800,1,'AMST',],[64286017200,64306584000,64286002800,64306569600,-14400,0,'AMT',],[64306584000,64317466800,64306573200,64317456000,-10800,1,'AMST',],[64317466800,64338033600,64317452400,64338019200,-14400,0,'AMT',],];sub olson_version {'2016a'}sub has_dst_changes {65}sub _max_year {2038}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-14400}my$last_observance=bless({'format'=>'AM%sT','gmtoff'=>'-4:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>731855,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>731855,'utc_rd_secs'=>0,'utc_year'=>2005 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-14400,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>731855,'local_rd_secs'=>14400,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>731855,'utc_rd_secs'=>14400,'utc_year'=>2005 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'0:00','from'=>'2008','in'=>'Oct','letter'=>'S','name'=>'Brazil','offset_from_std'=>3600,'on'=>'Sun>=15','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'0:00','from'=>'2038','in'=>'Feb','letter'=>'','name'=>'Brazil','offset_from_std'=>0,'on'=>'Sun>=15','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_CUIABA

$fatpacked{"DateTime/TimeZone/America/Curacao.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_CURACAO';
  package DateTime::TimeZone::America::Curacao;$DateTime::TimeZone::America::Curacao::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Curacao::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60308944547,DateTime::TimeZone::NEG_INFINITY,60308928000,-16547,0,'LMT',],[60308944547,61977933000,60308928347,61977916800,-16200,0,'ANT',],[61977933000,DateTime::TimeZone::INFINITY,61977918600,DateTime::TimeZone::INFINITY,-14400,0,'AST',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_CURACAO

$fatpacked{"DateTime/TimeZone/America/Danmarkshavn.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_DANMARKSHAVN';
  package DateTime::TimeZone::America::Danmarkshavn;$DateTime::TimeZone::America::Danmarkshavn::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Danmarkshavn::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60449591680,DateTime::TimeZone::NEG_INFINITY,60449587200,-4480,0,'LMT',],[60449591680,62459528400,60449580880,62459517600,-10800,0,'WGT',],[62459528400,62474634000,62459521200,62474626800,-7200,1,'WGST',],[62474634000,62490358800,62474623200,62490348000,-10800,0,'WGT',],[62490358800,62506083600,62490351600,62506076400,-7200,1,'WGST',],[62506083600,62521808400,62506072800,62521797600,-10800,0,'WGT',],[62521808400,62537533200,62521801200,62537526000,-7200,1,'WGST',],[62537533200,62553258000,62537522400,62553247200,-10800,0,'WGT',],[62553258000,62568982800,62553250800,62568975600,-7200,1,'WGST',],[62568982800,62584707600,62568972000,62584696800,-10800,0,'WGT',],[62584707600,62601037200,62584700400,62601030000,-7200,1,'WGST',],[62601037200,62616762000,62601026400,62616751200,-10800,0,'WGT',],[62616762000,62632486800,62616754800,62632479600,-7200,1,'WGST',],[62632486800,62648211600,62632476000,62648200800,-10800,0,'WGT',],[62648211600,62663936400,62648204400,62663929200,-7200,1,'WGST',],[62663936400,62679661200,62663925600,62679650400,-10800,0,'WGT',],[62679661200,62695386000,62679654000,62695378800,-7200,1,'WGST',],[62695386000,62711110800,62695375200,62711100000,-10800,0,'WGT',],[62711110800,62726835600,62711103600,62726828400,-7200,1,'WGST',],[62726835600,62742560400,62726824800,62742549600,-10800,0,'WGT',],[62742560400,62758285200,62742553200,62758278000,-7200,1,'WGST',],[62758285200,62774010000,62758274400,62773999200,-10800,0,'WGT',],[62774010000,62790339600,62774002800,62790332400,-7200,1,'WGST',],[62790339600,62806064400,62790328800,62806053600,-10800,0,'WGT',],[62806064400,62821789200,62806057200,62821782000,-7200,1,'WGST',],[62821789200,62837514000,62821778400,62837503200,-10800,0,'WGT',],[62837514000,62853238800,62837506800,62853231600,-7200,1,'WGST',],[62853238800,62868963600,62853228000,62868952800,-10800,0,'WGT',],[62868963600,62884688400,62868956400,62884681200,-7200,1,'WGST',],[62884688400,62900413200,62884677600,62900402400,-10800,0,'WGT',],[62900413200,62916138000,62900406000,62916130800,-7200,1,'WGST',],[62916138000,62931862800,62916127200,62931852000,-10800,0,'WGT',],[62931862800,62947587600,62931855600,62947580400,-7200,1,'WGST',],[62947587600,62956148400,62947576800,62956137600,-10800,0,'WGT',],[62956148400,DateTime::TimeZone::INFINITY,62956148400,DateTime::TimeZone::INFINITY,0,0,'GMT',],];sub olson_version {'2016a'}sub has_dst_changes {16}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_DANMARKSHAVN

$fatpacked{"DateTime/TimeZone/America/Dawson.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_DAWSON';
  package DateTime::TimeZone::America::Dawson;$DateTime::TimeZone::America::Dawson::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Dawson::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59946686260,DateTime::TimeZone::NEG_INFINITY,59946652800,-33460,0,'LMT',],[59946686260,60503626800,59946653860,60503594400,-32400,0,'YST',],[60503626800,60520557600,60503598000,60520528800,-28800,1,'YDT',],[60520557600,60538705200,60520525200,60538672800,-32400,0,'YST',],[60538705200,60552518400,60538676400,60552489600,-28800,1,'YDT',],[60552518400,61255479600,60552486000,61255447200,-32400,0,'YST',],[61255479600,61366287600,61255450800,61366258800,-28800,1,'YWT',],[61366287600,61370301600,61366258800,61370272800,-28800,1,'YPT',],[61370301600,61987798800,61370269200,61987766400,-32400,0,'YST',],[61987798800,62004128400,61987773600,62004103200,-25200,1,'YDDT',],[62004128400,62256330000,62004096000,62256297600,-32400,0,'YST',],[62256330000,62451244800,62256301200,62451216000,-28800,0,'PST',],[62451244800,62461360800,62451216000,62461332000,-28800,0,'PST',],[62461360800,62477082000,62461335600,62477056800,-25200,1,'PDT',],[62477082000,62492810400,62477053200,62492781600,-28800,0,'PST',],[62492810400,62508531600,62492785200,62508506400,-25200,1,'PDT',],[62508531600,62524260000,62508502800,62524231200,-28800,0,'PST',],[62524260000,62540586000,62524234800,62540560800,-25200,1,'PDT',],[62540586000,62555709600,62540557200,62555680800,-28800,0,'PST',],[62555709600,62572035600,62555684400,62572010400,-25200,1,'PDT',],[62572035600,62587764000,62572006800,62587735200,-28800,0,'PST',],[62587764000,62603485200,62587738800,62603460000,-25200,1,'PDT',],[62603485200,62619213600,62603456400,62619184800,-28800,0,'PST',],[62619213600,62634934800,62619188400,62634909600,-25200,1,'PDT',],[62634934800,62650663200,62634906000,62650634400,-28800,0,'PST',],[62650663200,62666384400,62650638000,62666359200,-25200,1,'PDT',],[62666384400,62680298400,62666355600,62680269600,-28800,0,'PST',],[62680298400,62697834000,62680273200,62697808800,-25200,1,'PDT',],[62697834000,62711748000,62697805200,62711719200,-28800,0,'PST',],[62711748000,62729888400,62711722800,62729863200,-25200,1,'PDT',],[62729888400,62743197600,62729859600,62743168800,-28800,0,'PST',],[62743197600,62761338000,62743172400,62761312800,-25200,1,'PDT',],[62761338000,62774647200,62761309200,62774618400,-28800,0,'PST',],[62774647200,62792787600,62774622000,62792762400,-25200,1,'PDT',],[62792787600,62806701600,62792758800,62806672800,-28800,0,'PST',],[62806701600,62824237200,62806676400,62824212000,-25200,1,'PDT',],[62824237200,62838151200,62824208400,62838122400,-28800,0,'PST',],[62838151200,62855686800,62838126000,62855661600,-25200,1,'PDT',],[62855686800,62869600800,62855658000,62869572000,-28800,0,'PST',],[62869600800,62887741200,62869575600,62887716000,-25200,1,'PDT',],[62887741200,62901050400,62887712400,62901021600,-28800,0,'PST',],[62901050400,62919190800,62901025200,62919165600,-25200,1,'PDT',],[62919190800,62932500000,62919162000,62932471200,-28800,0,'PST',],[62932500000,62950640400,62932474800,62950615200,-25200,1,'PDT',],[62950640400,62964554400,62950611600,62964525600,-28800,0,'PST',],[62964554400,62982090000,62964529200,62982064800,-25200,1,'PDT',],[62982090000,62996004000,62982061200,62995975200,-28800,0,'PST',],[62996004000,63013539600,62995978800,63013514400,-25200,1,'PDT',],[63013539600,63027453600,63013510800,63027424800,-28800,0,'PST',],[63027453600,63044989200,63027428400,63044964000,-25200,1,'PDT',],[63044989200,63058903200,63044960400,63058874400,-28800,0,'PST',],[63058903200,63077043600,63058878000,63077018400,-25200,1,'PDT',],[63077043600,63090352800,63077014800,63090324000,-28800,0,'PST',],[63090352800,63108493200,63090327600,63108468000,-25200,1,'PDT',],[63108493200,63121802400,63108464400,63121773600,-28800,0,'PST',],[63121802400,63139942800,63121777200,63139917600,-25200,1,'PDT',],[63139942800,63153856800,63139914000,63153828000,-28800,0,'PST',],[63153856800,63171392400,63153831600,63171367200,-25200,1,'PDT',],[63171392400,63185306400,63171363600,63185277600,-28800,0,'PST',],[63185306400,63202842000,63185281200,63202816800,-25200,1,'PDT',],[63202842000,63216756000,63202813200,63216727200,-28800,0,'PST',],[63216756000,63234896400,63216730800,63234871200,-25200,1,'PDT',],[63234896400,63248205600,63234867600,63248176800,-28800,0,'PST',],[63248205600,63266346000,63248180400,63266320800,-25200,1,'PDT',],[63266346000,63279655200,63266317200,63279626400,-28800,0,'PST',],[63279655200,63297795600,63279630000,63297770400,-25200,1,'PDT',],[63297795600,63309290400,63297766800,63309261600,-28800,0,'PST',],[63309290400,63329850000,63309265200,63329824800,-25200,1,'PDT',],[63329850000,63340740000,63329821200,63340711200,-28800,0,'PST',],[63340740000,63361299600,63340714800,63361274400,-25200,1,'PDT',],[63361299600,63372189600,63361270800,63372160800,-28800,0,'PST',],[63372189600,63392749200,63372164400,63392724000,-25200,1,'PDT',],[63392749200,63404244000,63392720400,63404215200,-28800,0,'PST',],[63404244000,63424803600,63404218800,63424778400,-25200,1,'PDT',],[63424803600,63435693600,63424774800,63435664800,-28800,0,'PST',],[63435693600,63456253200,63435668400,63456228000,-25200,1,'PDT',],[63456253200,63467143200,63456224400,63467114400,-28800,0,'PST',],[63467143200,63487702800,63467118000,63487677600,-25200,1,'PDT',],[63487702800,63498592800,63487674000,63498564000,-28800,0,'PST',],[63498592800,63519152400,63498567600,63519127200,-25200,1,'PDT',],[63519152400,63530042400,63519123600,63530013600,-28800,0,'PST',],[63530042400,63550602000,63530017200,63550576800,-25200,1,'PDT',],[63550602000,63561492000,63550573200,63561463200,-28800,0,'PST',],[63561492000,63582051600,63561466800,63582026400,-25200,1,'PDT',],[63582051600,63593546400,63582022800,63593517600,-28800,0,'PST',],[63593546400,63614106000,63593521200,63614080800,-25200,1,'PDT',],[63614106000,63624996000,63614077200,63624967200,-28800,0,'PST',],[63624996000,63645555600,63624970800,63645530400,-25200,1,'PDT',],[63645555600,63656445600,63645526800,63656416800,-28800,0,'PST',],[63656445600,63677005200,63656420400,63676980000,-25200,1,'PDT',],[63677005200,63687895200,63676976400,63687866400,-28800,0,'PST',],[63687895200,63708454800,63687870000,63708429600,-25200,1,'PDT',],[63708454800,63719344800,63708426000,63719316000,-28800,0,'PST',],[63719344800,63739904400,63719319600,63739879200,-25200,1,'PDT',],[63739904400,63751399200,63739875600,63751370400,-28800,0,'PST',],[63751399200,63771958800,63751374000,63771933600,-25200,1,'PDT',],[63771958800,63782848800,63771930000,63782820000,-28800,0,'PST',],[63782848800,63803408400,63782823600,63803383200,-25200,1,'PDT',],[63803408400,63814298400,63803379600,63814269600,-28800,0,'PST',],[63814298400,63834858000,63814273200,63834832800,-25200,1,'PDT',],[63834858000,63845748000,63834829200,63845719200,-28800,0,'PST',],[63845748000,63866307600,63845722800,63866282400,-25200,1,'PDT',],[63866307600,63877197600,63866278800,63877168800,-28800,0,'PST',],[63877197600,63897757200,63877172400,63897732000,-25200,1,'PDT',],[63897757200,63908647200,63897728400,63908618400,-28800,0,'PST',],[63908647200,63929206800,63908622000,63929181600,-25200,1,'PDT',],[63929206800,63940701600,63929178000,63940672800,-28800,0,'PST',],[63940701600,63961261200,63940676400,63961236000,-25200,1,'PDT',],];sub olson_version {'2016a'}sub has_dst_changes {53}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-28800}my$last_observance=bless({'format'=>'P%sT','gmtoff'=>'-8:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>722815,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>722815,'utc_rd_secs'=>0,'utc_year'=>1981 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-28800,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>722815,'local_rd_secs'=>28800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>722815,'utc_rd_secs'=>28800,'utc_year'=>1981 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'Canada','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'Canada','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_DAWSON

$fatpacked{"DateTime/TimeZone/America/Dawson_Creek.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_DAWSON_CREEK';
  package DateTime::TimeZone::America::Dawson_Creek;$DateTime::TimeZone::America::Dawson_Creek::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Dawson_Creek::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59421801656,DateTime::TimeZone::NEG_INFINITY,59421772800,-28856,0,'LMT',],[59421801656,60503623200,59421772856,60503594400,-28800,0,'PST',],[60503623200,60520554000,60503598000,60520528800,-25200,1,'PDT',],[60520554000,61255476000,60520525200,61255447200,-28800,0,'PST',],[61255476000,61366287600,61255450800,61366262400,-25200,1,'PWT',],[61366287600,61370298000,61366262400,61370272800,-25200,1,'PPT',],[61370298000,61409865600,61370269200,61409836800,-28800,0,'PST',],[61409865600,61419895200,61409836800,61419866400,-28800,0,'PST',],[61419895200,61433197200,61419870000,61433172000,-25200,1,'PDT',],[61433197200,61451344800,61433168400,61451316000,-28800,0,'PST',],[61451344800,61464646800,61451319600,61464621600,-25200,1,'PDT',],[61464646800,61482794400,61464618000,61482765600,-28800,0,'PST',],[61482794400,61496096400,61482769200,61496071200,-25200,1,'PDT',],[61496096400,61514848800,61496067600,61514820000,-28800,0,'PST',],[61514848800,61527546000,61514823600,61527520800,-25200,1,'PDT',],[61527546000,61546298400,61527517200,61546269600,-28800,0,'PST',],[61546298400,61559600400,61546273200,61559575200,-25200,1,'PDT',],[61559600400,61577748000,61559571600,61577719200,-28800,0,'PST',],[61577748000,61591050000,61577722800,61591024800,-25200,1,'PDT',],[61591050000,61609197600,61591021200,61609168800,-28800,0,'PST',],[61609197600,61622499600,61609172400,61622474400,-25200,1,'PDT',],[61622499600,61640647200,61622470800,61640618400,-28800,0,'PST',],[61640647200,61653949200,61640622000,61653924000,-25200,1,'PDT',],[61653949200,61672096800,61653920400,61672068000,-28800,0,'PST',],[61672096800,61685398800,61672071600,61685373600,-25200,1,'PDT',],[61685398800,61704151200,61685370000,61704122400,-28800,0,'PST',],[61704151200,61717453200,61704126000,61717428000,-25200,1,'PDT',],[61717453200,61735600800,61717424400,61735572000,-28800,0,'PST',],[61735600800,61748902800,61735575600,61748877600,-25200,1,'PDT',],[61748902800,61767050400,61748874000,61767021600,-28800,0,'PST',],[61767050400,61780352400,61767025200,61780327200,-25200,1,'PDT',],[61780352400,61798500000,61780323600,61798471200,-28800,0,'PST',],[61798500000,61811802000,61798474800,61811776800,-25200,1,'PDT',],[61811802000,61829949600,61811773200,61829920800,-28800,0,'PST',],[61829949600,61843251600,61829924400,61843226400,-25200,1,'PDT',],[61843251600,61862004000,61843222800,61861975200,-28800,0,'PST',],[61862004000,61874701200,61861978800,61874676000,-25200,1,'PDT',],[61874701200,61893453600,61874672400,61893424800,-28800,0,'PST',],[61893453600,61909174800,61893428400,61909149600,-25200,1,'PDT',],[61909174800,61924903200,61909146000,61924874400,-28800,0,'PST',],[61924903200,61940624400,61924878000,61940599200,-25200,1,'PDT',],[61940624400,61956352800,61940595600,61956324000,-28800,0,'PST',],[61956352800,61972074000,61956327600,61972048800,-25200,1,'PDT',],[61972074000,61987802400,61972045200,61987773600,-28800,0,'PST',],[61987802400,62004128400,61987777200,62004103200,-25200,1,'PDT',],[62004128400,62019252000,62004099600,62019223200,-28800,0,'PST',],[62019252000,62035578000,62019226800,62035552800,-25200,1,'PDT',],[62035578000,62051306400,62035549200,62051277600,-28800,0,'PST',],[62051306400,62067027600,62051281200,62067002400,-25200,1,'PDT',],[62067027600,62082756000,62066998800,62082727200,-28800,0,'PST',],[62082756000,62098477200,62082730800,62098452000,-25200,1,'PDT',],[62098477200,62114205600,62098448400,62114176800,-28800,0,'PST',],[62114205600,62129926800,62114180400,62129901600,-25200,1,'PDT',],[62129926800,62145655200,62129898000,62145626400,-28800,0,'PST',],[62145655200,62161376400,62145630000,62161351200,-25200,1,'PDT',],[62161376400,62177104800,62161347600,62177076000,-28800,0,'PST',],[62177104800,62193430800,62177079600,62193405600,-25200,1,'PDT',],[62193430800,62209159200,62193402000,62209130400,-28800,0,'PST',],[62209159200,62219696400,62209134000,62219671200,-25200,1,'PDT',],[62219696400,DateTime::TimeZone::INFINITY,62219671200,DateTime::TimeZone::INFINITY,-25200,0,'MST',],];sub olson_version {'2016a'}sub has_dst_changes {29}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_DAWSON_CREEK

$fatpacked{"DateTime/TimeZone/America/Denver.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_DENVER';
  package DateTime::TimeZone::America::Denver;$DateTime::TimeZone::America::Denver::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Denver::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59418039600,DateTime::TimeZone::NEG_INFINITY,59418014404,-25196,0,'LMT',],[59418039600,60502410000,59418014400,60502384800,-25200,0,'MST',],[60502410000,60520550400,60502388400,60520528800,-21600,1,'MDT',],[60520550400,60533859600,60520525200,60533834400,-25200,0,'MST',],[60533859600,60552000000,60533838000,60551978400,-21600,1,'MDT',],[60552000000,60557785200,60551974800,60557760000,-25200,0,'MST',],[60557785200,60565309200,60557760000,60565284000,-25200,0,'MST',],[60565309200,60584054400,60565287600,60584032800,-21600,1,'MDT',],[60584054400,60596758800,60584029200,60596733600,-25200,0,'MST',],[60596758800,60601593600,60596737200,60601572000,-21600,1,'MDT',],[60601593600,61252095600,60601568400,61252070400,-25200,0,'MST',],[61252095600,61255472400,61252070400,61255447200,-25200,0,'MST',],[61255472400,61366287600,61255450800,61366266000,-21600,1,'MWT',],[61366287600,61370294400,61366266000,61370272800,-21600,1,'MPT',],[61370294400,61378326000,61370269200,61378300800,-25200,0,'MST',],[61378326000,61987798800,61378300800,61987773600,-25200,0,'MST',],[61987798800,62004124800,61987777200,62004103200,-21600,1,'MDT',],[62004124800,62019248400,62004099600,62019223200,-25200,0,'MST',],[62019248400,62035574400,62019226800,62035552800,-21600,1,'MDT',],[62035574400,62041014000,62035549200,62040988800,-25200,0,'MST',],[62041014000,62051302800,62040988800,62051277600,-25200,0,'MST',],[62051302800,62067024000,62051281200,62067002400,-21600,1,'MDT',],[62067024000,62082752400,62066998800,62082727200,-25200,0,'MST',],[62082752400,62098473600,62082730800,62098452000,-21600,1,'MDT',],[62098473600,62114202000,62098448400,62114176800,-25200,0,'MST',],[62114202000,62129923200,62114180400,62129901600,-21600,1,'MDT',],[62129923200,62145651600,62129898000,62145626400,-25200,0,'MST',],[62145651600,62161372800,62145630000,62161351200,-21600,1,'MDT',],[62161372800,62177101200,62161347600,62177076000,-25200,0,'MST',],[62177101200,62193427200,62177079600,62193405600,-21600,1,'MDT',],[62193427200,62209155600,62193402000,62209130400,-25200,0,'MST',],[62209155600,62224876800,62209134000,62224855200,-21600,1,'MDT',],[62224876800,62240605200,62224851600,62240580000,-25200,0,'MST',],[62240605200,62256326400,62240583600,62256304800,-21600,1,'MDT',],[62256326400,62262378000,62256301200,62262352800,-25200,0,'MST',],[62262378000,62287776000,62262356400,62287754400,-21600,1,'MDT',],[62287776000,62298061200,62287750800,62298036000,-25200,0,'MST',],[62298061200,62319225600,62298039600,62319204000,-21600,1,'MDT',],[62319225600,62334954000,62319200400,62334928800,-25200,0,'MST',],[62334954000,62351280000,62334932400,62351258400,-21600,1,'MDT',],[62351280000,62366403600,62351254800,62366378400,-25200,0,'MST',],[62366403600,62382729600,62366382000,62382708000,-21600,1,'MDT',],[62382729600,62398458000,62382704400,62398432800,-25200,0,'MST',],[62398458000,62414179200,62398436400,62414157600,-21600,1,'MDT',],[62414179200,62429907600,62414154000,62429882400,-25200,0,'MST',],[62429907600,62445628800,62429886000,62445607200,-21600,1,'MDT',],[62445628800,62461357200,62445603600,62461332000,-25200,0,'MST',],[62461357200,62477078400,62461335600,62477056800,-21600,1,'MDT',],[62477078400,62492806800,62477053200,62492781600,-25200,0,'MST',],[62492806800,62508528000,62492785200,62508506400,-21600,1,'MDT',],[62508528000,62524256400,62508502800,62524231200,-25200,0,'MST',],[62524256400,62540582400,62524234800,62540560800,-21600,1,'MDT',],[62540582400,62555706000,62540557200,62555680800,-25200,0,'MST',],[62555706000,62572032000,62555684400,62572010400,-21600,1,'MDT',],[62572032000,62587760400,62572006800,62587735200,-25200,0,'MST',],[62587760400,62603481600,62587738800,62603460000,-21600,1,'MDT',],[62603481600,62619210000,62603456400,62619184800,-25200,0,'MST',],[62619210000,62634931200,62619188400,62634909600,-21600,1,'MDT',],[62634931200,62650659600,62634906000,62650634400,-25200,0,'MST',],[62650659600,62666380800,62650638000,62666359200,-21600,1,'MDT',],[62666380800,62680294800,62666355600,62680269600,-25200,0,'MST',],[62680294800,62697830400,62680273200,62697808800,-21600,1,'MDT',],[62697830400,62711744400,62697805200,62711719200,-25200,0,'MST',],[62711744400,62729884800,62711722800,62729863200,-21600,1,'MDT',],[62729884800,62743194000,62729859600,62743168800,-25200,0,'MST',],[62743194000,62761334400,62743172400,62761312800,-21600,1,'MDT',],[62761334400,62774643600,62761309200,62774618400,-25200,0,'MST',],[62774643600,62792784000,62774622000,62792762400,-21600,1,'MDT',],[62792784000,62806698000,62792758800,62806672800,-25200,0,'MST',],[62806698000,62824233600,62806676400,62824212000,-21600,1,'MDT',],[62824233600,62838147600,62824208400,62838122400,-25200,0,'MST',],[62838147600,62855683200,62838126000,62855661600,-21600,1,'MDT',],[62855683200,62869597200,62855658000,62869572000,-25200,0,'MST',],[62869597200,62887737600,62869575600,62887716000,-21600,1,'MDT',],[62887737600,62901046800,62887712400,62901021600,-25200,0,'MST',],[62901046800,62919187200,62901025200,62919165600,-21600,1,'MDT',],[62919187200,62932496400,62919162000,62932471200,-25200,0,'MST',],[62932496400,62950636800,62932474800,62950615200,-21600,1,'MDT',],[62950636800,62964550800,62950611600,62964525600,-25200,0,'MST',],[62964550800,62982086400,62964529200,62982064800,-21600,1,'MDT',],[62982086400,62996000400,62982061200,62995975200,-25200,0,'MST',],[62996000400,63013536000,62995978800,63013514400,-21600,1,'MDT',],[63013536000,63027450000,63013510800,63027424800,-25200,0,'MST',],[63027450000,63044985600,63027428400,63044964000,-21600,1,'MDT',],[63044985600,63058899600,63044960400,63058874400,-25200,0,'MST',],[63058899600,63077040000,63058878000,63077018400,-21600,1,'MDT',],[63077040000,63090349200,63077014800,63090324000,-25200,0,'MST',],[63090349200,63108489600,63090327600,63108468000,-21600,1,'MDT',],[63108489600,63121798800,63108464400,63121773600,-25200,0,'MST',],[63121798800,63139939200,63121777200,63139917600,-21600,1,'MDT',],[63139939200,63153853200,63139914000,63153828000,-25200,0,'MST',],[63153853200,63171388800,63153831600,63171367200,-21600,1,'MDT',],[63171388800,63185302800,63171363600,63185277600,-25200,0,'MST',],[63185302800,63202838400,63185281200,63202816800,-21600,1,'MDT',],[63202838400,63216752400,63202813200,63216727200,-25200,0,'MST',],[63216752400,63234892800,63216730800,63234871200,-21600,1,'MDT',],[63234892800,63248202000,63234867600,63248176800,-25200,0,'MST',],[63248202000,63266342400,63248180400,63266320800,-21600,1,'MDT',],[63266342400,63279651600,63266317200,63279626400,-25200,0,'MST',],[63279651600,63297792000,63279630000,63297770400,-21600,1,'MDT',],[63297792000,63309286800,63297766800,63309261600,-25200,0,'MST',],[63309286800,63329846400,63309265200,63329824800,-21600,1,'MDT',],[63329846400,63340736400,63329821200,63340711200,-25200,0,'MST',],[63340736400,63361296000,63340714800,63361274400,-21600,1,'MDT',],[63361296000,63372186000,63361270800,63372160800,-25200,0,'MST',],[63372186000,63392745600,63372164400,63392724000,-21600,1,'MDT',],[63392745600,63404240400,63392720400,63404215200,-25200,0,'MST',],[63404240400,63424800000,63404218800,63424778400,-21600,1,'MDT',],[63424800000,63435690000,63424774800,63435664800,-25200,0,'MST',],[63435690000,63456249600,63435668400,63456228000,-21600,1,'MDT',],[63456249600,63467139600,63456224400,63467114400,-25200,0,'MST',],[63467139600,63487699200,63467118000,63487677600,-21600,1,'MDT',],[63487699200,63498589200,63487674000,63498564000,-25200,0,'MST',],[63498589200,63519148800,63498567600,63519127200,-21600,1,'MDT',],[63519148800,63530038800,63519123600,63530013600,-25200,0,'MST',],[63530038800,63550598400,63530017200,63550576800,-21600,1,'MDT',],[63550598400,63561488400,63550573200,63561463200,-25200,0,'MST',],[63561488400,63582048000,63561466800,63582026400,-21600,1,'MDT',],[63582048000,63593542800,63582022800,63593517600,-25200,0,'MST',],[63593542800,63614102400,63593521200,63614080800,-21600,1,'MDT',],[63614102400,63624992400,63614077200,63624967200,-25200,0,'MST',],[63624992400,63645552000,63624970800,63645530400,-21600,1,'MDT',],[63645552000,63656442000,63645526800,63656416800,-25200,0,'MST',],[63656442000,63677001600,63656420400,63676980000,-21600,1,'MDT',],[63677001600,63687891600,63676976400,63687866400,-25200,0,'MST',],[63687891600,63708451200,63687870000,63708429600,-21600,1,'MDT',],[63708451200,63719341200,63708426000,63719316000,-25200,0,'MST',],[63719341200,63739900800,63719319600,63739879200,-21600,1,'MDT',],[63739900800,63751395600,63739875600,63751370400,-25200,0,'MST',],[63751395600,63771955200,63751374000,63771933600,-21600,1,'MDT',],[63771955200,63782845200,63771930000,63782820000,-25200,0,'MST',],[63782845200,63803404800,63782823600,63803383200,-21600,1,'MDT',],[63803404800,63814294800,63803379600,63814269600,-25200,0,'MST',],[63814294800,63834854400,63814273200,63834832800,-21600,1,'MDT',],[63834854400,63845744400,63834829200,63845719200,-25200,0,'MST',],[63845744400,63866304000,63845722800,63866282400,-21600,1,'MDT',],[63866304000,63877194000,63866278800,63877168800,-25200,0,'MST',],[63877194000,63897753600,63877172400,63897732000,-21600,1,'MDT',],[63897753600,63908643600,63897728400,63908618400,-25200,0,'MST',],[63908643600,63929203200,63908622000,63929181600,-21600,1,'MDT',],[63929203200,63940698000,63929178000,63940672800,-25200,0,'MST',],[63940698000,63961257600,63940676400,63961236000,-21600,1,'MDT',],];sub olson_version {'2016a'}sub has_dst_changes {69}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-25200}my$last_observance=bless({'format'=>'M%sT','gmtoff'=>'-7:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>718067,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>718067,'utc_rd_secs'=>0,'utc_year'=>1968 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-25200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>718067,'local_rd_secs'=>25200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>718067,'utc_rd_secs'=>25200,'utc_year'=>1968 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_DENVER

$fatpacked{"DateTime/TimeZone/America/Detroit.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_DETROIT';
  package DateTime::TimeZone::America::Detroit;$DateTime::TimeZone::America::Detroit::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Detroit::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60084480731,DateTime::TimeZone::NEG_INFINITY,60084460800,-19931,0,'LMT',],[60084480731,60411600000,60084459131,60411578400,-21600,0,'CST',],[60411600000,61252088400,60411582000,61252070400,-18000,0,'EST',],[61252088400,61255465200,61252070400,61255447200,-18000,0,'EST',],[61255465200,61366287600,61255450800,61366273200,-14400,1,'EWT',],[61366287600,61370287200,61366273200,61370272800,-14400,1,'EPT',],[61370287200,61378318800,61370269200,61378300800,-18000,0,'EST',],[61378318800,61451334000,61378300800,61451316000,-18000,0,'EST',],[61451334000,61464636000,61451319600,61464621600,-14400,1,'EDT',],[61464636000,62055183600,61464618000,62055165600,-18000,0,'EST',],[62055183600,62067016800,62055169200,62067002400,-14400,1,'EDT',],[62067016800,62230395600,62066998800,62230377600,-18000,0,'EST',],[62230395600,62240598000,62230377600,62240580000,-18000,0,'EST',],[62240598000,62256319200,62240583600,62256304800,-14400,1,'EDT',],[62256319200,62262370800,62256301200,62262352800,-18000,0,'EST',],[62262370800,62287768800,62262356400,62287754400,-14400,1,'EDT',],[62287768800,62293467600,62287750800,62293449600,-18000,0,'EST',],[62293467600,62303497200,62293449600,62303479200,-18000,0,'EST',],[62303497200,62319218400,62303482800,62319204000,-14400,1,'EDT',],[62319218400,62334946800,62319200400,62334928800,-18000,0,'EST',],[62334946800,62351272800,62334932400,62351258400,-14400,1,'EDT',],[62351272800,62366396400,62351254800,62366378400,-18000,0,'EST',],[62366396400,62382722400,62366382000,62382708000,-14400,1,'EDT',],[62382722400,62398450800,62382704400,62398432800,-18000,0,'EST',],[62398450800,62414172000,62398436400,62414157600,-14400,1,'EDT',],[62414172000,62429900400,62414154000,62429882400,-18000,0,'EST',],[62429900400,62445621600,62429886000,62445607200,-14400,1,'EDT',],[62445621600,62461350000,62445603600,62461332000,-18000,0,'EST',],[62461350000,62477071200,62461335600,62477056800,-14400,1,'EDT',],[62477071200,62492799600,62477053200,62492781600,-18000,0,'EST',],[62492799600,62508520800,62492785200,62508506400,-14400,1,'EDT',],[62508520800,62524249200,62508502800,62524231200,-18000,0,'EST',],[62524249200,62540575200,62524234800,62540560800,-14400,1,'EDT',],[62540575200,62555698800,62540557200,62555680800,-18000,0,'EST',],[62555698800,62572024800,62555684400,62572010400,-14400,1,'EDT',],[62572024800,62587753200,62572006800,62587735200,-18000,0,'EST',],[62587753200,62603474400,62587738800,62603460000,-14400,1,'EDT',],[62603474400,62619202800,62603456400,62619184800,-18000,0,'EST',],[62619202800,62634924000,62619188400,62634909600,-14400,1,'EDT',],[62634924000,62650652400,62634906000,62650634400,-18000,0,'EST',],[62650652400,62666373600,62650638000,62666359200,-14400,1,'EDT',],[62666373600,62680287600,62666355600,62680269600,-18000,0,'EST',],[62680287600,62697823200,62680273200,62697808800,-14400,1,'EDT',],[62697823200,62711737200,62697805200,62711719200,-18000,0,'EST',],[62711737200,62729877600,62711722800,62729863200,-14400,1,'EDT',],[62729877600,62743186800,62729859600,62743168800,-18000,0,'EST',],[62743186800,62761327200,62743172400,62761312800,-14400,1,'EDT',],[62761327200,62774636400,62761309200,62774618400,-18000,0,'EST',],[62774636400,62792776800,62774622000,62792762400,-14400,1,'EDT',],[62792776800,62806690800,62792758800,62806672800,-18000,0,'EST',],[62806690800,62824226400,62806676400,62824212000,-14400,1,'EDT',],[62824226400,62838140400,62824208400,62838122400,-18000,0,'EST',],[62838140400,62855676000,62838126000,62855661600,-14400,1,'EDT',],[62855676000,62869590000,62855658000,62869572000,-18000,0,'EST',],[62869590000,62887730400,62869575600,62887716000,-14400,1,'EDT',],[62887730400,62901039600,62887712400,62901021600,-18000,0,'EST',],[62901039600,62919180000,62901025200,62919165600,-14400,1,'EDT',],[62919180000,62932489200,62919162000,62932471200,-18000,0,'EST',],[62932489200,62950629600,62932474800,62950615200,-14400,1,'EDT',],[62950629600,62964543600,62950611600,62964525600,-18000,0,'EST',],[62964543600,62982079200,62964529200,62982064800,-14400,1,'EDT',],[62982079200,62995993200,62982061200,62995975200,-18000,0,'EST',],[62995993200,63013528800,62995978800,63013514400,-14400,1,'EDT',],[63013528800,63027442800,63013510800,63027424800,-18000,0,'EST',],[63027442800,63044978400,63027428400,63044964000,-14400,1,'EDT',],[63044978400,63058892400,63044960400,63058874400,-18000,0,'EST',],[63058892400,63077032800,63058878000,63077018400,-14400,1,'EDT',],[63077032800,63090342000,63077014800,63090324000,-18000,0,'EST',],[63090342000,63108482400,63090327600,63108468000,-14400,1,'EDT',],[63108482400,63121791600,63108464400,63121773600,-18000,0,'EST',],[63121791600,63139932000,63121777200,63139917600,-14400,1,'EDT',],[63139932000,63153846000,63139914000,63153828000,-18000,0,'EST',],[63153846000,63171381600,63153831600,63171367200,-14400,1,'EDT',],[63171381600,63185295600,63171363600,63185277600,-18000,0,'EST',],[63185295600,63202831200,63185281200,63202816800,-14400,1,'EDT',],[63202831200,63216745200,63202813200,63216727200,-18000,0,'EST',],[63216745200,63234885600,63216730800,63234871200,-14400,1,'EDT',],[63234885600,63248194800,63234867600,63248176800,-18000,0,'EST',],[63248194800,63266335200,63248180400,63266320800,-14400,1,'EDT',],[63266335200,63279644400,63266317200,63279626400,-18000,0,'EST',],[63279644400,63297784800,63279630000,63297770400,-14400,1,'EDT',],[63297784800,63309279600,63297766800,63309261600,-18000,0,'EST',],[63309279600,63329839200,63309265200,63329824800,-14400,1,'EDT',],[63329839200,63340729200,63329821200,63340711200,-18000,0,'EST',],[63340729200,63361288800,63340714800,63361274400,-14400,1,'EDT',],[63361288800,63372178800,63361270800,63372160800,-18000,0,'EST',],[63372178800,63392738400,63372164400,63392724000,-14400,1,'EDT',],[63392738400,63404233200,63392720400,63404215200,-18000,0,'EST',],[63404233200,63424792800,63404218800,63424778400,-14400,1,'EDT',],[63424792800,63435682800,63424774800,63435664800,-18000,0,'EST',],[63435682800,63456242400,63435668400,63456228000,-14400,1,'EDT',],[63456242400,63467132400,63456224400,63467114400,-18000,0,'EST',],[63467132400,63487692000,63467118000,63487677600,-14400,1,'EDT',],[63487692000,63498582000,63487674000,63498564000,-18000,0,'EST',],[63498582000,63519141600,63498567600,63519127200,-14400,1,'EDT',],[63519141600,63530031600,63519123600,63530013600,-18000,0,'EST',],[63530031600,63550591200,63530017200,63550576800,-14400,1,'EDT',],[63550591200,63561481200,63550573200,63561463200,-18000,0,'EST',],[63561481200,63582040800,63561466800,63582026400,-14400,1,'EDT',],[63582040800,63593535600,63582022800,63593517600,-18000,0,'EST',],[63593535600,63614095200,63593521200,63614080800,-14400,1,'EDT',],[63614095200,63624985200,63614077200,63624967200,-18000,0,'EST',],[63624985200,63645544800,63624970800,63645530400,-14400,1,'EDT',],[63645544800,63656434800,63645526800,63656416800,-18000,0,'EST',],[63656434800,63676994400,63656420400,63676980000,-14400,1,'EDT',],[63676994400,63687884400,63676976400,63687866400,-18000,0,'EST',],[63687884400,63708444000,63687870000,63708429600,-14400,1,'EDT',],[63708444000,63719334000,63708426000,63719316000,-18000,0,'EST',],[63719334000,63739893600,63719319600,63739879200,-14400,1,'EDT',],[63739893600,63751388400,63739875600,63751370400,-18000,0,'EST',],[63751388400,63771948000,63751374000,63771933600,-14400,1,'EDT',],[63771948000,63782838000,63771930000,63782820000,-18000,0,'EST',],[63782838000,63803397600,63782823600,63803383200,-14400,1,'EDT',],[63803397600,63814287600,63803379600,63814269600,-18000,0,'EST',],[63814287600,63834847200,63814273200,63834832800,-14400,1,'EDT',],[63834847200,63845737200,63834829200,63845719200,-18000,0,'EST',],[63845737200,63866296800,63845722800,63866282400,-14400,1,'EDT',],[63866296800,63877186800,63866278800,63877168800,-18000,0,'EST',],[63877186800,63897746400,63877172400,63897732000,-14400,1,'EDT',],[63897746400,63908636400,63897728400,63908618400,-18000,0,'EST',],[63908636400,63929196000,63908622000,63929181600,-14400,1,'EDT',],[63929196000,63940690800,63929178000,63940672800,-18000,0,'EST',],[63940690800,63961250400,63940676400,63961236000,-14400,1,'EDT',],];sub olson_version {'2016a'}sub has_dst_changes {59}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-18000}my$last_observance=bless({'format'=>'E%sT','gmtoff'=>'-5:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>721105,'local_rd_secs'=>10800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>721105,'utc_rd_secs'=>10800,'utc_year'=>1976 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-18000,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>721105,'local_rd_secs'=>25200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>721105,'utc_rd_secs'=>25200,'utc_year'=>1976 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_DETROIT

$fatpacked{"DateTime/TimeZone/America/Edmonton.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_EDMONTON';
  package DateTime::TimeZone::America::Edmonton;$DateTime::TimeZone::America::Edmonton::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Edmonton::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60137019232,DateTime::TimeZone::NEG_INFINITY,60136992000,-27232,0,'LMT',],[60137019232,60503619600,60136994032,60503594400,-25200,0,'MST',],[60503619600,60520550400,60503598000,60520528800,-21600,1,'MDT',],[60520550400,60535069200,60520525200,60535044000,-25200,0,'MST',],[60535069200,60538867200,60535047600,60538845600,-21600,1,'MDT',],[60538867200,60567728400,60538842000,60567703200,-25200,0,'MST',],[60567728400,60584054400,60567706800,60584032800,-21600,1,'MDT',],[60584054400,60599178000,60584029200,60599152800,-25200,0,'MST',],[60599178000,60612480000,60599156400,60612458400,-21600,1,'MDT',],[60612480000,60631232400,60612454800,60631207200,-25200,0,'MST',],[60631232400,60643929600,60631210800,60643908000,-21600,1,'MDT',],[60643929600,60662682000,60643904400,60662656800,-25200,0,'MST',],[60662682000,60675984000,60662660400,60675962400,-21600,1,'MDT',],[60675984000,61255472400,60675958800,61255447200,-25200,0,'MST',],[61255472400,61366287600,61255450800,61366266000,-21600,1,'MWT',],[61366287600,61370294400,61366266000,61370272800,-21600,1,'MPT',],[61370294400,61419891600,61370269200,61419866400,-25200,0,'MST',],[61419891600,61433193600,61419870000,61433172000,-21600,1,'MDT',],[61433193600,62051302800,61433168400,62051277600,-25200,0,'MST',],[62051302800,62067024000,62051281200,62067002400,-21600,1,'MDT',],[62067024000,62114202000,62066998800,62114176800,-25200,0,'MST',],[62114202000,62129923200,62114180400,62129901600,-21600,1,'MDT',],[62129923200,62209155600,62129898000,62209130400,-25200,0,'MST',],[62209155600,62224876800,62209134000,62224855200,-21600,1,'MDT',],[62224876800,62240605200,62224851600,62240580000,-25200,0,'MST',],[62240605200,62256326400,62240583600,62256304800,-21600,1,'MDT',],[62256326400,62272054800,62256301200,62272029600,-25200,0,'MST',],[62272054800,62287776000,62272033200,62287754400,-21600,1,'MDT',],[62287776000,62303504400,62287750800,62303479200,-25200,0,'MST',],[62303504400,62319225600,62303482800,62319204000,-21600,1,'MDT',],[62319225600,62334954000,62319200400,62334928800,-25200,0,'MST',],[62334954000,62351280000,62334932400,62351258400,-21600,1,'MDT',],[62351280000,62366403600,62351254800,62366378400,-25200,0,'MST',],[62366403600,62382729600,62366382000,62382708000,-21600,1,'MDT',],[62382729600,62398458000,62382704400,62398432800,-25200,0,'MST',],[62398458000,62414179200,62398436400,62414157600,-21600,1,'MDT',],[62414179200,62429907600,62414154000,62429882400,-25200,0,'MST',],[62429907600,62445628800,62429886000,62445607200,-21600,1,'MDT',],[62445628800,62461357200,62445603600,62461332000,-25200,0,'MST',],[62461357200,62477078400,62461335600,62477056800,-21600,1,'MDT',],[62477078400,62492806800,62477053200,62492781600,-25200,0,'MST',],[62492806800,62508528000,62492785200,62508506400,-21600,1,'MDT',],[62508528000,62524256400,62508502800,62524231200,-25200,0,'MST',],[62524256400,62540582400,62524234800,62540560800,-21600,1,'MDT',],[62540582400,62555706000,62540557200,62555680800,-25200,0,'MST',],[62555706000,62572032000,62555684400,62572010400,-21600,1,'MDT',],[62572032000,62587760400,62572006800,62587735200,-25200,0,'MST',],[62587760400,62603481600,62587738800,62603460000,-21600,1,'MDT',],[62603481600,62619210000,62603456400,62619184800,-25200,0,'MST',],[62619210000,62634931200,62619188400,62634909600,-21600,1,'MDT',],[62634931200,62650659600,62634906000,62650634400,-25200,0,'MST',],[62650659600,62666380800,62650638000,62666359200,-21600,1,'MDT',],[62666380800,62672166000,62666355600,62672140800,-25200,0,'MST',],[62672166000,62680294800,62672140800,62680269600,-25200,0,'MST',],[62680294800,62697830400,62680273200,62697808800,-21600,1,'MDT',],[62697830400,62711744400,62697805200,62711719200,-25200,0,'MST',],[62711744400,62729884800,62711722800,62729863200,-21600,1,'MDT',],[62729884800,62743194000,62729859600,62743168800,-25200,0,'MST',],[62743194000,62761334400,62743172400,62761312800,-21600,1,'MDT',],[62761334400,62774643600,62761309200,62774618400,-25200,0,'MST',],[62774643600,62792784000,62774622000,62792762400,-21600,1,'MDT',],[62792784000,62806698000,62792758800,62806672800,-25200,0,'MST',],[62806698000,62824233600,62806676400,62824212000,-21600,1,'MDT',],[62824233600,62838147600,62824208400,62838122400,-25200,0,'MST',],[62838147600,62855683200,62838126000,62855661600,-21600,1,'MDT',],[62855683200,62869597200,62855658000,62869572000,-25200,0,'MST',],[62869597200,62887737600,62869575600,62887716000,-21600,1,'MDT',],[62887737600,62901046800,62887712400,62901021600,-25200,0,'MST',],[62901046800,62919187200,62901025200,62919165600,-21600,1,'MDT',],[62919187200,62932496400,62919162000,62932471200,-25200,0,'MST',],[62932496400,62950636800,62932474800,62950615200,-21600,1,'MDT',],[62950636800,62964550800,62950611600,62964525600,-25200,0,'MST',],[62964550800,62982086400,62964529200,62982064800,-21600,1,'MDT',],[62982086400,62996000400,62982061200,62995975200,-25200,0,'MST',],[62996000400,63013536000,62995978800,63013514400,-21600,1,'MDT',],[63013536000,63027450000,63013510800,63027424800,-25200,0,'MST',],[63027450000,63044985600,63027428400,63044964000,-21600,1,'MDT',],[63044985600,63058899600,63044960400,63058874400,-25200,0,'MST',],[63058899600,63077040000,63058878000,63077018400,-21600,1,'MDT',],[63077040000,63090349200,63077014800,63090324000,-25200,0,'MST',],[63090349200,63108489600,63090327600,63108468000,-21600,1,'MDT',],[63108489600,63121798800,63108464400,63121773600,-25200,0,'MST',],[63121798800,63139939200,63121777200,63139917600,-21600,1,'MDT',],[63139939200,63153853200,63139914000,63153828000,-25200,0,'MST',],[63153853200,63171388800,63153831600,63171367200,-21600,1,'MDT',],[63171388800,63185302800,63171363600,63185277600,-25200,0,'MST',],[63185302800,63202838400,63185281200,63202816800,-21600,1,'MDT',],[63202838400,63216752400,63202813200,63216727200,-25200,0,'MST',],[63216752400,63234892800,63216730800,63234871200,-21600,1,'MDT',],[63234892800,63248202000,63234867600,63248176800,-25200,0,'MST',],[63248202000,63266342400,63248180400,63266320800,-21600,1,'MDT',],[63266342400,63279651600,63266317200,63279626400,-25200,0,'MST',],[63279651600,63297792000,63279630000,63297770400,-21600,1,'MDT',],[63297792000,63309286800,63297766800,63309261600,-25200,0,'MST',],[63309286800,63329846400,63309265200,63329824800,-21600,1,'MDT',],[63329846400,63340736400,63329821200,63340711200,-25200,0,'MST',],[63340736400,63361296000,63340714800,63361274400,-21600,1,'MDT',],[63361296000,63372186000,63361270800,63372160800,-25200,0,'MST',],[63372186000,63392745600,63372164400,63392724000,-21600,1,'MDT',],[63392745600,63404240400,63392720400,63404215200,-25200,0,'MST',],[63404240400,63424800000,63404218800,63424778400,-21600,1,'MDT',],[63424800000,63435690000,63424774800,63435664800,-25200,0,'MST',],[63435690000,63456249600,63435668400,63456228000,-21600,1,'MDT',],[63456249600,63467139600,63456224400,63467114400,-25200,0,'MST',],[63467139600,63487699200,63467118000,63487677600,-21600,1,'MDT',],[63487699200,63498589200,63487674000,63498564000,-25200,0,'MST',],[63498589200,63519148800,63498567600,63519127200,-21600,1,'MDT',],[63519148800,63530038800,63519123600,63530013600,-25200,0,'MST',],[63530038800,63550598400,63530017200,63550576800,-21600,1,'MDT',],[63550598400,63561488400,63550573200,63561463200,-25200,0,'MST',],[63561488400,63582048000,63561466800,63582026400,-21600,1,'MDT',],[63582048000,63593542800,63582022800,63593517600,-25200,0,'MST',],[63593542800,63614102400,63593521200,63614080800,-21600,1,'MDT',],[63614102400,63624992400,63614077200,63624967200,-25200,0,'MST',],[63624992400,63645552000,63624970800,63645530400,-21600,1,'MDT',],[63645552000,63656442000,63645526800,63656416800,-25200,0,'MST',],[63656442000,63677001600,63656420400,63676980000,-21600,1,'MDT',],[63677001600,63687891600,63676976400,63687866400,-25200,0,'MST',],[63687891600,63708451200,63687870000,63708429600,-21600,1,'MDT',],[63708451200,63719341200,63708426000,63719316000,-25200,0,'MST',],[63719341200,63739900800,63719319600,63739879200,-21600,1,'MDT',],[63739900800,63751395600,63739875600,63751370400,-25200,0,'MST',],[63751395600,63771955200,63751374000,63771933600,-21600,1,'MDT',],[63771955200,63782845200,63771930000,63782820000,-25200,0,'MST',],[63782845200,63803404800,63782823600,63803383200,-21600,1,'MDT',],[63803404800,63814294800,63803379600,63814269600,-25200,0,'MST',],[63814294800,63834854400,63814273200,63834832800,-21600,1,'MDT',],[63834854400,63845744400,63834829200,63845719200,-25200,0,'MST',],[63845744400,63866304000,63845722800,63866282400,-21600,1,'MDT',],[63866304000,63877194000,63866278800,63877168800,-25200,0,'MST',],[63877194000,63897753600,63877172400,63897732000,-21600,1,'MDT',],[63897753600,63908643600,63897728400,63908618400,-25200,0,'MST',],[63908643600,63929203200,63908622000,63929181600,-21600,1,'MDT',],[63929203200,63940698000,63929178000,63940672800,-25200,0,'MST',],[63940698000,63961257600,63940676400,63961236000,-21600,1,'MDT',],];sub olson_version {'2016a'}sub has_dst_changes {67}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-25200}my$last_observance=bless({'format'=>'M%sT','gmtoff'=>'-7:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>725372,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>725372,'utc_rd_secs'=>0,'utc_year'=>1988 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-25200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>725372,'local_rd_secs'=>25200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>725372,'utc_rd_secs'=>25200,'utc_year'=>1988 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'Canada','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'Canada','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_EDMONTON

$fatpacked{"DateTime/TimeZone/America/Eirunepe.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_EIRUNEPE';
  package DateTime::TimeZone::America::Eirunepe;$DateTime::TimeZone::America::Eirunepe::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Eirunepe::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60368474368,DateTime::TimeZone::NEG_INFINITY,60368457600,-16768,0,'LMT',],[60368474368,60928732800,60368456368,60928714800,-18000,0,'ACT',],[60928732800,60944328000,60928718400,60944313600,-14400,1,'ACST',],[60944328000,60960315600,60944310000,60960297600,-18000,0,'ACT',],[60960315600,60975864000,60960301200,60975849600,-14400,1,'ACST',],[60975864000,61501870800,60975846000,61501852800,-18000,0,'ACT',],[61501870800,61513621200,61501856400,61513606800,-14400,1,'ACST',],[61513621200,61533406800,61513603200,61533388800,-18000,0,'ACT',],[61533406800,61543857600,61533392400,61543843200,-14400,1,'ACST',],[61543857600,61564942800,61543839600,61564924800,-18000,0,'ACT',],[61564942800,61575480000,61564928400,61575465600,-14400,1,'ACST',],[61575480000,61596565200,61575462000,61596547200,-18000,0,'ACT',],[61596565200,61604337600,61596550800,61604323200,-14400,1,'ACST',],[61604337600,61944325200,61604319600,61944307200,-18000,0,'ACT',],[61944325200,61951492800,61944310800,61951478400,-14400,1,'ACST',],[61951492800,61980526800,61951474800,61980508800,-18000,0,'ACT',],[61980526800,61985620800,61980512400,61985606400,-14400,1,'ACST',],[61985620800,62006792400,61985602800,62006774400,-18000,0,'ACT',],[62006792400,62014564800,62006778000,62014550400,-14400,1,'ACST',],[62014564800,62035736400,62014546800,62035718400,-18000,0,'ACT',],[62035736400,62046100800,62035722000,62046086400,-14400,1,'ACST',],[62046100800,62067272400,62046082800,62067254400,-18000,0,'ACT',],[62067272400,62077723200,62067258000,62077708800,-14400,1,'ACST',],[62077723200,62635438800,62077705200,62635420800,-18000,0,'ACT',],[62635438800,62646926400,62635424400,62646912000,-14400,1,'ACST',],[62646926400,62666283600,62646908400,62666265600,-18000,0,'ACT',],[62666283600,62675956800,62666269200,62675942400,-14400,1,'ACST',],[62675956800,62697819600,62675938800,62697801600,-18000,0,'ACT',],[62697819600,62706888000,62697805200,62706873600,-14400,1,'ACST',],[62706888000,62725726800,62706870000,62725708800,-18000,0,'ACT',],[62725726800,62884875600,62725708800,62884857600,-18000,0,'ACT',],[62884875600,62886517200,62884857600,62886499200,-18000,0,'ACT',],[62886517200,62897400000,62886502800,62897385600,-14400,1,'ACST',],[62897400000,62915893200,62897382000,62915875200,-18000,0,'ACT',],[62915893200,63349966800,62915875200,63349948800,-18000,0,'ACT',],[63349966800,63519739200,63349952400,63519724800,-14400,0,'AMT',],[63519739200,DateTime::TimeZone::INFINITY,63519721200,DateTime::TimeZone::INFINITY,-18000,0,'ACT',],];sub olson_version {'2016a'}sub has_dst_changes {15}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_EIRUNEPE

$fatpacked{"DateTime/TimeZone/America/El_Salvador.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_EL_SALVADOR';
  package DateTime::TimeZone::America::El_Salvador;$DateTime::TimeZone::America::El_Salvador::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::El_Salvador::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60589403808,DateTime::TimeZone::NEG_INFINITY,60589382400,-21408,0,'LMT',],[60589403808,62682703200,60589382208,62682681600,-21600,0,'CST',],[62682703200,62695400400,62682685200,62695382400,-18000,1,'CDT',],[62695400400,62714152800,62695378800,62714131200,-21600,0,'CST',],[62714152800,62726850000,62714134800,62726832000,-18000,1,'CDT',],[62726850000,DateTime::TimeZone::INFINITY,62726828400,DateTime::TimeZone::INFINITY,-21600,0,'CST',],];sub olson_version {'2016a'}sub has_dst_changes {2}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_EL_SALVADOR

$fatpacked{"DateTime/TimeZone/America/Fort_Nelson.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_FORT_NELSON';
  package DateTime::TimeZone::America::Fort_Nelson;$DateTime::TimeZone::America::Fort_Nelson::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Fort_Nelson::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59421802247,DateTime::TimeZone::NEG_INFINITY,59421772800,-29447,0,'LMT',],[59421802247,60503623200,59421773447,60503594400,-28800,0,'PST',],[60503623200,60520554000,60503598000,60520528800,-25200,1,'PDT',],[60520554000,61255476000,60520525200,61255447200,-28800,0,'PST',],[61255476000,61366287600,61255450800,61366262400,-25200,1,'PWT',],[61366287600,61370298000,61366262400,61370272800,-25200,1,'PPT',],[61370298000,61378329600,61370269200,61378300800,-28800,0,'PST',],[61378329600,61409865600,61378300800,61409836800,-28800,0,'PST',],[61409865600,61419895200,61409836800,61419866400,-28800,0,'PST',],[61419895200,61433197200,61419870000,61433172000,-25200,1,'PDT',],[61433197200,61451344800,61433168400,61451316000,-28800,0,'PST',],[61451344800,61464646800,61451319600,61464621600,-25200,1,'PDT',],[61464646800,61482794400,61464618000,61482765600,-28800,0,'PST',],[61482794400,61496096400,61482769200,61496071200,-25200,1,'PDT',],[61496096400,61514848800,61496067600,61514820000,-28800,0,'PST',],[61514848800,61527546000,61514823600,61527520800,-25200,1,'PDT',],[61527546000,61546298400,61527517200,61546269600,-28800,0,'PST',],[61546298400,61559600400,61546273200,61559575200,-25200,1,'PDT',],[61559600400,61577748000,61559571600,61577719200,-28800,0,'PST',],[61577748000,61591050000,61577722800,61591024800,-25200,1,'PDT',],[61591050000,61609197600,61591021200,61609168800,-28800,0,'PST',],[61609197600,61622499600,61609172400,61622474400,-25200,1,'PDT',],[61622499600,61640647200,61622470800,61640618400,-28800,0,'PST',],[61640647200,61653949200,61640622000,61653924000,-25200,1,'PDT',],[61653949200,61672096800,61653920400,61672068000,-28800,0,'PST',],[61672096800,61685398800,61672071600,61685373600,-25200,1,'PDT',],[61685398800,61704151200,61685370000,61704122400,-28800,0,'PST',],[61704151200,61717453200,61704126000,61717428000,-25200,1,'PDT',],[61717453200,61735600800,61717424400,61735572000,-28800,0,'PST',],[61735600800,61748902800,61735575600,61748877600,-25200,1,'PDT',],[61748902800,61767050400,61748874000,61767021600,-28800,0,'PST',],[61767050400,61780352400,61767025200,61780327200,-25200,1,'PDT',],[61780352400,61798500000,61780323600,61798471200,-28800,0,'PST',],[61798500000,61811802000,61798474800,61811776800,-25200,1,'PDT',],[61811802000,61829949600,61811773200,61829920800,-28800,0,'PST',],[61829949600,61843251600,61829924400,61843226400,-25200,1,'PDT',],[61843251600,61862004000,61843222800,61861975200,-28800,0,'PST',],[61862004000,61874701200,61861978800,61874676000,-25200,1,'PDT',],[61874701200,61893453600,61874672400,61893424800,-28800,0,'PST',],[61893453600,61909174800,61893428400,61909149600,-25200,1,'PDT',],[61909174800,61924903200,61909146000,61924874400,-28800,0,'PST',],[61924903200,61940624400,61924878000,61940599200,-25200,1,'PDT',],[61940624400,61956352800,61940595600,61956324000,-28800,0,'PST',],[61956352800,61972074000,61956327600,61972048800,-25200,1,'PDT',],[61972074000,61987802400,61972045200,61987773600,-28800,0,'PST',],[61987802400,62004128400,61987777200,62004103200,-25200,1,'PDT',],[62004128400,62019252000,62004099600,62019223200,-28800,0,'PST',],[62019252000,62035578000,62019226800,62035552800,-25200,1,'PDT',],[62035578000,62051306400,62035549200,62051277600,-28800,0,'PST',],[62051306400,62067027600,62051281200,62067002400,-25200,1,'PDT',],[62067027600,62082756000,62066998800,62082727200,-28800,0,'PST',],[62082756000,62098477200,62082730800,62098452000,-25200,1,'PDT',],[62098477200,62114205600,62098448400,62114176800,-28800,0,'PST',],[62114205600,62129926800,62114180400,62129901600,-25200,1,'PDT',],[62129926800,62145655200,62129898000,62145626400,-28800,0,'PST',],[62145655200,62161376400,62145630000,62161351200,-25200,1,'PDT',],[62161376400,62177104800,62161347600,62177076000,-28800,0,'PST',],[62177104800,62193430800,62177079600,62193405600,-25200,1,'PDT',],[62193430800,62209159200,62193402000,62209130400,-28800,0,'PST',],[62209159200,62224880400,62209134000,62224855200,-25200,1,'PDT',],[62224880400,62240608800,62224851600,62240580000,-28800,0,'PST',],[62240608800,62256330000,62240583600,62256304800,-25200,1,'PDT',],[62256330000,62272058400,62256301200,62272029600,-28800,0,'PST',],[62272058400,62287779600,62272033200,62287754400,-25200,1,'PDT',],[62287779600,62303508000,62287750800,62303479200,-28800,0,'PST',],[62303508000,62319229200,62303482800,62319204000,-25200,1,'PDT',],[62319229200,62334957600,62319200400,62334928800,-28800,0,'PST',],[62334957600,62351283600,62334932400,62351258400,-25200,1,'PDT',],[62351283600,62366407200,62351254800,62366378400,-28800,0,'PST',],[62366407200,62382733200,62366382000,62382708000,-25200,1,'PDT',],[62382733200,62398461600,62382704400,62398432800,-28800,0,'PST',],[62398461600,62414182800,62398436400,62414157600,-25200,1,'PDT',],[62414182800,62429911200,62414154000,62429882400,-28800,0,'PST',],[62429911200,62445632400,62429886000,62445607200,-25200,1,'PDT',],[62445632400,62461360800,62445603600,62461332000,-28800,0,'PST',],[62461360800,62477082000,62461335600,62477056800,-25200,1,'PDT',],[62477082000,62492810400,62477053200,62492781600,-28800,0,'PST',],[62492810400,62508531600,62492785200,62508506400,-25200,1,'PDT',],[62508531600,62524260000,62508502800,62524231200,-28800,0,'PST',],[62524260000,62540586000,62524234800,62540560800,-25200,1,'PDT',],[62540586000,62555709600,62540557200,62555680800,-28800,0,'PST',],[62555709600,62572035600,62555684400,62572010400,-25200,1,'PDT',],[62572035600,62587764000,62572006800,62587735200,-28800,0,'PST',],[62587764000,62603485200,62587738800,62603460000,-25200,1,'PDT',],[62603485200,62619213600,62603456400,62619184800,-28800,0,'PST',],[62619213600,62634934800,62619188400,62634909600,-25200,1,'PDT',],[62634934800,62650663200,62634906000,62650634400,-28800,0,'PST',],[62650663200,62666384400,62650638000,62666359200,-25200,1,'PDT',],[62666384400,62672169600,62666355600,62672140800,-28800,0,'PST',],[62672169600,62680298400,62672140800,62680269600,-28800,0,'PST',],[62680298400,62697834000,62680273200,62697808800,-25200,1,'PDT',],[62697834000,62711748000,62697805200,62711719200,-28800,0,'PST',],[62711748000,62729888400,62711722800,62729863200,-25200,1,'PDT',],[62729888400,62743197600,62729859600,62743168800,-28800,0,'PST',],[62743197600,62761338000,62743172400,62761312800,-25200,1,'PDT',],[62761338000,62774647200,62761309200,62774618400,-28800,0,'PST',],[62774647200,62792787600,62774622000,62792762400,-25200,1,'PDT',],[62792787600,62806701600,62792758800,62806672800,-28800,0,'PST',],[62806701600,62824237200,62806676400,62824212000,-25200,1,'PDT',],[62824237200,62838151200,62824208400,62838122400,-28800,0,'PST',],[62838151200,62855686800,62838126000,62855661600,-25200,1,'PDT',],[62855686800,62869600800,62855658000,62869572000,-28800,0,'PST',],[62869600800,62887741200,62869575600,62887716000,-25200,1,'PDT',],[62887741200,62901050400,62887712400,62901021600,-28800,0,'PST',],[62901050400,62919190800,62901025200,62919165600,-25200,1,'PDT',],[62919190800,62932500000,62919162000,62932471200,-28800,0,'PST',],[62932500000,62950640400,62932474800,62950615200,-25200,1,'PDT',],[62950640400,62964554400,62950611600,62964525600,-28800,0,'PST',],[62964554400,62982090000,62964529200,62982064800,-25200,1,'PDT',],[62982090000,62996004000,62982061200,62995975200,-28800,0,'PST',],[62996004000,63013539600,62995978800,63013514400,-25200,1,'PDT',],[63013539600,63027453600,63013510800,63027424800,-28800,0,'PST',],[63027453600,63044989200,63027428400,63044964000,-25200,1,'PDT',],[63044989200,63058903200,63044960400,63058874400,-28800,0,'PST',],[63058903200,63077043600,63058878000,63077018400,-25200,1,'PDT',],[63077043600,63090352800,63077014800,63090324000,-28800,0,'PST',],[63090352800,63108493200,63090327600,63108468000,-25200,1,'PDT',],[63108493200,63121802400,63108464400,63121773600,-28800,0,'PST',],[63121802400,63139942800,63121777200,63139917600,-25200,1,'PDT',],[63139942800,63153856800,63139914000,63153828000,-28800,0,'PST',],[63153856800,63171392400,63153831600,63171367200,-25200,1,'PDT',],[63171392400,63185306400,63171363600,63185277600,-28800,0,'PST',],[63185306400,63202842000,63185281200,63202816800,-25200,1,'PDT',],[63202842000,63216756000,63202813200,63216727200,-28800,0,'PST',],[63216756000,63234896400,63216730800,63234871200,-25200,1,'PDT',],[63234896400,63248205600,63234867600,63248176800,-28800,0,'PST',],[63248205600,63266346000,63248180400,63266320800,-25200,1,'PDT',],[63266346000,63279655200,63266317200,63279626400,-28800,0,'PST',],[63279655200,63297795600,63279630000,63297770400,-25200,1,'PDT',],[63297795600,63309290400,63297766800,63309261600,-28800,0,'PST',],[63309290400,63329850000,63309265200,63329824800,-25200,1,'PDT',],[63329850000,63340740000,63329821200,63340711200,-28800,0,'PST',],[63340740000,63361299600,63340714800,63361274400,-25200,1,'PDT',],[63361299600,63372189600,63361270800,63372160800,-28800,0,'PST',],[63372189600,63392749200,63372164400,63392724000,-25200,1,'PDT',],[63392749200,63404244000,63392720400,63404215200,-28800,0,'PST',],[63404244000,63424803600,63404218800,63424778400,-25200,1,'PDT',],[63424803600,63435693600,63424774800,63435664800,-28800,0,'PST',],[63435693600,63456253200,63435668400,63456228000,-25200,1,'PDT',],[63456253200,63467143200,63456224400,63467114400,-28800,0,'PST',],[63467143200,63487702800,63467118000,63487677600,-25200,1,'PDT',],[63487702800,63498592800,63487674000,63498564000,-28800,0,'PST',],[63498592800,63519152400,63498567600,63519127200,-25200,1,'PDT',],[63519152400,63530042400,63519123600,63530013600,-28800,0,'PST',],[63530042400,63550602000,63530017200,63550576800,-25200,1,'PDT',],[63550602000,63561492000,63550573200,63561463200,-28800,0,'PST',],[63561492000,DateTime::TimeZone::INFINITY,63561466800,DateTime::TimeZone::INFINITY,-25200,0,'MST',],];sub olson_version {'2016a'}sub has_dst_changes {71}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_FORT_NELSON

$fatpacked{"DateTime/TimeZone/America/Fortaleza.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_FORTALEZA';
  package DateTime::TimeZone::America::Fortaleza;$DateTime::TimeZone::America::Fortaleza::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Fortaleza::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60368466840,DateTime::TimeZone::NEG_INFINITY,60368457600,-9240,0,'LMT',],[60368466840,60928725600,60368456040,60928714800,-10800,0,'BRT',],[60928725600,60944320800,60928718400,60944313600,-7200,1,'BRST',],[60944320800,60960308400,60944310000,60960297600,-10800,0,'BRT',],[60960308400,60975856800,60960301200,60975849600,-7200,1,'BRST',],[60975856800,61501863600,60975846000,61501852800,-10800,0,'BRT',],[61501863600,61513614000,61501856400,61513606800,-7200,1,'BRST',],[61513614000,61533399600,61513603200,61533388800,-10800,0,'BRT',],[61533399600,61543850400,61533392400,61543843200,-7200,1,'BRST',],[61543850400,61564935600,61543839600,61564924800,-10800,0,'BRT',],[61564935600,61575472800,61564928400,61575465600,-7200,1,'BRST',],[61575472800,61596558000,61575462000,61596547200,-10800,0,'BRT',],[61596558000,61604330400,61596550800,61604323200,-7200,1,'BRST',],[61604330400,61944318000,61604319600,61944307200,-10800,0,'BRT',],[61944318000,61951485600,61944310800,61951478400,-7200,1,'BRST',],[61951485600,61980519600,61951474800,61980508800,-10800,0,'BRT',],[61980519600,61985613600,61980512400,61985606400,-7200,1,'BRST',],[61985613600,62006785200,61985602800,62006774400,-10800,0,'BRT',],[62006785200,62014557600,62006778000,62014550400,-7200,1,'BRST',],[62014557600,62035729200,62014546800,62035718400,-10800,0,'BRT',],[62035729200,62046093600,62035722000,62046086400,-7200,1,'BRST',],[62046093600,62067265200,62046082800,62067254400,-10800,0,'BRT',],[62067265200,62077716000,62067258000,62077708800,-7200,1,'BRST',],[62077716000,62635431600,62077705200,62635420800,-10800,0,'BRT',],[62635431600,62646919200,62635424400,62646912000,-7200,1,'BRST',],[62646919200,62666276400,62646908400,62666265600,-10800,0,'BRT',],[62666276400,62675949600,62666269200,62675942400,-7200,1,'BRST',],[62675949600,62697812400,62675938800,62697801600,-10800,0,'BRT',],[62697812400,62706880800,62697805200,62706873600,-7200,1,'BRST',],[62706880800,62728657200,62706870000,62728646400,-10800,0,'BRT',],[62728657200,62737725600,62728650000,62737718400,-7200,1,'BRST',],[62737725600,62760106800,62737714800,62760096000,-10800,0,'BRT',],[62760106800,62770384800,62760099600,62770377600,-7200,1,'BRST',],[62770384800,62789223600,62770374000,62789212800,-10800,0,'BRT',],[62789223600,63074343600,62789212800,63074332800,-10800,0,'BRT',],[63074343600,63074602800,63074332800,63074592000,-10800,0,'BRT',],[63074602800,63087300000,63074595600,63087292800,-7200,1,'BRST',],[63087300000,63106657200,63087289200,63106646400,-10800,0,'BRT',],[63106657200,63107863200,63106650000,63107856000,-7200,1,'BRST',],[63107863200,63136033200,63107852400,63136022400,-10800,0,'BRT',],[63136033200,63138711600,63136022400,63138700800,-10800,0,'BRT',],[63138711600,63149594400,63138704400,63149587200,-7200,1,'BRST',],[63149594400,63169124400,63149583600,63169113600,-10800,0,'BRT',],[63169124400,DateTime::TimeZone::INFINITY,63169113600,DateTime::TimeZone::INFINITY,-10800,0,'BRT',],];sub olson_version {'2016a'}sub has_dst_changes {19}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_FORTALEZA

$fatpacked{"DateTime/TimeZone/America/Glace_Bay.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_GLACE_BAY';
  package DateTime::TimeZone::America::Glace_Bay;$DateTime::TimeZone::America::Glace_Bay::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Glace_Bay::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60004036788,DateTime::TimeZone::NEG_INFINITY,60004022400,-14388,0,'LMT',],[60004036788,60503608800,60004022388,60503594400,-14400,0,'AST',],[60503608800,60520539600,60503598000,60520528800,-10800,1,'ADT',],[60520539600,61255461600,60520525200,61255447200,-14400,0,'AST',],[61255461600,61366287600,61255450800,61366276800,-10800,1,'AWT',],[61366287600,61370283600,61366276800,61370272800,-10800,1,'APT',],[61370283600,61599240000,61370269200,61599225600,-14400,0,'AST',],[61599240000,61609183200,61599225600,61609168800,-14400,0,'AST',],[61609183200,61622485200,61609172400,61622474400,-10800,1,'ADT',],[61622485200,61630776000,61622470800,61630761600,-14400,0,'AST',],[61630776000,62198769600,61630761600,62198755200,-14400,0,'AST',],[62198769600,62209144800,62198755200,62209130400,-14400,0,'AST',],[62209144800,62224866000,62209134000,62224855200,-10800,1,'ADT',],[62224866000,62240594400,62224851600,62240580000,-14400,0,'AST',],[62240594400,62256315600,62240583600,62256304800,-10800,1,'ADT',],[62256315600,62261928000,62256301200,62261913600,-14400,0,'AST',],[62261928000,62272044000,62261913600,62272029600,-14400,0,'AST',],[62272044000,62287765200,62272033200,62287754400,-10800,1,'ADT',],[62287765200,62303493600,62287750800,62303479200,-14400,0,'AST',],[62303493600,62319214800,62303482800,62319204000,-10800,1,'ADT',],[62319214800,62334943200,62319200400,62334928800,-14400,0,'AST',],[62334943200,62351269200,62334932400,62351258400,-10800,1,'ADT',],[62351269200,62366392800,62351254800,62366378400,-14400,0,'AST',],[62366392800,62382718800,62366382000,62382708000,-10800,1,'ADT',],[62382718800,62398447200,62382704400,62398432800,-14400,0,'AST',],[62398447200,62414168400,62398436400,62414157600,-10800,1,'ADT',],[62414168400,62429896800,62414154000,62429882400,-14400,0,'AST',],[62429896800,62445618000,62429886000,62445607200,-10800,1,'ADT',],[62445618000,62461346400,62445603600,62461332000,-14400,0,'AST',],[62461346400,62477067600,62461335600,62477056800,-10800,1,'ADT',],[62477067600,62492796000,62477053200,62492781600,-14400,0,'AST',],[62492796000,62508517200,62492785200,62508506400,-10800,1,'ADT',],[62508517200,62524245600,62508502800,62524231200,-14400,0,'AST',],[62524245600,62540571600,62524234800,62540560800,-10800,1,'ADT',],[62540571600,62555695200,62540557200,62555680800,-14400,0,'AST',],[62555695200,62572021200,62555684400,62572010400,-10800,1,'ADT',],[62572021200,62587749600,62572006800,62587735200,-14400,0,'AST',],[62587749600,62603470800,62587738800,62603460000,-10800,1,'ADT',],[62603470800,62619199200,62603456400,62619184800,-14400,0,'AST',],[62619199200,62634920400,62619188400,62634909600,-10800,1,'ADT',],[62634920400,62650648800,62634906000,62650634400,-14400,0,'AST',],[62650648800,62666370000,62650638000,62666359200,-10800,1,'ADT',],[62666370000,62680284000,62666355600,62680269600,-14400,0,'AST',],[62680284000,62697819600,62680273200,62697808800,-10800,1,'ADT',],[62697819600,62711733600,62697805200,62711719200,-14400,0,'AST',],[62711733600,62729874000,62711722800,62729863200,-10800,1,'ADT',],[62729874000,62743183200,62729859600,62743168800,-14400,0,'AST',],[62743183200,62761323600,62743172400,62761312800,-10800,1,'ADT',],[62761323600,62774632800,62761309200,62774618400,-14400,0,'AST',],[62774632800,62792773200,62774622000,62792762400,-10800,1,'ADT',],[62792773200,62806687200,62792758800,62806672800,-14400,0,'AST',],[62806687200,62824222800,62806676400,62824212000,-10800,1,'ADT',],[62824222800,62838136800,62824208400,62838122400,-14400,0,'AST',],[62838136800,62855672400,62838126000,62855661600,-10800,1,'ADT',],[62855672400,62869586400,62855658000,62869572000,-14400,0,'AST',],[62869586400,62887726800,62869575600,62887716000,-10800,1,'ADT',],[62887726800,62901036000,62887712400,62901021600,-14400,0,'AST',],[62901036000,62919176400,62901025200,62919165600,-10800,1,'ADT',],[62919176400,62932485600,62919162000,62932471200,-14400,0,'AST',],[62932485600,62950626000,62932474800,62950615200,-10800,1,'ADT',],[62950626000,62964540000,62950611600,62964525600,-14400,0,'AST',],[62964540000,62982075600,62964529200,62982064800,-10800,1,'ADT',],[62982075600,62995989600,62982061200,62995975200,-14400,0,'AST',],[62995989600,63013525200,62995978800,63013514400,-10800,1,'ADT',],[63013525200,63027439200,63013510800,63027424800,-14400,0,'AST',],[63027439200,63044974800,63027428400,63044964000,-10800,1,'ADT',],[63044974800,63058888800,63044960400,63058874400,-14400,0,'AST',],[63058888800,63077029200,63058878000,63077018400,-10800,1,'ADT',],[63077029200,63090338400,63077014800,63090324000,-14400,0,'AST',],[63090338400,63108478800,63090327600,63108468000,-10800,1,'ADT',],[63108478800,63121788000,63108464400,63121773600,-14400,0,'AST',],[63121788000,63139928400,63121777200,63139917600,-10800,1,'ADT',],[63139928400,63153842400,63139914000,63153828000,-14400,0,'AST',],[63153842400,63171378000,63153831600,63171367200,-10800,1,'ADT',],[63171378000,63185292000,63171363600,63185277600,-14400,0,'AST',],[63185292000,63202827600,63185281200,63202816800,-10800,1,'ADT',],[63202827600,63216741600,63202813200,63216727200,-14400,0,'AST',],[63216741600,63234882000,63216730800,63234871200,-10800,1,'ADT',],[63234882000,63248191200,63234867600,63248176800,-14400,0,'AST',],[63248191200,63266331600,63248180400,63266320800,-10800,1,'ADT',],[63266331600,63279640800,63266317200,63279626400,-14400,0,'AST',],[63279640800,63297781200,63279630000,63297770400,-10800,1,'ADT',],[63297781200,63309276000,63297766800,63309261600,-14400,0,'AST',],[63309276000,63329835600,63309265200,63329824800,-10800,1,'ADT',],[63329835600,63340725600,63329821200,63340711200,-14400,0,'AST',],[63340725600,63361285200,63340714800,63361274400,-10800,1,'ADT',],[63361285200,63372175200,63361270800,63372160800,-14400,0,'AST',],[63372175200,63392734800,63372164400,63392724000,-10800,1,'ADT',],[63392734800,63404229600,63392720400,63404215200,-14400,0,'AST',],[63404229600,63424789200,63404218800,63424778400,-10800,1,'ADT',],[63424789200,63435679200,63424774800,63435664800,-14400,0,'AST',],[63435679200,63456238800,63435668400,63456228000,-10800,1,'ADT',],[63456238800,63467128800,63456224400,63467114400,-14400,0,'AST',],[63467128800,63487688400,63467118000,63487677600,-10800,1,'ADT',],[63487688400,63498578400,63487674000,63498564000,-14400,0,'AST',],[63498578400,63519138000,63498567600,63519127200,-10800,1,'ADT',],[63519138000,63530028000,63519123600,63530013600,-14400,0,'AST',],[63530028000,63550587600,63530017200,63550576800,-10800,1,'ADT',],[63550587600,63561477600,63550573200,63561463200,-14400,0,'AST',],[63561477600,63582037200,63561466800,63582026400,-10800,1,'ADT',],[63582037200,63593532000,63582022800,63593517600,-14400,0,'AST',],[63593532000,63614091600,63593521200,63614080800,-10800,1,'ADT',],[63614091600,63624981600,63614077200,63624967200,-14400,0,'AST',],[63624981600,63645541200,63624970800,63645530400,-10800,1,'ADT',],[63645541200,63656431200,63645526800,63656416800,-14400,0,'AST',],[63656431200,63676990800,63656420400,63676980000,-10800,1,'ADT',],[63676990800,63687880800,63676976400,63687866400,-14400,0,'AST',],[63687880800,63708440400,63687870000,63708429600,-10800,1,'ADT',],[63708440400,63719330400,63708426000,63719316000,-14400,0,'AST',],[63719330400,63739890000,63719319600,63739879200,-10800,1,'ADT',],[63739890000,63751384800,63739875600,63751370400,-14400,0,'AST',],[63751384800,63771944400,63751374000,63771933600,-10800,1,'ADT',],[63771944400,63782834400,63771930000,63782820000,-14400,0,'AST',],[63782834400,63803394000,63782823600,63803383200,-10800,1,'ADT',],[63803394000,63814284000,63803379600,63814269600,-14400,0,'AST',],[63814284000,63834843600,63814273200,63834832800,-10800,1,'ADT',],[63834843600,63845733600,63834829200,63845719200,-14400,0,'AST',],[63845733600,63866293200,63845722800,63866282400,-10800,1,'ADT',],[63866293200,63877183200,63866278800,63877168800,-14400,0,'AST',],[63877183200,63897742800,63877172400,63897732000,-10800,1,'ADT',],[63897742800,63908632800,63897728400,63908618400,-14400,0,'AST',],[63908632800,63929192400,63908622000,63929181600,-10800,1,'ADT',],[63929192400,63940687200,63929178000,63940672800,-14400,0,'AST',],[63940687200,63961246800,63940676400,63961236000,-10800,1,'ADT',],];sub olson_version {'2016a'}sub has_dst_changes {60}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-14400}my$last_observance=bless({'format'=>'A%sT','gmtoff'=>'-4:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>720624,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>720624,'utc_rd_secs'=>0,'utc_year'=>1975 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-14400,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>720624,'local_rd_secs'=>14400,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>720624,'utc_rd_secs'=>14400,'utc_year'=>1975 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'Canada','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'Canada','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_GLACE_BAY

$fatpacked{"DateTime/TimeZone/America/Godthab.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_GODTHAB';
  package DateTime::TimeZone::America::Godthab;$DateTime::TimeZone::America::Godthab::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Godthab::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60449599616,DateTime::TimeZone::NEG_INFINITY,60449587200,-12416,0,'LMT',],[60449599616,62459528400,60449588816,62459517600,-10800,0,'WGT',],[62459528400,62474634000,62459521200,62474626800,-7200,1,'WGST',],[62474634000,62490358800,62474623200,62490348000,-10800,0,'WGT',],[62490358800,62506083600,62490351600,62506076400,-7200,1,'WGST',],[62506083600,62521808400,62506072800,62521797600,-10800,0,'WGT',],[62521808400,62537533200,62521801200,62537526000,-7200,1,'WGST',],[62537533200,62553258000,62537522400,62553247200,-10800,0,'WGT',],[62553258000,62568982800,62553250800,62568975600,-7200,1,'WGST',],[62568982800,62584707600,62568972000,62584696800,-10800,0,'WGT',],[62584707600,62601037200,62584700400,62601030000,-7200,1,'WGST',],[62601037200,62616762000,62601026400,62616751200,-10800,0,'WGT',],[62616762000,62632486800,62616754800,62632479600,-7200,1,'WGST',],[62632486800,62648211600,62632476000,62648200800,-10800,0,'WGT',],[62648211600,62663936400,62648204400,62663929200,-7200,1,'WGST',],[62663936400,62679661200,62663925600,62679650400,-10800,0,'WGT',],[62679661200,62695386000,62679654000,62695378800,-7200,1,'WGST',],[62695386000,62711110800,62695375200,62711100000,-10800,0,'WGT',],[62711110800,62726835600,62711103600,62726828400,-7200,1,'WGST',],[62726835600,62742560400,62726824800,62742549600,-10800,0,'WGT',],[62742560400,62758285200,62742553200,62758278000,-7200,1,'WGST',],[62758285200,62774010000,62758274400,62773999200,-10800,0,'WGT',],[62774010000,62790339600,62774002800,62790332400,-7200,1,'WGST',],[62790339600,62806064400,62790328800,62806053600,-10800,0,'WGT',],[62806064400,62821789200,62806057200,62821782000,-7200,1,'WGST',],[62821789200,62837514000,62821778400,62837503200,-10800,0,'WGT',],[62837514000,62853238800,62837506800,62853231600,-7200,1,'WGST',],[62853238800,62868963600,62853228000,62868952800,-10800,0,'WGT',],[62868963600,62884688400,62868956400,62884681200,-7200,1,'WGST',],[62884688400,62900413200,62884677600,62900402400,-10800,0,'WGT',],[62900413200,62916138000,62900406000,62916130800,-7200,1,'WGST',],[62916138000,62931862800,62916127200,62931852000,-10800,0,'WGT',],[62931862800,62947587600,62931855600,62947580400,-7200,1,'WGST',],[62947587600,62963917200,62947576800,62963906400,-10800,0,'WGT',],[62963917200,62982061200,62963910000,62982054000,-7200,1,'WGST',],[62982061200,62995366800,62982050400,62995356000,-10800,0,'WGT',],[62995366800,63013510800,62995359600,63013503600,-7200,1,'WGST',],[63013510800,63026816400,63013500000,63026805600,-10800,0,'WGT',],[63026816400,63044960400,63026809200,63044953200,-7200,1,'WGST',],[63044960400,63058266000,63044949600,63058255200,-10800,0,'WGT',],[63058266000,63077014800,63058258800,63077007600,-7200,1,'WGST',],[63077014800,63089715600,63077004000,63089704800,-10800,0,'WGT',],[63089715600,63108464400,63089708400,63108457200,-7200,1,'WGST',],[63108464400,63121165200,63108453600,63121154400,-10800,0,'WGT',],[63121165200,63139914000,63121158000,63139906800,-7200,1,'WGST',],[63139914000,63153219600,63139903200,63153208800,-10800,0,'WGT',],[63153219600,63171363600,63153212400,63171356400,-7200,1,'WGST',],[63171363600,63184669200,63171352800,63184658400,-10800,0,'WGT',],[63184669200,63202813200,63184662000,63202806000,-7200,1,'WGST',],[63202813200,63216118800,63202802400,63216108000,-10800,0,'WGT',],[63216118800,63234867600,63216111600,63234860400,-7200,1,'WGST',],[63234867600,63247568400,63234856800,63247557600,-10800,0,'WGT',],[63247568400,63266317200,63247561200,63266310000,-7200,1,'WGST',],[63266317200,63279018000,63266306400,63279007200,-10800,0,'WGT',],[63279018000,63297766800,63279010800,63297759600,-7200,1,'WGST',],[63297766800,63310467600,63297756000,63310456800,-10800,0,'WGT',],[63310467600,63329216400,63310460400,63329209200,-7200,1,'WGST',],[63329216400,63342522000,63329205600,63342511200,-10800,0,'WGT',],[63342522000,63360666000,63342514800,63360658800,-7200,1,'WGST',],[63360666000,63373971600,63360655200,63373960800,-10800,0,'WGT',],[63373971600,63392115600,63373964400,63392108400,-7200,1,'WGST',],[63392115600,63405421200,63392104800,63405410400,-10800,0,'WGT',],[63405421200,63424170000,63405414000,63424162800,-7200,1,'WGST',],[63424170000,63436870800,63424159200,63436860000,-10800,0,'WGT',],[63436870800,63455619600,63436863600,63455612400,-7200,1,'WGST',],[63455619600,63468320400,63455608800,63468309600,-10800,0,'WGT',],[63468320400,63487069200,63468313200,63487062000,-7200,1,'WGST',],[63487069200,63500374800,63487058400,63500364000,-10800,0,'WGT',],[63500374800,63518518800,63500367600,63518511600,-7200,1,'WGST',],[63518518800,63531824400,63518508000,63531813600,-10800,0,'WGT',],[63531824400,63549968400,63531817200,63549961200,-7200,1,'WGST',],[63549968400,63563274000,63549957600,63563263200,-10800,0,'WGT',],[63563274000,63581418000,63563266800,63581410800,-7200,1,'WGST',],[63581418000,63594723600,63581407200,63594712800,-10800,0,'WGT',],[63594723600,63613472400,63594716400,63613465200,-7200,1,'WGST',],[63613472400,63626173200,63613461600,63626162400,-10800,0,'WGT',],[63626173200,63644922000,63626166000,63644914800,-7200,1,'WGST',],[63644922000,63657622800,63644911200,63657612000,-10800,0,'WGT',],[63657622800,63676371600,63657615600,63676364400,-7200,1,'WGST',],[63676371600,63689677200,63676360800,63689666400,-10800,0,'WGT',],[63689677200,63707821200,63689670000,63707814000,-7200,1,'WGST',],[63707821200,63721126800,63707810400,63721116000,-10800,0,'WGT',],[63721126800,63739270800,63721119600,63739263600,-7200,1,'WGST',],[63739270800,63752576400,63739260000,63752565600,-10800,0,'WGT',],[63752576400,63771325200,63752569200,63771318000,-7200,1,'WGST',],[63771325200,63784026000,63771314400,63784015200,-10800,0,'WGT',],[63784026000,63802774800,63784018800,63802767600,-7200,1,'WGST',],[63802774800,63815475600,63802764000,63815464800,-10800,0,'WGT',],[63815475600,63834224400,63815468400,63834217200,-7200,1,'WGST',],[63834224400,63847530000,63834213600,63847519200,-10800,0,'WGT',],[63847530000,63865674000,63847522800,63865666800,-7200,1,'WGST',],[63865674000,63878979600,63865663200,63878968800,-10800,0,'WGT',],[63878979600,63897123600,63878972400,63897116400,-7200,1,'WGST',],[63897123600,63910429200,63897112800,63910418400,-10800,0,'WGT',],[63910429200,63928573200,63910422000,63928566000,-7200,1,'WGST',],[63928573200,63941878800,63928562400,63941868000,-10800,0,'WGT',],[63941878800,63960627600,63941871600,63960620400,-7200,1,'WGST',],];sub olson_version {'2016a'}sub has_dst_changes {48}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-10800}my$last_observance=bless({'format'=>'WG%sT','gmtoff'=>'-3:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>722911,'local_rd_secs'=>10800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>722911,'utc_rd_secs'=>10800,'utc_year'=>1981 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-10800,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>722911,'local_rd_secs'=>18000,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>722911,'utc_rd_secs'=>18000,'utc_year'=>1981 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_GODTHAB

$fatpacked{"DateTime/TimeZone/America/Goose_Bay.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_GOOSE_BAY';
  package DateTime::TimeZone::America::Goose_Bay;$DateTime::TimeZone::America::Goose_Bay::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Goose_Bay::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59421787300,DateTime::TimeZone::NEG_INFINITY,59421772800,-14500,0,'LMT',],[59421787300,60494700652,59421774648,60494688000,-12652,0,'NST',],[60494700652,60503607052,60494688000,60503594400,-12652,0,'NST',],[60503607052,60520537852,60503598000,60520528800,-9052,1,'NDT',],[60520537852,60526236652,60520525200,60526224000,-12652,0,'NST',],[60526236652,61038761452,60526224000,61038748800,-12652,0,'NST',],[61038761452,61062694200,61038748852,61062681600,-12600,0,'NST',],[61062694200,61074012600,61062681600,61074000000,-12600,0,'NST',],[61074012600,61086709800,61074003600,61086700800,-9000,1,'NDT',],[61086709800,61105462200,61086697200,61105449600,-12600,0,'NST',],[61105462200,61118159400,61105453200,61118150400,-9000,1,'NDT',],[61118159400,61136911800,61118146800,61136899200,-12600,0,'NST',],[61136911800,61149609000,61136902800,61149600000,-9000,1,'NDT',],[61149609000,61168966200,61149596400,61168953600,-12600,0,'NST',],[61168966200,61181058600,61168957200,61181049600,-9000,1,'NDT',],[61181058600,61200415800,61181046000,61200403200,-12600,0,'NST',],[61200415800,61213113000,61200406800,61213104000,-9000,1,'NDT',],[61213113000,61231865400,61213100400,61231852800,-12600,0,'NST',],[61231865400,61244562600,61231856400,61244553600,-9000,1,'NDT',],[61244562600,61263315000,61244550000,61263302400,-12600,0,'NST',],[61263315000,61366287600,61263306000,61366278600,-9000,1,'NWT',],[61366287600,61370281800,61366278600,61370272800,-9000,1,'NPT',],[61370281800,61378313400,61370269200,61378300800,-12600,0,'NST',],[61378313400,61389639000,61378300800,61389626400,-12600,0,'NST',],[61389639000,61402336200,61389630000,61402327200,-9000,1,'NDT',],[61402336200,61421088600,61402323600,61421076000,-12600,0,'NST',],[61421088600,61433785800,61421079600,61433776800,-9000,1,'NDT',],[61433785800,61452538200,61433773200,61452525600,-12600,0,'NST',],[61452538200,61465235400,61452529200,61465226400,-9000,1,'NDT',],[61465235400,61483987800,61465222800,61483975200,-12600,0,'NST',],[61483987800,61496685000,61483978800,61496676000,-9000,1,'NDT',],[61496685000,61516042200,61496672400,61516029600,-12600,0,'NST',],[61516042200,61528739400,61516033200,61528730400,-9000,1,'NDT',],[61528739400,61546282200,61528726800,61546269600,-12600,0,'NST',],[61546282200,61559584200,61546273200,61559575200,-9000,1,'NDT',],[61559584200,61577731800,61559571600,61577719200,-12600,0,'NST',],[61577731800,61591033800,61577722800,61591024800,-9000,1,'NDT',],[61591033800,61609181400,61591021200,61609168800,-12600,0,'NST',],[61609181400,61622483400,61609172400,61622474400,-9000,1,'NDT',],[61622483400,61640631000,61622470800,61640618400,-12600,0,'NST',],[61640631000,61653933000,61640622000,61653924000,-9000,1,'NDT',],[61653933000,61672080600,61653920400,61672068000,-12600,0,'NST',],[61672080600,61685382600,61672071600,61685373600,-9000,1,'NDT',],[61685382600,61704135000,61685370000,61704122400,-12600,0,'NST',],[61704135000,61717437000,61704126000,61717428000,-9000,1,'NDT',],[61717437000,61735584600,61717424400,61735572000,-12600,0,'NST',],[61735584600,61748886600,61735575600,61748877600,-9000,1,'NDT',],[61748886600,61767034200,61748874000,61767021600,-12600,0,'NST',],[61767034200,61780336200,61767025200,61780327200,-9000,1,'NDT',],[61780336200,61798483800,61780323600,61798471200,-12600,0,'NST',],[61798483800,61811785800,61798474800,61811776800,-9000,1,'NDT',],[61811785800,61829933400,61811773200,61829920800,-12600,0,'NST',],[61829933400,61846259400,61829924400,61846250400,-9000,1,'NDT',],[61846259400,61861987800,61846246800,61861975200,-12600,0,'NST',],[61861987800,61877709000,61861978800,61877700000,-9000,1,'NDT',],[61877709000,61893437400,61877696400,61893424800,-12600,0,'NST',],[61893437400,61909158600,61893428400,61909149600,-9000,1,'NDT',],[61909158600,61924887000,61909146000,61924874400,-12600,0,'NST',],[61924887000,61940608200,61924878000,61940599200,-9000,1,'NDT',],[61940608200,61956336600,61940595600,61956324000,-12600,0,'NST',],[61956336600,61972057800,61956327600,61972048800,-9000,1,'NDT',],[61972057800,61987786200,61972045200,61987773600,-12600,0,'NST',],[61987786200,62004112200,61987777200,62004103200,-9000,1,'NDT',],[62004112200,62015779800,62004099600,62015767200,-12600,0,'NST',],[62015779800,62019237600,62015765400,62019223200,-14400,0,'AST',],[62019237600,62035563600,62019226800,62035552800,-10800,1,'ADT',],[62035563600,62051292000,62035549200,62051277600,-14400,0,'AST',],[62051292000,62067013200,62051281200,62067002400,-10800,1,'ADT',],[62067013200,62082741600,62066998800,62082727200,-14400,0,'AST',],[62082741600,62098462800,62082730800,62098452000,-10800,1,'ADT',],[62098462800,62114191200,62098448400,62114176800,-14400,0,'AST',],[62114191200,62129912400,62114180400,62129901600,-10800,1,'ADT',],[62129912400,62145640800,62129898000,62145626400,-14400,0,'AST',],[62145640800,62161362000,62145630000,62161351200,-10800,1,'ADT',],[62161362000,62177090400,62161347600,62177076000,-14400,0,'AST',],[62177090400,62193416400,62177079600,62193405600,-10800,1,'ADT',],[62193416400,62209144800,62193402000,62209130400,-14400,0,'AST',],[62209144800,62224866000,62209134000,62224855200,-10800,1,'ADT',],[62224866000,62240594400,62224851600,62240580000,-14400,0,'AST',],[62240594400,62256315600,62240583600,62256304800,-10800,1,'ADT',],[62256315600,62272044000,62256301200,62272029600,-14400,0,'AST',],[62272044000,62287765200,62272033200,62287754400,-10800,1,'ADT',],[62287765200,62303493600,62287750800,62303479200,-14400,0,'AST',],[62303493600,62319214800,62303482800,62319204000,-10800,1,'ADT',],[62319214800,62334943200,62319200400,62334928800,-14400,0,'AST',],[62334943200,62351269200,62334932400,62351258400,-10800,1,'ADT',],[62351269200,62366392800,62351254800,62366378400,-14400,0,'AST',],[62366392800,62382718800,62366382000,62382708000,-10800,1,'ADT',],[62382718800,62398447200,62382704400,62398432800,-14400,0,'AST',],[62398447200,62414168400,62398436400,62414157600,-10800,1,'ADT',],[62414168400,62429896800,62414154000,62429882400,-14400,0,'AST',],[62429896800,62445618000,62429886000,62445607200,-10800,1,'ADT',],[62445618000,62461346400,62445603600,62461332000,-14400,0,'AST',],[62461346400,62477067600,62461335600,62477056800,-10800,1,'ADT',],[62477067600,62492796000,62477053200,62492781600,-14400,0,'AST',],[62492796000,62508517200,62492785200,62508506400,-10800,1,'ADT',],[62508517200,62524245600,62508502800,62524231200,-14400,0,'AST',],[62524245600,62540571600,62524234800,62540560800,-10800,1,'ADT',],[62540571600,62555695200,62540557200,62555680800,-14400,0,'AST',],[62555695200,62572021200,62555684400,62572010400,-10800,1,'ADT',],[62572021200,62587749600,62572006800,62587735200,-14400,0,'AST',],[62587749600,62603470800,62587738800,62603460000,-10800,1,'ADT',],[62603470800,62619199200,62603456400,62619184800,-14400,0,'AST',],[62619199200,62634920400,62619188400,62634909600,-10800,1,'ADT',],[62634920400,62650648800,62634906000,62650634400,-14400,0,'AST',],[62650648800,62666370000,62650638000,62666359200,-10800,1,'ADT',],[62666370000,62680276860,62666355600,62680262460,-14400,0,'AST',],[62680276860,62697812460,62680266060,62697801660,-10800,1,'ADT',],[62697812460,62711726460,62697798060,62711712060,-14400,0,'AST',],[62711726460,62729863260,62711719260,62729856060,-7200,1,'ADDT',],[62729863260,62743176060,62729848860,62743161660,-14400,0,'AST',],[62743176060,62761316460,62743165260,62761305660,-10800,1,'ADT',],[62761316460,62774625660,62761302060,62774611260,-14400,0,'AST',],[62774625660,62792766060,62774614860,62792755260,-10800,1,'ADT',],[62792766060,62806680060,62792751660,62806665660,-14400,0,'AST',],[62806680060,62824215660,62806669260,62824204860,-10800,1,'ADT',],[62824215660,62838129660,62824201260,62838115260,-14400,0,'AST',],[62838129660,62855665260,62838118860,62855654460,-10800,1,'ADT',],[62855665260,62869579260,62855650860,62869564860,-14400,0,'AST',],[62869579260,62887719660,62869568460,62887708860,-10800,1,'ADT',],[62887719660,62901028860,62887705260,62901014460,-14400,0,'AST',],[62901028860,62919169260,62901018060,62919158460,-10800,1,'ADT',],[62919169260,62932478460,62919154860,62932464060,-14400,0,'AST',],[62932478460,62950618860,62932467660,62950608060,-10800,1,'ADT',],[62950618860,62964532860,62950604460,62964518460,-14400,0,'AST',],[62964532860,62982068460,62964522060,62982057660,-10800,1,'ADT',],[62982068460,62995982460,62982054060,62995968060,-14400,0,'AST',],[62995982460,63013518060,62995971660,63013507260,-10800,1,'ADT',],[63013518060,63027432060,63013503660,63027417660,-14400,0,'AST',],[63027432060,63044967660,63027421260,63044956860,-10800,1,'ADT',],[63044967660,63058881660,63044953260,63058867260,-14400,0,'AST',],[63058881660,63077022060,63058870860,63077011260,-10800,1,'ADT',],[63077022060,63090331260,63077007660,63090316860,-14400,0,'AST',],[63090331260,63108471660,63090320460,63108460860,-10800,1,'ADT',],[63108471660,63121780860,63108457260,63121766460,-14400,0,'AST',],[63121780860,63139921260,63121770060,63139910460,-10800,1,'ADT',],[63139921260,63153835260,63139906860,63153820860,-14400,0,'AST',],[63153835260,63171370860,63153824460,63171360060,-10800,1,'ADT',],[63171370860,63185284860,63171356460,63185270460,-14400,0,'AST',],[63185284860,63202820460,63185274060,63202809660,-10800,1,'ADT',],[63202820460,63216734460,63202806060,63216720060,-14400,0,'AST',],[63216734460,63234874860,63216723660,63234864060,-10800,1,'ADT',],[63234874860,63248184060,63234860460,63248169660,-14400,0,'AST',],[63248184060,63266324460,63248173260,63266313660,-10800,1,'ADT',],[63266324460,63279633660,63266310060,63279619260,-14400,0,'AST',],[63279633660,63297774060,63279622860,63297763260,-10800,1,'ADT',],[63297774060,63309268860,63297759660,63309254460,-14400,0,'AST',],[63309268860,63329828460,63309258060,63329817660,-10800,1,'ADT',],[63329828460,63340718460,63329814060,63340704060,-14400,0,'AST',],[63340718460,63361278060,63340707660,63361267260,-10800,1,'ADT',],[63361278060,63372168060,63361263660,63372153660,-14400,0,'AST',],[63372168060,63392727660,63372157260,63392716860,-10800,1,'ADT',],[63392727660,63404222460,63392713260,63404208060,-14400,0,'AST',],[63404222460,63424782060,63404211660,63424771260,-10800,1,'ADT',],[63424782060,63435672060,63424767660,63435657660,-14400,0,'AST',],[63435672060,63455799600,63435661260,63455788800,-10800,1,'ADT',],[63455799600,63456238800,63455788800,63456228000,-10800,1,'ADT',],[63456238800,63467128800,63456224400,63467114400,-14400,0,'AST',],[63467128800,63487688400,63467118000,63487677600,-10800,1,'ADT',],[63487688400,63498578400,63487674000,63498564000,-14400,0,'AST',],[63498578400,63519138000,63498567600,63519127200,-10800,1,'ADT',],[63519138000,63530028000,63519123600,63530013600,-14400,0,'AST',],[63530028000,63550587600,63530017200,63550576800,-10800,1,'ADT',],[63550587600,63561477600,63550573200,63561463200,-14400,0,'AST',],[63561477600,63582037200,63561466800,63582026400,-10800,1,'ADT',],[63582037200,63593532000,63582022800,63593517600,-14400,0,'AST',],[63593532000,63614091600,63593521200,63614080800,-10800,1,'ADT',],[63614091600,63624981600,63614077200,63624967200,-14400,0,'AST',],[63624981600,63645541200,63624970800,63645530400,-10800,1,'ADT',],[63645541200,63656431200,63645526800,63656416800,-14400,0,'AST',],[63656431200,63676990800,63656420400,63676980000,-10800,1,'ADT',],[63676990800,63687880800,63676976400,63687866400,-14400,0,'AST',],[63687880800,63708440400,63687870000,63708429600,-10800,1,'ADT',],[63708440400,63719330400,63708426000,63719316000,-14400,0,'AST',],[63719330400,63739890000,63719319600,63739879200,-10800,1,'ADT',],[63739890000,63751384800,63739875600,63751370400,-14400,0,'AST',],[63751384800,63771944400,63751374000,63771933600,-10800,1,'ADT',],[63771944400,63782834400,63771930000,63782820000,-14400,0,'AST',],[63782834400,63803394000,63782823600,63803383200,-10800,1,'ADT',],[63803394000,63814284000,63803379600,63814269600,-14400,0,'AST',],[63814284000,63834843600,63814273200,63834832800,-10800,1,'ADT',],[63834843600,63845733600,63834829200,63845719200,-14400,0,'AST',],[63845733600,63866293200,63845722800,63866282400,-10800,1,'ADT',],[63866293200,63877183200,63866278800,63877168800,-14400,0,'AST',],[63877183200,63897742800,63877172400,63897732000,-10800,1,'ADT',],[63897742800,63908632800,63897728400,63908618400,-14400,0,'AST',],[63908632800,63929192400,63908622000,63929181600,-10800,1,'ADT',],[63929192400,63940687200,63929178000,63940672800,-14400,0,'AST',],[63940687200,63961246800,63940676400,63961236000,-10800,1,'ADT',],];sub olson_version {'2016a'}sub has_dst_changes {92}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-14400}my$last_observance=bless({'format'=>'A%sT','gmtoff'=>'-4:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>734442,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>734442,'utc_rd_secs'=>0,'utc_year'=>2012 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-14400,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>734442,'local_rd_secs'=>10800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>734442,'utc_rd_secs'=>10800,'utc_year'=>2012 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'Canada','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'Canada','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_GOOSE_BAY

$fatpacked{"DateTime/TimeZone/America/Grand_Turk.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_GRAND_TURK';
  package DateTime::TimeZone::America::Grand_Turk;$DateTime::TimeZone::America::Grand_Turk::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Grand_Turk::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59611178672,DateTime::TimeZone::NEG_INFINITY,59611161600,-17072,0,'LMT',],[59611178672,60307996031,59611160241,60307977600,-18431,0,'KMT',],[60307996031,62419698000,60307978031,62419680000,-18000,0,'EST',],[62419698000,62429900400,62419680000,62429882400,-18000,0,'EST',],[62429900400,62445621600,62429886000,62445607200,-14400,1,'EDT',],[62445621600,62461350000,62445603600,62461332000,-18000,0,'EST',],[62461350000,62477071200,62461335600,62477056800,-14400,1,'EDT',],[62477071200,62492799600,62477053200,62492781600,-18000,0,'EST',],[62492799600,62508520800,62492785200,62508506400,-14400,1,'EDT',],[62508520800,62524249200,62508502800,62524231200,-18000,0,'EST',],[62524249200,62540575200,62524234800,62540560800,-14400,1,'EDT',],[62540575200,62555698800,62540557200,62555680800,-18000,0,'EST',],[62555698800,62572024800,62555684400,62572010400,-14400,1,'EDT',],[62572024800,62587753200,62572006800,62587735200,-18000,0,'EST',],[62587753200,62603474400,62587738800,62603460000,-14400,1,'EDT',],[62603474400,62619202800,62603456400,62619184800,-18000,0,'EST',],[62619202800,62634924000,62619188400,62634909600,-14400,1,'EDT',],[62634924000,62650652400,62634906000,62650634400,-18000,0,'EST',],[62650652400,62666373600,62650638000,62666359200,-14400,1,'EDT',],[62666373600,62680287600,62666355600,62680269600,-18000,0,'EST',],[62680287600,62697823200,62680273200,62697808800,-14400,1,'EDT',],[62697823200,62711737200,62697805200,62711719200,-18000,0,'EST',],[62711737200,62729877600,62711722800,62729863200,-14400,1,'EDT',],[62729877600,62743186800,62729859600,62743168800,-18000,0,'EST',],[62743186800,62761327200,62743172400,62761312800,-14400,1,'EDT',],[62761327200,62774636400,62761309200,62774618400,-18000,0,'EST',],[62774636400,62792776800,62774622000,62792762400,-14400,1,'EDT',],[62792776800,62806690800,62792758800,62806672800,-18000,0,'EST',],[62806690800,62824226400,62806676400,62824212000,-14400,1,'EDT',],[62824226400,62838140400,62824208400,62838122400,-18000,0,'EST',],[62838140400,62855676000,62838126000,62855661600,-14400,1,'EDT',],[62855676000,62869590000,62855658000,62869572000,-18000,0,'EST',],[62869590000,62887730400,62869575600,62887716000,-14400,1,'EDT',],[62887730400,62901039600,62887712400,62901021600,-18000,0,'EST',],[62901039600,62919180000,62901025200,62919165600,-14400,1,'EDT',],[62919180000,62932489200,62919162000,62932471200,-18000,0,'EST',],[62932489200,62950629600,62932474800,62950615200,-14400,1,'EDT',],[62950629600,62964543600,62950611600,62964525600,-18000,0,'EST',],[62964543600,62982079200,62964529200,62982064800,-14400,1,'EDT',],[62982079200,62995993200,62982061200,62995975200,-18000,0,'EST',],[62995993200,63013528800,62995978800,63013514400,-14400,1,'EDT',],[63013528800,63027442800,63013510800,63027424800,-18000,0,'EST',],[63027442800,63044978400,63027428400,63044964000,-14400,1,'EDT',],[63044978400,63058892400,63044960400,63058874400,-18000,0,'EST',],[63058892400,63077032800,63058878000,63077018400,-14400,1,'EDT',],[63077032800,63090342000,63077014800,63090324000,-18000,0,'EST',],[63090342000,63108482400,63090327600,63108468000,-14400,1,'EDT',],[63108482400,63121791600,63108464400,63121773600,-18000,0,'EST',],[63121791600,63139932000,63121777200,63139917600,-14400,1,'EDT',],[63139932000,63153846000,63139914000,63153828000,-18000,0,'EST',],[63153846000,63171381600,63153831600,63171367200,-14400,1,'EDT',],[63171381600,63185295600,63171363600,63185277600,-18000,0,'EST',],[63185295600,63202831200,63185281200,63202816800,-14400,1,'EDT',],[63202831200,63216745200,63202813200,63216727200,-18000,0,'EST',],[63216745200,63234885600,63216730800,63234871200,-14400,1,'EDT',],[63234885600,63248194800,63234867600,63248176800,-18000,0,'EST',],[63248194800,63266335200,63248180400,63266320800,-14400,1,'EDT',],[63266335200,63279644400,63266317200,63279626400,-18000,0,'EST',],[63279644400,63297784800,63279630000,63297770400,-14400,1,'EDT',],[63297784800,63309279600,63297766800,63309261600,-18000,0,'EST',],[63309279600,63329839200,63309265200,63329824800,-14400,1,'EDT',],[63329839200,63340729200,63329821200,63340711200,-18000,0,'EST',],[63340729200,63361288800,63340714800,63361274400,-14400,1,'EDT',],[63361288800,63372178800,63361270800,63372160800,-18000,0,'EST',],[63372178800,63392738400,63372164400,63392724000,-14400,1,'EDT',],[63392738400,63404233200,63392720400,63404215200,-18000,0,'EST',],[63404233200,63424792800,63404218800,63424778400,-14400,1,'EDT',],[63424792800,63435682800,63424774800,63435664800,-18000,0,'EST',],[63435682800,63456242400,63435668400,63456228000,-14400,1,'EDT',],[63456242400,63467132400,63456224400,63467114400,-18000,0,'EST',],[63467132400,63487692000,63467118000,63487677600,-14400,1,'EDT',],[63487692000,63498582000,63487674000,63498564000,-18000,0,'EST',],[63498582000,63519141600,63498567600,63519127200,-14400,1,'EDT',],[63519141600,63530031600,63519123600,63530013600,-18000,0,'EST',],[63530031600,63550591200,63530017200,63550576800,-14400,1,'EDT',],[63550591200,63561481200,63550573200,63561463200,-18000,0,'EST',],[63561481200,63582040800,63561466800,63582026400,-14400,1,'EDT',],[63582040800,DateTime::TimeZone::INFINITY,63582026400,DateTime::TimeZone::INFINITY,-14400,0,'AST',],];sub olson_version {'2016a'}sub has_dst_changes {37}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_GRAND_TURK

$fatpacked{"DateTime/TimeZone/America/Guatemala.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_GUATEMALA';
  package DateTime::TimeZone::America::Guatemala;$DateTime::TimeZone::America::Guatemala::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Guatemala::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60518642524,DateTime::TimeZone::NEG_INFINITY,60518620800,-21724,0,'LMT',],[60518642524,62258738400,60518620924,62258716800,-21600,0,'CST',],[62258738400,62266597200,62258720400,62266579200,-18000,1,'CDT',],[62266597200,62558028000,62266575600,62558006400,-21600,0,'CST',],[62558028000,62568738000,62558010000,62568720000,-18000,1,'CDT',],[62568738000,62805391200,62568716400,62805369600,-21600,0,'CST',],[62805391200,62819902800,62805373200,62819884800,-18000,1,'CDT',],[62819902800,63282060000,62819881200,63282038400,-21600,0,'CST',],[63282060000,63295362000,63282042000,63295344000,-18000,1,'CDT',],[63295362000,DateTime::TimeZone::INFINITY,63295340400,DateTime::TimeZone::INFINITY,-21600,0,'CST',],];sub olson_version {'2016a'}sub has_dst_changes {4}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_GUATEMALA

$fatpacked{"DateTime/TimeZone/America/Guayaquil.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_GUAYAQUIL';
  package DateTime::TimeZone::America::Guayaquil;$DateTime::TimeZone::America::Guayaquil::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Guayaquil::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59611180760,DateTime::TimeZone::NEG_INFINITY,59611161600,-19160,0,'LMT',],[59611180760,60904934040,59611161920,60904915200,-18840,0,'QMT',],[60904934040,DateTime::TimeZone::INFINITY,60904916040,DateTime::TimeZone::INFINITY,-18000,0,'ECT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_GUAYAQUIL

$fatpacked{"DateTime/TimeZone/America/Guyana.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_GUYANA';
  package DateTime::TimeZone::America::Guyana;$DateTime::TimeZone::America::Guyana::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Guyana::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60405105160,DateTime::TimeZone::NEG_INFINITY,60405091200,-13960,0,'LMT',],[60405105160,62021994300,60405091660,62021980800,-13500,0,'GBGT',],[62021994300,62311693500,62021980800,62311680000,-13500,0,'GYT',],[62311693500,62798382000,62311682700,62798371200,-10800,0,'GYT',],[62798382000,DateTime::TimeZone::INFINITY,62798367600,DateTime::TimeZone::INFINITY,-14400,0,'GYT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_GUYANA

$fatpacked{"DateTime/TimeZone/America/Halifax.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_HALIFAX';
  package DateTime::TimeZone::America::Halifax;$DateTime::TimeZone::America::Halifax::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Halifax::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60004037664,DateTime::TimeZone::NEG_INFINITY,60004022400,-15264,0,'LMT',],[60004037664,60439406400,60004023264,60439392000,-14400,0,'AST',],[60439406400,60455214000,60439395600,60455203200,-10800,1,'ADT',],[60455214000,60494702400,60455199600,60494688000,-14400,0,'AST',],[60494702400,60503608800,60494688000,60503594400,-14400,0,'AST',],[60503608800,60520539600,60503598000,60520528800,-10800,1,'ADT',],[60520539600,60526238400,60520525200,60526224000,-14400,0,'AST',],[60526238400,60568920000,60526224000,60568905600,-14400,0,'AST',],[60568920000,60578593200,60568909200,60578582400,-10800,1,'ADT',],[60578593200,60600196800,60578578800,60600182400,-14400,0,'AST',],[60600196800,60610734000,60600186000,60610723200,-10800,1,'ADT',],[60610734000,60631214400,60610719600,60631200000,-14400,0,'AST',],[60631214400,60642270000,60631203600,60642259200,-10800,1,'ADT',],[60642270000,60663268800,60642255600,60663254400,-14400,0,'AST',],[60663268800,60673719600,60663258000,60673708800,-10800,1,'ADT',],[60673719600,60694718400,60673705200,60694704000,-14400,0,'AST',],[60694718400,60706292400,60694707600,60706281600,-10800,1,'ADT',],[60706292400,60726168000,60706278000,60726153600,-14400,0,'AST',],[60726168000,60738951600,60726157200,60738940800,-10800,1,'ADT',],[60738951600,60758827200,60738937200,60758812800,-14400,0,'AST',],[60758827200,60769191600,60758816400,60769180800,-10800,1,'ADT',],[60769191600,60789067200,60769177200,60789052800,-14400,0,'AST',],[60789067200,60801850800,60789056400,60801840000,-10800,1,'ADT',],[60801850800,60821726400,60801836400,60821712000,-14400,0,'AST',],[60821726400,60832004400,60821715600,60831993600,-10800,1,'ADT',],[60832004400,60853176000,60831990000,60853161600,-14400,0,'AST',],[60853176000,60863022000,60853165200,60863011200,-10800,1,'ADT',],[60863022000,60884625600,60863007600,60884611200,-14400,0,'AST',],[60884625600,60895594800,60884614800,60895584000,-10800,1,'ADT',],[60895594800,60916075200,60895580400,60916060800,-14400,0,'AST',],[60916075200,60928254000,60916064400,60928243200,-10800,1,'ADT',],[60928254000,60946920000,60928239600,60946905600,-14400,0,'AST',],[60946920000,60959703600,60946909200,60959692800,-10800,1,'ADT',],[60959703600,60978369600,60959689200,60978355200,-14400,0,'AST',],[60978369600,60991758000,60978358800,60991747200,-10800,1,'ADT',],[60991758000,61011633600,60991743600,61011619200,-14400,0,'AST',],[61011633600,61021911600,61011622800,61021900800,-10800,1,'ADT',],[61021911600,61044292800,61021897200,61044278400,-14400,0,'AST',],[61044292800,61054657200,61044282000,61054646400,-10800,1,'ADT',],[61054657200,61075828800,61054642800,61075814400,-14400,0,'AST',],[61075828800,61084897200,61075818000,61084886400,-10800,1,'ADT',],[61084897200,61104772800,61084882800,61104758400,-14400,0,'AST',],[61104772800,61117556400,61104762000,61117545600,-10800,1,'ADT',],[61117556400,61136222400,61117542000,61136208000,-14400,0,'AST',],[61136222400,61149006000,61136211600,61148995200,-10800,1,'ADT',],[61149006000,61170091200,61148991600,61170076800,-14400,0,'AST',],[61170091200,61180455600,61170080400,61180444800,-10800,1,'ADT',],[61180455600,61199726400,61180441200,61199712000,-14400,0,'AST',],[61199726400,61212510000,61199715600,61212499200,-10800,1,'ADT',],[61212510000,61231176000,61212495600,61231161600,-14400,0,'AST',],[61231176000,61243959600,61231165200,61243948800,-10800,1,'ADT',],[61243959600,61255461600,61243945200,61255447200,-14400,0,'AST',],[61255461600,61366287600,61255450800,61366276800,-10800,1,'AWT',],[61366287600,61370283600,61366276800,61370272800,-10800,1,'APT',],[61370283600,61378315200,61370269200,61378300800,-14400,0,'AST',],[61378315200,61388431200,61378300800,61388416800,-14400,0,'AST',],[61388431200,61401733200,61388420400,61401722400,-10800,1,'ADT',],[61401733200,61419880800,61401718800,61419866400,-14400,0,'AST',],[61419880800,61433182800,61419870000,61433172000,-10800,1,'ADT',],[61433182800,61451330400,61433168400,61451316000,-14400,0,'AST',],[61451330400,61464632400,61451319600,61464621600,-10800,1,'ADT',],[61464632400,61482780000,61464618000,61482765600,-14400,0,'AST',],[61482780000,61496082000,61482769200,61496071200,-10800,1,'ADT',],[61496082000,61546284000,61496067600,61546269600,-14400,0,'AST',],[61546284000,61559586000,61546273200,61559575200,-10800,1,'ADT',],[61559586000,61577733600,61559571600,61577719200,-14400,0,'AST',],[61577733600,61591035600,61577722800,61591024800,-10800,1,'ADT',],[61591035600,61609183200,61591021200,61609168800,-14400,0,'AST',],[61609183200,61622485200,61609172400,61622474400,-10800,1,'ADT',],[61622485200,61640632800,61622470800,61640618400,-14400,0,'AST',],[61640632800,61653934800,61640622000,61653924000,-10800,1,'ADT',],[61653934800,61704136800,61653920400,61704122400,-14400,0,'AST',],[61704136800,61717438800,61704126000,61717428000,-10800,1,'ADT',],[61717438800,61735586400,61717424400,61735572000,-14400,0,'AST',],[61735586400,61748888400,61735575600,61748877600,-10800,1,'ADT',],[61748888400,61767036000,61748874000,61767021600,-14400,0,'AST',],[61767036000,61780338000,61767025200,61780327200,-10800,1,'ADT',],[61780338000,61798485600,61780323600,61798471200,-14400,0,'AST',],[61798485600,61811787600,61798474800,61811776800,-10800,1,'ADT',],[61811787600,61893439200,61811773200,61893424800,-14400,0,'AST',],[61893439200,61909160400,61893428400,61909149600,-10800,1,'ADT',],[61909160400,61924888800,61909146000,61924874400,-14400,0,'AST',],[61924888800,61940610000,61924878000,61940599200,-10800,1,'ADT',],[61940610000,61956338400,61940595600,61956324000,-14400,0,'AST',],[61956338400,61972059600,61956327600,61972048800,-10800,1,'ADT',],[61972059600,61987788000,61972045200,61987773600,-14400,0,'AST',],[61987788000,62004114000,61987777200,62004103200,-10800,1,'ADT',],[62004114000,62019237600,62004099600,62019223200,-14400,0,'AST',],[62019237600,62035563600,62019226800,62035552800,-10800,1,'ADT',],[62035563600,62051292000,62035549200,62051277600,-14400,0,'AST',],[62051292000,62067013200,62051281200,62067002400,-10800,1,'ADT',],[62067013200,62082741600,62066998800,62082727200,-14400,0,'AST',],[62082741600,62098462800,62082730800,62098452000,-10800,1,'ADT',],[62098462800,62114191200,62098448400,62114176800,-14400,0,'AST',],[62114191200,62129912400,62114180400,62129901600,-10800,1,'ADT',],[62129912400,62145640800,62129898000,62145626400,-14400,0,'AST',],[62145640800,62161362000,62145630000,62161351200,-10800,1,'ADT',],[62161362000,62177090400,62161347600,62177076000,-14400,0,'AST',],[62177090400,62193416400,62177079600,62193405600,-10800,1,'ADT',],[62193416400,62209144800,62193402000,62209130400,-14400,0,'AST',],[62209144800,62224866000,62209134000,62224855200,-10800,1,'ADT',],[62224866000,62240594400,62224851600,62240580000,-14400,0,'AST',],[62240594400,62256315600,62240583600,62256304800,-10800,1,'ADT',],[62256315600,62261928000,62256301200,62261913600,-14400,0,'AST',],[62261928000,62272044000,62261913600,62272029600,-14400,0,'AST',],[62272044000,62287765200,62272033200,62287754400,-10800,1,'ADT',],[62287765200,62303493600,62287750800,62303479200,-14400,0,'AST',],[62303493600,62319214800,62303482800,62319204000,-10800,1,'ADT',],[62319214800,62334943200,62319200400,62334928800,-14400,0,'AST',],[62334943200,62351269200,62334932400,62351258400,-10800,1,'ADT',],[62351269200,62366392800,62351254800,62366378400,-14400,0,'AST',],[62366392800,62382718800,62366382000,62382708000,-10800,1,'ADT',],[62382718800,62398447200,62382704400,62398432800,-14400,0,'AST',],[62398447200,62414168400,62398436400,62414157600,-10800,1,'ADT',],[62414168400,62429896800,62414154000,62429882400,-14400,0,'AST',],[62429896800,62445618000,62429886000,62445607200,-10800,1,'ADT',],[62445618000,62461346400,62445603600,62461332000,-14400,0,'AST',],[62461346400,62477067600,62461335600,62477056800,-10800,1,'ADT',],[62477067600,62492796000,62477053200,62492781600,-14400,0,'AST',],[62492796000,62508517200,62492785200,62508506400,-10800,1,'ADT',],[62508517200,62524245600,62508502800,62524231200,-14400,0,'AST',],[62524245600,62540571600,62524234800,62540560800,-10800,1,'ADT',],[62540571600,62555695200,62540557200,62555680800,-14400,0,'AST',],[62555695200,62572021200,62555684400,62572010400,-10800,1,'ADT',],[62572021200,62587749600,62572006800,62587735200,-14400,0,'AST',],[62587749600,62603470800,62587738800,62603460000,-10800,1,'ADT',],[62603470800,62619199200,62603456400,62619184800,-14400,0,'AST',],[62619199200,62634920400,62619188400,62634909600,-10800,1,'ADT',],[62634920400,62650648800,62634906000,62650634400,-14400,0,'AST',],[62650648800,62666370000,62650638000,62666359200,-10800,1,'ADT',],[62666370000,62680284000,62666355600,62680269600,-14400,0,'AST',],[62680284000,62697819600,62680273200,62697808800,-10800,1,'ADT',],[62697819600,62711733600,62697805200,62711719200,-14400,0,'AST',],[62711733600,62729874000,62711722800,62729863200,-10800,1,'ADT',],[62729874000,62743183200,62729859600,62743168800,-14400,0,'AST',],[62743183200,62761323600,62743172400,62761312800,-10800,1,'ADT',],[62761323600,62774632800,62761309200,62774618400,-14400,0,'AST',],[62774632800,62792773200,62774622000,62792762400,-10800,1,'ADT',],[62792773200,62806687200,62792758800,62806672800,-14400,0,'AST',],[62806687200,62824222800,62806676400,62824212000,-10800,1,'ADT',],[62824222800,62838136800,62824208400,62838122400,-14400,0,'AST',],[62838136800,62855672400,62838126000,62855661600,-10800,1,'ADT',],[62855672400,62869586400,62855658000,62869572000,-14400,0,'AST',],[62869586400,62887726800,62869575600,62887716000,-10800,1,'ADT',],[62887726800,62901036000,62887712400,62901021600,-14400,0,'AST',],[62901036000,62919176400,62901025200,62919165600,-10800,1,'ADT',],[62919176400,62932485600,62919162000,62932471200,-14400,0,'AST',],[62932485600,62950626000,62932474800,62950615200,-10800,1,'ADT',],[62950626000,62964540000,62950611600,62964525600,-14400,0,'AST',],[62964540000,62982075600,62964529200,62982064800,-10800,1,'ADT',],[62982075600,62995989600,62982061200,62995975200,-14400,0,'AST',],[62995989600,63013525200,62995978800,63013514400,-10800,1,'ADT',],[63013525200,63027439200,63013510800,63027424800,-14400,0,'AST',],[63027439200,63044974800,63027428400,63044964000,-10800,1,'ADT',],[63044974800,63058888800,63044960400,63058874400,-14400,0,'AST',],[63058888800,63077029200,63058878000,63077018400,-10800,1,'ADT',],[63077029200,63090338400,63077014800,63090324000,-14400,0,'AST',],[63090338400,63108478800,63090327600,63108468000,-10800,1,'ADT',],[63108478800,63121788000,63108464400,63121773600,-14400,0,'AST',],[63121788000,63139928400,63121777200,63139917600,-10800,1,'ADT',],[63139928400,63153842400,63139914000,63153828000,-14400,0,'AST',],[63153842400,63171378000,63153831600,63171367200,-10800,1,'ADT',],[63171378000,63185292000,63171363600,63185277600,-14400,0,'AST',],[63185292000,63202827600,63185281200,63202816800,-10800,1,'ADT',],[63202827600,63216741600,63202813200,63216727200,-14400,0,'AST',],[63216741600,63234882000,63216730800,63234871200,-10800,1,'ADT',],[63234882000,63248191200,63234867600,63248176800,-14400,0,'AST',],[63248191200,63266331600,63248180400,63266320800,-10800,1,'ADT',],[63266331600,63279640800,63266317200,63279626400,-14400,0,'AST',],[63279640800,63297781200,63279630000,63297770400,-10800,1,'ADT',],[63297781200,63309276000,63297766800,63309261600,-14400,0,'AST',],[63309276000,63329835600,63309265200,63329824800,-10800,1,'ADT',],[63329835600,63340725600,63329821200,63340711200,-14400,0,'AST',],[63340725600,63361285200,63340714800,63361274400,-10800,1,'ADT',],[63361285200,63372175200,63361270800,63372160800,-14400,0,'AST',],[63372175200,63392734800,63372164400,63392724000,-10800,1,'ADT',],[63392734800,63404229600,63392720400,63404215200,-14400,0,'AST',],[63404229600,63424789200,63404218800,63424778400,-10800,1,'ADT',],[63424789200,63435679200,63424774800,63435664800,-14400,0,'AST',],[63435679200,63456238800,63435668400,63456228000,-10800,1,'ADT',],[63456238800,63467128800,63456224400,63467114400,-14400,0,'AST',],[63467128800,63487688400,63467118000,63487677600,-10800,1,'ADT',],[63487688400,63498578400,63487674000,63498564000,-14400,0,'AST',],[63498578400,63519138000,63498567600,63519127200,-10800,1,'ADT',],[63519138000,63530028000,63519123600,63530013600,-14400,0,'AST',],[63530028000,63550587600,63530017200,63550576800,-10800,1,'ADT',],[63550587600,63561477600,63550573200,63561463200,-14400,0,'AST',],[63561477600,63582037200,63561466800,63582026400,-10800,1,'ADT',],[63582037200,63593532000,63582022800,63593517600,-14400,0,'AST',],[63593532000,63614091600,63593521200,63614080800,-10800,1,'ADT',],[63614091600,63624981600,63614077200,63624967200,-14400,0,'AST',],[63624981600,63645541200,63624970800,63645530400,-10800,1,'ADT',],[63645541200,63656431200,63645526800,63656416800,-14400,0,'AST',],[63656431200,63676990800,63656420400,63676980000,-10800,1,'ADT',],[63676990800,63687880800,63676976400,63687866400,-14400,0,'AST',],[63687880800,63708440400,63687870000,63708429600,-10800,1,'ADT',],[63708440400,63719330400,63708426000,63719316000,-14400,0,'AST',],[63719330400,63739890000,63719319600,63739879200,-10800,1,'ADT',],[63739890000,63751384800,63739875600,63751370400,-14400,0,'AST',],[63751384800,63771944400,63751374000,63771933600,-10800,1,'ADT',],[63771944400,63782834400,63771930000,63782820000,-14400,0,'AST',],[63782834400,63803394000,63782823600,63803383200,-10800,1,'ADT',],[63803394000,63814284000,63803379600,63814269600,-14400,0,'AST',],[63814284000,63834843600,63814273200,63834832800,-10800,1,'ADT',],[63834843600,63845733600,63834829200,63845719200,-14400,0,'AST',],[63845733600,63866293200,63845722800,63866282400,-10800,1,'ADT',],[63866293200,63877183200,63866278800,63877168800,-14400,0,'AST',],[63877183200,63897742800,63877172400,63897732000,-10800,1,'ADT',],[63897742800,63908632800,63897728400,63908618400,-14400,0,'AST',],[63908632800,63929192400,63908622000,63929181600,-10800,1,'ADT',],[63929192400,63940687200,63929178000,63940672800,-14400,0,'AST',],[63940687200,63961246800,63940676400,63961236000,-10800,1,'ADT',],];sub olson_version {'2016a'}sub has_dst_changes {104}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-14400}my$last_observance=bless({'format'=>'A%sT','gmtoff'=>'-4:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>720624,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>720624,'utc_rd_secs'=>0,'utc_year'=>1975 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-14400,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>720624,'local_rd_secs'=>14400,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>720624,'utc_rd_secs'=>14400,'utc_year'=>1975 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'Canada','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'Canada','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_HALIFAX

$fatpacked{"DateTime/TimeZone/America/Havana.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_HAVANA';
  package DateTime::TimeZone::America::Havana;$DateTime::TimeZone::America::Havana::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Havana::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59611181368,DateTime::TimeZone::NEG_INFINITY,59611161600,-19768,0,'LMT',],[59611181368,60732869376,59611161592,60732849600,-19776,0,'HMT',],[60732869376,60824149200,60732851376,60824131200,-18000,0,'CST',],[60824149200,60834686400,60824134800,60834672000,-14400,1,'CDT',],[60834686400,61202149200,60834668400,61202131200,-18000,0,'CST',],[61202149200,61210008000,61202134800,61209993600,-14400,1,'CDT',],[61210008000,61233598800,61209990000,61233580800,-18000,0,'CST',],[61233598800,61242062400,61233584400,61242048000,-14400,1,'CDT',],[61242062400,61265653200,61242044400,61265635200,-18000,0,'CST',],[61265653200,61273512000,61265638800,61273497600,-14400,1,'CDT',],[61273512000,61360002000,61273494000,61359984000,-18000,0,'CST',],[61360002000,61367860800,61359987600,61367846400,-14400,1,'CDT',],[61367860800,61391451600,61367842800,61391433600,-18000,0,'CST',],[61391451600,61399310400,61391437200,61399296000,-14400,1,'CDT',],[61399310400,61990981200,61399292400,61990963200,-18000,0,'CST',],[61990981200,62001432000,61990966800,62001417600,-14400,1,'CDT',],[62001432000,62022258000,62001414000,62022240000,-18000,0,'CST',],[62022258000,62033140800,62022243600,62033126400,-14400,1,'CDT',],[62033140800,62049387600,62033122800,62049369600,-18000,0,'CST',],[62049387600,62062776000,62049373200,62062761600,-14400,1,'CDT',],[62062776000,62081528400,62062758000,62081510400,-18000,0,'CST',],[62081528400,62094225600,62081514000,62094211200,-14400,1,'CDT',],[62094225600,62114187600,62094207600,62114169600,-18000,0,'CST',],[62114187600,62129908800,62114173200,62129894400,-14400,1,'CDT',],[62129908800,62145637200,62129890800,62145619200,-18000,0,'CST',],[62145637200,62161358400,62145622800,62161344000,-14400,1,'CDT',],[62161358400,62177086800,62161340400,62177068800,-18000,0,'CST',],[62177086800,62193412800,62177072400,62193398400,-14400,1,'CDT',],[62193412800,62209141200,62193394800,62209123200,-18000,0,'CST',],[62209141200,62223048000,62209126800,62223033600,-14400,1,'CDT',],[62223048000,62240590800,62223030000,62240572800,-18000,0,'CST',],[62240590800,62254584000,62240576400,62254569600,-14400,1,'CDT',],[62254584000,62272040400,62254566000,62272022400,-18000,0,'CST',],[62272040400,62286120000,62272026000,62286105600,-14400,1,'CDT',],[62286120000,62303490000,62286102000,62303472000,-18000,0,'CST',],[62303490000,62319211200,62303475600,62319196800,-14400,1,'CDT',],[62319211200,62334939600,62319193200,62334921600,-18000,0,'CST',],[62334939600,62351265600,62334925200,62351251200,-14400,1,'CDT',],[62351265600,62366389200,62351247600,62366371200,-18000,0,'CST',],[62366389200,62382715200,62366374800,62382700800,-14400,1,'CDT',],[62382715200,62399048400,62382697200,62399030400,-18000,0,'CST',],[62399048400,62412350400,62399034000,62412336000,-14400,1,'CDT',],[62412350400,62426264400,62412332400,62426246400,-18000,0,'CST',],[62426264400,62444404800,62426250000,62444390400,-14400,1,'CDT',],[62444404800,62457714000,62444386800,62457696000,-18000,0,'CST',],[62457714000,62475854400,62457699600,62475840000,-14400,1,'CDT',],[62475854400,62494002000,62475836400,62493984000,-18000,0,'CST',],[62494002000,62507304000,62493987600,62507289600,-14400,1,'CDT',],[62507304000,62525451600,62507286000,62525433600,-18000,0,'CST',],[62525451600,62538753600,62525437200,62538739200,-14400,1,'CDT',],[62538753600,62556901200,62538735600,62556883200,-18000,0,'CST',],[62556901200,62570203200,62556886800,62570188800,-14400,1,'CDT',],[62570203200,62588350800,62570185200,62588332800,-18000,0,'CST',],[62588350800,62602257600,62588336400,62602243200,-14400,1,'CDT',],[62602257600,62619800400,62602239600,62619782400,-18000,0,'CST',],[62619800400,62633707200,62619786000,62633692800,-14400,1,'CDT',],[62633707200,62647016400,62633689200,62646998400,-18000,0,'CST',],[62647016400,62665156800,62647002000,62665142400,-14400,1,'CDT',],[62665156800,62678466000,62665138800,62678448000,-18000,0,'CST',],[62678466000,62696606400,62678451600,62696592000,-14400,1,'CDT',],[62696606400,62710520400,62696588400,62710502400,-18000,0,'CST',],[62710520400,62728056000,62710506000,62728041600,-14400,1,'CDT',],[62728056000,62741970000,62728038000,62741952000,-18000,0,'CST',],[62741970000,62759505600,62741955600,62759491200,-14400,1,'CDT',],[62759505600,62774629200,62759487600,62774611200,-18000,0,'CST',],[62774629200,62791560000,62774614800,62791545600,-14400,1,'CDT',],[62791560000,62806683600,62791542000,62806665600,-18000,0,'CST',],[62806683600,62823013200,62806669200,62822998800,-14400,1,'CDT',],[62823013200,62838133200,62822995200,62838115200,-18000,0,'CST',],[62838133200,62854462800,62838118800,62854448400,-14400,1,'CDT',],[62854462800,62869582800,62854444800,62869564800,-18000,0,'CST',],[62869582800,62885912400,62869568400,62885898000,-14400,1,'CDT',],[62885912400,62901032400,62885894400,62901014400,-18000,0,'CST',],[62901032400,62917362000,62901018000,62917347600,-14400,1,'CDT',],[62917362000,62932482000,62917344000,62932464000,-18000,0,'CST',],[62932482000,62948811600,62932467600,62948797200,-14400,1,'CDT',],[62948811600,62964536400,62948793600,62964518400,-18000,0,'CST',],[62964536400,62980261200,62964522000,62980246800,-14400,1,'CDT',],[62980261200,62995986000,62980243200,62995968000,-18000,0,'CST',],[62995986000,63012315600,62995971600,63012301200,-14400,1,'CDT',],[63012315600,63026830800,63012297600,63026812800,-18000,0,'CST',],[63026830800,63044974800,63026816400,63044960400,-14400,1,'CDT',],[63044974800,63058280400,63044956800,63058262400,-18000,0,'CST',],[63058280400,63077029200,63058266000,63077014800,-14400,1,'CDT',],[63077029200,63090334800,63077011200,63090316800,-18000,0,'CST',],[63090334800,63108478800,63090320400,63108464400,-14400,1,'CDT',],[63108478800,63121784400,63108460800,63121766400,-18000,0,'CST',],[63121784400,63139928400,63121770000,63139914000,-14400,1,'CDT',],[63139928400,63153838800,63139910400,63153820800,-18000,0,'CST',],[63153838800,63171378000,63153824400,63171363600,-14400,1,'CDT',],[63171378000,63185288400,63171360000,63185270400,-18000,0,'CST',],[63185288400,63202827600,63185274000,63202813200,-14400,1,'CDT',],[63202827600,63216133200,63202809600,63216115200,-18000,0,'CST',],[63216133200,63297781200,63216118800,63297766800,-14400,1,'CDT',],[63297781200,63309272400,63297763200,63309254400,-18000,0,'CST',],[63309272400,63329230800,63309258000,63329216400,-14400,1,'CDT',],[63329230800,63341326800,63329212800,63341308800,-18000,0,'CST',],[63341326800,63360680400,63341312400,63360666000,-14400,1,'CDT',],[63360680400,63372171600,63360662400,63372153600,-18000,0,'CST',],[63372171600,63392130000,63372157200,63392115600,-14400,1,'CDT',],[63392130000,63404226000,63392112000,63404208000,-18000,0,'CST',],[63404226000,63424184400,63404211600,63424170000,-14400,1,'CDT',],[63424184400,63436280400,63424166400,63436262400,-18000,0,'CST',],[63436280400,63456843600,63436266000,63456829200,-14400,1,'CDT',],[63456843600,63468939600,63456825600,63468921600,-18000,0,'CST',],[63468939600,63487688400,63468925200,63487674000,-14400,1,'CDT',],[63487688400,63498574800,63487670400,63498556800,-18000,0,'CST',],[63498574800,63519138000,63498560400,63519123600,-14400,1,'CDT',],[63519138000,63530024400,63519120000,63530006400,-18000,0,'CST',],[63530024400,63550587600,63530010000,63550573200,-14400,1,'CDT',],[63550587600,63561474000,63550569600,63561456000,-18000,0,'CST',],[63561474000,63582037200,63561459600,63582022800,-14400,1,'CDT',],[63582037200,63593528400,63582019200,63593510400,-18000,0,'CST',],[63593528400,63614091600,63593514000,63614077200,-14400,1,'CDT',],[63614091600,63624978000,63614073600,63624960000,-18000,0,'CST',],[63624978000,63645541200,63624963600,63645526800,-14400,1,'CDT',],[63645541200,63656427600,63645523200,63656409600,-18000,0,'CST',],[63656427600,63676990800,63656413200,63676976400,-14400,1,'CDT',],[63676990800,63687877200,63676972800,63687859200,-18000,0,'CST',],[63687877200,63708440400,63687862800,63708426000,-14400,1,'CDT',],[63708440400,63719326800,63708422400,63719308800,-18000,0,'CST',],[63719326800,63739890000,63719312400,63739875600,-14400,1,'CDT',],[63739890000,63751381200,63739872000,63751363200,-18000,0,'CST',],[63751381200,63771944400,63751366800,63771930000,-14400,1,'CDT',],[63771944400,63782830800,63771926400,63782812800,-18000,0,'CST',],[63782830800,63803394000,63782816400,63803379600,-14400,1,'CDT',],[63803394000,63814280400,63803376000,63814262400,-18000,0,'CST',],[63814280400,63834843600,63814266000,63834829200,-14400,1,'CDT',],[63834843600,63845730000,63834825600,63845712000,-18000,0,'CST',],[63845730000,63866293200,63845715600,63866278800,-14400,1,'CDT',],[63866293200,63877179600,63866275200,63877161600,-18000,0,'CST',],[63877179600,63897742800,63877165200,63897728400,-14400,1,'CDT',],[63897742800,63908629200,63897724800,63908611200,-18000,0,'CST',],[63908629200,63929192400,63908614800,63929178000,-14400,1,'CDT',],[63929192400,63940683600,63929174400,63940665600,-18000,0,'CST',],[63940683600,63961246800,63940669200,63961232400,-14400,1,'CDT',],];sub olson_version {'2016a'}sub has_dst_changes {67}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-18000}my$last_observance=bless({'format'=>'C%sT','gmtoff'=>'-5:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>702926,'local_rd_secs'=>44976,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>702926,'utc_rd_secs'=>44976,'utc_year'=>1926 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-18000,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>702926,'local_rd_secs'=>62976,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>702926,'utc_rd_secs'=>62976,'utc_year'=>1926 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'0:00s','from'=>'2013','in'=>'Mar','letter'=>'D','name'=>'Cuba','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'0:00s','from'=>'2012','in'=>'Nov','letter'=>'S','name'=>'Cuba','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_HAVANA

$fatpacked{"DateTime/TimeZone/America/Hermosillo.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_HERMOSILLO';
  package DateTime::TimeZone::America::Hermosillo;$DateTime::TimeZone::America::Hermosillo::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Hermosillo::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60620943600,DateTime::TimeZone::NEG_INFINITY,60620916968,-26632,0,'LMT',],[60620943600,60792616800,60620918400,60792591600,-25200,0,'MST',],[60792616800,60900876000,60792595200,60900854400,-21600,0,'CST',],[60900876000,60915391200,60900850800,60915366000,-25200,0,'MST',],[60915391200,60928524000,60915369600,60928502400,-21600,0,'CST',],[60928524000,60944338800,60928498800,60944313600,-25200,0,'MST',],[60944338800,61261855200,60944317200,61261833600,-21600,0,'CST',],[61261855200,61474143600,61261830000,61474118400,-25200,0,'MST',],[61474143600,62135712000,61474114800,62135683200,-28800,0,'PST',],[62135712000,62964550800,62135686800,62964525600,-25200,0,'MST',],[62964550800,62982086400,62964529200,62982064800,-21600,1,'MDT',],[62982086400,62996000400,62982061200,62995975200,-25200,0,'MST',],[62996000400,63013536000,62995978800,63013514400,-21600,1,'MDT',],[63013536000,63027450000,63013510800,63027424800,-25200,0,'MST',],[63027450000,63044985600,63027428400,63044964000,-21600,1,'MDT',],[63044985600,63050857200,63044960400,63050832000,-25200,0,'MST',],[63050857200,DateTime::TimeZone::INFINITY,63050832000,DateTime::TimeZone::INFINITY,-25200,0,'MST',],];sub olson_version {'2016a'}sub has_dst_changes {3}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_HERMOSILLO

$fatpacked{"DateTime/TimeZone/America/Indiana/Indianapolis.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_INDIANA_INDIANAPOLIS';
  package DateTime::TimeZone::America::Indiana::Indianapolis;$DateTime::TimeZone::America::Indiana::Indianapolis::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Indiana::Indianapolis::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59418036000,DateTime::TimeZone::NEG_INFINITY,59418015322,-20678,0,'LMT',],[59418036000,60502406400,59418014400,60502384800,-21600,0,'CST',],[60502406400,60520546800,60502388400,60520528800,-18000,1,'CDT',],[60520546800,60533856000,60520525200,60533834400,-21600,0,'CST',],[60533856000,60551996400,60533838000,60551978400,-18000,1,'CDT',],[60551996400,60557781600,60551974800,60557760000,-21600,0,'CST',],[60557781600,61235424000,60557760000,61235402400,-21600,0,'CST',],[61235424000,61243887600,61235406000,61243869600,-18000,1,'CDT',],[61243887600,61252092000,61243866000,61252070400,-21600,0,'CST',],[61252092000,61255468800,61252070400,61255447200,-21600,0,'CST',],[61255468800,61366287600,61255450800,61366269600,-18000,1,'CWT',],[61366287600,61370290800,61366269600,61370272800,-18000,1,'CPT',],[61370290800,61378322400,61370269200,61378300800,-21600,0,'CST',],[61378322400,61388438400,61378300800,61388416800,-21600,0,'CST',],[61388438400,61401740400,61388420400,61401722400,-18000,1,'CDT',],[61401740400,61419888000,61401718800,61419866400,-21600,0,'CST',],[61419888000,61433190000,61419870000,61433172000,-18000,1,'CDT',],[61433190000,61451337600,61433168400,61451316000,-21600,0,'CST',],[61451337600,61464639600,61451319600,61464621600,-18000,1,'CDT',],[61464639600,61482787200,61464618000,61482765600,-21600,0,'CST',],[61482787200,61496089200,61482769200,61496071200,-18000,1,'CDT',],[61496089200,61514841600,61496067600,61514820000,-21600,0,'CST',],[61514841600,61527538800,61514823600,61527520800,-18000,1,'CDT',],[61527538800,61546291200,61527517200,61546269600,-21600,0,'CST',],[61546291200,61559593200,61546273200,61559575200,-18000,1,'CDT',],[61559593200,61577740800,61559571600,61577719200,-21600,0,'CST',],[61577740800,61591042800,61577722800,61591024800,-18000,1,'CDT',],[61591042800,61609190400,61591021200,61609168800,-21600,0,'CST',],[61609190400,61622492400,61609172400,61622474400,-18000,1,'CDT',],[61622492400,61640640000,61622470800,61640618400,-21600,0,'CST',],[61640640000,61653942000,61640622000,61653924000,-18000,1,'CDT',],[61653942000,61672089600,61653920400,61672068000,-21600,0,'CST',],[61672089600,61748895600,61672071600,61748877600,-18000,0,'EST',],[61748895600,61767043200,61748874000,61767021600,-21600,0,'CST',],[61767043200,62104165200,61767025200,62104147200,-18000,0,'EST',],[62104165200,62114194800,62104147200,62114176800,-18000,0,'EST',],[62114194800,62129916000,62114180400,62129901600,-14400,1,'EDT',],[62129916000,62145644400,62129898000,62145626400,-18000,0,'EST',],[62145644400,62161365600,62145630000,62161351200,-14400,1,'EDT',],[62161365600,62167237200,62161347600,62167219200,-18000,0,'EST',],[62167237200,63271774800,62167219200,63271756800,-18000,0,'EST',],[63271774800,63279644400,63271756800,63279626400,-18000,0,'EST',],[63279644400,63297784800,63279630000,63297770400,-14400,1,'EDT',],[63297784800,63309279600,63297766800,63309261600,-18000,0,'EST',],[63309279600,63329839200,63309265200,63329824800,-14400,1,'EDT',],[63329839200,63340729200,63329821200,63340711200,-18000,0,'EST',],[63340729200,63361288800,63340714800,63361274400,-14400,1,'EDT',],[63361288800,63372178800,63361270800,63372160800,-18000,0,'EST',],[63372178800,63392738400,63372164400,63392724000,-14400,1,'EDT',],[63392738400,63404233200,63392720400,63404215200,-18000,0,'EST',],[63404233200,63424792800,63404218800,63424778400,-14400,1,'EDT',],[63424792800,63435682800,63424774800,63435664800,-18000,0,'EST',],[63435682800,63456242400,63435668400,63456228000,-14400,1,'EDT',],[63456242400,63467132400,63456224400,63467114400,-18000,0,'EST',],[63467132400,63487692000,63467118000,63487677600,-14400,1,'EDT',],[63487692000,63498582000,63487674000,63498564000,-18000,0,'EST',],[63498582000,63519141600,63498567600,63519127200,-14400,1,'EDT',],[63519141600,63530031600,63519123600,63530013600,-18000,0,'EST',],[63530031600,63550591200,63530017200,63550576800,-14400,1,'EDT',],[63550591200,63561481200,63550573200,63561463200,-18000,0,'EST',],[63561481200,63582040800,63561466800,63582026400,-14400,1,'EDT',],[63582040800,63593535600,63582022800,63593517600,-18000,0,'EST',],[63593535600,63614095200,63593521200,63614080800,-14400,1,'EDT',],[63614095200,63624985200,63614077200,63624967200,-18000,0,'EST',],[63624985200,63645544800,63624970800,63645530400,-14400,1,'EDT',],[63645544800,63656434800,63645526800,63656416800,-18000,0,'EST',],[63656434800,63676994400,63656420400,63676980000,-14400,1,'EDT',],[63676994400,63687884400,63676976400,63687866400,-18000,0,'EST',],[63687884400,63708444000,63687870000,63708429600,-14400,1,'EDT',],[63708444000,63719334000,63708426000,63719316000,-18000,0,'EST',],[63719334000,63739893600,63719319600,63739879200,-14400,1,'EDT',],[63739893600,63751388400,63739875600,63751370400,-18000,0,'EST',],[63751388400,63771948000,63751374000,63771933600,-14400,1,'EDT',],[63771948000,63782838000,63771930000,63782820000,-18000,0,'EST',],[63782838000,63803397600,63782823600,63803383200,-14400,1,'EDT',],[63803397600,63814287600,63803379600,63814269600,-18000,0,'EST',],[63814287600,63834847200,63814273200,63834832800,-14400,1,'EDT',],[63834847200,63845737200,63834829200,63845719200,-18000,0,'EST',],[63845737200,63866296800,63845722800,63866282400,-14400,1,'EDT',],[63866296800,63877186800,63866278800,63877168800,-18000,0,'EST',],[63877186800,63897746400,63877172400,63897732000,-14400,1,'EDT',],[63897746400,63908636400,63897728400,63908618400,-18000,0,'EST',],[63908636400,63929196000,63908622000,63929181600,-14400,1,'EDT',],[63929196000,63940690800,63929178000,63940672800,-18000,0,'EST',],[63940690800,63961250400,63940676400,63961236000,-14400,1,'EDT',],];sub olson_version {'2016a'}sub has_dst_changes {38}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-18000}my$last_observance=bless({'format'=>'E%sT','gmtoff'=>'-5:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>732312,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>732312,'utc_rd_secs'=>0,'utc_year'=>2007 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-18000,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>732312,'local_rd_secs'=>18000,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>732312,'utc_rd_secs'=>18000,'utc_year'=>2007 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_INDIANA_INDIANAPOLIS

$fatpacked{"DateTime/TimeZone/America/Indiana/Knox.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_INDIANA_KNOX';
  package DateTime::TimeZone::America::Indiana::Knox;$DateTime::TimeZone::America::Indiana::Knox::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Indiana::Knox::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59418036000,DateTime::TimeZone::NEG_INFINITY,59418015210,-20790,0,'LMT',],[59418036000,60502406400,59418014400,60502384800,-21600,0,'CST',],[60502406400,60520546800,60502388400,60520528800,-18000,1,'CDT',],[60520546800,60533856000,60520525200,60533834400,-21600,0,'CST',],[60533856000,60551996400,60533838000,60551978400,-18000,1,'CDT',],[60551996400,61255468800,60551974800,61255447200,-21600,0,'CST',],[61255468800,61366287600,61255450800,61366269600,-18000,1,'CWT',],[61366287600,61370290800,61366269600,61370272800,-18000,1,'CPT',],[61370290800,61409858400,61370269200,61409836800,-21600,0,'CST',],[61409858400,61419888000,61409836800,61419866400,-21600,0,'CST',],[61419888000,61433190000,61419870000,61433172000,-18000,1,'CDT',],[61433190000,61451337600,61433168400,61451316000,-21600,0,'CST',],[61451337600,61464639600,61451319600,61464621600,-18000,1,'CDT',],[61464639600,61482787200,61464618000,61482765600,-21600,0,'CST',],[61482787200,61496089200,61482769200,61496071200,-18000,1,'CDT',],[61496089200,61514841600,61496067600,61514820000,-21600,0,'CST',],[61514841600,61527538800,61514823600,61527520800,-18000,1,'CDT',],[61527538800,61546291200,61527517200,61546269600,-21600,0,'CST',],[61546291200,61559593200,61546273200,61559575200,-18000,1,'CDT',],[61559593200,61577740800,61559571600,61577719200,-21600,0,'CST',],[61577740800,61591042800,61577722800,61591024800,-18000,1,'CDT',],[61591042800,61609190400,61591021200,61609168800,-21600,0,'CST',],[61609190400,61622492400,61609172400,61622474400,-18000,1,'CDT',],[61622492400,61640640000,61622470800,61640618400,-21600,0,'CST',],[61640640000,61653942000,61640622000,61653924000,-18000,1,'CDT',],[61653942000,61672089600,61653920400,61672068000,-21600,0,'CST',],[61672089600,61688415600,61672071600,61688397600,-18000,1,'CDT',],[61688415600,61704144000,61688394000,61704122400,-21600,0,'CST',],[61704144000,61719865200,61704126000,61719847200,-18000,1,'CDT',],[61719865200,61735593600,61719843600,61735572000,-21600,0,'CST',],[61735593600,61748895600,61735575600,61748877600,-18000,1,'CDT',],[61748895600,61767043200,61748874000,61767021600,-21600,0,'CST',],[61767043200,61780345200,61767025200,61780327200,-18000,1,'CDT',],[61780345200,61798492800,61780323600,61798471200,-21600,0,'CST',],[61798492800,61814214000,61798474800,61814196000,-18000,1,'CDT',],[61814214000,61829942400,61814192400,61829920800,-21600,0,'CST',],[61829942400,61846268400,61829924400,61846250400,-18000,1,'CDT',],[61846268400,61861996800,61846246800,61861975200,-21600,0,'CST',],[61861996800,61877718000,61861978800,61877700000,-18000,1,'CDT',],[61877718000,61893446400,61877696400,61893424800,-21600,0,'CST',],[61893446400,61940617200,61893428400,61940599200,-18000,0,'EST',],[61940617200,62051299200,61940595600,62051277600,-21600,0,'CST',],[62051299200,62067020400,62051281200,62067002400,-18000,1,'CDT',],[62067020400,62082748800,62066998800,62082727200,-21600,0,'CST',],[62082748800,62098470000,62082730800,62098452000,-18000,1,'CDT',],[62098470000,62114198400,62098448400,62114176800,-21600,0,'CST',],[62114198400,62129919600,62114180400,62129901600,-18000,1,'CDT',],[62129919600,62145648000,62129898000,62145626400,-21600,0,'CST',],[62145648000,62161369200,62145630000,62161351200,-18000,1,'CDT',],[62161369200,62177097600,62161347600,62177076000,-21600,0,'CST',],[62177097600,62193423600,62177079600,62193405600,-18000,1,'CDT',],[62193423600,62209152000,62193402000,62209130400,-21600,0,'CST',],[62209152000,62224873200,62209134000,62224855200,-18000,1,'CDT',],[62224873200,62240601600,62224851600,62240580000,-21600,0,'CST',],[62240601600,62256322800,62240583600,62256304800,-18000,1,'CDT',],[62256322800,62262374400,62256301200,62262352800,-21600,0,'CST',],[62262374400,62287772400,62262356400,62287754400,-18000,1,'CDT',],[62287772400,62298057600,62287750800,62298036000,-21600,0,'CST',],[62298057600,62319222000,62298039600,62319204000,-18000,1,'CDT',],[62319222000,62334950400,62319200400,62334928800,-21600,0,'CST',],[62334950400,62351276400,62334932400,62351258400,-18000,1,'CDT',],[62351276400,62366400000,62351254800,62366378400,-21600,0,'CST',],[62366400000,62382726000,62366382000,62382708000,-18000,1,'CDT',],[62382726000,62398454400,62382704400,62398432800,-21600,0,'CST',],[62398454400,62414175600,62398436400,62414157600,-18000,1,'CDT',],[62414175600,62429904000,62414154000,62429882400,-21600,0,'CST',],[62429904000,62445625200,62429886000,62445607200,-18000,1,'CDT',],[62445625200,62461353600,62445603600,62461332000,-21600,0,'CST',],[62461353600,62477074800,62461335600,62477056800,-18000,1,'CDT',],[62477074800,62492803200,62477053200,62492781600,-21600,0,'CST',],[62492803200,62508524400,62492785200,62508506400,-18000,1,'CDT',],[62508524400,62524252800,62508502800,62524231200,-21600,0,'CST',],[62524252800,62540578800,62524234800,62540560800,-18000,1,'CDT',],[62540578800,62555702400,62540557200,62555680800,-21600,0,'CST',],[62555702400,62572028400,62555684400,62572010400,-18000,1,'CDT',],[62572028400,62587756800,62572006800,62587735200,-21600,0,'CST',],[62587756800,62603478000,62587738800,62603460000,-18000,1,'CDT',],[62603478000,62619206400,62603456400,62619184800,-21600,0,'CST',],[62619206400,62634927600,62619188400,62634909600,-18000,1,'CDT',],[62634927600,62650656000,62634906000,62650634400,-21600,0,'CST',],[62650656000,62666377200,62650638000,62666359200,-18000,1,'CDT',],[62666377200,62680291200,62666355600,62680269600,-21600,0,'CST',],[62680291200,62697826800,62680273200,62697808800,-18000,1,'CDT',],[62697826800,62711740800,62697805200,62711719200,-21600,0,'CST',],[62711740800,62729881200,62711722800,62729863200,-18000,1,'CDT',],[62729881200,62743190400,62729859600,62743168800,-21600,0,'CST',],[62743190400,62761330800,62743172400,62761312800,-18000,1,'CDT',],[62761330800,62774640000,62761309200,62774618400,-21600,0,'CST',],[62774640000,62792780400,62774622000,62792762400,-18000,1,'CDT',],[62792780400,62806694400,62792758800,62806672800,-21600,0,'CST',],[62806694400,62824230000,62806676400,62824212000,-18000,1,'CDT',],[62824230000,63279644400,62824212000,63279626400,-18000,0,'EST',],[63279644400,63297788400,63279626400,63297770400,-18000,1,'CDT',],[63297788400,63309283200,63297766800,63309261600,-21600,0,'CST',],[63309283200,63329842800,63309265200,63329824800,-18000,1,'CDT',],[63329842800,63340732800,63329821200,63340711200,-21600,0,'CST',],[63340732800,63361292400,63340714800,63361274400,-18000,1,'CDT',],[63361292400,63372182400,63361270800,63372160800,-21600,0,'CST',],[63372182400,63392742000,63372164400,63392724000,-18000,1,'CDT',],[63392742000,63404236800,63392720400,63404215200,-21600,0,'CST',],[63404236800,63424796400,63404218800,63424778400,-18000,1,'CDT',],[63424796400,63435686400,63424774800,63435664800,-21600,0,'CST',],[63435686400,63456246000,63435668400,63456228000,-18000,1,'CDT',],[63456246000,63467136000,63456224400,63467114400,-21600,0,'CST',],[63467136000,63487695600,63467118000,63487677600,-18000,1,'CDT',],[63487695600,63498585600,63487674000,63498564000,-21600,0,'CST',],[63498585600,63519145200,63498567600,63519127200,-18000,1,'CDT',],[63519145200,63530035200,63519123600,63530013600,-21600,0,'CST',],[63530035200,63550594800,63530017200,63550576800,-18000,1,'CDT',],[63550594800,63561484800,63550573200,63561463200,-21600,0,'CST',],[63561484800,63582044400,63561466800,63582026400,-18000,1,'CDT',],[63582044400,63593539200,63582022800,63593517600,-21600,0,'CST',],[63593539200,63614098800,63593521200,63614080800,-18000,1,'CDT',],[63614098800,63624988800,63614077200,63624967200,-21600,0,'CST',],[63624988800,63645548400,63624970800,63645530400,-18000,1,'CDT',],[63645548400,63656438400,63645526800,63656416800,-21600,0,'CST',],[63656438400,63676998000,63656420400,63676980000,-18000,1,'CDT',],[63676998000,63687888000,63676976400,63687866400,-21600,0,'CST',],[63687888000,63708447600,63687870000,63708429600,-18000,1,'CDT',],[63708447600,63719337600,63708426000,63719316000,-21600,0,'CST',],[63719337600,63739897200,63719319600,63739879200,-18000,1,'CDT',],[63739897200,63751392000,63739875600,63751370400,-21600,0,'CST',],[63751392000,63771951600,63751374000,63771933600,-18000,1,'CDT',],[63771951600,63782841600,63771930000,63782820000,-21600,0,'CST',],[63782841600,63803401200,63782823600,63803383200,-18000,1,'CDT',],[63803401200,63814291200,63803379600,63814269600,-21600,0,'CST',],[63814291200,63834850800,63814273200,63834832800,-18000,1,'CDT',],[63834850800,63845740800,63834829200,63845719200,-21600,0,'CST',],[63845740800,63866300400,63845722800,63866282400,-18000,1,'CDT',],[63866300400,63877190400,63866278800,63877168800,-21600,0,'CST',],[63877190400,63897750000,63877172400,63897732000,-18000,1,'CDT',],[63897750000,63908640000,63897728400,63908618400,-21600,0,'CST',],[63908640000,63929199600,63908622000,63929181600,-18000,1,'CDT',],[63929199600,63940694400,63929178000,63940672800,-21600,0,'CST',],[63940694400,63961254000,63940676400,63961236000,-18000,1,'CDT',],];sub olson_version {'2016a'}sub has_dst_changes {66}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-21600}my$last_observance=bless({'format'=>'C%sT','gmtoff'=>'-6:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>732403,'local_rd_secs'=>7200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>732403,'utc_rd_secs'=>7200,'utc_year'=>2007 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-21600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>732403,'local_rd_secs'=>25200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>732403,'utc_rd_secs'=>25200,'utc_year'=>2007 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_INDIANA_KNOX

$fatpacked{"DateTime/TimeZone/America/Indiana/Marengo.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_INDIANA_MARENGO';
  package DateTime::TimeZone::America::Indiana::Marengo;$DateTime::TimeZone::America::Indiana::Marengo::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Indiana::Marengo::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59418036000,DateTime::TimeZone::NEG_INFINITY,59418015277,-20723,0,'LMT',],[59418036000,60502406400,59418014400,60502384800,-21600,0,'CST',],[60502406400,60520546800,60502388400,60520528800,-18000,1,'CDT',],[60520546800,60533856000,60520525200,60533834400,-21600,0,'CST',],[60533856000,60551996400,60533838000,60551978400,-18000,1,'CDT',],[60551996400,61255468800,60551974800,61255447200,-21600,0,'CST',],[61255468800,61366287600,61255450800,61366269600,-18000,1,'CWT',],[61366287600,61370290800,61366269600,61370272800,-18000,1,'CPT',],[61370290800,61536088800,61370269200,61536067200,-21600,0,'CST',],[61536088800,61546291200,61536067200,61546269600,-21600,0,'CST',],[61546291200,61559593200,61546273200,61559575200,-18000,1,'CDT',],[61559593200,61640640000,61559571600,61640618400,-21600,0,'CST',],[61640640000,61653942000,61640622000,61653924000,-18000,1,'CDT',],[61653942000,61672089600,61653920400,61672068000,-21600,0,'CST',],[61672089600,61685391600,61672071600,61685373600,-18000,1,'CDT',],[61685391600,61704144000,61685370000,61704122400,-21600,0,'CST',],[61704144000,61717446000,61704126000,61717428000,-18000,1,'CDT',],[61717446000,61735593600,61717424400,61735572000,-21600,0,'CST',],[61735593600,61748895600,61735575600,61748877600,-18000,1,'CDT',],[61748895600,61767043200,61748874000,61767021600,-21600,0,'CST',],[61767043200,61780345200,61767025200,61780327200,-18000,1,'CDT',],[61780345200,61798492800,61780323600,61798471200,-21600,0,'CST',],[61798492800,61811794800,61798474800,61811776800,-18000,1,'CDT',],[61811794800,61829942400,61811773200,61829920800,-21600,0,'CST',],[61829942400,61843244400,61829924400,61843226400,-18000,1,'CDT',],[61843244400,61861996800,61843222800,61861975200,-21600,0,'CST',],[61861996800,62104165200,61861978800,62104147200,-18000,0,'EST',],[62104165200,62114194800,62104147200,62114176800,-18000,0,'EST',],[62114194800,62129916000,62114180400,62129901600,-14400,1,'EDT',],[62129916000,62145644400,62129898000,62145626400,-18000,0,'EST',],[62145644400,62161365600,62145630000,62161351200,-14400,1,'EDT',],[62161365600,62177094000,62161347600,62177076000,-18000,0,'EST',],[62177094000,62193420000,62177079600,62193405600,-14400,1,'EDT',],[62193420000,62209148400,62193402000,62209130400,-18000,0,'EST',],[62209148400,62224869600,62209134000,62224855200,-14400,1,'EDT',],[62224869600,62240598000,62224851600,62240580000,-18000,0,'EST',],[62240598000,62256319200,62240583600,62256304800,-14400,1,'EDT',],[62256319200,62262370800,62256301200,62262352800,-18000,0,'EST',],[62262370800,62287772400,62262352800,62287754400,-18000,1,'CDT',],[62287772400,62298054000,62287754400,62298036000,-18000,0,'EST',],[62298054000,62319218400,62298039600,62319204000,-14400,1,'EDT',],[62319218400,62325003600,62319200400,62324985600,-18000,0,'EST',],[62325003600,63271774800,62324985600,63271756800,-18000,0,'EST',],[63271774800,63279644400,63271756800,63279626400,-18000,0,'EST',],[63279644400,63297784800,63279630000,63297770400,-14400,1,'EDT',],[63297784800,63309279600,63297766800,63309261600,-18000,0,'EST',],[63309279600,63329839200,63309265200,63329824800,-14400,1,'EDT',],[63329839200,63340729200,63329821200,63340711200,-18000,0,'EST',],[63340729200,63361288800,63340714800,63361274400,-14400,1,'EDT',],[63361288800,63372178800,63361270800,63372160800,-18000,0,'EST',],[63372178800,63392738400,63372164400,63392724000,-14400,1,'EDT',],[63392738400,63404233200,63392720400,63404215200,-18000,0,'EST',],[63404233200,63424792800,63404218800,63424778400,-14400,1,'EDT',],[63424792800,63435682800,63424774800,63435664800,-18000,0,'EST',],[63435682800,63456242400,63435668400,63456228000,-14400,1,'EDT',],[63456242400,63467132400,63456224400,63467114400,-18000,0,'EST',],[63467132400,63487692000,63467118000,63487677600,-14400,1,'EDT',],[63487692000,63498582000,63487674000,63498564000,-18000,0,'EST',],[63498582000,63519141600,63498567600,63519127200,-14400,1,'EDT',],[63519141600,63530031600,63519123600,63530013600,-18000,0,'EST',],[63530031600,63550591200,63530017200,63550576800,-14400,1,'EDT',],[63550591200,63561481200,63550573200,63561463200,-18000,0,'EST',],[63561481200,63582040800,63561466800,63582026400,-14400,1,'EDT',],[63582040800,63593535600,63582022800,63593517600,-18000,0,'EST',],[63593535600,63614095200,63593521200,63614080800,-14400,1,'EDT',],[63614095200,63624985200,63614077200,63624967200,-18000,0,'EST',],[63624985200,63645544800,63624970800,63645530400,-14400,1,'EDT',],[63645544800,63656434800,63645526800,63656416800,-18000,0,'EST',],[63656434800,63676994400,63656420400,63676980000,-14400,1,'EDT',],[63676994400,63687884400,63676976400,63687866400,-18000,0,'EST',],[63687884400,63708444000,63687870000,63708429600,-14400,1,'EDT',],[63708444000,63719334000,63708426000,63719316000,-18000,0,'EST',],[63719334000,63739893600,63719319600,63739879200,-14400,1,'EDT',],[63739893600,63751388400,63739875600,63751370400,-18000,0,'EST',],[63751388400,63771948000,63751374000,63771933600,-14400,1,'EDT',],[63771948000,63782838000,63771930000,63782820000,-18000,0,'EST',],[63782838000,63803397600,63782823600,63803383200,-14400,1,'EDT',],[63803397600,63814287600,63803379600,63814269600,-18000,0,'EST',],[63814287600,63834847200,63814273200,63834832800,-14400,1,'EDT',],[63834847200,63845737200,63834829200,63845719200,-18000,0,'EST',],[63845737200,63866296800,63845722800,63866282400,-14400,1,'EDT',],[63866296800,63877186800,63866278800,63877168800,-18000,0,'EST',],[63877186800,63897746400,63877172400,63897732000,-14400,1,'EDT',],[63897746400,63908636400,63897728400,63908618400,-18000,0,'EST',],[63908636400,63929196000,63908622000,63929181600,-14400,1,'EDT',],[63929196000,63940690800,63929178000,63940672800,-18000,0,'EST',],[63940690800,63961250400,63940676400,63961236000,-14400,1,'EDT',],];sub olson_version {'2016a'}sub has_dst_changes {41}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-18000}my$last_observance=bless({'format'=>'E%sT','gmtoff'=>'-5:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>732312,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>732312,'utc_rd_secs'=>0,'utc_year'=>2007 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-18000,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>732312,'local_rd_secs'=>18000,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>732312,'utc_rd_secs'=>18000,'utc_year'=>2007 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_INDIANA_MARENGO

$fatpacked{"DateTime/TimeZone/America/Indiana/Petersburg.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_INDIANA_PETERSBURG';
  package DateTime::TimeZone::America::Indiana::Petersburg;$DateTime::TimeZone::America::Indiana::Petersburg::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Indiana::Petersburg::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59418036000,DateTime::TimeZone::NEG_INFINITY,59418015053,-20947,0,'LMT',],[59418036000,60502406400,59418014400,60502384800,-21600,0,'CST',],[60502406400,60520546800,60502388400,60520528800,-18000,1,'CDT',],[60520546800,60533856000,60520525200,60533834400,-21600,0,'CST',],[60533856000,60551996400,60533838000,60551978400,-18000,1,'CDT',],[60551996400,61255468800,60551974800,61255447200,-21600,0,'CST',],[61255468800,61366287600,61255450800,61366269600,-18000,1,'CWT',],[61366287600,61370290800,61366269600,61370272800,-18000,1,'CPT',],[61370290800,61662319200,61370269200,61662297600,-21600,0,'CST',],[61662319200,61672687200,61662297600,61672665600,-21600,0,'CST',],[61672687200,61685391600,61672669200,61685373600,-18000,1,'CDT',],[61685391600,61704144000,61685370000,61704122400,-21600,0,'CST',],[61704144000,61717446000,61704126000,61717428000,-18000,1,'CDT',],[61717446000,61735593600,61717424400,61735572000,-21600,0,'CST',],[61735593600,61748895600,61735575600,61748877600,-18000,1,'CDT',],[61748895600,61767043200,61748874000,61767021600,-21600,0,'CST',],[61767043200,61780345200,61767025200,61780327200,-18000,1,'CDT',],[61780345200,61798492800,61780323600,61798471200,-21600,0,'CST',],[61798492800,61811794800,61798474800,61811776800,-18000,1,'CDT',],[61811794800,61829942400,61811773200,61829920800,-21600,0,'CST',],[61829942400,61843244400,61829924400,61843226400,-18000,1,'CDT',],[61843244400,61861996800,61843222800,61861975200,-21600,0,'CST',],[61861996800,61877718000,61861978800,61877700000,-18000,1,'CDT',],[61877718000,61893446400,61877696400,61893424800,-21600,0,'CST',],[61893446400,61909167600,61893428400,61909149600,-18000,1,'CDT',],[61909167600,61924896000,61909146000,61924874400,-21600,0,'CST',],[61924896000,61940617200,61924878000,61940599200,-18000,1,'CDT',],[61940617200,61956345600,61940595600,61956324000,-21600,0,'CST',],[61956345600,61972066800,61956327600,61972048800,-18000,1,'CDT',],[61972066800,61987795200,61972045200,61987773600,-21600,0,'CST',],[61987795200,62035570800,61987777200,62035552800,-18000,0,'EST',],[62035570800,62051299200,62035549200,62051277600,-21600,0,'CST',],[62051299200,62067020400,62051281200,62067002400,-18000,1,'CDT',],[62067020400,62082748800,62066998800,62082727200,-21600,0,'CST',],[62082748800,62098470000,62082730800,62098452000,-18000,1,'CDT',],[62098470000,62114198400,62098448400,62114176800,-21600,0,'CST',],[62114198400,62129919600,62114180400,62129901600,-18000,1,'CDT',],[62129919600,62145648000,62129898000,62145626400,-21600,0,'CST',],[62145648000,62161369200,62145630000,62161351200,-18000,1,'CDT',],[62161369200,62177097600,62161347600,62177076000,-21600,0,'CST',],[62177097600,62193423600,62177079600,62193405600,-18000,1,'CDT',],[62193423600,62209152000,62193402000,62209130400,-21600,0,'CST',],[62209152000,62224873200,62209134000,62224855200,-18000,1,'CDT',],[62224873200,62240601600,62224851600,62240580000,-21600,0,'CST',],[62240601600,62256322800,62240583600,62256304800,-18000,1,'CDT',],[62256322800,62262374400,62256301200,62262352800,-21600,0,'CST',],[62262374400,62287772400,62262356400,62287754400,-18000,1,'CDT',],[62287772400,62298057600,62287750800,62298036000,-21600,0,'CST',],[62298057600,62319222000,62298039600,62319204000,-18000,1,'CDT',],[62319222000,62334950400,62319200400,62334928800,-21600,0,'CST',],[62334950400,62351276400,62334932400,62351258400,-18000,1,'CDT',],[62351276400,62366400000,62351254800,62366378400,-21600,0,'CST',],[62366400000,62382726000,62366382000,62382708000,-18000,1,'CDT',],[62382726000,63279644400,62382708000,63279626400,-18000,0,'EST',],[63279644400,63297788400,63279626400,63297770400,-18000,1,'CDT',],[63297788400,63309283200,63297766800,63309261600,-21600,0,'CST',],[63309283200,63329842800,63309265200,63329824800,-18000,1,'CDT',],[63329842800,63340729200,63329824800,63340711200,-18000,0,'EST',],[63340729200,63361288800,63340714800,63361274400,-14400,1,'EDT',],[63361288800,63372178800,63361270800,63372160800,-18000,0,'EST',],[63372178800,63392738400,63372164400,63392724000,-14400,1,'EDT',],[63392738400,63404233200,63392720400,63404215200,-18000,0,'EST',],[63404233200,63424792800,63404218800,63424778400,-14400,1,'EDT',],[63424792800,63435682800,63424774800,63435664800,-18000,0,'EST',],[63435682800,63456242400,63435668400,63456228000,-14400,1,'EDT',],[63456242400,63467132400,63456224400,63467114400,-18000,0,'EST',],[63467132400,63487692000,63467118000,63487677600,-14400,1,'EDT',],[63487692000,63498582000,63487674000,63498564000,-18000,0,'EST',],[63498582000,63519141600,63498567600,63519127200,-14400,1,'EDT',],[63519141600,63530031600,63519123600,63530013600,-18000,0,'EST',],[63530031600,63550591200,63530017200,63550576800,-14400,1,'EDT',],[63550591200,63561481200,63550573200,63561463200,-18000,0,'EST',],[63561481200,63582040800,63561466800,63582026400,-14400,1,'EDT',],[63582040800,63593535600,63582022800,63593517600,-18000,0,'EST',],[63593535600,63614095200,63593521200,63614080800,-14400,1,'EDT',],[63614095200,63624985200,63614077200,63624967200,-18000,0,'EST',],[63624985200,63645544800,63624970800,63645530400,-14400,1,'EDT',],[63645544800,63656434800,63645526800,63656416800,-18000,0,'EST',],[63656434800,63676994400,63656420400,63676980000,-14400,1,'EDT',],[63676994400,63687884400,63676976400,63687866400,-18000,0,'EST',],[63687884400,63708444000,63687870000,63708429600,-14400,1,'EDT',],[63708444000,63719334000,63708426000,63719316000,-18000,0,'EST',],[63719334000,63739893600,63719319600,63739879200,-14400,1,'EDT',],[63739893600,63751388400,63739875600,63751370400,-18000,0,'EST',],[63751388400,63771948000,63751374000,63771933600,-14400,1,'EDT',],[63771948000,63782838000,63771930000,63782820000,-18000,0,'EST',],[63782838000,63803397600,63782823600,63803383200,-14400,1,'EDT',],[63803397600,63814287600,63803379600,63814269600,-18000,0,'EST',],[63814287600,63834847200,63814273200,63834832800,-14400,1,'EDT',],[63834847200,63845737200,63834829200,63845719200,-18000,0,'EST',],[63845737200,63866296800,63845722800,63866282400,-14400,1,'EDT',],[63866296800,63877186800,63866278800,63877168800,-18000,0,'EST',],[63877186800,63897746400,63877172400,63897732000,-14400,1,'EDT',],[63897746400,63908636400,63897728400,63908618400,-18000,0,'EST',],[63908636400,63929196000,63908622000,63929181600,-14400,1,'EDT',],[63929196000,63940690800,63929178000,63940672800,-18000,0,'EST',],[63940690800,63961250400,63940676400,63961236000,-14400,1,'EDT',],];sub olson_version {'2016a'}sub has_dst_changes {47}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-18000}my$last_observance=bless({'format'=>'E%sT','gmtoff'=>'-5:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>732984,'local_rd_secs'=>7200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>732984,'utc_rd_secs'=>7200,'utc_year'=>2008 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-18000,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>732984,'local_rd_secs'=>25200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>732984,'utc_rd_secs'=>25200,'utc_year'=>2008 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_INDIANA_PETERSBURG

$fatpacked{"DateTime/TimeZone/America/Indiana/Tell_City.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_INDIANA_TELL_CITY';
  package DateTime::TimeZone::America::Indiana::Tell_City;$DateTime::TimeZone::America::Indiana::Tell_City::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Indiana::Tell_City::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59418036000,DateTime::TimeZone::NEG_INFINITY,59418015177,-20823,0,'LMT',],[59418036000,60502406400,59418014400,60502384800,-21600,0,'CST',],[60502406400,60520546800,60502388400,60520528800,-18000,1,'CDT',],[60520546800,60533856000,60520525200,60533834400,-21600,0,'CST',],[60533856000,60551996400,60533838000,60551978400,-18000,1,'CDT',],[60551996400,61255468800,60551974800,61255447200,-21600,0,'CST',],[61255468800,61366287600,61255450800,61366269600,-18000,1,'CWT',],[61366287600,61370290800,61366269600,61370272800,-18000,1,'CPT',],[61370290800,61378322400,61370269200,61378300800,-21600,0,'CST',],[61378322400,61388438400,61378300800,61388416800,-21600,0,'CST',],[61388438400,61401740400,61388420400,61401722400,-18000,1,'CDT',],[61401740400,61609190400,61401718800,61609168800,-21600,0,'CST',],[61609190400,61622492400,61609172400,61622474400,-18000,1,'CDT',],[61622492400,61640640000,61622470800,61640618400,-21600,0,'CST',],[61640640000,61653942000,61640622000,61653924000,-18000,1,'CDT',],[61653942000,61672687200,61653920400,61672665600,-21600,0,'CST',],[61672687200,61685391600,61672669200,61685373600,-18000,1,'CDT',],[61685391600,61704144000,61685370000,61704122400,-21600,0,'CST',],[61704144000,61717446000,61704126000,61717428000,-18000,1,'CDT',],[61717446000,61735593600,61717424400,61735572000,-21600,0,'CST',],[61735593600,61748895600,61735575600,61748877600,-18000,1,'CDT',],[61748895600,61767043200,61748874000,61767021600,-21600,0,'CST',],[61767043200,61780345200,61767025200,61780327200,-18000,1,'CDT',],[61780345200,61798492800,61780323600,61798471200,-21600,0,'CST',],[61798492800,61811794800,61798474800,61811776800,-18000,1,'CDT',],[61811794800,61829942400,61811773200,61829920800,-21600,0,'CST',],[61829942400,61846268400,61829924400,61846250400,-18000,1,'CDT',],[61846268400,61861996800,61846246800,61861975200,-21600,0,'CST',],[61861996800,61874694000,61861978800,61874676000,-18000,1,'CDT',],[61874694000,61893446400,61874672400,61893424800,-21600,0,'CST',],[61893446400,61909167600,61893428400,61909149600,-18000,1,'CDT',],[61909167600,61924896000,61909146000,61924874400,-21600,0,'CST',],[61924896000,61940617200,61924878000,61940599200,-18000,1,'CDT',],[61940617200,61956345600,61940595600,61956324000,-21600,0,'CST',],[61956345600,62104165200,61956327600,62104147200,-18000,0,'EST',],[62104165200,62114194800,62104147200,62114176800,-18000,0,'EST',],[62114194800,62129916000,62114180400,62129901600,-14400,1,'EDT',],[62129916000,62145644400,62129898000,62145626400,-18000,0,'EST',],[62145644400,62161365600,62145630000,62161351200,-14400,1,'EDT',],[62161365600,62167237200,62161347600,62167219200,-18000,0,'EST',],[62167237200,63279644400,62167219200,63279626400,-18000,0,'EST',],[63279644400,63297788400,63279626400,63297770400,-18000,1,'CDT',],[63297788400,63309283200,63297766800,63309261600,-21600,0,'CST',],[63309283200,63329842800,63309265200,63329824800,-18000,1,'CDT',],[63329842800,63340732800,63329821200,63340711200,-21600,0,'CST',],[63340732800,63361292400,63340714800,63361274400,-18000,1,'CDT',],[63361292400,63372182400,63361270800,63372160800,-21600,0,'CST',],[63372182400,63392742000,63372164400,63392724000,-18000,1,'CDT',],[63392742000,63404236800,63392720400,63404215200,-21600,0,'CST',],[63404236800,63424796400,63404218800,63424778400,-18000,1,'CDT',],[63424796400,63435686400,63424774800,63435664800,-21600,0,'CST',],[63435686400,63456246000,63435668400,63456228000,-18000,1,'CDT',],[63456246000,63467136000,63456224400,63467114400,-21600,0,'CST',],[63467136000,63487695600,63467118000,63487677600,-18000,1,'CDT',],[63487695600,63498585600,63487674000,63498564000,-21600,0,'CST',],[63498585600,63519145200,63498567600,63519127200,-18000,1,'CDT',],[63519145200,63530035200,63519123600,63530013600,-21600,0,'CST',],[63530035200,63550594800,63530017200,63550576800,-18000,1,'CDT',],[63550594800,63561484800,63550573200,63561463200,-21600,0,'CST',],[63561484800,63582044400,63561466800,63582026400,-18000,1,'CDT',],[63582044400,63593539200,63582022800,63593517600,-21600,0,'CST',],[63593539200,63614098800,63593521200,63614080800,-18000,1,'CDT',],[63614098800,63624988800,63614077200,63624967200,-21600,0,'CST',],[63624988800,63645548400,63624970800,63645530400,-18000,1,'CDT',],[63645548400,63656438400,63645526800,63656416800,-21600,0,'CST',],[63656438400,63676998000,63656420400,63676980000,-18000,1,'CDT',],[63676998000,63687888000,63676976400,63687866400,-21600,0,'CST',],[63687888000,63708447600,63687870000,63708429600,-18000,1,'CDT',],[63708447600,63719337600,63708426000,63719316000,-21600,0,'CST',],[63719337600,63739897200,63719319600,63739879200,-18000,1,'CDT',],[63739897200,63751392000,63739875600,63751370400,-21600,0,'CST',],[63751392000,63771951600,63751374000,63771933600,-18000,1,'CDT',],[63771951600,63782841600,63771930000,63782820000,-21600,0,'CST',],[63782841600,63803401200,63782823600,63803383200,-18000,1,'CDT',],[63803401200,63814291200,63803379600,63814269600,-21600,0,'CST',],[63814291200,63834850800,63814273200,63834832800,-18000,1,'CDT',],[63834850800,63845740800,63834829200,63845719200,-21600,0,'CST',],[63845740800,63866300400,63845722800,63866282400,-18000,1,'CDT',],[63866300400,63877190400,63866278800,63877168800,-21600,0,'CST',],[63877190400,63897750000,63877172400,63897732000,-18000,1,'CDT',],[63897750000,63908640000,63897728400,63908618400,-21600,0,'CST',],[63908640000,63929199600,63908622000,63929181600,-18000,1,'CDT',],[63929199600,63940694400,63929178000,63940672800,-21600,0,'CST',],[63940694400,63961254000,63940676400,63961236000,-18000,1,'CDT',],];sub olson_version {'2016a'}sub has_dst_changes {40}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-21600}my$last_observance=bless({'format'=>'C%sT','gmtoff'=>'-6:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>732403,'local_rd_secs'=>7200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>732403,'utc_rd_secs'=>7200,'utc_year'=>2007 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-21600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>732403,'local_rd_secs'=>25200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>732403,'utc_rd_secs'=>25200,'utc_year'=>2007 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_INDIANA_TELL_CITY

$fatpacked{"DateTime/TimeZone/America/Indiana/Vevay.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_INDIANA_VEVAY';
  package DateTime::TimeZone::America::Indiana::Vevay;$DateTime::TimeZone::America::Indiana::Vevay::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Indiana::Vevay::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59418036000,DateTime::TimeZone::NEG_INFINITY,59418015584,-20416,0,'LMT',],[59418036000,60502406400,59418014400,60502384800,-21600,0,'CST',],[60502406400,60520546800,60502388400,60520528800,-18000,1,'CDT',],[60520546800,60533856000,60520525200,60533834400,-21600,0,'CST',],[60533856000,60551996400,60533838000,60551978400,-18000,1,'CDT',],[60551996400,61255468800,60551974800,61255447200,-21600,0,'CST',],[61255468800,61366287600,61255450800,61366269600,-18000,1,'CWT',],[61366287600,61370290800,61366269600,61370272800,-18000,1,'CPT',],[61370290800,61640640000,61370269200,61640618400,-21600,0,'CST',],[61640640000,62104165200,61640622000,62104147200,-18000,0,'EST',],[62104165200,62114194800,62104147200,62114176800,-18000,0,'EST',],[62114194800,62129916000,62114180400,62129901600,-14400,1,'EDT',],[62129916000,62145644400,62129898000,62145626400,-18000,0,'EST',],[62145644400,62161365600,62145630000,62161351200,-14400,1,'EDT',],[62161365600,62177094000,62161347600,62177076000,-18000,0,'EST',],[62177094000,62193420000,62177079600,62193405600,-14400,1,'EDT',],[62193420000,62209148400,62193402000,62209130400,-18000,0,'EST',],[62209148400,62224869600,62209134000,62224855200,-14400,1,'EDT',],[62224869600,62230395600,62224851600,62230377600,-18000,0,'EST',],[62230395600,63271774800,62230377600,63271756800,-18000,0,'EST',],[63271774800,63279644400,63271756800,63279626400,-18000,0,'EST',],[63279644400,63297784800,63279630000,63297770400,-14400,1,'EDT',],[63297784800,63309279600,63297766800,63309261600,-18000,0,'EST',],[63309279600,63329839200,63309265200,63329824800,-14400,1,'EDT',],[63329839200,63340729200,63329821200,63340711200,-18000,0,'EST',],[63340729200,63361288800,63340714800,63361274400,-14400,1,'EDT',],[63361288800,63372178800,63361270800,63372160800,-18000,0,'EST',],[63372178800,63392738400,63372164400,63392724000,-14400,1,'EDT',],[63392738400,63404233200,63392720400,63404215200,-18000,0,'EST',],[63404233200,63424792800,63404218800,63424778400,-14400,1,'EDT',],[63424792800,63435682800,63424774800,63435664800,-18000,0,'EST',],[63435682800,63456242400,63435668400,63456228000,-14400,1,'EDT',],[63456242400,63467132400,63456224400,63467114400,-18000,0,'EST',],[63467132400,63487692000,63467118000,63487677600,-14400,1,'EDT',],[63487692000,63498582000,63487674000,63498564000,-18000,0,'EST',],[63498582000,63519141600,63498567600,63519127200,-14400,1,'EDT',],[63519141600,63530031600,63519123600,63530013600,-18000,0,'EST',],[63530031600,63550591200,63530017200,63550576800,-14400,1,'EDT',],[63550591200,63561481200,63550573200,63561463200,-18000,0,'EST',],[63561481200,63582040800,63561466800,63582026400,-14400,1,'EDT',],[63582040800,63593535600,63582022800,63593517600,-18000,0,'EST',],[63593535600,63614095200,63593521200,63614080800,-14400,1,'EDT',],[63614095200,63624985200,63614077200,63624967200,-18000,0,'EST',],[63624985200,63645544800,63624970800,63645530400,-14400,1,'EDT',],[63645544800,63656434800,63645526800,63656416800,-18000,0,'EST',],[63656434800,63676994400,63656420400,63676980000,-14400,1,'EDT',],[63676994400,63687884400,63676976400,63687866400,-18000,0,'EST',],[63687884400,63708444000,63687870000,63708429600,-14400,1,'EDT',],[63708444000,63719334000,63708426000,63719316000,-18000,0,'EST',],[63719334000,63739893600,63719319600,63739879200,-14400,1,'EDT',],[63739893600,63751388400,63739875600,63751370400,-18000,0,'EST',],[63751388400,63771948000,63751374000,63771933600,-14400,1,'EDT',],[63771948000,63782838000,63771930000,63782820000,-18000,0,'EST',],[63782838000,63803397600,63782823600,63803383200,-14400,1,'EDT',],[63803397600,63814287600,63803379600,63814269600,-18000,0,'EST',],[63814287600,63834847200,63814273200,63834832800,-14400,1,'EDT',],[63834847200,63845737200,63834829200,63845719200,-18000,0,'EST',],[63845737200,63866296800,63845722800,63866282400,-14400,1,'EDT',],[63866296800,63877186800,63866278800,63877168800,-18000,0,'EST',],[63877186800,63897746400,63877172400,63897732000,-14400,1,'EDT',],[63897746400,63908636400,63897728400,63908618400,-18000,0,'EST',],[63908636400,63929196000,63908622000,63929181600,-14400,1,'EDT',],[63929196000,63940690800,63929178000,63940672800,-18000,0,'EST',],[63940690800,63961250400,63940676400,63961236000,-14400,1,'EDT',],];sub olson_version {'2016a'}sub has_dst_changes {30}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-18000}my$last_observance=bless({'format'=>'E%sT','gmtoff'=>'-5:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>732312,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>732312,'utc_rd_secs'=>0,'utc_year'=>2007 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-18000,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>732312,'local_rd_secs'=>18000,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>732312,'utc_rd_secs'=>18000,'utc_year'=>2007 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_INDIANA_VEVAY

$fatpacked{"DateTime/TimeZone/America/Indiana/Vincennes.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_INDIANA_VINCENNES';
  package DateTime::TimeZone::America::Indiana::Vincennes;$DateTime::TimeZone::America::Indiana::Vincennes::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Indiana::Vincennes::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59418036000,DateTime::TimeZone::NEG_INFINITY,59418014993,-21007,0,'LMT',],[59418036000,60502406400,59418014400,60502384800,-21600,0,'CST',],[60502406400,60520546800,60502388400,60520528800,-18000,1,'CDT',],[60520546800,60533856000,60520525200,60533834400,-21600,0,'CST',],[60533856000,60551996400,60533838000,60551978400,-18000,1,'CDT',],[60551996400,61255468800,60551974800,61255447200,-21600,0,'CST',],[61255468800,61366287600,61255450800,61366269600,-18000,1,'CWT',],[61366287600,61370290800,61366269600,61370272800,-18000,1,'CPT',],[61370290800,61378322400,61370269200,61378300800,-21600,0,'CST',],[61378322400,61388438400,61378300800,61388416800,-21600,0,'CST',],[61388438400,61401740400,61388420400,61401722400,-18000,1,'CDT',],[61401740400,61609190400,61401718800,61609168800,-21600,0,'CST',],[61609190400,61622492400,61609172400,61622474400,-18000,1,'CDT',],[61622492400,61640640000,61622470800,61640618400,-21600,0,'CST',],[61640640000,61653942000,61640622000,61653924000,-18000,1,'CDT',],[61653942000,61672687200,61653920400,61672665600,-21600,0,'CST',],[61672687200,61685391600,61672669200,61685373600,-18000,1,'CDT',],[61685391600,61704144000,61685370000,61704122400,-21600,0,'CST',],[61704144000,61717446000,61704126000,61717428000,-18000,1,'CDT',],[61717446000,61735593600,61717424400,61735572000,-21600,0,'CST',],[61735593600,61748895600,61735575600,61748877600,-18000,1,'CDT',],[61748895600,61767043200,61748874000,61767021600,-21600,0,'CST',],[61767043200,61780345200,61767025200,61780327200,-18000,1,'CDT',],[61780345200,61798492800,61780323600,61798471200,-21600,0,'CST',],[61798492800,61811794800,61798474800,61811776800,-18000,1,'CDT',],[61811794800,61829942400,61811773200,61829920800,-21600,0,'CST',],[61829942400,61846268400,61829924400,61846250400,-18000,1,'CDT',],[61846268400,61861996800,61846246800,61861975200,-21600,0,'CST',],[61861996800,61874694000,61861978800,61874676000,-18000,1,'CDT',],[61874694000,61893446400,61874672400,61893424800,-21600,0,'CST',],[61893446400,61909167600,61893428400,61909149600,-18000,1,'CDT',],[61909167600,61924896000,61909146000,61924874400,-21600,0,'CST',],[61924896000,61940617200,61924878000,61940599200,-18000,1,'CDT',],[61940617200,61956345600,61940595600,61956324000,-21600,0,'CST',],[61956345600,62104165200,61956327600,62104147200,-18000,0,'EST',],[62104165200,62114194800,62104147200,62114176800,-18000,0,'EST',],[62114194800,62129916000,62114180400,62129901600,-14400,1,'EDT',],[62129916000,62145644400,62129898000,62145626400,-18000,0,'EST',],[62145644400,62161365600,62145630000,62161351200,-14400,1,'EDT',],[62161365600,62167237200,62161347600,62167219200,-18000,0,'EST',],[62167237200,63279644400,62167219200,63279626400,-18000,0,'EST',],[63279644400,63297788400,63279626400,63297770400,-18000,1,'CDT',],[63297788400,63309283200,63297766800,63309261600,-21600,0,'CST',],[63309283200,63329842800,63309265200,63329824800,-18000,1,'CDT',],[63329842800,63340729200,63329824800,63340711200,-18000,0,'EST',],[63340729200,63361288800,63340714800,63361274400,-14400,1,'EDT',],[63361288800,63372178800,63361270800,63372160800,-18000,0,'EST',],[63372178800,63392738400,63372164400,63392724000,-14400,1,'EDT',],[63392738400,63404233200,63392720400,63404215200,-18000,0,'EST',],[63404233200,63424792800,63404218800,63424778400,-14400,1,'EDT',],[63424792800,63435682800,63424774800,63435664800,-18000,0,'EST',],[63435682800,63456242400,63435668400,63456228000,-14400,1,'EDT',],[63456242400,63467132400,63456224400,63467114400,-18000,0,'EST',],[63467132400,63487692000,63467118000,63487677600,-14400,1,'EDT',],[63487692000,63498582000,63487674000,63498564000,-18000,0,'EST',],[63498582000,63519141600,63498567600,63519127200,-14400,1,'EDT',],[63519141600,63530031600,63519123600,63530013600,-18000,0,'EST',],[63530031600,63550591200,63530017200,63550576800,-14400,1,'EDT',],[63550591200,63561481200,63550573200,63561463200,-18000,0,'EST',],[63561481200,63582040800,63561466800,63582026400,-14400,1,'EDT',],[63582040800,63593535600,63582022800,63593517600,-18000,0,'EST',],[63593535600,63614095200,63593521200,63614080800,-14400,1,'EDT',],[63614095200,63624985200,63614077200,63624967200,-18000,0,'EST',],[63624985200,63645544800,63624970800,63645530400,-14400,1,'EDT',],[63645544800,63656434800,63645526800,63656416800,-18000,0,'EST',],[63656434800,63676994400,63656420400,63676980000,-14400,1,'EDT',],[63676994400,63687884400,63676976400,63687866400,-18000,0,'EST',],[63687884400,63708444000,63687870000,63708429600,-14400,1,'EDT',],[63708444000,63719334000,63708426000,63719316000,-18000,0,'EST',],[63719334000,63739893600,63719319600,63739879200,-14400,1,'EDT',],[63739893600,63751388400,63739875600,63751370400,-18000,0,'EST',],[63751388400,63771948000,63751374000,63771933600,-14400,1,'EDT',],[63771948000,63782838000,63771930000,63782820000,-18000,0,'EST',],[63782838000,63803397600,63782823600,63803383200,-14400,1,'EDT',],[63803397600,63814287600,63803379600,63814269600,-18000,0,'EST',],[63814287600,63834847200,63814273200,63834832800,-14400,1,'EDT',],[63834847200,63845737200,63834829200,63845719200,-18000,0,'EST',],[63845737200,63866296800,63845722800,63866282400,-14400,1,'EDT',],[63866296800,63877186800,63866278800,63877168800,-18000,0,'EST',],[63877186800,63897746400,63877172400,63897732000,-14400,1,'EDT',],[63897746400,63908636400,63897728400,63908618400,-18000,0,'EST',],[63908636400,63929196000,63908622000,63929181600,-14400,1,'EDT',],[63929196000,63940690800,63929178000,63940672800,-18000,0,'EST',],[63940690800,63961250400,63940676400,63961236000,-14400,1,'EDT',],];sub olson_version {'2016a'}sub has_dst_changes {40}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-18000}my$last_observance=bless({'format'=>'E%sT','gmtoff'=>'-5:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>732984,'local_rd_secs'=>7200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>732984,'utc_rd_secs'=>7200,'utc_year'=>2008 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-18000,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>732984,'local_rd_secs'=>25200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>732984,'utc_rd_secs'=>25200,'utc_year'=>2008 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_INDIANA_VINCENNES

$fatpacked{"DateTime/TimeZone/America/Indiana/Winamac.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_INDIANA_WINAMAC';
  package DateTime::TimeZone::America::Indiana::Winamac;$DateTime::TimeZone::America::Indiana::Winamac::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Indiana::Winamac::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59418036000,DateTime::TimeZone::NEG_INFINITY,59418015215,-20785,0,'LMT',],[59418036000,60502406400,59418014400,60502384800,-21600,0,'CST',],[60502406400,60520546800,60502388400,60520528800,-18000,1,'CDT',],[60520546800,60533856000,60520525200,60533834400,-21600,0,'CST',],[60533856000,60551996400,60533838000,60551978400,-18000,1,'CDT',],[60551996400,61255468800,60551974800,61255447200,-21600,0,'CST',],[61255468800,61366287600,61255450800,61366269600,-18000,1,'CWT',],[61366287600,61370290800,61366269600,61370272800,-18000,1,'CPT',],[61370290800,61378322400,61370269200,61378300800,-21600,0,'CST',],[61378322400,61388438400,61378300800,61388416800,-21600,0,'CST',],[61388438400,61401740400,61388420400,61401722400,-18000,1,'CDT',],[61401740400,61419888000,61401718800,61419866400,-21600,0,'CST',],[61419888000,61433190000,61419870000,61433172000,-18000,1,'CDT',],[61433190000,61451337600,61433168400,61451316000,-21600,0,'CST',],[61451337600,61464639600,61451319600,61464621600,-18000,1,'CDT',],[61464639600,61482787200,61464618000,61482765600,-21600,0,'CST',],[61482787200,61496089200,61482769200,61496071200,-18000,1,'CDT',],[61496089200,61514841600,61496067600,61514820000,-21600,0,'CST',],[61514841600,61527538800,61514823600,61527520800,-18000,1,'CDT',],[61527538800,61546291200,61527517200,61546269600,-21600,0,'CST',],[61546291200,61559593200,61546273200,61559575200,-18000,1,'CDT',],[61559593200,61577740800,61559571600,61577719200,-21600,0,'CST',],[61577740800,61591042800,61577722800,61591024800,-18000,1,'CDT',],[61591042800,61609190400,61591021200,61609168800,-21600,0,'CST',],[61609190400,61622492400,61609172400,61622474400,-18000,1,'CDT',],[61622492400,61640640000,61622470800,61640618400,-21600,0,'CST',],[61640640000,61653942000,61640622000,61653924000,-18000,1,'CDT',],[61653942000,61672089600,61653920400,61672068000,-21600,0,'CST',],[61672089600,61688415600,61672071600,61688397600,-18000,1,'CDT',],[61688415600,61704144000,61688394000,61704122400,-21600,0,'CST',],[61704144000,61719865200,61704126000,61719847200,-18000,1,'CDT',],[61719865200,61735593600,61719843600,61735572000,-21600,0,'CST',],[61735593600,61748895600,61735575600,61748877600,-18000,1,'CDT',],[61748895600,61767043200,61748874000,61767021600,-21600,0,'CST',],[61767043200,61780345200,61767025200,61780327200,-18000,1,'CDT',],[61780345200,61798492800,61780323600,61798471200,-21600,0,'CST',],[61798492800,61811794800,61798474800,61811776800,-18000,1,'CDT',],[61811794800,61829942400,61811773200,61829920800,-21600,0,'CST',],[61829942400,61843244400,61829924400,61843226400,-18000,1,'CDT',],[61843244400,61861996800,61843222800,61861975200,-21600,0,'CST',],[61861996800,62104165200,61861978800,62104147200,-18000,0,'EST',],[62104165200,62114194800,62104147200,62114176800,-18000,0,'EST',],[62114194800,62129916000,62114180400,62129901600,-14400,1,'EDT',],[62129916000,62145644400,62129898000,62145626400,-18000,0,'EST',],[62145644400,62161365600,62145630000,62161351200,-14400,1,'EDT',],[62161365600,62167237200,62161347600,62167219200,-18000,0,'EST',],[62167237200,63279644400,62167219200,63279626400,-18000,0,'EST',],[63279644400,63297788400,63279626400,63297770400,-18000,1,'CDT',],[63297788400,63309283200,63297766800,63309261600,-21600,0,'CST',],[63309283200,63329839200,63309268800,63329824800,-14400,1,'EDT',],[63329839200,63340729200,63329821200,63340711200,-18000,0,'EST',],[63340729200,63361288800,63340714800,63361274400,-14400,1,'EDT',],[63361288800,63372178800,63361270800,63372160800,-18000,0,'EST',],[63372178800,63392738400,63372164400,63392724000,-14400,1,'EDT',],[63392738400,63404233200,63392720400,63404215200,-18000,0,'EST',],[63404233200,63424792800,63404218800,63424778400,-14400,1,'EDT',],[63424792800,63435682800,63424774800,63435664800,-18000,0,'EST',],[63435682800,63456242400,63435668400,63456228000,-14400,1,'EDT',],[63456242400,63467132400,63456224400,63467114400,-18000,0,'EST',],[63467132400,63487692000,63467118000,63487677600,-14400,1,'EDT',],[63487692000,63498582000,63487674000,63498564000,-18000,0,'EST',],[63498582000,63519141600,63498567600,63519127200,-14400,1,'EDT',],[63519141600,63530031600,63519123600,63530013600,-18000,0,'EST',],[63530031600,63550591200,63530017200,63550576800,-14400,1,'EDT',],[63550591200,63561481200,63550573200,63561463200,-18000,0,'EST',],[63561481200,63582040800,63561466800,63582026400,-14400,1,'EDT',],[63582040800,63593535600,63582022800,63593517600,-18000,0,'EST',],[63593535600,63614095200,63593521200,63614080800,-14400,1,'EDT',],[63614095200,63624985200,63614077200,63624967200,-18000,0,'EST',],[63624985200,63645544800,63624970800,63645530400,-14400,1,'EDT',],[63645544800,63656434800,63645526800,63656416800,-18000,0,'EST',],[63656434800,63676994400,63656420400,63676980000,-14400,1,'EDT',],[63676994400,63687884400,63676976400,63687866400,-18000,0,'EST',],[63687884400,63708444000,63687870000,63708429600,-14400,1,'EDT',],[63708444000,63719334000,63708426000,63719316000,-18000,0,'EST',],[63719334000,63739893600,63719319600,63739879200,-14400,1,'EDT',],[63739893600,63751388400,63739875600,63751370400,-18000,0,'EST',],[63751388400,63771948000,63751374000,63771933600,-14400,1,'EDT',],[63771948000,63782838000,63771930000,63782820000,-18000,0,'EST',],[63782838000,63803397600,63782823600,63803383200,-14400,1,'EDT',],[63803397600,63814287600,63803379600,63814269600,-18000,0,'EST',],[63814287600,63834847200,63814273200,63834832800,-14400,1,'EDT',],[63834847200,63845737200,63834829200,63845719200,-18000,0,'EST',],[63845737200,63866296800,63845722800,63866282400,-14400,1,'EDT',],[63866296800,63877186800,63866278800,63877168800,-18000,0,'EST',],[63877186800,63897746400,63877172400,63897732000,-14400,1,'EDT',],[63897746400,63908636400,63897728400,63908618400,-18000,0,'EST',],[63908636400,63929196000,63908622000,63929181600,-14400,1,'EDT',],[63929196000,63940690800,63929178000,63940672800,-18000,0,'EST',],[63940690800,63961250400,63940676400,63961236000,-14400,1,'EDT',],];sub olson_version {'2016a'}sub has_dst_changes {43}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-18000}my$last_observance=bless({'format'=>'E%sT','gmtoff'=>'-5:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>732746,'local_rd_secs'=>14400,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>732746,'utc_rd_secs'=>14400,'utc_year'=>2008 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-18000,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>732746,'local_rd_secs'=>28800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>732746,'utc_rd_secs'=>28800,'utc_year'=>2008 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_INDIANA_WINAMAC

$fatpacked{"DateTime/TimeZone/America/Inuvik.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_INUVIK';
  package DateTime::TimeZone::America::Inuvik;$DateTime::TimeZone::America::Inuvik::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Inuvik::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,61599225600,DateTime::TimeZone::NEG_INFINITY,61599225600,0,0,'zzz',],[61599225600,61987795200,61599196800,61987766400,-28800,0,'PST',],[61987795200,62004124800,61987773600,62004103200,-21600,1,'PDDT',],[62004124800,62429911200,62004096000,62429882400,-28800,0,'PST',],[62429911200,62451241200,62429886000,62451216000,-25200,0,'MST',],[62451241200,62461357200,62451216000,62461332000,-25200,0,'MST',],[62461357200,62477078400,62461335600,62477056800,-21600,1,'MDT',],[62477078400,62492806800,62477053200,62492781600,-25200,0,'MST',],[62492806800,62508528000,62492785200,62508506400,-21600,1,'MDT',],[62508528000,62524256400,62508502800,62524231200,-25200,0,'MST',],[62524256400,62540582400,62524234800,62540560800,-21600,1,'MDT',],[62540582400,62555706000,62540557200,62555680800,-25200,0,'MST',],[62555706000,62572032000,62555684400,62572010400,-21600,1,'MDT',],[62572032000,62587760400,62572006800,62587735200,-25200,0,'MST',],[62587760400,62603481600,62587738800,62603460000,-21600,1,'MDT',],[62603481600,62619210000,62603456400,62619184800,-25200,0,'MST',],[62619210000,62634931200,62619188400,62634909600,-21600,1,'MDT',],[62634931200,62650659600,62634906000,62650634400,-25200,0,'MST',],[62650659600,62666380800,62650638000,62666359200,-21600,1,'MDT',],[62666380800,62680294800,62666355600,62680269600,-25200,0,'MST',],[62680294800,62697830400,62680273200,62697808800,-21600,1,'MDT',],[62697830400,62711744400,62697805200,62711719200,-25200,0,'MST',],[62711744400,62729884800,62711722800,62729863200,-21600,1,'MDT',],[62729884800,62743194000,62729859600,62743168800,-25200,0,'MST',],[62743194000,62761334400,62743172400,62761312800,-21600,1,'MDT',],[62761334400,62774643600,62761309200,62774618400,-25200,0,'MST',],[62774643600,62792784000,62774622000,62792762400,-21600,1,'MDT',],[62792784000,62806698000,62792758800,62806672800,-25200,0,'MST',],[62806698000,62824233600,62806676400,62824212000,-21600,1,'MDT',],[62824233600,62838147600,62824208400,62838122400,-25200,0,'MST',],[62838147600,62855683200,62838126000,62855661600,-21600,1,'MDT',],[62855683200,62869597200,62855658000,62869572000,-25200,0,'MST',],[62869597200,62887737600,62869575600,62887716000,-21600,1,'MDT',],[62887737600,62901046800,62887712400,62901021600,-25200,0,'MST',],[62901046800,62919187200,62901025200,62919165600,-21600,1,'MDT',],[62919187200,62932496400,62919162000,62932471200,-25200,0,'MST',],[62932496400,62950636800,62932474800,62950615200,-21600,1,'MDT',],[62950636800,62964550800,62950611600,62964525600,-25200,0,'MST',],[62964550800,62982086400,62964529200,62982064800,-21600,1,'MDT',],[62982086400,62996000400,62982061200,62995975200,-25200,0,'MST',],[62996000400,63013536000,62995978800,63013514400,-21600,1,'MDT',],[63013536000,63027450000,63013510800,63027424800,-25200,0,'MST',],[63027450000,63044985600,63027428400,63044964000,-21600,1,'MDT',],[63044985600,63058899600,63044960400,63058874400,-25200,0,'MST',],[63058899600,63077040000,63058878000,63077018400,-21600,1,'MDT',],[63077040000,63090349200,63077014800,63090324000,-25200,0,'MST',],[63090349200,63108489600,63090327600,63108468000,-21600,1,'MDT',],[63108489600,63121798800,63108464400,63121773600,-25200,0,'MST',],[63121798800,63139939200,63121777200,63139917600,-21600,1,'MDT',],[63139939200,63153853200,63139914000,63153828000,-25200,0,'MST',],[63153853200,63171388800,63153831600,63171367200,-21600,1,'MDT',],[63171388800,63185302800,63171363600,63185277600,-25200,0,'MST',],[63185302800,63202838400,63185281200,63202816800,-21600,1,'MDT',],[63202838400,63216752400,63202813200,63216727200,-25200,0,'MST',],[63216752400,63234892800,63216730800,63234871200,-21600,1,'MDT',],[63234892800,63248202000,63234867600,63248176800,-25200,0,'MST',],[63248202000,63266342400,63248180400,63266320800,-21600,1,'MDT',],[63266342400,63279651600,63266317200,63279626400,-25200,0,'MST',],[63279651600,63297792000,63279630000,63297770400,-21600,1,'MDT',],[63297792000,63309286800,63297766800,63309261600,-25200,0,'MST',],[63309286800,63329846400,63309265200,63329824800,-21600,1,'MDT',],[63329846400,63340736400,63329821200,63340711200,-25200,0,'MST',],[63340736400,63361296000,63340714800,63361274400,-21600,1,'MDT',],[63361296000,63372186000,63361270800,63372160800,-25200,0,'MST',],[63372186000,63392745600,63372164400,63392724000,-21600,1,'MDT',],[63392745600,63404240400,63392720400,63404215200,-25200,0,'MST',],[63404240400,63424800000,63404218800,63424778400,-21600,1,'MDT',],[63424800000,63435690000,63424774800,63435664800,-25200,0,'MST',],[63435690000,63456249600,63435668400,63456228000,-21600,1,'MDT',],[63456249600,63467139600,63456224400,63467114400,-25200,0,'MST',],[63467139600,63487699200,63467118000,63487677600,-21600,1,'MDT',],[63487699200,63498589200,63487674000,63498564000,-25200,0,'MST',],[63498589200,63519148800,63498567600,63519127200,-21600,1,'MDT',],[63519148800,63530038800,63519123600,63530013600,-25200,0,'MST',],[63530038800,63550598400,63530017200,63550576800,-21600,1,'MDT',],[63550598400,63561488400,63550573200,63561463200,-25200,0,'MST',],[63561488400,63582048000,63561466800,63582026400,-21600,1,'MDT',],[63582048000,63593542800,63582022800,63593517600,-25200,0,'MST',],[63593542800,63614102400,63593521200,63614080800,-21600,1,'MDT',],[63614102400,63624992400,63614077200,63624967200,-25200,0,'MST',],[63624992400,63645552000,63624970800,63645530400,-21600,1,'MDT',],[63645552000,63656442000,63645526800,63656416800,-25200,0,'MST',],[63656442000,63677001600,63656420400,63676980000,-21600,1,'MDT',],[63677001600,63687891600,63676976400,63687866400,-25200,0,'MST',],[63687891600,63708451200,63687870000,63708429600,-21600,1,'MDT',],[63708451200,63719341200,63708426000,63719316000,-25200,0,'MST',],[63719341200,63739900800,63719319600,63739879200,-21600,1,'MDT',],[63739900800,63751395600,63739875600,63751370400,-25200,0,'MST',],[63751395600,63771955200,63751374000,63771933600,-21600,1,'MDT',],[63771955200,63782845200,63771930000,63782820000,-25200,0,'MST',],[63782845200,63803404800,63782823600,63803383200,-21600,1,'MDT',],[63803404800,63814294800,63803379600,63814269600,-25200,0,'MST',],[63814294800,63834854400,63814273200,63834832800,-21600,1,'MDT',],[63834854400,63845744400,63834829200,63845719200,-25200,0,'MST',],[63845744400,63866304000,63845722800,63866282400,-21600,1,'MDT',],[63866304000,63877194000,63866278800,63877168800,-25200,0,'MST',],[63877194000,63897753600,63877172400,63897732000,-21600,1,'MDT',],[63897753600,63908643600,63897728400,63908618400,-25200,0,'MST',],[63908643600,63929203200,63908622000,63929181600,-21600,1,'MDT',],[63929203200,63940698000,63929178000,63940672800,-25200,0,'MST',],[63940698000,63961257600,63940676400,63961236000,-21600,1,'MDT',],];sub olson_version {'2016a'}sub has_dst_changes {49}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-25200}my$last_observance=bless({'format'=>'M%sT','gmtoff'=>'-7:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>722815,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>722815,'utc_rd_secs'=>0,'utc_year'=>1981 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-25200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>722815,'local_rd_secs'=>25200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>722815,'utc_rd_secs'=>25200,'utc_year'=>1981 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'Canada','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'Canada','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_INUVIK

$fatpacked{"DateTime/TimeZone/America/Iqaluit.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_IQALUIT';
  package DateTime::TimeZone::America::Iqaluit;$DateTime::TimeZone::America::Iqaluit::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Iqaluit::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,61270387200,DateTime::TimeZone::NEG_INFINITY,61270387200,0,0,'zzz',],[61270387200,61366287600,61270372800,61366273200,-14400,1,'EWT',],[61366287600,61370287200,61366273200,61370272800,-14400,1,'EPT',],[61370287200,61987784400,61370269200,61987766400,-18000,0,'EST',],[61987784400,62004114000,61987773600,62004103200,-10800,1,'EDDT',],[62004114000,62461350000,62004096000,62461332000,-18000,0,'EST',],[62461350000,62477071200,62461335600,62477056800,-14400,1,'EDT',],[62477071200,62492799600,62477053200,62492781600,-18000,0,'EST',],[62492799600,62508520800,62492785200,62508506400,-14400,1,'EDT',],[62508520800,62524249200,62508502800,62524231200,-18000,0,'EST',],[62524249200,62540575200,62524234800,62540560800,-14400,1,'EDT',],[62540575200,62555698800,62540557200,62555680800,-18000,0,'EST',],[62555698800,62572024800,62555684400,62572010400,-14400,1,'EDT',],[62572024800,62587753200,62572006800,62587735200,-18000,0,'EST',],[62587753200,62603474400,62587738800,62603460000,-14400,1,'EDT',],[62603474400,62619202800,62603456400,62619184800,-18000,0,'EST',],[62619202800,62634924000,62619188400,62634909600,-14400,1,'EDT',],[62634924000,62650652400,62634906000,62650634400,-18000,0,'EST',],[62650652400,62666373600,62650638000,62666359200,-14400,1,'EDT',],[62666373600,62680287600,62666355600,62680269600,-18000,0,'EST',],[62680287600,62697823200,62680273200,62697808800,-14400,1,'EDT',],[62697823200,62711737200,62697805200,62711719200,-18000,0,'EST',],[62711737200,62729877600,62711722800,62729863200,-14400,1,'EDT',],[62729877600,62743186800,62729859600,62743168800,-18000,0,'EST',],[62743186800,62761327200,62743172400,62761312800,-14400,1,'EDT',],[62761327200,62774636400,62761309200,62774618400,-18000,0,'EST',],[62774636400,62792776800,62774622000,62792762400,-14400,1,'EDT',],[62792776800,62806690800,62792758800,62806672800,-18000,0,'EST',],[62806690800,62824226400,62806676400,62824212000,-14400,1,'EDT',],[62824226400,62838140400,62824208400,62838122400,-18000,0,'EST',],[62838140400,62855676000,62838126000,62855661600,-14400,1,'EDT',],[62855676000,62869590000,62855658000,62869572000,-18000,0,'EST',],[62869590000,62887730400,62869575600,62887716000,-14400,1,'EDT',],[62887730400,62901039600,62887712400,62901021600,-18000,0,'EST',],[62901039600,62919180000,62901025200,62919165600,-14400,1,'EDT',],[62919180000,62932489200,62919162000,62932471200,-18000,0,'EST',],[62932489200,62950629600,62932474800,62950615200,-14400,1,'EDT',],[62950629600,62964543600,62950611600,62964525600,-18000,0,'EST',],[62964543600,62982079200,62964529200,62982064800,-14400,1,'EDT',],[62982079200,62995993200,62982061200,62995975200,-18000,0,'EST',],[62995993200,63013528800,62995978800,63013514400,-14400,1,'EDT',],[63013528800,63027442800,63013510800,63027424800,-18000,0,'EST',],[63027442800,63044978400,63027428400,63044964000,-14400,1,'EDT',],[63044978400,63058892400,63044960400,63058874400,-18000,0,'EST',],[63058892400,63077032800,63058878000,63077018400,-14400,1,'EDT',],[63077032800,63090345600,63077011200,63090324000,-21600,0,'CST',],[63090345600,63108486000,63090327600,63108468000,-18000,1,'CDT',],[63108486000,63121791600,63108468000,63121773600,-18000,0,'EST',],[63121791600,63139932000,63121777200,63139917600,-14400,1,'EDT',],[63139932000,63153846000,63139914000,63153828000,-18000,0,'EST',],[63153846000,63171381600,63153831600,63171367200,-14400,1,'EDT',],[63171381600,63185295600,63171363600,63185277600,-18000,0,'EST',],[63185295600,63202831200,63185281200,63202816800,-14400,1,'EDT',],[63202831200,63216745200,63202813200,63216727200,-18000,0,'EST',],[63216745200,63234885600,63216730800,63234871200,-14400,1,'EDT',],[63234885600,63248194800,63234867600,63248176800,-18000,0,'EST',],[63248194800,63266335200,63248180400,63266320800,-14400,1,'EDT',],[63266335200,63279644400,63266317200,63279626400,-18000,0,'EST',],[63279644400,63297784800,63279630000,63297770400,-14400,1,'EDT',],[63297784800,63309279600,63297766800,63309261600,-18000,0,'EST',],[63309279600,63329839200,63309265200,63329824800,-14400,1,'EDT',],[63329839200,63340729200,63329821200,63340711200,-18000,0,'EST',],[63340729200,63361288800,63340714800,63361274400,-14400,1,'EDT',],[63361288800,63372178800,63361270800,63372160800,-18000,0,'EST',],[63372178800,63392738400,63372164400,63392724000,-14400,1,'EDT',],[63392738400,63404233200,63392720400,63404215200,-18000,0,'EST',],[63404233200,63424792800,63404218800,63424778400,-14400,1,'EDT',],[63424792800,63435682800,63424774800,63435664800,-18000,0,'EST',],[63435682800,63456242400,63435668400,63456228000,-14400,1,'EDT',],[63456242400,63467132400,63456224400,63467114400,-18000,0,'EST',],[63467132400,63487692000,63467118000,63487677600,-14400,1,'EDT',],[63487692000,63498582000,63487674000,63498564000,-18000,0,'EST',],[63498582000,63519141600,63498567600,63519127200,-14400,1,'EDT',],[63519141600,63530031600,63519123600,63530013600,-18000,0,'EST',],[63530031600,63550591200,63530017200,63550576800,-14400,1,'EDT',],[63550591200,63561481200,63550573200,63561463200,-18000,0,'EST',],[63561481200,63582040800,63561466800,63582026400,-14400,1,'EDT',],[63582040800,63593535600,63582022800,63593517600,-18000,0,'EST',],[63593535600,63614095200,63593521200,63614080800,-14400,1,'EDT',],[63614095200,63624985200,63614077200,63624967200,-18000,0,'EST',],[63624985200,63645544800,63624970800,63645530400,-14400,1,'EDT',],[63645544800,63656434800,63645526800,63656416800,-18000,0,'EST',],[63656434800,63676994400,63656420400,63676980000,-14400,1,'EDT',],[63676994400,63687884400,63676976400,63687866400,-18000,0,'EST',],[63687884400,63708444000,63687870000,63708429600,-14400,1,'EDT',],[63708444000,63719334000,63708426000,63719316000,-18000,0,'EST',],[63719334000,63739893600,63719319600,63739879200,-14400,1,'EDT',],[63739893600,63751388400,63739875600,63751370400,-18000,0,'EST',],[63751388400,63771948000,63751374000,63771933600,-14400,1,'EDT',],[63771948000,63782838000,63771930000,63782820000,-18000,0,'EST',],[63782838000,63803397600,63782823600,63803383200,-14400,1,'EDT',],[63803397600,63814287600,63803379600,63814269600,-18000,0,'EST',],[63814287600,63834847200,63814273200,63834832800,-14400,1,'EDT',],[63834847200,63845737200,63834829200,63845719200,-18000,0,'EST',],[63845737200,63866296800,63845722800,63866282400,-14400,1,'EDT',],[63866296800,63877186800,63866278800,63877168800,-18000,0,'EST',],[63877186800,63897746400,63877172400,63897732000,-14400,1,'EDT',],[63897746400,63908636400,63897728400,63908618400,-18000,0,'EST',],[63908636400,63929196000,63908622000,63929181600,-14400,1,'EDT',],[63929196000,63940690800,63929178000,63940672800,-18000,0,'EST',],[63940690800,63961250400,63940676400,63961236000,-14400,1,'EDT',],];sub olson_version {'2016a'}sub has_dst_changes {51}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-18000}my$last_observance=bless({'format'=>'E%sT','gmtoff'=>'-5:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>730422,'local_rd_secs'=>7200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>730422,'utc_rd_secs'=>7200,'utc_year'=>2001 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-18000,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>730422,'local_rd_secs'=>25200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>730422,'utc_rd_secs'=>25200,'utc_year'=>2001 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'Canada','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'Canada','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_IQALUIT

$fatpacked{"DateTime/TimeZone/America/Jamaica.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_JAMAICA';
  package DateTime::TimeZone::America::Jamaica;$DateTime::TimeZone::America::Jamaica::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Jamaica::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59611180031,DateTime::TimeZone::NEG_INFINITY,59611161600,-18431,0,'LMT',],[59611180031,60307996031,59611161600,60307977600,-18431,0,'KMT',],[60307996031,62261931600,60307978031,62261913600,-18000,0,'EST',],[62261931600,62262370800,62261913600,62262352800,-18000,0,'EST',],[62262370800,62287768800,62262356400,62287754400,-14400,1,'EDT',],[62287768800,62298054000,62287750800,62298036000,-18000,0,'EST',],[62298054000,62319218400,62298039600,62319204000,-14400,1,'EDT',],[62319218400,62334946800,62319200400,62334928800,-18000,0,'EST',],[62334946800,62351272800,62334932400,62351258400,-14400,1,'EDT',],[62351272800,62366396400,62351254800,62366378400,-18000,0,'EST',],[62366396400,62382722400,62366382000,62382708000,-14400,1,'EDT',],[62382722400,62398450800,62382704400,62398432800,-18000,0,'EST',],[62398450800,62414172000,62398436400,62414157600,-14400,1,'EDT',],[62414172000,62429900400,62414154000,62429882400,-18000,0,'EST',],[62429900400,62445621600,62429886000,62445607200,-14400,1,'EDT',],[62445621600,62461350000,62445603600,62461332000,-18000,0,'EST',],[62461350000,62477071200,62461335600,62477056800,-14400,1,'EDT',],[62477071200,62492799600,62477053200,62492781600,-18000,0,'EST',],[62492799600,62508520800,62492785200,62508506400,-14400,1,'EDT',],[62508520800,62524249200,62508502800,62524231200,-18000,0,'EST',],[62524249200,62540575200,62524234800,62540560800,-14400,1,'EDT',],[62540575200,62555698800,62540557200,62555680800,-18000,0,'EST',],[62555698800,62572024800,62555684400,62572010400,-14400,1,'EDT',],[62572024800,62577464400,62572006800,62577446400,-18000,0,'EST',],[62577464400,DateTime::TimeZone::INFINITY,62577446400,DateTime::TimeZone::INFINITY,-18000,0,'EST',],];sub olson_version {'2016a'}sub has_dst_changes {10}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_JAMAICA

$fatpacked{"DateTime/TimeZone/America/Juneau.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_JUNEAU';
  package DateTime::TimeZone::America::Juneau;$DateTime::TimeZone::America::Juneau::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Juneau::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,58910317061,DateTime::TimeZone::NEG_INFINITY,58910371200,54139,0,'LMT',],[58910317061,59946728261,58910284800,59946696000,-32261,0,'LMT',],[59946728261,61252099200,59946699461,61252070400,-28800,0,'PST',],[61252099200,61255476000,61252070400,61255447200,-28800,0,'PST',],[61255476000,61366287600,61255450800,61366262400,-25200,1,'PWT',],[61366287600,61370298000,61366262400,61370272800,-25200,1,'PPT',],[61370298000,61378329600,61370269200,61378300800,-28800,0,'PST',],[61378329600,62104176000,61378300800,62104147200,-28800,0,'PST',],[62104176000,62114205600,62104147200,62114176800,-28800,0,'PST',],[62114205600,62129926800,62114180400,62129901600,-25200,1,'PDT',],[62129926800,62145655200,62129898000,62145626400,-28800,0,'PST',],[62145655200,62161376400,62145630000,62161351200,-25200,1,'PDT',],[62161376400,62177104800,62161347600,62177076000,-28800,0,'PST',],[62177104800,62193430800,62177079600,62193405600,-25200,1,'PDT',],[62193430800,62209159200,62193402000,62209130400,-28800,0,'PST',],[62209159200,62224880400,62209134000,62224855200,-25200,1,'PDT',],[62224880400,62240608800,62224851600,62240580000,-28800,0,'PST',],[62240608800,62256330000,62240583600,62256304800,-25200,1,'PDT',],[62256330000,62262381600,62256301200,62262352800,-28800,0,'PST',],[62262381600,62287779600,62262356400,62287754400,-25200,1,'PDT',],[62287779600,62298064800,62287750800,62298036000,-28800,0,'PST',],[62298064800,62319229200,62298039600,62319204000,-25200,1,'PDT',],[62319229200,62334957600,62319200400,62334928800,-28800,0,'PST',],[62334957600,62351283600,62334932400,62351258400,-25200,1,'PDT',],[62351283600,62366407200,62351254800,62366378400,-28800,0,'PST',],[62366407200,62382733200,62366382000,62382708000,-25200,1,'PDT',],[62382733200,62398461600,62382704400,62398432800,-28800,0,'PST',],[62398461600,62414182800,62398436400,62414157600,-25200,1,'PDT',],[62414182800,62429911200,62414154000,62429882400,-28800,0,'PST',],[62429911200,62445632400,62429886000,62445607200,-25200,1,'PDT',],[62445632400,62461360800,62445603600,62461332000,-28800,0,'PST',],[62461360800,62477085600,62461332000,62477056800,-28800,1,'YDT',],[62477085600,62492810400,62477056800,62492781600,-28800,0,'PST',],[62492810400,62508531600,62492785200,62508506400,-25200,1,'PDT',],[62508531600,62524260000,62508502800,62524231200,-28800,0,'PST',],[62524260000,62540586000,62524234800,62540560800,-25200,1,'PDT',],[62540586000,62555709600,62540557200,62555680800,-28800,0,'PST',],[62555709600,62572035600,62555684400,62572010400,-25200,1,'PDT',],[62572035600,62574714000,62572003200,62574681600,-32400,0,'YST',],[62574714000,62587767600,62574681600,62587735200,-32400,0,'AKST',],[62587767600,62603488800,62587738800,62603460000,-28800,1,'AKDT',],[62603488800,62619217200,62603456400,62619184800,-32400,0,'AKST',],[62619217200,62634938400,62619188400,62634909600,-28800,1,'AKDT',],[62634938400,62650666800,62634906000,62650634400,-32400,0,'AKST',],[62650666800,62666388000,62650638000,62666359200,-28800,1,'AKDT',],[62666388000,62680302000,62666355600,62680269600,-32400,0,'AKST',],[62680302000,62697837600,62680273200,62697808800,-28800,1,'AKDT',],[62697837600,62711751600,62697805200,62711719200,-32400,0,'AKST',],[62711751600,62729892000,62711722800,62729863200,-28800,1,'AKDT',],[62729892000,62743201200,62729859600,62743168800,-32400,0,'AKST',],[62743201200,62761341600,62743172400,62761312800,-28800,1,'AKDT',],[62761341600,62774650800,62761309200,62774618400,-32400,0,'AKST',],[62774650800,62792791200,62774622000,62792762400,-28800,1,'AKDT',],[62792791200,62806705200,62792758800,62806672800,-32400,0,'AKST',],[62806705200,62824240800,62806676400,62824212000,-28800,1,'AKDT',],[62824240800,62838154800,62824208400,62838122400,-32400,0,'AKST',],[62838154800,62855690400,62838126000,62855661600,-28800,1,'AKDT',],[62855690400,62869604400,62855658000,62869572000,-32400,0,'AKST',],[62869604400,62887744800,62869575600,62887716000,-28800,1,'AKDT',],[62887744800,62901054000,62887712400,62901021600,-32400,0,'AKST',],[62901054000,62919194400,62901025200,62919165600,-28800,1,'AKDT',],[62919194400,62932503600,62919162000,62932471200,-32400,0,'AKST',],[62932503600,62950644000,62932474800,62950615200,-28800,1,'AKDT',],[62950644000,62964558000,62950611600,62964525600,-32400,0,'AKST',],[62964558000,62982093600,62964529200,62982064800,-28800,1,'AKDT',],[62982093600,62996007600,62982061200,62995975200,-32400,0,'AKST',],[62996007600,63013543200,62995978800,63013514400,-28800,1,'AKDT',],[63013543200,63027457200,63013510800,63027424800,-32400,0,'AKST',],[63027457200,63044992800,63027428400,63044964000,-28800,1,'AKDT',],[63044992800,63058906800,63044960400,63058874400,-32400,0,'AKST',],[63058906800,63077047200,63058878000,63077018400,-28800,1,'AKDT',],[63077047200,63090356400,63077014800,63090324000,-32400,0,'AKST',],[63090356400,63108496800,63090327600,63108468000,-28800,1,'AKDT',],[63108496800,63121806000,63108464400,63121773600,-32400,0,'AKST',],[63121806000,63139946400,63121777200,63139917600,-28800,1,'AKDT',],[63139946400,63153860400,63139914000,63153828000,-32400,0,'AKST',],[63153860400,63171396000,63153831600,63171367200,-28800,1,'AKDT',],[63171396000,63185310000,63171363600,63185277600,-32400,0,'AKST',],[63185310000,63202845600,63185281200,63202816800,-28800,1,'AKDT',],[63202845600,63216759600,63202813200,63216727200,-32400,0,'AKST',],[63216759600,63234900000,63216730800,63234871200,-28800,1,'AKDT',],[63234900000,63248209200,63234867600,63248176800,-32400,0,'AKST',],[63248209200,63266349600,63248180400,63266320800,-28800,1,'AKDT',],[63266349600,63279658800,63266317200,63279626400,-32400,0,'AKST',],[63279658800,63297799200,63279630000,63297770400,-28800,1,'AKDT',],[63297799200,63309294000,63297766800,63309261600,-32400,0,'AKST',],[63309294000,63329853600,63309265200,63329824800,-28800,1,'AKDT',],[63329853600,63340743600,63329821200,63340711200,-32400,0,'AKST',],[63340743600,63361303200,63340714800,63361274400,-28800,1,'AKDT',],[63361303200,63372193200,63361270800,63372160800,-32400,0,'AKST',],[63372193200,63392752800,63372164400,63392724000,-28800,1,'AKDT',],[63392752800,63404247600,63392720400,63404215200,-32400,0,'AKST',],[63404247600,63424807200,63404218800,63424778400,-28800,1,'AKDT',],[63424807200,63435697200,63424774800,63435664800,-32400,0,'AKST',],[63435697200,63456256800,63435668400,63456228000,-28800,1,'AKDT',],[63456256800,63467146800,63456224400,63467114400,-32400,0,'AKST',],[63467146800,63487706400,63467118000,63487677600,-28800,1,'AKDT',],[63487706400,63498596400,63487674000,63498564000,-32400,0,'AKST',],[63498596400,63519156000,63498567600,63519127200,-28800,1,'AKDT',],[63519156000,63530046000,63519123600,63530013600,-32400,0,'AKST',],[63530046000,63550605600,63530017200,63550576800,-28800,1,'AKDT',],[63550605600,63561495600,63550573200,63561463200,-32400,0,'AKST',],[63561495600,63582055200,63561466800,63582026400,-28800,1,'AKDT',],[63582055200,63593550000,63582022800,63593517600,-32400,0,'AKST',],[63593550000,63614109600,63593521200,63614080800,-28800,1,'AKDT',],[63614109600,63624999600,63614077200,63624967200,-32400,0,'AKST',],[63624999600,63645559200,63624970800,63645530400,-28800,1,'AKDT',],[63645559200,63656449200,63645526800,63656416800,-32400,0,'AKST',],[63656449200,63677008800,63656420400,63676980000,-28800,1,'AKDT',],[63677008800,63687898800,63676976400,63687866400,-32400,0,'AKST',],[63687898800,63708458400,63687870000,63708429600,-28800,1,'AKDT',],[63708458400,63719348400,63708426000,63719316000,-32400,0,'AKST',],[63719348400,63739908000,63719319600,63739879200,-28800,1,'AKDT',],[63739908000,63751402800,63739875600,63751370400,-32400,0,'AKST',],[63751402800,63771962400,63751374000,63771933600,-28800,1,'AKDT',],[63771962400,63782852400,63771930000,63782820000,-32400,0,'AKST',],[63782852400,63803412000,63782823600,63803383200,-28800,1,'AKDT',],[63803412000,63814302000,63803379600,63814269600,-32400,0,'AKST',],[63814302000,63834861600,63814273200,63834832800,-28800,1,'AKDT',],[63834861600,63845751600,63834829200,63845719200,-32400,0,'AKST',],[63845751600,63866311200,63845722800,63866282400,-28800,1,'AKDT',],[63866311200,63877201200,63866278800,63877168800,-32400,0,'AKST',],[63877201200,63897760800,63877172400,63897732000,-28800,1,'AKDT',],[63897760800,63908650800,63897728400,63908618400,-32400,0,'AKST',],[63908650800,63929210400,63908622000,63929181600,-28800,1,'AKDT',],[63929210400,63940705200,63929178000,63940672800,-32400,0,'AKST',],[63940705200,63961264800,63940676400,63961236000,-28800,1,'AKDT',],];sub olson_version {'2016a'}sub has_dst_changes {61}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-32400}my$last_observance=bless({'format'=>'AK%sT','gmtoff'=>'-9:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>724244,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>724244,'utc_rd_secs'=>0,'utc_year'=>1984 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-32400,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>724244,'local_rd_secs'=>32400,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>724244,'utc_rd_secs'=>32400,'utc_year'=>1984 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_JUNEAU

$fatpacked{"DateTime/TimeZone/America/Kentucky/Louisville.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_KENTUCKY_LOUISVILLE';
  package DateTime::TimeZone::America::Kentucky::Louisville;$DateTime::TimeZone::America::Kentucky::Louisville::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Kentucky::Louisville::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59418036000,DateTime::TimeZone::NEG_INFINITY,59418015418,-20582,0,'LMT',],[59418036000,60502406400,59418014400,60502384800,-21600,0,'CST',],[60502406400,60520546800,60502388400,60520528800,-18000,1,'CDT',],[60520546800,60533856000,60520525200,60533834400,-21600,0,'CST',],[60533856000,60551996400,60533838000,60551978400,-18000,1,'CDT',],[60551996400,60589404000,60551974800,60589382400,-21600,0,'CST',],[60589404000,60599779200,60589382400,60599757600,-21600,0,'CST',],[60599779200,60610402800,60599761200,60610384800,-18000,1,'CDT',],[60610402800,61230585600,60610381200,61230564000,-21600,0,'CST',],[61230585600,61243887600,61230567600,61243869600,-18000,1,'CDT',],[61243887600,61252092000,61243866000,61252070400,-21600,0,'CST',],[61252092000,61255468800,61252070400,61255447200,-21600,0,'CST',],[61255468800,61366287600,61255450800,61366269600,-18000,1,'CWT',],[61366287600,61370290800,61366269600,61370272800,-18000,1,'CPT',],[61370290800,61378322400,61370269200,61378300800,-21600,0,'CST',],[61378322400,61391458800,61378304400,61391440800,-18000,1,'CDT',],[61391458800,61419888000,61391437200,61419866400,-21600,0,'CST',],[61419888000,61527538800,61419870000,61527520800,-18000,1,'CDT',],[61527538800,61546291200,61527517200,61546269600,-21600,0,'CST',],[61546291200,61559593200,61546273200,61559575200,-18000,1,'CDT',],[61559593200,61577740800,61559571600,61577719200,-21600,0,'CST',],[61577740800,61591042800,61577722800,61591024800,-18000,1,'CDT',],[61591042800,61609190400,61591021200,61609168800,-21600,0,'CST',],[61609190400,61622492400,61609172400,61622474400,-18000,1,'CDT',],[61622492400,61640640000,61622470800,61640618400,-21600,0,'CST',],[61640640000,61653942000,61640622000,61653924000,-18000,1,'CDT',],[61653942000,61672089600,61653920400,61672068000,-21600,0,'CST',],[61672089600,61685391600,61672071600,61685373600,-18000,1,'CDT',],[61685391600,61704144000,61685370000,61704122400,-21600,0,'CST',],[61704144000,61719865200,61704126000,61719847200,-18000,1,'CDT',],[61719865200,61735593600,61719843600,61735572000,-21600,0,'CST',],[61735593600,61751314800,61735575600,61751296800,-18000,1,'CDT',],[61751314800,61767043200,61751293200,61767021600,-21600,0,'CST',],[61767043200,61782764400,61767025200,61782746400,-18000,1,'CDT',],[61782764400,61798492800,61782742800,61798471200,-21600,0,'CST',],[61798492800,61814214000,61798474800,61814196000,-18000,1,'CDT',],[61814214000,61829942400,61814192400,61829920800,-21600,0,'CST',],[61829942400,61846268400,61829924400,61846250400,-18000,1,'CDT',],[61846268400,61861996800,61846246800,61861975200,-21600,0,'CST',],[61861996800,61869250800,61861978800,61869232800,-18000,1,'CDT',],[61869250800,62072542800,61869232800,62072524800,-18000,0,'EST',],[62072542800,62082745200,62072524800,62082727200,-18000,0,'EST',],[62082745200,62098466400,62082730800,62098452000,-14400,1,'EDT',],[62098466400,62114194800,62098448400,62114176800,-18000,0,'EST',],[62114194800,62129916000,62114180400,62129901600,-14400,1,'EDT',],[62129916000,62145644400,62129898000,62145626400,-18000,0,'EST',],[62145644400,62161365600,62145630000,62161351200,-14400,1,'EDT',],[62161365600,62177094000,62161347600,62177076000,-18000,0,'EST',],[62177094000,62193420000,62177079600,62193405600,-14400,1,'EDT',],[62193420000,62209148400,62193402000,62209130400,-18000,0,'EST',],[62209148400,62224869600,62209134000,62224855200,-14400,1,'EDT',],[62224869600,62240598000,62224851600,62240580000,-18000,0,'EST',],[62240598000,62256319200,62240583600,62256304800,-14400,1,'EDT',],[62256319200,62262370800,62256301200,62262352800,-18000,0,'EST',],[62262370800,62287772400,62262352800,62287754400,-18000,1,'CDT',],[62287772400,62298054000,62287754400,62298036000,-18000,0,'EST',],[62298054000,62319218400,62298039600,62319204000,-14400,1,'EDT',],[62319218400,62334946800,62319200400,62334928800,-18000,0,'EST',],[62334946800,62351272800,62334932400,62351258400,-14400,1,'EDT',],[62351272800,62366396400,62351254800,62366378400,-18000,0,'EST',],[62366396400,62382722400,62366382000,62382708000,-14400,1,'EDT',],[62382722400,62398450800,62382704400,62398432800,-18000,0,'EST',],[62398450800,62414172000,62398436400,62414157600,-14400,1,'EDT',],[62414172000,62429900400,62414154000,62429882400,-18000,0,'EST',],[62429900400,62445621600,62429886000,62445607200,-14400,1,'EDT',],[62445621600,62461350000,62445603600,62461332000,-18000,0,'EST',],[62461350000,62477071200,62461335600,62477056800,-14400,1,'EDT',],[62477071200,62492799600,62477053200,62492781600,-18000,0,'EST',],[62492799600,62508520800,62492785200,62508506400,-14400,1,'EDT',],[62508520800,62524249200,62508502800,62524231200,-18000,0,'EST',],[62524249200,62540575200,62524234800,62540560800,-14400,1,'EDT',],[62540575200,62555698800,62540557200,62555680800,-18000,0,'EST',],[62555698800,62572024800,62555684400,62572010400,-14400,1,'EDT',],[62572024800,62587753200,62572006800,62587735200,-18000,0,'EST',],[62587753200,62603474400,62587738800,62603460000,-14400,1,'EDT',],[62603474400,62619202800,62603456400,62619184800,-18000,0,'EST',],[62619202800,62634924000,62619188400,62634909600,-14400,1,'EDT',],[62634924000,62650652400,62634906000,62650634400,-18000,0,'EST',],[62650652400,62666373600,62650638000,62666359200,-14400,1,'EDT',],[62666373600,62680287600,62666355600,62680269600,-18000,0,'EST',],[62680287600,62697823200,62680273200,62697808800,-14400,1,'EDT',],[62697823200,62711737200,62697805200,62711719200,-18000,0,'EST',],[62711737200,62729877600,62711722800,62729863200,-14400,1,'EDT',],[62729877600,62743186800,62729859600,62743168800,-18000,0,'EST',],[62743186800,62761327200,62743172400,62761312800,-14400,1,'EDT',],[62761327200,62774636400,62761309200,62774618400,-18000,0,'EST',],[62774636400,62792776800,62774622000,62792762400,-14400,1,'EDT',],[62792776800,62806690800,62792758800,62806672800,-18000,0,'EST',],[62806690800,62824226400,62806676400,62824212000,-14400,1,'EDT',],[62824226400,62838140400,62824208400,62838122400,-18000,0,'EST',],[62838140400,62855676000,62838126000,62855661600,-14400,1,'EDT',],[62855676000,62869590000,62855658000,62869572000,-18000,0,'EST',],[62869590000,62887730400,62869575600,62887716000,-14400,1,'EDT',],[62887730400,62901039600,62887712400,62901021600,-18000,0,'EST',],[62901039600,62919180000,62901025200,62919165600,-14400,1,'EDT',],[62919180000,62932489200,62919162000,62932471200,-18000,0,'EST',],[62932489200,62950629600,62932474800,62950615200,-14400,1,'EDT',],[62950629600,62964543600,62950611600,62964525600,-18000,0,'EST',],[62964543600,62982079200,62964529200,62982064800,-14400,1,'EDT',],[62982079200,62995993200,62982061200,62995975200,-18000,0,'EST',],[62995993200,63013528800,62995978800,63013514400,-14400,1,'EDT',],[63013528800,63027442800,63013510800,63027424800,-18000,0,'EST',],[63027442800,63044978400,63027428400,63044964000,-14400,1,'EDT',],[63044978400,63058892400,63044960400,63058874400,-18000,0,'EST',],[63058892400,63077032800,63058878000,63077018400,-14400,1,'EDT',],[63077032800,63090342000,63077014800,63090324000,-18000,0,'EST',],[63090342000,63108482400,63090327600,63108468000,-14400,1,'EDT',],[63108482400,63121791600,63108464400,63121773600,-18000,0,'EST',],[63121791600,63139932000,63121777200,63139917600,-14400,1,'EDT',],[63139932000,63153846000,63139914000,63153828000,-18000,0,'EST',],[63153846000,63171381600,63153831600,63171367200,-14400,1,'EDT',],[63171381600,63185295600,63171363600,63185277600,-18000,0,'EST',],[63185295600,63202831200,63185281200,63202816800,-14400,1,'EDT',],[63202831200,63216745200,63202813200,63216727200,-18000,0,'EST',],[63216745200,63234885600,63216730800,63234871200,-14400,1,'EDT',],[63234885600,63248194800,63234867600,63248176800,-18000,0,'EST',],[63248194800,63266335200,63248180400,63266320800,-14400,1,'EDT',],[63266335200,63279644400,63266317200,63279626400,-18000,0,'EST',],[63279644400,63297784800,63279630000,63297770400,-14400,1,'EDT',],[63297784800,63309279600,63297766800,63309261600,-18000,0,'EST',],[63309279600,63329839200,63309265200,63329824800,-14400,1,'EDT',],[63329839200,63340729200,63329821200,63340711200,-18000,0,'EST',],[63340729200,63361288800,63340714800,63361274400,-14400,1,'EDT',],[63361288800,63372178800,63361270800,63372160800,-18000,0,'EST',],[63372178800,63392738400,63372164400,63392724000,-14400,1,'EDT',],[63392738400,63404233200,63392720400,63404215200,-18000,0,'EST',],[63404233200,63424792800,63404218800,63424778400,-14400,1,'EDT',],[63424792800,63435682800,63424774800,63435664800,-18000,0,'EST',],[63435682800,63456242400,63435668400,63456228000,-14400,1,'EDT',],[63456242400,63467132400,63456224400,63467114400,-18000,0,'EST',],[63467132400,63487692000,63467118000,63487677600,-14400,1,'EDT',],[63487692000,63498582000,63487674000,63498564000,-18000,0,'EST',],[63498582000,63519141600,63498567600,63519127200,-14400,1,'EDT',],[63519141600,63530031600,63519123600,63530013600,-18000,0,'EST',],[63530031600,63550591200,63530017200,63550576800,-14400,1,'EDT',],[63550591200,63561481200,63550573200,63561463200,-18000,0,'EST',],[63561481200,63582040800,63561466800,63582026400,-14400,1,'EDT',],[63582040800,63593535600,63582022800,63593517600,-18000,0,'EST',],[63593535600,63614095200,63593521200,63614080800,-14400,1,'EDT',],[63614095200,63624985200,63614077200,63624967200,-18000,0,'EST',],[63624985200,63645544800,63624970800,63645530400,-14400,1,'EDT',],[63645544800,63656434800,63645526800,63656416800,-18000,0,'EST',],[63656434800,63676994400,63656420400,63676980000,-14400,1,'EDT',],[63676994400,63687884400,63676976400,63687866400,-18000,0,'EST',],[63687884400,63708444000,63687870000,63708429600,-14400,1,'EDT',],[63708444000,63719334000,63708426000,63719316000,-18000,0,'EST',],[63719334000,63739893600,63719319600,63739879200,-14400,1,'EDT',],[63739893600,63751388400,63739875600,63751370400,-18000,0,'EST',],[63751388400,63771948000,63751374000,63771933600,-14400,1,'EDT',],[63771948000,63782838000,63771930000,63782820000,-18000,0,'EST',],[63782838000,63803397600,63782823600,63803383200,-14400,1,'EDT',],[63803397600,63814287600,63803379600,63814269600,-18000,0,'EST',],[63814287600,63834847200,63814273200,63834832800,-14400,1,'EDT',],[63834847200,63845737200,63834829200,63845719200,-18000,0,'EST',],[63845737200,63866296800,63845722800,63866282400,-14400,1,'EDT',],[63866296800,63877186800,63866278800,63877168800,-18000,0,'EST',],[63877186800,63897746400,63877172400,63897732000,-14400,1,'EDT',],[63897746400,63908636400,63897728400,63908618400,-18000,0,'EST',],[63908636400,63929196000,63908622000,63929181600,-14400,1,'EDT',],[63929196000,63940690800,63929178000,63940672800,-18000,0,'EST',],[63940690800,63961250400,63940676400,63961236000,-14400,1,'EDT',],];sub olson_version {'2016a'}sub has_dst_changes {79}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-18000}my$last_observance=bless({'format'=>'E%sT','gmtoff'=>'-5:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>720923,'local_rd_secs'=>7200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>720923,'utc_rd_secs'=>7200,'utc_year'=>1975 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-18000,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>720923,'local_rd_secs'=>25200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>720923,'utc_rd_secs'=>25200,'utc_year'=>1975 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_KENTUCKY_LOUISVILLE

$fatpacked{"DateTime/TimeZone/America/Kentucky/Monticello.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_KENTUCKY_MONTICELLO';
  package DateTime::TimeZone::America::Kentucky::Monticello;$DateTime::TimeZone::America::Kentucky::Monticello::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Kentucky::Monticello::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59418036000,DateTime::TimeZone::NEG_INFINITY,59418015636,-20364,0,'LMT',],[59418036000,60502406400,59418014400,60502384800,-21600,0,'CST',],[60502406400,60520546800,60502388400,60520528800,-18000,1,'CDT',],[60520546800,60533856000,60520525200,60533834400,-21600,0,'CST',],[60533856000,60551996400,60533838000,60551978400,-18000,1,'CDT',],[60551996400,61255468800,60551974800,61255447200,-21600,0,'CST',],[61255468800,61366287600,61255450800,61366269600,-18000,1,'CWT',],[61366287600,61370290800,61366269600,61370272800,-18000,1,'CPT',],[61370290800,61378322400,61370269200,61378300800,-21600,0,'CST',],[61378322400,62072546400,61378300800,62072524800,-21600,0,'CST',],[62072546400,62082748800,62072524800,62082727200,-21600,0,'CST',],[62082748800,62098470000,62082730800,62098452000,-18000,1,'CDT',],[62098470000,62114198400,62098448400,62114176800,-21600,0,'CST',],[62114198400,62129919600,62114180400,62129901600,-18000,1,'CDT',],[62129919600,62145648000,62129898000,62145626400,-21600,0,'CST',],[62145648000,62161369200,62145630000,62161351200,-18000,1,'CDT',],[62161369200,62177097600,62161347600,62177076000,-21600,0,'CST',],[62177097600,62193423600,62177079600,62193405600,-18000,1,'CDT',],[62193423600,62209152000,62193402000,62209130400,-21600,0,'CST',],[62209152000,62224873200,62209134000,62224855200,-18000,1,'CDT',],[62224873200,62240601600,62224851600,62240580000,-21600,0,'CST',],[62240601600,62256322800,62240583600,62256304800,-18000,1,'CDT',],[62256322800,62262374400,62256301200,62262352800,-21600,0,'CST',],[62262374400,62287772400,62262356400,62287754400,-18000,1,'CDT',],[62287772400,62298057600,62287750800,62298036000,-21600,0,'CST',],[62298057600,62319222000,62298039600,62319204000,-18000,1,'CDT',],[62319222000,62334950400,62319200400,62334928800,-21600,0,'CST',],[62334950400,62351276400,62334932400,62351258400,-18000,1,'CDT',],[62351276400,62366400000,62351254800,62366378400,-21600,0,'CST',],[62366400000,62382726000,62366382000,62382708000,-18000,1,'CDT',],[62382726000,62398454400,62382704400,62398432800,-21600,0,'CST',],[62398454400,62414175600,62398436400,62414157600,-18000,1,'CDT',],[62414175600,62429904000,62414154000,62429882400,-21600,0,'CST',],[62429904000,62445625200,62429886000,62445607200,-18000,1,'CDT',],[62445625200,62461353600,62445603600,62461332000,-21600,0,'CST',],[62461353600,62477074800,62461335600,62477056800,-18000,1,'CDT',],[62477074800,62492803200,62477053200,62492781600,-21600,0,'CST',],[62492803200,62508524400,62492785200,62508506400,-18000,1,'CDT',],[62508524400,62524252800,62508502800,62524231200,-21600,0,'CST',],[62524252800,62540578800,62524234800,62540560800,-18000,1,'CDT',],[62540578800,62555702400,62540557200,62555680800,-21600,0,'CST',],[62555702400,62572028400,62555684400,62572010400,-18000,1,'CDT',],[62572028400,62587756800,62572006800,62587735200,-21600,0,'CST',],[62587756800,62603478000,62587738800,62603460000,-18000,1,'CDT',],[62603478000,62619206400,62603456400,62619184800,-21600,0,'CST',],[62619206400,62634927600,62619188400,62634909600,-18000,1,'CDT',],[62634927600,62650656000,62634906000,62650634400,-21600,0,'CST',],[62650656000,62666377200,62650638000,62666359200,-18000,1,'CDT',],[62666377200,62680291200,62666355600,62680269600,-21600,0,'CST',],[62680291200,62697826800,62680273200,62697808800,-18000,1,'CDT',],[62697826800,62711740800,62697805200,62711719200,-21600,0,'CST',],[62711740800,62729881200,62711722800,62729863200,-18000,1,'CDT',],[62729881200,62743190400,62729859600,62743168800,-21600,0,'CST',],[62743190400,62761330800,62743172400,62761312800,-18000,1,'CDT',],[62761330800,62774640000,62761309200,62774618400,-21600,0,'CST',],[62774640000,62792780400,62774622000,62792762400,-18000,1,'CDT',],[62792780400,62806694400,62792758800,62806672800,-21600,0,'CST',],[62806694400,62824230000,62806676400,62824212000,-18000,1,'CDT',],[62824230000,62838144000,62824208400,62838122400,-21600,0,'CST',],[62838144000,62855679600,62838126000,62855661600,-18000,1,'CDT',],[62855679600,62869593600,62855658000,62869572000,-21600,0,'CST',],[62869593600,62887734000,62869575600,62887716000,-18000,1,'CDT',],[62887734000,62901043200,62887712400,62901021600,-21600,0,'CST',],[62901043200,62919183600,62901025200,62919165600,-18000,1,'CDT',],[62919183600,62932492800,62919162000,62932471200,-21600,0,'CST',],[62932492800,62950633200,62932474800,62950615200,-18000,1,'CDT',],[62950633200,62964547200,62950611600,62964525600,-21600,0,'CST',],[62964547200,62982082800,62964529200,62982064800,-18000,1,'CDT',],[62982082800,62995996800,62982061200,62995975200,-21600,0,'CST',],[62995996800,63013532400,62995978800,63013514400,-18000,1,'CDT',],[63013532400,63027446400,63013510800,63027424800,-21600,0,'CST',],[63027446400,63044982000,63027428400,63044964000,-18000,1,'CDT',],[63044982000,63058896000,63044960400,63058874400,-21600,0,'CST',],[63058896000,63077036400,63058878000,63077018400,-18000,1,'CDT',],[63077036400,63090345600,63077014800,63090324000,-21600,0,'CST',],[63090345600,63108486000,63090327600,63108468000,-18000,1,'CDT',],[63108486000,63121791600,63108468000,63121773600,-18000,0,'EST',],[63121791600,63139932000,63121777200,63139917600,-14400,1,'EDT',],[63139932000,63153846000,63139914000,63153828000,-18000,0,'EST',],[63153846000,63171381600,63153831600,63171367200,-14400,1,'EDT',],[63171381600,63185295600,63171363600,63185277600,-18000,0,'EST',],[63185295600,63202831200,63185281200,63202816800,-14400,1,'EDT',],[63202831200,63216745200,63202813200,63216727200,-18000,0,'EST',],[63216745200,63234885600,63216730800,63234871200,-14400,1,'EDT',],[63234885600,63248194800,63234867600,63248176800,-18000,0,'EST',],[63248194800,63266335200,63248180400,63266320800,-14400,1,'EDT',],[63266335200,63279644400,63266317200,63279626400,-18000,0,'EST',],[63279644400,63297784800,63279630000,63297770400,-14400,1,'EDT',],[63297784800,63309279600,63297766800,63309261600,-18000,0,'EST',],[63309279600,63329839200,63309265200,63329824800,-14400,1,'EDT',],[63329839200,63340729200,63329821200,63340711200,-18000,0,'EST',],[63340729200,63361288800,63340714800,63361274400,-14400,1,'EDT',],[63361288800,63372178800,63361270800,63372160800,-18000,0,'EST',],[63372178800,63392738400,63372164400,63392724000,-14400,1,'EDT',],[63392738400,63404233200,63392720400,63404215200,-18000,0,'EST',],[63404233200,63424792800,63404218800,63424778400,-14400,1,'EDT',],[63424792800,63435682800,63424774800,63435664800,-18000,0,'EST',],[63435682800,63456242400,63435668400,63456228000,-14400,1,'EDT',],[63456242400,63467132400,63456224400,63467114400,-18000,0,'EST',],[63467132400,63487692000,63467118000,63487677600,-14400,1,'EDT',],[63487692000,63498582000,63487674000,63498564000,-18000,0,'EST',],[63498582000,63519141600,63498567600,63519127200,-14400,1,'EDT',],[63519141600,63530031600,63519123600,63530013600,-18000,0,'EST',],[63530031600,63550591200,63530017200,63550576800,-14400,1,'EDT',],[63550591200,63561481200,63550573200,63561463200,-18000,0,'EST',],[63561481200,63582040800,63561466800,63582026400,-14400,1,'EDT',],[63582040800,63593535600,63582022800,63593517600,-18000,0,'EST',],[63593535600,63614095200,63593521200,63614080800,-14400,1,'EDT',],[63614095200,63624985200,63614077200,63624967200,-18000,0,'EST',],[63624985200,63645544800,63624970800,63645530400,-14400,1,'EDT',],[63645544800,63656434800,63645526800,63656416800,-18000,0,'EST',],[63656434800,63676994400,63656420400,63676980000,-14400,1,'EDT',],[63676994400,63687884400,63676976400,63687866400,-18000,0,'EST',],[63687884400,63708444000,63687870000,63708429600,-14400,1,'EDT',],[63708444000,63719334000,63708426000,63719316000,-18000,0,'EST',],[63719334000,63739893600,63719319600,63739879200,-14400,1,'EDT',],[63739893600,63751388400,63739875600,63751370400,-18000,0,'EST',],[63751388400,63771948000,63751374000,63771933600,-14400,1,'EDT',],[63771948000,63782838000,63771930000,63782820000,-18000,0,'EST',],[63782838000,63803397600,63782823600,63803383200,-14400,1,'EDT',],[63803397600,63814287600,63803379600,63814269600,-18000,0,'EST',],[63814287600,63834847200,63814273200,63834832800,-14400,1,'EDT',],[63834847200,63845737200,63834829200,63845719200,-18000,0,'EST',],[63845737200,63866296800,63845722800,63866282400,-14400,1,'EDT',],[63866296800,63877186800,63866278800,63877168800,-18000,0,'EST',],[63877186800,63897746400,63877172400,63897732000,-14400,1,'EDT',],[63897746400,63908636400,63897728400,63908618400,-18000,0,'EST',],[63908636400,63929196000,63908622000,63929181600,-14400,1,'EDT',],[63929196000,63940690800,63929178000,63940672800,-18000,0,'EST',],[63940690800,63961250400,63940676400,63961236000,-14400,1,'EDT',],];sub olson_version {'2016a'}sub has_dst_changes {64}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-18000}my$last_observance=bless({'format'=>'E%sT','gmtoff'=>'-5:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>730422,'local_rd_secs'=>7200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>730422,'utc_rd_secs'=>7200,'utc_year'=>2001 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-18000,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>730422,'local_rd_secs'=>25200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>730422,'utc_rd_secs'=>25200,'utc_year'=>2001 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_KENTUCKY_MONTICELLO

$fatpacked{"DateTime/TimeZone/America/La_Paz.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_LA_PAZ';
  package DateTime::TimeZone::America::La_Paz;$DateTime::TimeZone::America::La_Paz::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::La_Paz::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59611177956,DateTime::TimeZone::NEG_INFINITY,59611161600,-16356,0,'LMT',],[59611177956,60929728356,59611161600,60929712000,-16356,0,'CMT',],[60929728356,60943375956,60929715600,60943363200,-12756,1,'BOST',],[60943375956,DateTime::TimeZone::INFINITY,60943361556,DateTime::TimeZone::INFINITY,-14400,0,'BOT',],];sub olson_version {'2016a'}sub has_dst_changes {1}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_LA_PAZ

$fatpacked{"DateTime/TimeZone/America/Lima.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_LIMA';
  package DateTime::TimeZone::America::Lima;$DateTime::TimeZone::America::Lima::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Lima::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59611180092,DateTime::TimeZone::NEG_INFINITY,59611161600,-18492,0,'LMT',],[59611180092,60197144916,59611161576,60197126400,-18516,0,'LMT',],[60197144916,61125858000,60197126916,61125840000,-18000,0,'PET',],[61125858000,61133630400,61125843600,61133616000,-14400,1,'PEST',],[61133630400,61148926800,61133612400,61148908800,-18000,0,'PET',],[61148926800,61164648000,61148912400,61164633600,-14400,1,'PEST',],[61164648000,61180376400,61164630000,61180358400,-18000,0,'PET',],[61180376400,61196097600,61180362000,61196083200,-14400,1,'PEST',],[61196097600,62640622800,61196079600,62640604800,-18000,0,'PET',],[62640622800,62648395200,62640608400,62648380800,-14400,1,'PEST',],[62648395200,62672158800,62648377200,62672140800,-18000,0,'PET',],[62672158800,62679931200,62672144400,62679916800,-14400,1,'PEST',],[62679931200,62766853200,62679913200,62766835200,-18000,0,'PET',],[62766853200,62774625600,62766838800,62774611200,-14400,1,'PEST',],[62774625600,62893083600,62774607600,62893065600,-18000,0,'PET',],[62893083600,62900856000,62893069200,62900841600,-14400,1,'PEST',],[62900856000,DateTime::TimeZone::INFINITY,62900838000,DateTime::TimeZone::INFINITY,-18000,0,'PET',],];sub olson_version {'2016a'}sub has_dst_changes {7}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_LIMA

$fatpacked{"DateTime/TimeZone/America/Los_Angeles.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_LOS_ANGELES';
  package DateTime::TimeZone::America::Los_Angeles;$DateTime::TimeZone::America::Los_Angeles::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Los_Angeles::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59418043200,DateTime::TimeZone::NEG_INFINITY,59418014822,-28378,0,'LMT',],[59418043200,60502413600,59418014400,60502384800,-28800,0,'PST',],[60502413600,60520554000,60502388400,60520528800,-25200,1,'PDT',],[60520554000,60533863200,60520525200,60533834400,-28800,0,'PST',],[60533863200,60552003600,60533838000,60551978400,-25200,1,'PDT',],[60552003600,61255476000,60551974800,61255447200,-28800,0,'PST',],[61255476000,61366287600,61255450800,61366262400,-25200,1,'PWT',],[61366287600,61370298000,61366262400,61370272800,-25200,1,'PPT',],[61370298000,61378329600,61370269200,61378300800,-28800,0,'PST',],[61378329600,61447716000,61378300800,61447687200,-28800,0,'PST',],[61447716000,61473027600,61447690800,61473002400,-25200,1,'PDT',],[61473027600,61514848800,61472998800,61514820000,-28800,0,'PST',],[61514848800,61527546000,61514823600,61527520800,-25200,1,'PDT',],[61527546000,61546298400,61527517200,61546269600,-28800,0,'PST',],[61546298400,61559600400,61546273200,61559575200,-25200,1,'PDT',],[61559600400,61577748000,61559571600,61577719200,-28800,0,'PST',],[61577748000,61591050000,61577722800,61591024800,-25200,1,'PDT',],[61591050000,61609197600,61591021200,61609168800,-28800,0,'PST',],[61609197600,61622499600,61609172400,61622474400,-25200,1,'PDT',],[61622499600,61640647200,61622470800,61640618400,-28800,0,'PST',],[61640647200,61653949200,61640622000,61653924000,-25200,1,'PDT',],[61653949200,61672096800,61653920400,61672068000,-28800,0,'PST',],[61672096800,61685398800,61672071600,61685373600,-25200,1,'PDT',],[61685398800,61704151200,61685370000,61704122400,-28800,0,'PST',],[61704151200,61717453200,61704126000,61717428000,-25200,1,'PDT',],[61717453200,61735600800,61717424400,61735572000,-28800,0,'PST',],[61735600800,61748902800,61735575600,61748877600,-25200,1,'PDT',],[61748902800,61767050400,61748874000,61767021600,-28800,0,'PST',],[61767050400,61780352400,61767025200,61780327200,-25200,1,'PDT',],[61780352400,61798500000,61780323600,61798471200,-28800,0,'PST',],[61798500000,61811802000,61798474800,61811776800,-25200,1,'PDT',],[61811802000,61829949600,61811773200,61829920800,-28800,0,'PST',],[61829949600,61843251600,61829924400,61843226400,-25200,1,'PDT',],[61843251600,61862004000,61843222800,61861975200,-28800,0,'PST',],[61862004000,61874701200,61861978800,61874676000,-25200,1,'PDT',],[61874701200,61893453600,61874672400,61893424800,-28800,0,'PST',],[61893453600,61909174800,61893428400,61909149600,-25200,1,'PDT',],[61909174800,61924903200,61909146000,61924874400,-28800,0,'PST',],[61924903200,61940624400,61924878000,61940599200,-25200,1,'PDT',],[61940624400,61956352800,61940595600,61956324000,-28800,0,'PST',],[61956352800,61972074000,61956327600,61972048800,-25200,1,'PDT',],[61972074000,61987802400,61972045200,61987773600,-28800,0,'PST',],[61987802400,62004128400,61987777200,62004103200,-25200,1,'PDT',],[62004128400,62019252000,62004099600,62019223200,-28800,0,'PST',],[62019252000,62035578000,62019226800,62035552800,-25200,1,'PDT',],[62035578000,62041017600,62035549200,62040988800,-28800,0,'PST',],[62041017600,62051306400,62040988800,62051277600,-28800,0,'PST',],[62051306400,62067027600,62051281200,62067002400,-25200,1,'PDT',],[62067027600,62082756000,62066998800,62082727200,-28800,0,'PST',],[62082756000,62098477200,62082730800,62098452000,-25200,1,'PDT',],[62098477200,62114205600,62098448400,62114176800,-28800,0,'PST',],[62114205600,62129926800,62114180400,62129901600,-25200,1,'PDT',],[62129926800,62145655200,62129898000,62145626400,-28800,0,'PST',],[62145655200,62161376400,62145630000,62161351200,-25200,1,'PDT',],[62161376400,62177104800,62161347600,62177076000,-28800,0,'PST',],[62177104800,62193430800,62177079600,62193405600,-25200,1,'PDT',],[62193430800,62209159200,62193402000,62209130400,-28800,0,'PST',],[62209159200,62224880400,62209134000,62224855200,-25200,1,'PDT',],[62224880400,62240608800,62224851600,62240580000,-28800,0,'PST',],[62240608800,62256330000,62240583600,62256304800,-25200,1,'PDT',],[62256330000,62262381600,62256301200,62262352800,-28800,0,'PST',],[62262381600,62287779600,62262356400,62287754400,-25200,1,'PDT',],[62287779600,62298064800,62287750800,62298036000,-28800,0,'PST',],[62298064800,62319229200,62298039600,62319204000,-25200,1,'PDT',],[62319229200,62334957600,62319200400,62334928800,-28800,0,'PST',],[62334957600,62351283600,62334932400,62351258400,-25200,1,'PDT',],[62351283600,62366407200,62351254800,62366378400,-28800,0,'PST',],[62366407200,62382733200,62366382000,62382708000,-25200,1,'PDT',],[62382733200,62398461600,62382704400,62398432800,-28800,0,'PST',],[62398461600,62414182800,62398436400,62414157600,-25200,1,'PDT',],[62414182800,62429911200,62414154000,62429882400,-28800,0,'PST',],[62429911200,62445632400,62429886000,62445607200,-25200,1,'PDT',],[62445632400,62461360800,62445603600,62461332000,-28800,0,'PST',],[62461360800,62477082000,62461335600,62477056800,-25200,1,'PDT',],[62477082000,62492810400,62477053200,62492781600,-28800,0,'PST',],[62492810400,62508531600,62492785200,62508506400,-25200,1,'PDT',],[62508531600,62524260000,62508502800,62524231200,-28800,0,'PST',],[62524260000,62540586000,62524234800,62540560800,-25200,1,'PDT',],[62540586000,62555709600,62540557200,62555680800,-28800,0,'PST',],[62555709600,62572035600,62555684400,62572010400,-25200,1,'PDT',],[62572035600,62587764000,62572006800,62587735200,-28800,0,'PST',],[62587764000,62603485200,62587738800,62603460000,-25200,1,'PDT',],[62603485200,62619213600,62603456400,62619184800,-28800,0,'PST',],[62619213600,62634934800,62619188400,62634909600,-25200,1,'PDT',],[62634934800,62650663200,62634906000,62650634400,-28800,0,'PST',],[62650663200,62666384400,62650638000,62666359200,-25200,1,'PDT',],[62666384400,62680298400,62666355600,62680269600,-28800,0,'PST',],[62680298400,62697834000,62680273200,62697808800,-25200,1,'PDT',],[62697834000,62711748000,62697805200,62711719200,-28800,0,'PST',],[62711748000,62729888400,62711722800,62729863200,-25200,1,'PDT',],[62729888400,62743197600,62729859600,62743168800,-28800,0,'PST',],[62743197600,62761338000,62743172400,62761312800,-25200,1,'PDT',],[62761338000,62774647200,62761309200,62774618400,-28800,0,'PST',],[62774647200,62792787600,62774622000,62792762400,-25200,1,'PDT',],[62792787600,62806701600,62792758800,62806672800,-28800,0,'PST',],[62806701600,62824237200,62806676400,62824212000,-25200,1,'PDT',],[62824237200,62838151200,62824208400,62838122400,-28800,0,'PST',],[62838151200,62855686800,62838126000,62855661600,-25200,1,'PDT',],[62855686800,62869600800,62855658000,62869572000,-28800,0,'PST',],[62869600800,62887741200,62869575600,62887716000,-25200,1,'PDT',],[62887741200,62901050400,62887712400,62901021600,-28800,0,'PST',],[62901050400,62919190800,62901025200,62919165600,-25200,1,'PDT',],[62919190800,62932500000,62919162000,62932471200,-28800,0,'PST',],[62932500000,62950640400,62932474800,62950615200,-25200,1,'PDT',],[62950640400,62964554400,62950611600,62964525600,-28800,0,'PST',],[62964554400,62982090000,62964529200,62982064800,-25200,1,'PDT',],[62982090000,62996004000,62982061200,62995975200,-28800,0,'PST',],[62996004000,63013539600,62995978800,63013514400,-25200,1,'PDT',],[63013539600,63027453600,63013510800,63027424800,-28800,0,'PST',],[63027453600,63044989200,63027428400,63044964000,-25200,1,'PDT',],[63044989200,63058903200,63044960400,63058874400,-28800,0,'PST',],[63058903200,63077043600,63058878000,63077018400,-25200,1,'PDT',],[63077043600,63090352800,63077014800,63090324000,-28800,0,'PST',],[63090352800,63108493200,63090327600,63108468000,-25200,1,'PDT',],[63108493200,63121802400,63108464400,63121773600,-28800,0,'PST',],[63121802400,63139942800,63121777200,63139917600,-25200,1,'PDT',],[63139942800,63153856800,63139914000,63153828000,-28800,0,'PST',],[63153856800,63171392400,63153831600,63171367200,-25200,1,'PDT',],[63171392400,63185306400,63171363600,63185277600,-28800,0,'PST',],[63185306400,63202842000,63185281200,63202816800,-25200,1,'PDT',],[63202842000,63216756000,63202813200,63216727200,-28800,0,'PST',],[63216756000,63234896400,63216730800,63234871200,-25200,1,'PDT',],[63234896400,63248205600,63234867600,63248176800,-28800,0,'PST',],[63248205600,63266346000,63248180400,63266320800,-25200,1,'PDT',],[63266346000,63279655200,63266317200,63279626400,-28800,0,'PST',],[63279655200,63297795600,63279630000,63297770400,-25200,1,'PDT',],[63297795600,63309290400,63297766800,63309261600,-28800,0,'PST',],[63309290400,63329850000,63309265200,63329824800,-25200,1,'PDT',],[63329850000,63340740000,63329821200,63340711200,-28800,0,'PST',],[63340740000,63361299600,63340714800,63361274400,-25200,1,'PDT',],[63361299600,63372189600,63361270800,63372160800,-28800,0,'PST',],[63372189600,63392749200,63372164400,63392724000,-25200,1,'PDT',],[63392749200,63404244000,63392720400,63404215200,-28800,0,'PST',],[63404244000,63424803600,63404218800,63424778400,-25200,1,'PDT',],[63424803600,63435693600,63424774800,63435664800,-28800,0,'PST',],[63435693600,63456253200,63435668400,63456228000,-25200,1,'PDT',],[63456253200,63467143200,63456224400,63467114400,-28800,0,'PST',],[63467143200,63487702800,63467118000,63487677600,-25200,1,'PDT',],[63487702800,63498592800,63487674000,63498564000,-28800,0,'PST',],[63498592800,63519152400,63498567600,63519127200,-25200,1,'PDT',],[63519152400,63530042400,63519123600,63530013600,-28800,0,'PST',],[63530042400,63550602000,63530017200,63550576800,-25200,1,'PDT',],[63550602000,63561492000,63550573200,63561463200,-28800,0,'PST',],[63561492000,63582051600,63561466800,63582026400,-25200,1,'PDT',],[63582051600,63593546400,63582022800,63593517600,-28800,0,'PST',],[63593546400,63614106000,63593521200,63614080800,-25200,1,'PDT',],[63614106000,63624996000,63614077200,63624967200,-28800,0,'PST',],[63624996000,63645555600,63624970800,63645530400,-25200,1,'PDT',],[63645555600,63656445600,63645526800,63656416800,-28800,0,'PST',],[63656445600,63677005200,63656420400,63676980000,-25200,1,'PDT',],[63677005200,63687895200,63676976400,63687866400,-28800,0,'PST',],[63687895200,63708454800,63687870000,63708429600,-25200,1,'PDT',],[63708454800,63719344800,63708426000,63719316000,-28800,0,'PST',],[63719344800,63739904400,63719319600,63739879200,-25200,1,'PDT',],[63739904400,63751399200,63739875600,63751370400,-28800,0,'PST',],[63751399200,63771958800,63751374000,63771933600,-25200,1,'PDT',],[63771958800,63782848800,63771930000,63782820000,-28800,0,'PST',],[63782848800,63803408400,63782823600,63803383200,-25200,1,'PDT',],[63803408400,63814298400,63803379600,63814269600,-28800,0,'PST',],[63814298400,63834858000,63814273200,63834832800,-25200,1,'PDT',],[63834858000,63845748000,63834829200,63845719200,-28800,0,'PST',],[63845748000,63866307600,63845722800,63866282400,-25200,1,'PDT',],[63866307600,63877197600,63866278800,63877168800,-28800,0,'PST',],[63877197600,63897757200,63877172400,63897732000,-25200,1,'PDT',],[63897757200,63908647200,63897728400,63908618400,-28800,0,'PST',],[63908647200,63929206800,63908622000,63929181600,-25200,1,'PDT',],[63929206800,63940701600,63929178000,63940672800,-28800,0,'PST',],[63940701600,63961261200,63940676400,63961236000,-25200,1,'PDT',],];sub olson_version {'2016a'}sub has_dst_changes {83}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-28800}my$last_observance=bless({'format'=>'P%sT','gmtoff'=>'-8:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>718067,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>718067,'utc_rd_secs'=>0,'utc_year'=>1968 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-28800,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>718067,'local_rd_secs'=>28800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>718067,'utc_rd_secs'=>28800,'utc_year'=>1968 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_LOS_ANGELES

$fatpacked{"DateTime/TimeZone/America/Maceio.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_MACEIO';
  package DateTime::TimeZone::America::Maceio;$DateTime::TimeZone::America::Maceio::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Maceio::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60368466172,DateTime::TimeZone::NEG_INFINITY,60368457600,-8572,0,'LMT',],[60368466172,60928725600,60368455372,60928714800,-10800,0,'BRT',],[60928725600,60944320800,60928718400,60944313600,-7200,1,'BRST',],[60944320800,60960308400,60944310000,60960297600,-10800,0,'BRT',],[60960308400,60975856800,60960301200,60975849600,-7200,1,'BRST',],[60975856800,61501863600,60975846000,61501852800,-10800,0,'BRT',],[61501863600,61513614000,61501856400,61513606800,-7200,1,'BRST',],[61513614000,61533399600,61513603200,61533388800,-10800,0,'BRT',],[61533399600,61543850400,61533392400,61543843200,-7200,1,'BRST',],[61543850400,61564935600,61543839600,61564924800,-10800,0,'BRT',],[61564935600,61575472800,61564928400,61575465600,-7200,1,'BRST',],[61575472800,61596558000,61575462000,61596547200,-10800,0,'BRT',],[61596558000,61604330400,61596550800,61604323200,-7200,1,'BRST',],[61604330400,61944318000,61604319600,61944307200,-10800,0,'BRT',],[61944318000,61951485600,61944310800,61951478400,-7200,1,'BRST',],[61951485600,61980519600,61951474800,61980508800,-10800,0,'BRT',],[61980519600,61985613600,61980512400,61985606400,-7200,1,'BRST',],[61985613600,62006785200,61985602800,62006774400,-10800,0,'BRT',],[62006785200,62014557600,62006778000,62014550400,-7200,1,'BRST',],[62014557600,62035729200,62014546800,62035718400,-10800,0,'BRT',],[62035729200,62046093600,62035722000,62046086400,-7200,1,'BRST',],[62046093600,62067265200,62046082800,62067254400,-10800,0,'BRT',],[62067265200,62077716000,62067258000,62077708800,-7200,1,'BRST',],[62077716000,62635431600,62077705200,62635420800,-10800,0,'BRT',],[62635431600,62646919200,62635424400,62646912000,-7200,1,'BRST',],[62646919200,62666276400,62646908400,62666265600,-10800,0,'BRT',],[62666276400,62675949600,62666269200,62675942400,-7200,1,'BRST',],[62675949600,62697812400,62675938800,62697801600,-10800,0,'BRT',],[62697812400,62706880800,62697805200,62706873600,-7200,1,'BRST',],[62706880800,62728657200,62706870000,62728646400,-10800,0,'BRT',],[62728657200,62737725600,62728650000,62737718400,-7200,1,'BRST',],[62737725600,62760106800,62737714800,62760096000,-10800,0,'BRT',],[62760106800,62770384800,62760099600,62770377600,-7200,1,'BRST',],[62770384800,62789223600,62770374000,62789212800,-10800,0,'BRT',],[62789223600,62949236400,62789212800,62949225600,-10800,0,'BRT',],[62949236400,62949409200,62949225600,62949398400,-10800,0,'BRT',],[62949409200,62959687200,62949402000,62959680000,-7200,1,'BRST',],[62959687200,62977489200,62959676400,62977478400,-10800,0,'BRT',],[62977489200,63074343600,62977478400,63074332800,-10800,0,'BRT',],[63074343600,63074602800,63074332800,63074592000,-10800,0,'BRT',],[63074602800,63087300000,63074595600,63087292800,-7200,1,'BRST',],[63087300000,63106657200,63087289200,63106646400,-10800,0,'BRT',],[63106657200,63107863200,63106650000,63107856000,-7200,1,'BRST',],[63107863200,63136033200,63107852400,63136022400,-10800,0,'BRT',],[63136033200,63138711600,63136022400,63138700800,-10800,0,'BRT',],[63138711600,63149594400,63138704400,63149587200,-7200,1,'BRST',],[63149594400,63169124400,63149583600,63169113600,-10800,0,'BRT',],[63169124400,DateTime::TimeZone::INFINITY,63169113600,DateTime::TimeZone::INFINITY,-10800,0,'BRT',],];sub olson_version {'2016a'}sub has_dst_changes {20}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_MACEIO

$fatpacked{"DateTime/TimeZone/America/Managua.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_MANAGUA';
  package DateTime::TimeZone::America::Managua;$DateTime::TimeZone::America::Managua::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Managua::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59611182308,DateTime::TimeZone::NEG_INFINITY,59611161600,-20708,0,'LMT',],[59611182308,61014577512,59611161596,61014556800,-20712,0,'MMT',],[61014577512,62240767200,61014555912,62240745600,-21600,0,'CST',],[62240767200,62297442000,62240749200,62297424000,-18000,0,'EST',],[62297442000,62426268000,62297420400,62426246400,-21600,0,'CST',],[62426268000,62434818000,62426250000,62434800000,-18000,1,'CDT',],[62434818000,62457717600,62434796400,62457696000,-21600,0,'CST',],[62457717600,62466267600,62457699600,62466249600,-18000,1,'CDT',],[62466267600,62829943200,62466246000,62829921600,-21600,0,'CST',],[62829943200,62852994000,62829925200,62852976000,-18000,0,'EST',],[62852994000,62861551200,62852972400,62861529600,-21600,0,'CST',],[62861551200,62987778000,62861533200,62987760000,-18000,0,'EST',],[62987778000,63248796000,62987756400,63248774400,-21600,0,'CST',],[63248796000,63263912400,63248778000,63263894400,-18000,1,'CDT',],[63263912400,63282067200,63263890800,63282045600,-21600,0,'CST',],[63282067200,63295365600,63282049200,63295347600,-18000,1,'CDT',],[63295365600,DateTime::TimeZone::INFINITY,63295344000,DateTime::TimeZone::INFINITY,-21600,0,'CST',],];sub olson_version {'2016a'}sub has_dst_changes {4}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_MANAGUA

$fatpacked{"DateTime/TimeZone/America/Manaus.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_MANAUS';
  package DateTime::TimeZone::America::Manaus;$DateTime::TimeZone::America::Manaus::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Manaus::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60368472004,DateTime::TimeZone::NEG_INFINITY,60368457600,-14404,0,'LMT',],[60368472004,60928729200,60368457604,60928714800,-14400,0,'AMT',],[60928729200,60944324400,60928718400,60944313600,-10800,1,'AMST',],[60944324400,60960312000,60944310000,60960297600,-14400,0,'AMT',],[60960312000,60975860400,60960301200,60975849600,-10800,1,'AMST',],[60975860400,61501867200,60975846000,61501852800,-14400,0,'AMT',],[61501867200,61513617600,61501856400,61513606800,-10800,1,'AMST',],[61513617600,61533403200,61513603200,61533388800,-14400,0,'AMT',],[61533403200,61543854000,61533392400,61543843200,-10800,1,'AMST',],[61543854000,61564939200,61543839600,61564924800,-14400,0,'AMT',],[61564939200,61575476400,61564928400,61575465600,-10800,1,'AMST',],[61575476400,61596561600,61575462000,61596547200,-14400,0,'AMT',],[61596561600,61604334000,61596550800,61604323200,-10800,1,'AMST',],[61604334000,61944321600,61604319600,61944307200,-14400,0,'AMT',],[61944321600,61951489200,61944310800,61951478400,-10800,1,'AMST',],[61951489200,61980523200,61951474800,61980508800,-14400,0,'AMT',],[61980523200,61985617200,61980512400,61985606400,-10800,1,'AMST',],[61985617200,62006788800,61985602800,62006774400,-14400,0,'AMT',],[62006788800,62014561200,62006778000,62014550400,-10800,1,'AMST',],[62014561200,62035732800,62014546800,62035718400,-14400,0,'AMT',],[62035732800,62046097200,62035722000,62046086400,-10800,1,'AMST',],[62046097200,62067268800,62046082800,62067254400,-14400,0,'AMT',],[62067268800,62077719600,62067258000,62077708800,-10800,1,'AMST',],[62077719600,62635435200,62077705200,62635420800,-14400,0,'AMT',],[62635435200,62646922800,62635424400,62646912000,-10800,1,'AMST',],[62646922800,62666280000,62646908400,62666265600,-14400,0,'AMT',],[62666280000,62675953200,62666269200,62675942400,-10800,1,'AMST',],[62675953200,62697816000,62675938800,62697801600,-14400,0,'AMT',],[62697816000,62706884400,62697805200,62706873600,-10800,1,'AMST',],[62706884400,62725723200,62706870000,62725708800,-14400,0,'AMT',],[62725723200,62884872000,62725708800,62884857600,-14400,0,'AMT',],[62884872000,62886513600,62884857600,62886499200,-14400,0,'AMT',],[62886513600,62897396400,62886502800,62897385600,-10800,1,'AMST',],[62897396400,62915889600,62897382000,62915875200,-14400,0,'AMT',],[62915889600,DateTime::TimeZone::INFINITY,62915875200,DateTime::TimeZone::INFINITY,-14400,0,'AMT',],];sub olson_version {'2016a'}sub has_dst_changes {15}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_MANAUS

$fatpacked{"DateTime/TimeZone/America/Martinique.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_MARTINIQUE';
  package DateTime::TimeZone::America::Martinique;$DateTime::TimeZone::America::Martinique::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Martinique::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59611176260,DateTime::TimeZone::NEG_INFINITY,59611161600,-14660,0,'LMT',],[59611176260,60284145860,59611161600,60284131200,-14660,0,'FFMT',],[60284145860,62459524800,60284131460,62459510400,-14400,0,'AST',],[62459524800,62474641200,62459514000,62474630400,-10800,1,'ADT',],[62474641200,DateTime::TimeZone::INFINITY,62474626800,DateTime::TimeZone::INFINITY,-14400,0,'AST',],];sub olson_version {'2016a'}sub has_dst_changes {1}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_MARTINIQUE

$fatpacked{"DateTime/TimeZone/America/Matamoros.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_MATAMOROS';
  package DateTime::TimeZone::America::Matamoros;$DateTime::TimeZone::America::Matamoros::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Matamoros::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60620940000,DateTime::TimeZone::NEG_INFINITY,60620916000,-24000,0,'LMT',],[60620940000,62703698400,60620918400,62703676800,-21600,0,'CST',],[62703698400,62711740800,62703676800,62711719200,-21600,0,'CST',],[62711740800,62729881200,62711722800,62729863200,-18000,1,'CDT',],[62729881200,62735320800,62729859600,62735299200,-21600,0,'CST',],[62735320800,62964547200,62735299200,62964525600,-21600,0,'CST',],[62964547200,62982082800,62964529200,62982064800,-18000,1,'CDT',],[62982082800,62995996800,62982061200,62995975200,-21600,0,'CST',],[62995996800,63013532400,62995978800,63013514400,-18000,1,'CDT',],[63013532400,63027446400,63013510800,63027424800,-21600,0,'CST',],[63027446400,63044982000,63027428400,63044964000,-18000,1,'CDT',],[63044982000,63058896000,63044960400,63058874400,-21600,0,'CST',],[63058896000,63077036400,63058878000,63077018400,-18000,1,'CDT',],[63077036400,63090345600,63077014800,63090324000,-21600,0,'CST',],[63090345600,63108486000,63090327600,63108468000,-18000,1,'CDT',],[63108486000,63124819200,63108464400,63124797600,-21600,0,'CST',],[63124819200,63137516400,63124801200,63137498400,-18000,1,'CDT',],[63137516400,63153849600,63137494800,63153828000,-21600,0,'CST',],[63153849600,63171385200,63153831600,63171367200,-18000,1,'CDT',],[63171385200,63185299200,63171363600,63185277600,-21600,0,'CST',],[63185299200,63202834800,63185281200,63202816800,-18000,1,'CDT',],[63202834800,63216748800,63202813200,63216727200,-21600,0,'CST',],[63216748800,63234889200,63216730800,63234871200,-18000,1,'CDT',],[63234889200,63248198400,63234867600,63248176800,-21600,0,'CST',],[63248198400,63266338800,63248180400,63266320800,-18000,1,'CDT',],[63266338800,63279648000,63266317200,63279626400,-21600,0,'CST',],[63279648000,63297788400,63279630000,63297770400,-18000,1,'CDT',],[63297788400,63311097600,63297766800,63311076000,-21600,0,'CST',],[63311097600,63329238000,63311079600,63329220000,-18000,1,'CDT',],[63329238000,63343152000,63329216400,63343130400,-21600,0,'CST',],[63343152000,63360687600,63343134000,63360669600,-18000,1,'CDT',],[63360687600,63374601600,63360666000,63374580000,-21600,0,'CST',],[63374601600,63392137200,63374583600,63392119200,-18000,1,'CDT',],[63392137200,63398008800,63392115600,63397987200,-21600,0,'CST',],[63398008800,63404236800,63397987200,63404215200,-21600,0,'CST',],[63404236800,63424796400,63404218800,63424778400,-18000,1,'CDT',],[63424796400,63435686400,63424774800,63435664800,-21600,0,'CST',],[63435686400,63456246000,63435668400,63456228000,-18000,1,'CDT',],[63456246000,63467136000,63456224400,63467114400,-21600,0,'CST',],[63467136000,63487695600,63467118000,63487677600,-18000,1,'CDT',],[63487695600,63498585600,63487674000,63498564000,-21600,0,'CST',],[63498585600,63519145200,63498567600,63519127200,-18000,1,'CDT',],[63519145200,63530035200,63519123600,63530013600,-21600,0,'CST',],[63530035200,63550594800,63530017200,63550576800,-18000,1,'CDT',],[63550594800,63561484800,63550573200,63561463200,-21600,0,'CST',],[63561484800,63582044400,63561466800,63582026400,-18000,1,'CDT',],[63582044400,63593539200,63582022800,63593517600,-21600,0,'CST',],[63593539200,63614098800,63593521200,63614080800,-18000,1,'CDT',],[63614098800,63624988800,63614077200,63624967200,-21600,0,'CST',],[63624988800,63645548400,63624970800,63645530400,-18000,1,'CDT',],[63645548400,63656438400,63645526800,63656416800,-21600,0,'CST',],[63656438400,63676998000,63656420400,63676980000,-18000,1,'CDT',],[63676998000,63687888000,63676976400,63687866400,-21600,0,'CST',],[63687888000,63708447600,63687870000,63708429600,-18000,1,'CDT',],[63708447600,63719337600,63708426000,63719316000,-21600,0,'CST',],[63719337600,63739897200,63719319600,63739879200,-18000,1,'CDT',],[63739897200,63751392000,63739875600,63751370400,-21600,0,'CST',],[63751392000,63771951600,63751374000,63771933600,-18000,1,'CDT',],[63771951600,63782841600,63771930000,63782820000,-21600,0,'CST',],[63782841600,63803401200,63782823600,63803383200,-18000,1,'CDT',],[63803401200,63814291200,63803379600,63814269600,-21600,0,'CST',],[63814291200,63834850800,63814273200,63834832800,-18000,1,'CDT',],[63834850800,63845740800,63834829200,63845719200,-21600,0,'CST',],[63845740800,63866300400,63845722800,63866282400,-18000,1,'CDT',],[63866300400,63877190400,63866278800,63877168800,-21600,0,'CST',],[63877190400,63897750000,63877172400,63897732000,-18000,1,'CDT',],[63897750000,63908640000,63897728400,63908618400,-21600,0,'CST',],[63908640000,63929199600,63908622000,63929181600,-18000,1,'CDT',],[63929199600,63940694400,63929178000,63940672800,-21600,0,'CST',],[63940694400,63961254000,63940676400,63961236000,-18000,1,'CDT',],];sub olson_version {'2016a'}sub has_dst_changes {33}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-21600}my$last_observance=bless({'format'=>'C%sT','gmtoff'=>'-6:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>733773,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>733773,'utc_rd_secs'=>0,'utc_year'=>2011 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-21600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>733773,'local_rd_secs'=>21600,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>733773,'utc_rd_secs'=>21600,'utc_year'=>2011 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_MATAMOROS

$fatpacked{"DateTime/TimeZone/America/Mazatlan.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_MAZATLAN';
  package DateTime::TimeZone::America::Mazatlan;$DateTime::TimeZone::America::Mazatlan::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Mazatlan::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60620943600,DateTime::TimeZone::NEG_INFINITY,60620918060,-25540,0,'LMT',],[60620943600,60792616800,60620918400,60792591600,-25200,0,'MST',],[60792616800,60900876000,60792595200,60900854400,-21600,0,'CST',],[60900876000,60915391200,60900850800,60915366000,-25200,0,'MST',],[60915391200,60928524000,60915369600,60928502400,-21600,0,'CST',],[60928524000,60944338800,60928498800,60944313600,-25200,0,'MST',],[60944338800,61261855200,60944317200,61261833600,-21600,0,'CST',],[61261855200,61474143600,61261830000,61474118400,-25200,0,'MST',],[61474143600,62135712000,61474114800,62135683200,-28800,0,'PST',],[62135712000,62964550800,62135686800,62964525600,-25200,0,'MST',],[62964550800,62982086400,62964529200,62982064800,-21600,1,'MDT',],[62982086400,62996000400,62982061200,62995975200,-25200,0,'MST',],[62996000400,63013536000,62995978800,63013514400,-21600,1,'MDT',],[63013536000,63027450000,63013510800,63027424800,-25200,0,'MST',],[63027450000,63044985600,63027428400,63044964000,-21600,1,'MDT',],[63044985600,63058899600,63044960400,63058874400,-25200,0,'MST',],[63058899600,63077040000,63058878000,63077018400,-21600,1,'MDT',],[63077040000,63090349200,63077014800,63090324000,-25200,0,'MST',],[63090349200,63108489600,63090327600,63108468000,-21600,1,'MDT',],[63108489600,63124822800,63108464400,63124797600,-25200,0,'MST',],[63124822800,63137520000,63124801200,63137498400,-21600,1,'MDT',],[63137520000,63153853200,63137494800,63153828000,-25200,0,'MST',],[63153853200,63171388800,63153831600,63171367200,-21600,1,'MDT',],[63171388800,63185302800,63171363600,63185277600,-25200,0,'MST',],[63185302800,63202838400,63185281200,63202816800,-21600,1,'MDT',],[63202838400,63216752400,63202813200,63216727200,-25200,0,'MST',],[63216752400,63234892800,63216730800,63234871200,-21600,1,'MDT',],[63234892800,63248202000,63234867600,63248176800,-25200,0,'MST',],[63248202000,63266342400,63248180400,63266320800,-21600,1,'MDT',],[63266342400,63279651600,63266317200,63279626400,-25200,0,'MST',],[63279651600,63297792000,63279630000,63297770400,-21600,1,'MDT',],[63297792000,63311101200,63297766800,63311076000,-25200,0,'MST',],[63311101200,63329241600,63311079600,63329220000,-21600,1,'MDT',],[63329241600,63343155600,63329216400,63343130400,-25200,0,'MST',],[63343155600,63360691200,63343134000,63360669600,-21600,1,'MDT',],[63360691200,63374605200,63360666000,63374580000,-25200,0,'MST',],[63374605200,63392140800,63374583600,63392119200,-21600,1,'MDT',],[63392140800,63406054800,63392115600,63406029600,-25200,0,'MST',],[63406054800,63424195200,63406033200,63424173600,-21600,1,'MDT',],[63424195200,63437504400,63424170000,63437479200,-25200,0,'MST',],[63437504400,63455644800,63437482800,63455623200,-21600,1,'MDT',],[63455644800,63468954000,63455619600,63468928800,-25200,0,'MST',],[63468954000,63487094400,63468932400,63487072800,-21600,1,'MDT',],[63487094400,63501008400,63487069200,63500983200,-25200,0,'MST',],[63501008400,63518544000,63500986800,63518522400,-21600,1,'MDT',],[63518544000,63532458000,63518518800,63532432800,-25200,0,'MST',],[63532458000,63549993600,63532436400,63549972000,-21600,1,'MDT',],[63549993600,63563907600,63549968400,63563882400,-25200,0,'MST',],[63563907600,63581443200,63563886000,63581421600,-21600,1,'MDT',],[63581443200,63595357200,63581418000,63595332000,-25200,0,'MST',],[63595357200,63613497600,63595335600,63613476000,-21600,1,'MDT',],[63613497600,63626806800,63613472400,63626781600,-25200,0,'MST',],[63626806800,63644947200,63626785200,63644925600,-21600,1,'MDT',],[63644947200,63658256400,63644922000,63658231200,-25200,0,'MST',],[63658256400,63676396800,63658234800,63676375200,-21600,1,'MDT',],[63676396800,63690310800,63676371600,63690285600,-25200,0,'MST',],[63690310800,63707846400,63690289200,63707824800,-21600,1,'MDT',],[63707846400,63721760400,63707821200,63721735200,-25200,0,'MST',],[63721760400,63739296000,63721738800,63739274400,-21600,1,'MDT',],[63739296000,63753210000,63739270800,63753184800,-25200,0,'MST',],[63753210000,63771350400,63753188400,63771328800,-21600,1,'MDT',],[63771350400,63784659600,63771325200,63784634400,-25200,0,'MST',],[63784659600,63802800000,63784638000,63802778400,-21600,1,'MDT',],[63802800000,63816109200,63802774800,63816084000,-25200,0,'MST',],[63816109200,63834249600,63816087600,63834228000,-21600,1,'MDT',],[63834249600,63848163600,63834224400,63848138400,-25200,0,'MST',],[63848163600,63865699200,63848142000,63865677600,-21600,1,'MDT',],[63865699200,63879613200,63865674000,63879588000,-25200,0,'MST',],[63879613200,63897148800,63879591600,63897127200,-21600,1,'MDT',],[63897148800,63911062800,63897123600,63911037600,-25200,0,'MST',],[63911062800,63928598400,63911041200,63928576800,-21600,1,'MDT',],[63928598400,63942512400,63928573200,63942487200,-25200,0,'MST',],[63942512400,63960652800,63942490800,63960631200,-21600,1,'MDT',],];sub olson_version {'2016a'}sub has_dst_changes {32}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-25200}my$last_observance=bless({'format'=>'M%sT','gmtoff'=>'-7:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>719163,'local_rd_secs'=>3600,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>719163,'utc_rd_secs'=>3600,'utc_year'=>1971 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-25200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>719163,'local_rd_secs'=>28800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>719163,'utc_rd_secs'=>28800,'utc_year'=>1971 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2002','in'=>'Oct','letter'=>'S','name'=>'Mexico','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2002','in'=>'Apr','letter'=>'D','name'=>'Mexico','offset_from_std'=>3600,'on'=>'Sun>=1','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_MAZATLAN

$fatpacked{"DateTime/TimeZone/America/Menominee.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_MENOMINEE';
  package DateTime::TimeZone::America::Menominee;$DateTime::TimeZone::America::Menominee::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Menominee::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59475923427,DateTime::TimeZone::NEG_INFINITY,59475902400,-21027,0,'LMT',],[59475923427,60502406400,59475901827,60502384800,-21600,0,'CST',],[60502406400,60520546800,60502388400,60520528800,-18000,1,'CDT',],[60520546800,60533856000,60520525200,60533834400,-21600,0,'CST',],[60533856000,60551996400,60533838000,60551978400,-18000,1,'CDT',],[60551996400,61255468800,60551974800,61255447200,-21600,0,'CST',],[61255468800,61366287600,61255450800,61366269600,-18000,1,'CWT',],[61366287600,61370290800,61366269600,61370272800,-18000,1,'CPT',],[61370290800,61378322400,61370269200,61378300800,-21600,0,'CST',],[61378322400,61388438400,61378300800,61388416800,-21600,0,'CST',],[61388438400,61401740400,61388420400,61401722400,-18000,1,'CDT',],[61401740400,62019244800,61401718800,62019223200,-21600,0,'CST',],[62019244800,62035570800,62019226800,62035552800,-18000,1,'CDT',],[62035570800,62114198400,62035549200,62114176800,-21600,0,'CST',],[62114198400,62240598000,62114180400,62240580000,-18000,0,'EST',],[62240598000,62256322800,62240580000,62256304800,-18000,1,'CDT',],[62256322800,62262374400,62256301200,62262352800,-21600,0,'CST',],[62262374400,62287772400,62262356400,62287754400,-18000,1,'CDT',],[62287772400,62298057600,62287750800,62298036000,-21600,0,'CST',],[62298057600,62319222000,62298039600,62319204000,-18000,1,'CDT',],[62319222000,62334950400,62319200400,62334928800,-21600,0,'CST',],[62334950400,62351276400,62334932400,62351258400,-18000,1,'CDT',],[62351276400,62366400000,62351254800,62366378400,-21600,0,'CST',],[62366400000,62382726000,62366382000,62382708000,-18000,1,'CDT',],[62382726000,62398454400,62382704400,62398432800,-21600,0,'CST',],[62398454400,62414175600,62398436400,62414157600,-18000,1,'CDT',],[62414175600,62429904000,62414154000,62429882400,-21600,0,'CST',],[62429904000,62445625200,62429886000,62445607200,-18000,1,'CDT',],[62445625200,62461353600,62445603600,62461332000,-21600,0,'CST',],[62461353600,62477074800,62461335600,62477056800,-18000,1,'CDT',],[62477074800,62492803200,62477053200,62492781600,-21600,0,'CST',],[62492803200,62508524400,62492785200,62508506400,-18000,1,'CDT',],[62508524400,62524252800,62508502800,62524231200,-21600,0,'CST',],[62524252800,62540578800,62524234800,62540560800,-18000,1,'CDT',],[62540578800,62555702400,62540557200,62555680800,-21600,0,'CST',],[62555702400,62572028400,62555684400,62572010400,-18000,1,'CDT',],[62572028400,62587756800,62572006800,62587735200,-21600,0,'CST',],[62587756800,62603478000,62587738800,62603460000,-18000,1,'CDT',],[62603478000,62619206400,62603456400,62619184800,-21600,0,'CST',],[62619206400,62634927600,62619188400,62634909600,-18000,1,'CDT',],[62634927600,62650656000,62634906000,62650634400,-21600,0,'CST',],[62650656000,62666377200,62650638000,62666359200,-18000,1,'CDT',],[62666377200,62680291200,62666355600,62680269600,-21600,0,'CST',],[62680291200,62697826800,62680273200,62697808800,-18000,1,'CDT',],[62697826800,62711740800,62697805200,62711719200,-21600,0,'CST',],[62711740800,62729881200,62711722800,62729863200,-18000,1,'CDT',],[62729881200,62743190400,62729859600,62743168800,-21600,0,'CST',],[62743190400,62761330800,62743172400,62761312800,-18000,1,'CDT',],[62761330800,62774640000,62761309200,62774618400,-21600,0,'CST',],[62774640000,62792780400,62774622000,62792762400,-18000,1,'CDT',],[62792780400,62806694400,62792758800,62806672800,-21600,0,'CST',],[62806694400,62824230000,62806676400,62824212000,-18000,1,'CDT',],[62824230000,62838144000,62824208400,62838122400,-21600,0,'CST',],[62838144000,62855679600,62838126000,62855661600,-18000,1,'CDT',],[62855679600,62869593600,62855658000,62869572000,-21600,0,'CST',],[62869593600,62887734000,62869575600,62887716000,-18000,1,'CDT',],[62887734000,62901043200,62887712400,62901021600,-21600,0,'CST',],[62901043200,62919183600,62901025200,62919165600,-18000,1,'CDT',],[62919183600,62932492800,62919162000,62932471200,-21600,0,'CST',],[62932492800,62950633200,62932474800,62950615200,-18000,1,'CDT',],[62950633200,62964547200,62950611600,62964525600,-21600,0,'CST',],[62964547200,62982082800,62964529200,62982064800,-18000,1,'CDT',],[62982082800,62995996800,62982061200,62995975200,-21600,0,'CST',],[62995996800,63013532400,62995978800,63013514400,-18000,1,'CDT',],[63013532400,63027446400,63013510800,63027424800,-21600,0,'CST',],[63027446400,63044982000,63027428400,63044964000,-18000,1,'CDT',],[63044982000,63058896000,63044960400,63058874400,-21600,0,'CST',],[63058896000,63077036400,63058878000,63077018400,-18000,1,'CDT',],[63077036400,63090345600,63077014800,63090324000,-21600,0,'CST',],[63090345600,63108486000,63090327600,63108468000,-18000,1,'CDT',],[63108486000,63121795200,63108464400,63121773600,-21600,0,'CST',],[63121795200,63139935600,63121777200,63139917600,-18000,1,'CDT',],[63139935600,63153849600,63139914000,63153828000,-21600,0,'CST',],[63153849600,63171385200,63153831600,63171367200,-18000,1,'CDT',],[63171385200,63185299200,63171363600,63185277600,-21600,0,'CST',],[63185299200,63202834800,63185281200,63202816800,-18000,1,'CDT',],[63202834800,63216748800,63202813200,63216727200,-21600,0,'CST',],[63216748800,63234889200,63216730800,63234871200,-18000,1,'CDT',],[63234889200,63248198400,63234867600,63248176800,-21600,0,'CST',],[63248198400,63266338800,63248180400,63266320800,-18000,1,'CDT',],[63266338800,63279648000,63266317200,63279626400,-21600,0,'CST',],[63279648000,63297788400,63279630000,63297770400,-18000,1,'CDT',],[63297788400,63309283200,63297766800,63309261600,-21600,0,'CST',],[63309283200,63329842800,63309265200,63329824800,-18000,1,'CDT',],[63329842800,63340732800,63329821200,63340711200,-21600,0,'CST',],[63340732800,63361292400,63340714800,63361274400,-18000,1,'CDT',],[63361292400,63372182400,63361270800,63372160800,-21600,0,'CST',],[63372182400,63392742000,63372164400,63392724000,-18000,1,'CDT',],[63392742000,63404236800,63392720400,63404215200,-21600,0,'CST',],[63404236800,63424796400,63404218800,63424778400,-18000,1,'CDT',],[63424796400,63435686400,63424774800,63435664800,-21600,0,'CST',],[63435686400,63456246000,63435668400,63456228000,-18000,1,'CDT',],[63456246000,63467136000,63456224400,63467114400,-21600,0,'CST',],[63467136000,63487695600,63467118000,63487677600,-18000,1,'CDT',],[63487695600,63498585600,63487674000,63498564000,-21600,0,'CST',],[63498585600,63519145200,63498567600,63519127200,-18000,1,'CDT',],[63519145200,63530035200,63519123600,63530013600,-21600,0,'CST',],[63530035200,63550594800,63530017200,63550576800,-18000,1,'CDT',],[63550594800,63561484800,63550573200,63561463200,-21600,0,'CST',],[63561484800,63582044400,63561466800,63582026400,-18000,1,'CDT',],[63582044400,63593539200,63582022800,63593517600,-21600,0,'CST',],[63593539200,63614098800,63593521200,63614080800,-18000,1,'CDT',],[63614098800,63624988800,63614077200,63624967200,-21600,0,'CST',],[63624988800,63645548400,63624970800,63645530400,-18000,1,'CDT',],[63645548400,63656438400,63645526800,63656416800,-21600,0,'CST',],[63656438400,63676998000,63656420400,63676980000,-18000,1,'CDT',],[63676998000,63687888000,63676976400,63687866400,-21600,0,'CST',],[63687888000,63708447600,63687870000,63708429600,-18000,1,'CDT',],[63708447600,63719337600,63708426000,63719316000,-21600,0,'CST',],[63719337600,63739897200,63719319600,63739879200,-18000,1,'CDT',],[63739897200,63751392000,63739875600,63751370400,-21600,0,'CST',],[63751392000,63771951600,63751374000,63771933600,-18000,1,'CDT',],[63771951600,63782841600,63771930000,63782820000,-21600,0,'CST',],[63782841600,63803401200,63782823600,63803383200,-18000,1,'CDT',],[63803401200,63814291200,63803379600,63814269600,-21600,0,'CST',],[63814291200,63834850800,63814273200,63834832800,-18000,1,'CDT',],[63834850800,63845740800,63834829200,63845719200,-21600,0,'CST',],[63845740800,63866300400,63845722800,63866282400,-18000,1,'CDT',],[63866300400,63877190400,63866278800,63877168800,-21600,0,'CST',],[63877190400,63897750000,63877172400,63897732000,-18000,1,'CDT',],[63897750000,63908640000,63897728400,63908618400,-21600,0,'CST',],[63908640000,63929199600,63908622000,63929181600,-18000,1,'CDT',],[63929199600,63940694400,63929178000,63940672800,-21600,0,'CST',],[63940694400,63961254000,63940676400,63961236000,-18000,1,'CDT',],];sub olson_version {'2016a'}sub has_dst_changes {61}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-21600}my$last_observance=bless({'format'=>'C%sT','gmtoff'=>'-6:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>720377,'local_rd_secs'=>7200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>720377,'utc_rd_secs'=>7200,'utc_year'=>1974 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-21600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>720377,'local_rd_secs'=>25200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>720377,'utc_rd_secs'=>25200,'utc_year'=>1974 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_MENOMINEE

$fatpacked{"DateTime/TimeZone/America/Merida.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_MERIDA';
  package DateTime::TimeZone::America::Merida;$DateTime::TimeZone::America::Merida::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Merida::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60620940000,DateTime::TimeZone::NEG_INFINITY,60620918492,-21508,0,'LMT',],[60620940000,62513618400,60620918400,62513596800,-21600,0,'CST',],[62513618400,62543336400,62513600400,62543318400,-18000,0,'EST',],[62543336400,62964547200,62543314800,62964525600,-21600,0,'CST',],[62964547200,62982082800,62964529200,62982064800,-18000,1,'CDT',],[62982082800,62995996800,62982061200,62995975200,-21600,0,'CST',],[62995996800,63013532400,62995978800,63013514400,-18000,1,'CDT',],[63013532400,63027446400,63013510800,63027424800,-21600,0,'CST',],[63027446400,63044982000,63027428400,63044964000,-18000,1,'CDT',],[63044982000,63058896000,63044960400,63058874400,-21600,0,'CST',],[63058896000,63077036400,63058878000,63077018400,-18000,1,'CDT',],[63077036400,63090345600,63077014800,63090324000,-21600,0,'CST',],[63090345600,63108486000,63090327600,63108468000,-18000,1,'CDT',],[63108486000,63124819200,63108464400,63124797600,-21600,0,'CST',],[63124819200,63137516400,63124801200,63137498400,-18000,1,'CDT',],[63137516400,63153849600,63137494800,63153828000,-21600,0,'CST',],[63153849600,63171385200,63153831600,63171367200,-18000,1,'CDT',],[63171385200,63185299200,63171363600,63185277600,-21600,0,'CST',],[63185299200,63202834800,63185281200,63202816800,-18000,1,'CDT',],[63202834800,63216748800,63202813200,63216727200,-21600,0,'CST',],[63216748800,63234889200,63216730800,63234871200,-18000,1,'CDT',],[63234889200,63248198400,63234867600,63248176800,-21600,0,'CST',],[63248198400,63266338800,63248180400,63266320800,-18000,1,'CDT',],[63266338800,63279648000,63266317200,63279626400,-21600,0,'CST',],[63279648000,63297788400,63279630000,63297770400,-18000,1,'CDT',],[63297788400,63311097600,63297766800,63311076000,-21600,0,'CST',],[63311097600,63329238000,63311079600,63329220000,-18000,1,'CDT',],[63329238000,63343152000,63329216400,63343130400,-21600,0,'CST',],[63343152000,63360687600,63343134000,63360669600,-18000,1,'CDT',],[63360687600,63374601600,63360666000,63374580000,-21600,0,'CST',],[63374601600,63392137200,63374583600,63392119200,-18000,1,'CDT',],[63392137200,63406051200,63392115600,63406029600,-21600,0,'CST',],[63406051200,63424191600,63406033200,63424173600,-18000,1,'CDT',],[63424191600,63437500800,63424170000,63437479200,-21600,0,'CST',],[63437500800,63455641200,63437482800,63455623200,-18000,1,'CDT',],[63455641200,63468950400,63455619600,63468928800,-21600,0,'CST',],[63468950400,63487090800,63468932400,63487072800,-18000,1,'CDT',],[63487090800,63501004800,63487069200,63500983200,-21600,0,'CST',],[63501004800,63518540400,63500986800,63518522400,-18000,1,'CDT',],[63518540400,63532454400,63518518800,63532432800,-21600,0,'CST',],[63532454400,63549990000,63532436400,63549972000,-18000,1,'CDT',],[63549990000,63563904000,63549968400,63563882400,-21600,0,'CST',],[63563904000,63581439600,63563886000,63581421600,-18000,1,'CDT',],[63581439600,63595353600,63581418000,63595332000,-21600,0,'CST',],[63595353600,63613494000,63595335600,63613476000,-18000,1,'CDT',],[63613494000,63626803200,63613472400,63626781600,-21600,0,'CST',],[63626803200,63644943600,63626785200,63644925600,-18000,1,'CDT',],[63644943600,63658252800,63644922000,63658231200,-21600,0,'CST',],[63658252800,63676393200,63658234800,63676375200,-18000,1,'CDT',],[63676393200,63690307200,63676371600,63690285600,-21600,0,'CST',],[63690307200,63707842800,63690289200,63707824800,-18000,1,'CDT',],[63707842800,63721756800,63707821200,63721735200,-21600,0,'CST',],[63721756800,63739292400,63721738800,63739274400,-18000,1,'CDT',],[63739292400,63753206400,63739270800,63753184800,-21600,0,'CST',],[63753206400,63771346800,63753188400,63771328800,-18000,1,'CDT',],[63771346800,63784656000,63771325200,63784634400,-21600,0,'CST',],[63784656000,63802796400,63784638000,63802778400,-18000,1,'CDT',],[63802796400,63816105600,63802774800,63816084000,-21600,0,'CST',],[63816105600,63834246000,63816087600,63834228000,-18000,1,'CDT',],[63834246000,63848160000,63834224400,63848138400,-21600,0,'CST',],[63848160000,63865695600,63848142000,63865677600,-18000,1,'CDT',],[63865695600,63879609600,63865674000,63879588000,-21600,0,'CST',],[63879609600,63897145200,63879591600,63897127200,-18000,1,'CDT',],[63897145200,63911059200,63897123600,63911037600,-21600,0,'CST',],[63911059200,63928594800,63911041200,63928576800,-18000,1,'CDT',],[63928594800,63942508800,63928573200,63942487200,-21600,0,'CST',],[63942508800,63960649200,63942490800,63960631200,-18000,1,'CDT',],];sub olson_version {'2016a'}sub has_dst_changes {32}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-21600}my$last_observance=bless({'format'=>'C%sT','gmtoff'=>'-6:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>723880,'local_rd_secs'=>82800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>723880,'utc_rd_secs'=>82800,'utc_year'=>1983 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-21600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>723881,'local_rd_secs'=>18000,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>723881,'utc_rd_secs'=>18000,'utc_year'=>1983 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2002','in'=>'Oct','letter'=>'S','name'=>'Mexico','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2002','in'=>'Apr','letter'=>'D','name'=>'Mexico','offset_from_std'=>3600,'on'=>'Sun>=1','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_MERIDA

$fatpacked{"DateTime/TimeZone/America/Metlakatla.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_METLAKATLA';
  package DateTime::TimeZone::America::Metlakatla;$DateTime::TimeZone::America::Metlakatla::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Metlakatla::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,58910316378,DateTime::TimeZone::NEG_INFINITY,58910371200,54822,0,'LMT',],[58910316378,59946727578,58910284800,59946696000,-31578,0,'LMT',],[59946727578,61252099200,59946698778,61252070400,-28800,0,'PST',],[61252099200,61255476000,61252070400,61255447200,-28800,0,'PST',],[61255476000,61366287600,61255450800,61366262400,-25200,1,'PWT',],[61366287600,61370298000,61366262400,61370272800,-25200,1,'PPT',],[61370298000,61378329600,61370269200,61378300800,-28800,0,'PST',],[61378329600,62104176000,61378300800,62104147200,-28800,0,'PST',],[62104176000,62114205600,62104147200,62114176800,-28800,0,'PST',],[62114205600,62129926800,62114180400,62129901600,-25200,1,'PDT',],[62129926800,62145655200,62129898000,62145626400,-28800,0,'PST',],[62145655200,62161376400,62145630000,62161351200,-25200,1,'PDT',],[62161376400,62177104800,62161347600,62177076000,-28800,0,'PST',],[62177104800,62193430800,62177079600,62193405600,-25200,1,'PDT',],[62193430800,62209159200,62193402000,62209130400,-28800,0,'PST',],[62209159200,62224880400,62209134000,62224855200,-25200,1,'PDT',],[62224880400,62240608800,62224851600,62240580000,-28800,0,'PST',],[62240608800,62256330000,62240583600,62256304800,-25200,1,'PDT',],[62256330000,62262381600,62256301200,62262352800,-28800,0,'PST',],[62262381600,62287779600,62262356400,62287754400,-25200,1,'PDT',],[62287779600,62298064800,62287750800,62298036000,-28800,0,'PST',],[62298064800,62319229200,62298039600,62319204000,-25200,1,'PDT',],[62319229200,62334957600,62319200400,62334928800,-28800,0,'PST',],[62334957600,62351283600,62334932400,62351258400,-25200,1,'PDT',],[62351283600,62366407200,62351254800,62366378400,-28800,0,'PST',],[62366407200,62382733200,62366382000,62382708000,-25200,1,'PDT',],[62382733200,62398461600,62382704400,62398432800,-28800,0,'PST',],[62398461600,62414182800,62398436400,62414157600,-25200,1,'PDT',],[62414182800,62429911200,62414154000,62429882400,-28800,0,'PST',],[62429911200,62445632400,62429886000,62445607200,-25200,1,'PDT',],[62445632400,62461360800,62445603600,62461332000,-28800,0,'PST',],[62461360800,62477082000,62461335600,62477056800,-25200,1,'PDT',],[62477082000,62492810400,62477053200,62492781600,-28800,0,'PST',],[62492810400,62508531600,62492785200,62508506400,-25200,1,'PDT',],[62508531600,62524260000,62508502800,62524231200,-28800,0,'PST',],[62524260000,62540586000,62524234800,62540560800,-25200,1,'PDT',],[62540586000,62555709600,62540557200,62555680800,-28800,0,'PST',],[62555709600,62572035600,62555684400,62572010400,-25200,1,'PDT',],[62572035600,63582055200,62572006800,63582026400,-28800,0,'PST',],[63582055200,63593550000,63582022800,63593517600,-32400,0,'AKST',],[63593550000,63614109600,63593521200,63614080800,-28800,1,'AKDT',],[63614109600,63624999600,63614077200,63624967200,-32400,0,'AKST',],[63624999600,63645559200,63624970800,63645530400,-28800,1,'AKDT',],[63645559200,63656449200,63645526800,63656416800,-32400,0,'AKST',],[63656449200,63677008800,63656420400,63676980000,-28800,1,'AKDT',],[63677008800,63687898800,63676976400,63687866400,-32400,0,'AKST',],[63687898800,63708458400,63687870000,63708429600,-28800,1,'AKDT',],[63708458400,63719348400,63708426000,63719316000,-32400,0,'AKST',],[63719348400,63739908000,63719319600,63739879200,-28800,1,'AKDT',],[63739908000,63751402800,63739875600,63751370400,-32400,0,'AKST',],[63751402800,63771962400,63751374000,63771933600,-28800,1,'AKDT',],[63771962400,63782852400,63771930000,63782820000,-32400,0,'AKST',],[63782852400,63803412000,63782823600,63803383200,-28800,1,'AKDT',],[63803412000,63814302000,63803379600,63814269600,-32400,0,'AKST',],[63814302000,63834861600,63814273200,63834832800,-28800,1,'AKDT',],[63834861600,63845751600,63834829200,63845719200,-32400,0,'AKST',],[63845751600,63866311200,63845722800,63866282400,-28800,1,'AKDT',],[63866311200,63877201200,63866278800,63877168800,-32400,0,'AKST',],[63877201200,63897760800,63877172400,63897732000,-28800,1,'AKDT',],[63897760800,63908650800,63897728400,63908618400,-32400,0,'AKST',],[63908650800,63929210400,63908622000,63929181600,-28800,1,'AKDT',],[63929210400,63940705200,63929178000,63940672800,-32400,0,'AKST',],[63940705200,63961264800,63940676400,63961236000,-28800,1,'AKDT',],];sub olson_version {'2016a'}sub has_dst_changes {29}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-32400}my$last_observance=bless({'format'=>'AK%sT','gmtoff'=>'-9:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>735903,'local_rd_secs'=>3600,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>735903,'utc_rd_secs'=>3600,'utc_year'=>2016 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-32400,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>735903,'local_rd_secs'=>36000,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>735903,'utc_rd_secs'=>36000,'utc_year'=>2016 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_METLAKATLA

$fatpacked{"DateTime/TimeZone/America/Mexico_City.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_MEXICO_CITY';
  package DateTime::TimeZone::America::Mexico_City;$DateTime::TimeZone::America::Mexico_City::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Mexico_City::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60620943600,DateTime::TimeZone::NEG_INFINITY,60620919804,-23796,0,'LMT',],[60620943600,60792616800,60620918400,60792591600,-25200,0,'MST',],[60792616800,60900876000,60792595200,60900854400,-21600,0,'CST',],[60900876000,60915391200,60900850800,60915366000,-25200,0,'MST',],[60915391200,60928524000,60915369600,60928502400,-21600,0,'CST',],[60928524000,60944338800,60928498800,60944313600,-25200,0,'MST',],[60944338800,61160421600,60944317200,61160400000,-21600,0,'CST',],[61160421600,61172514000,61160403600,61172496000,-18000,1,'CDT',],[61172514000,61218568800,61172492400,61218547200,-21600,0,'CST',],[61218568800,61228328400,61218550800,61228310400,-18000,1,'CDT',],[61228328400,61313781600,61228306800,61313760000,-21600,0,'CST',],[61313781600,61325614800,61313763600,61325596800,-18000,1,'CWT',],[61325614800,61508181600,61325593200,61508160000,-21600,0,'CST',],[61508181600,61522693200,61508163600,61522675200,-18000,1,'CDT',],[61522693200,62964547200,61522671600,62964525600,-21600,0,'CST',],[62964547200,62982082800,62964529200,62982064800,-18000,1,'CDT',],[62982082800,62995996800,62982061200,62995975200,-21600,0,'CST',],[62995996800,63013532400,62995978800,63013514400,-18000,1,'CDT',],[63013532400,63027446400,63013510800,63027424800,-21600,0,'CST',],[63027446400,63044982000,63027428400,63044964000,-18000,1,'CDT',],[63044982000,63058896000,63044960400,63058874400,-21600,0,'CST',],[63058896000,63077036400,63058878000,63077018400,-18000,1,'CDT',],[63077036400,63090345600,63077014800,63090324000,-21600,0,'CST',],[63090345600,63108486000,63090327600,63108468000,-18000,1,'CDT',],[63108486000,63124819200,63108464400,63124797600,-21600,0,'CST',],[63124819200,63137516400,63124801200,63137498400,-18000,1,'CDT',],[63137516400,63149868000,63137494800,63149846400,-21600,0,'CST',],[63149868000,63153849600,63149846400,63153828000,-21600,0,'CST',],[63153849600,63171385200,63153831600,63171367200,-18000,1,'CDT',],[63171385200,63185299200,63171363600,63185277600,-21600,0,'CST',],[63185299200,63202834800,63185281200,63202816800,-18000,1,'CDT',],[63202834800,63216748800,63202813200,63216727200,-21600,0,'CST',],[63216748800,63234889200,63216730800,63234871200,-18000,1,'CDT',],[63234889200,63248198400,63234867600,63248176800,-21600,0,'CST',],[63248198400,63266338800,63248180400,63266320800,-18000,1,'CDT',],[63266338800,63279648000,63266317200,63279626400,-21600,0,'CST',],[63279648000,63297788400,63279630000,63297770400,-18000,1,'CDT',],[63297788400,63311097600,63297766800,63311076000,-21600,0,'CST',],[63311097600,63329238000,63311079600,63329220000,-18000,1,'CDT',],[63329238000,63343152000,63329216400,63343130400,-21600,0,'CST',],[63343152000,63360687600,63343134000,63360669600,-18000,1,'CDT',],[63360687600,63374601600,63360666000,63374580000,-21600,0,'CST',],[63374601600,63392137200,63374583600,63392119200,-18000,1,'CDT',],[63392137200,63406051200,63392115600,63406029600,-21600,0,'CST',],[63406051200,63424191600,63406033200,63424173600,-18000,1,'CDT',],[63424191600,63437500800,63424170000,63437479200,-21600,0,'CST',],[63437500800,63455641200,63437482800,63455623200,-18000,1,'CDT',],[63455641200,63468950400,63455619600,63468928800,-21600,0,'CST',],[63468950400,63487090800,63468932400,63487072800,-18000,1,'CDT',],[63487090800,63501004800,63487069200,63500983200,-21600,0,'CST',],[63501004800,63518540400,63500986800,63518522400,-18000,1,'CDT',],[63518540400,63532454400,63518518800,63532432800,-21600,0,'CST',],[63532454400,63549990000,63532436400,63549972000,-18000,1,'CDT',],[63549990000,63563904000,63549968400,63563882400,-21600,0,'CST',],[63563904000,63581439600,63563886000,63581421600,-18000,1,'CDT',],[63581439600,63595353600,63581418000,63595332000,-21600,0,'CST',],[63595353600,63613494000,63595335600,63613476000,-18000,1,'CDT',],[63613494000,63626803200,63613472400,63626781600,-21600,0,'CST',],[63626803200,63644943600,63626785200,63644925600,-18000,1,'CDT',],[63644943600,63658252800,63644922000,63658231200,-21600,0,'CST',],[63658252800,63676393200,63658234800,63676375200,-18000,1,'CDT',],[63676393200,63690307200,63676371600,63690285600,-21600,0,'CST',],[63690307200,63707842800,63690289200,63707824800,-18000,1,'CDT',],[63707842800,63721756800,63707821200,63721735200,-21600,0,'CST',],[63721756800,63739292400,63721738800,63739274400,-18000,1,'CDT',],[63739292400,63753206400,63739270800,63753184800,-21600,0,'CST',],[63753206400,63771346800,63753188400,63771328800,-18000,1,'CDT',],[63771346800,63784656000,63771325200,63784634400,-21600,0,'CST',],[63784656000,63802796400,63784638000,63802778400,-18000,1,'CDT',],[63802796400,63816105600,63802774800,63816084000,-21600,0,'CST',],[63816105600,63834246000,63816087600,63834228000,-18000,1,'CDT',],[63834246000,63848160000,63834224400,63848138400,-21600,0,'CST',],[63848160000,63865695600,63848142000,63865677600,-18000,1,'CDT',],[63865695600,63879609600,63865674000,63879588000,-21600,0,'CST',],[63879609600,63897145200,63879591600,63897127200,-18000,1,'CDT',],[63897145200,63911059200,63897123600,63911037600,-21600,0,'CST',],[63911059200,63928594800,63911041200,63928576800,-18000,1,'CDT',],[63928594800,63942508800,63928573200,63942487200,-21600,0,'CST',],[63942508800,63960649200,63942490800,63960631200,-18000,1,'CDT',],];sub olson_version {'2016a'}sub has_dst_changes {36}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-21600}my$last_observance=bless({'format'=>'C%sT','gmtoff'=>'-6:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>730901,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>730901,'utc_rd_secs'=>0,'utc_year'=>2003 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-21600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>730901,'local_rd_secs'=>21600,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>730901,'utc_rd_secs'=>21600,'utc_year'=>2003 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2002','in'=>'Apr','letter'=>'D','name'=>'Mexico','offset_from_std'=>3600,'on'=>'Sun>=1','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2002','in'=>'Oct','letter'=>'S','name'=>'Mexico','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_MEXICO_CITY

$fatpacked{"DateTime/TimeZone/America/Miquelon.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_MIQUELON';
  package DateTime::TimeZone::America::Miquelon;$DateTime::TimeZone::America::Miquelon::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Miquelon::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60285354280,DateTime::TimeZone::NEG_INFINITY,60285340800,-13480,0,'LMT',],[60285354280,62461684800,60285339880,62461670400,-14400,0,'AST',],[62461684800,62672151600,62461674000,62672140800,-10800,0,'PMST',],[62672151600,62680280400,62672140800,62680269600,-10800,0,'PMST',],[62680280400,62697816000,62680273200,62697808800,-7200,1,'PMDT',],[62697816000,62711730000,62697805200,62711719200,-10800,0,'PMST',],[62711730000,62729870400,62711722800,62729863200,-7200,1,'PMDT',],[62729870400,62743179600,62729859600,62743168800,-10800,0,'PMST',],[62743179600,62761320000,62743172400,62761312800,-7200,1,'PMDT',],[62761320000,62774629200,62761309200,62774618400,-10800,0,'PMST',],[62774629200,62792769600,62774622000,62792762400,-7200,1,'PMDT',],[62792769600,62806683600,62792758800,62806672800,-10800,0,'PMST',],[62806683600,62824219200,62806676400,62824212000,-7200,1,'PMDT',],[62824219200,62838133200,62824208400,62838122400,-10800,0,'PMST',],[62838133200,62855668800,62838126000,62855661600,-7200,1,'PMDT',],[62855668800,62869582800,62855658000,62869572000,-10800,0,'PMST',],[62869582800,62887723200,62869575600,62887716000,-7200,1,'PMDT',],[62887723200,62901032400,62887712400,62901021600,-10800,0,'PMST',],[62901032400,62919172800,62901025200,62919165600,-7200,1,'PMDT',],[62919172800,62932482000,62919162000,62932471200,-10800,0,'PMST',],[62932482000,62950622400,62932474800,62950615200,-7200,1,'PMDT',],[62950622400,62964536400,62950611600,62964525600,-10800,0,'PMST',],[62964536400,62982072000,62964529200,62982064800,-7200,1,'PMDT',],[62982072000,62995986000,62982061200,62995975200,-10800,0,'PMST',],[62995986000,63013521600,62995978800,63013514400,-7200,1,'PMDT',],[63013521600,63027435600,63013510800,63027424800,-10800,0,'PMST',],[63027435600,63044971200,63027428400,63044964000,-7200,1,'PMDT',],[63044971200,63058885200,63044960400,63058874400,-10800,0,'PMST',],[63058885200,63077025600,63058878000,63077018400,-7200,1,'PMDT',],[63077025600,63090334800,63077014800,63090324000,-10800,0,'PMST',],[63090334800,63108475200,63090327600,63108468000,-7200,1,'PMDT',],[63108475200,63121784400,63108464400,63121773600,-10800,0,'PMST',],[63121784400,63139924800,63121777200,63139917600,-7200,1,'PMDT',],[63139924800,63153838800,63139914000,63153828000,-10800,0,'PMST',],[63153838800,63171374400,63153831600,63171367200,-7200,1,'PMDT',],[63171374400,63185288400,63171363600,63185277600,-10800,0,'PMST',],[63185288400,63202824000,63185281200,63202816800,-7200,1,'PMDT',],[63202824000,63216738000,63202813200,63216727200,-10800,0,'PMST',],[63216738000,63234878400,63216730800,63234871200,-7200,1,'PMDT',],[63234878400,63248187600,63234867600,63248176800,-10800,0,'PMST',],[63248187600,63266328000,63248180400,63266320800,-7200,1,'PMDT',],[63266328000,63279637200,63266317200,63279626400,-10800,0,'PMST',],[63279637200,63297777600,63279630000,63297770400,-7200,1,'PMDT',],[63297777600,63309272400,63297766800,63309261600,-10800,0,'PMST',],[63309272400,63329832000,63309265200,63329824800,-7200,1,'PMDT',],[63329832000,63340722000,63329821200,63340711200,-10800,0,'PMST',],[63340722000,63361281600,63340714800,63361274400,-7200,1,'PMDT',],[63361281600,63372171600,63361270800,63372160800,-10800,0,'PMST',],[63372171600,63392731200,63372164400,63392724000,-7200,1,'PMDT',],[63392731200,63404226000,63392720400,63404215200,-10800,0,'PMST',],[63404226000,63424785600,63404218800,63424778400,-7200,1,'PMDT',],[63424785600,63435675600,63424774800,63435664800,-10800,0,'PMST',],[63435675600,63456235200,63435668400,63456228000,-7200,1,'PMDT',],[63456235200,63467125200,63456224400,63467114400,-10800,0,'PMST',],[63467125200,63487684800,63467118000,63487677600,-7200,1,'PMDT',],[63487684800,63498574800,63487674000,63498564000,-10800,0,'PMST',],[63498574800,63519134400,63498567600,63519127200,-7200,1,'PMDT',],[63519134400,63530024400,63519123600,63530013600,-10800,0,'PMST',],[63530024400,63550584000,63530017200,63550576800,-7200,1,'PMDT',],[63550584000,63561474000,63550573200,63561463200,-10800,0,'PMST',],[63561474000,63582033600,63561466800,63582026400,-7200,1,'PMDT',],[63582033600,63593528400,63582022800,63593517600,-10800,0,'PMST',],[63593528400,63614088000,63593521200,63614080800,-7200,1,'PMDT',],[63614088000,63624978000,63614077200,63624967200,-10800,0,'PMST',],[63624978000,63645537600,63624970800,63645530400,-7200,1,'PMDT',],[63645537600,63656427600,63645526800,63656416800,-10800,0,'PMST',],[63656427600,63676987200,63656420400,63676980000,-7200,1,'PMDT',],[63676987200,63687877200,63676976400,63687866400,-10800,0,'PMST',],[63687877200,63708436800,63687870000,63708429600,-7200,1,'PMDT',],[63708436800,63719326800,63708426000,63719316000,-10800,0,'PMST',],[63719326800,63739886400,63719319600,63739879200,-7200,1,'PMDT',],[63739886400,63751381200,63739875600,63751370400,-10800,0,'PMST',],[63751381200,63771940800,63751374000,63771933600,-7200,1,'PMDT',],[63771940800,63782830800,63771930000,63782820000,-10800,0,'PMST',],[63782830800,63803390400,63782823600,63803383200,-7200,1,'PMDT',],[63803390400,63814280400,63803379600,63814269600,-10800,0,'PMST',],[63814280400,63834840000,63814273200,63834832800,-7200,1,'PMDT',],[63834840000,63845730000,63834829200,63845719200,-10800,0,'PMST',],[63845730000,63866289600,63845722800,63866282400,-7200,1,'PMDT',],[63866289600,63877179600,63866278800,63877168800,-10800,0,'PMST',],[63877179600,63897739200,63877172400,63897732000,-7200,1,'PMDT',],[63897739200,63908629200,63897728400,63908618400,-10800,0,'PMST',],[63908629200,63929188800,63908622000,63929181600,-7200,1,'PMDT',],[63929188800,63940683600,63929178000,63940672800,-10800,0,'PMST',],[63940683600,63961243200,63940676400,63961236000,-7200,1,'PMDT',],];sub olson_version {'2016a'}sub has_dst_changes {41}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-10800}my$last_observance=bless({'format'=>'PM%sT','gmtoff'=>'-3:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>725372,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>725372,'utc_rd_secs'=>0,'utc_year'=>1988 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-10800,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>725372,'local_rd_secs'=>10800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>725372,'utc_rd_secs'=>10800,'utc_year'=>1988 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'Canada','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'Canada','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_MIQUELON

$fatpacked{"DateTime/TimeZone/America/Moncton.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_MONCTON';
  package DateTime::TimeZone::America::Moncton;$DateTime::TimeZone::America::Moncton::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Moncton::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59419801148,DateTime::TimeZone::NEG_INFINITY,59419785600,-15548,0,'LMT',],[59419801148,60004040400,59419783148,60004022400,-18000,0,'EST',],[60004040400,60503608800,60004026000,60503594400,-14400,0,'AST',],[60503608800,60520539600,60503598000,60520528800,-10800,1,'ADT',],[60520539600,60968088000,60520525200,60968073600,-14400,0,'AST',],[60968088000,60982002000,60968073600,60981987600,-14400,0,'AST',],[60982002000,60989860800,60981991200,60989850000,-10800,1,'ADT',],[60989860800,61013451600,60989846400,61013437200,-14400,0,'AST',],[61013451600,61021310400,61013440800,61021299600,-10800,1,'ADT',],[61021310400,61044901200,61021296000,61044886800,-14400,0,'AST',],[61044901200,61052760000,61044890400,61052749200,-10800,1,'ADT',],[61052760000,61076350800,61052745600,61076336400,-14400,0,'AST',],[61076350800,61084209600,61076340000,61084198800,-10800,1,'ADT',],[61084209600,61107800400,61084195200,61107786000,-14400,0,'AST',],[61107800400,61115659200,61107789600,61115648400,-10800,1,'ADT',],[61115659200,61139250000,61115644800,61139235600,-14400,0,'AST',],[61139250000,61147108800,61139239200,61147098000,-10800,1,'ADT',],[61147108800,61170008400,61147094400,61169994000,-14400,0,'AST',],[61170008400,61180286400,61169997600,61180275600,-10800,1,'ADT',],[61180286400,61200939600,61180272000,61200925200,-14400,0,'AST',],[61200939600,61211736000,61200928800,61211725200,-10800,1,'ADT',],[61211736000,61231179600,61211721600,61231165200,-14400,0,'AST',],[61231179600,61243790400,61231168800,61243779600,-10800,1,'ADT',],[61243790400,61252084800,61243776000,61252070400,-14400,0,'AST',],[61252084800,61255461600,61252070400,61255447200,-14400,0,'AST',],[61255461600,61366287600,61255450800,61366276800,-10800,1,'AWT',],[61366287600,61370283600,61366276800,61370272800,-10800,1,'APT',],[61370283600,61378315200,61370269200,61378300800,-14400,0,'AST',],[61378315200,61388431200,61378300800,61388416800,-14400,0,'AST',],[61388431200,61401733200,61388420400,61401722400,-10800,1,'ADT',],[61401733200,61419880800,61401718800,61419866400,-14400,0,'AST',],[61419880800,61433182800,61419870000,61433172000,-10800,1,'ADT',],[61433182800,61451330400,61433168400,61451316000,-14400,0,'AST',],[61451330400,61464632400,61451319600,61464621600,-10800,1,'ADT',],[61464632400,61482780000,61464618000,61482765600,-14400,0,'AST',],[61482780000,61496082000,61482769200,61496071200,-10800,1,'ADT',],[61496082000,61514834400,61496067600,61514820000,-14400,0,'AST',],[61514834400,61527531600,61514823600,61527520800,-10800,1,'ADT',],[61527531600,61546284000,61527517200,61546269600,-14400,0,'AST',],[61546284000,61559586000,61546273200,61559575200,-10800,1,'ADT',],[61559586000,61577733600,61559571600,61577719200,-14400,0,'AST',],[61577733600,61591035600,61577722800,61591024800,-10800,1,'ADT',],[61591035600,61609183200,61591021200,61609168800,-14400,0,'AST',],[61609183200,61622485200,61609172400,61622474400,-10800,1,'ADT',],[61622485200,61640632800,61622470800,61640618400,-14400,0,'AST',],[61640632800,61653934800,61640622000,61653924000,-10800,1,'ADT',],[61653934800,61672082400,61653920400,61672068000,-14400,0,'AST',],[61672082400,61685384400,61672071600,61685373600,-10800,1,'ADT',],[61685384400,61704136800,61685370000,61704122400,-14400,0,'AST',],[61704136800,61717438800,61704126000,61717428000,-10800,1,'ADT',],[61717438800,61735586400,61717424400,61735572000,-14400,0,'AST',],[61735586400,61751307600,61735575600,61751296800,-10800,1,'ADT',],[61751307600,61767036000,61751293200,61767021600,-14400,0,'AST',],[61767036000,61782757200,61767025200,61782746400,-10800,1,'ADT',],[61782757200,61798485600,61782742800,61798471200,-14400,0,'AST',],[61798485600,61814206800,61798474800,61814196000,-10800,1,'ADT',],[61814206800,61829935200,61814192400,61829920800,-14400,0,'AST',],[61829935200,61846261200,61829924400,61846250400,-10800,1,'ADT',],[61846261200,61861989600,61846246800,61861975200,-14400,0,'AST',],[61861989600,61877710800,61861978800,61877700000,-10800,1,'ADT',],[61877710800,61893439200,61877696400,61893424800,-14400,0,'AST',],[61893439200,61909160400,61893428400,61909149600,-10800,1,'ADT',],[61909160400,61924888800,61909146000,61924874400,-14400,0,'AST',],[61924888800,61940610000,61924878000,61940599200,-10800,1,'ADT',],[61940610000,61956338400,61940595600,61956324000,-14400,0,'AST',],[61956338400,61972059600,61956327600,61972048800,-10800,1,'ADT',],[61972059600,61987788000,61972045200,61987773600,-14400,0,'AST',],[61987788000,62004114000,61987777200,62004103200,-10800,1,'ADT',],[62004114000,62019237600,62004099600,62019223200,-14400,0,'AST',],[62019237600,62035563600,62019226800,62035552800,-10800,1,'ADT',],[62035563600,62051292000,62035549200,62051277600,-14400,0,'AST',],[62051292000,62067013200,62051281200,62067002400,-10800,1,'ADT',],[62067013200,62082741600,62066998800,62082727200,-14400,0,'AST',],[62082741600,62098462800,62082730800,62098452000,-10800,1,'ADT',],[62098462800,62114191200,62098448400,62114176800,-14400,0,'AST',],[62114191200,62129912400,62114180400,62129901600,-10800,1,'ADT',],[62129912400,62145640800,62129898000,62145626400,-14400,0,'AST',],[62145640800,62161362000,62145630000,62161351200,-10800,1,'ADT',],[62161362000,62177090400,62161347600,62177076000,-14400,0,'AST',],[62177090400,62193416400,62177079600,62193405600,-10800,1,'ADT',],[62193416400,62209144800,62193402000,62209130400,-14400,0,'AST',],[62209144800,62224866000,62209134000,62224855200,-10800,1,'ADT',],[62224866000,62230392000,62224851600,62230377600,-14400,0,'AST',],[62230392000,62272044000,62230377600,62272029600,-14400,0,'AST',],[62272044000,62287765200,62272033200,62287754400,-10800,1,'ADT',],[62287765200,62303493600,62287750800,62303479200,-14400,0,'AST',],[62303493600,62319214800,62303482800,62319204000,-10800,1,'ADT',],[62319214800,62334943200,62319200400,62334928800,-14400,0,'AST',],[62334943200,62351269200,62334932400,62351258400,-10800,1,'ADT',],[62351269200,62366392800,62351254800,62366378400,-14400,0,'AST',],[62366392800,62382718800,62366382000,62382708000,-10800,1,'ADT',],[62382718800,62398447200,62382704400,62398432800,-14400,0,'AST',],[62398447200,62414168400,62398436400,62414157600,-10800,1,'ADT',],[62414168400,62429896800,62414154000,62429882400,-14400,0,'AST',],[62429896800,62445618000,62429886000,62445607200,-10800,1,'ADT',],[62445618000,62461346400,62445603600,62461332000,-14400,0,'AST',],[62461346400,62477067600,62461335600,62477056800,-10800,1,'ADT',],[62477067600,62492796000,62477053200,62492781600,-14400,0,'AST',],[62492796000,62508517200,62492785200,62508506400,-10800,1,'ADT',],[62508517200,62524245600,62508502800,62524231200,-14400,0,'AST',],[62524245600,62540571600,62524234800,62540560800,-10800,1,'ADT',],[62540571600,62555695200,62540557200,62555680800,-14400,0,'AST',],[62555695200,62572021200,62555684400,62572010400,-10800,1,'ADT',],[62572021200,62587749600,62572006800,62587735200,-14400,0,'AST',],[62587749600,62603470800,62587738800,62603460000,-10800,1,'ADT',],[62603470800,62619199200,62603456400,62619184800,-14400,0,'AST',],[62619199200,62634920400,62619188400,62634909600,-10800,1,'ADT',],[62634920400,62650648800,62634906000,62650634400,-14400,0,'AST',],[62650648800,62666370000,62650638000,62666359200,-10800,1,'ADT',],[62666370000,62680284000,62666355600,62680269600,-14400,0,'AST',],[62680284000,62697819600,62680273200,62697808800,-10800,1,'ADT',],[62697819600,62711733600,62697805200,62711719200,-14400,0,'AST',],[62711733600,62729874000,62711722800,62729863200,-10800,1,'ADT',],[62729874000,62743183200,62729859600,62743168800,-14400,0,'AST',],[62743183200,62761323600,62743172400,62761312800,-10800,1,'ADT',],[62761323600,62774632800,62761309200,62774618400,-14400,0,'AST',],[62774632800,62792773200,62774622000,62792762400,-10800,1,'ADT',],[62792773200,62806687200,62792758800,62806672800,-14400,0,'AST',],[62806687200,62824222800,62806676400,62824212000,-10800,1,'ADT',],[62824222800,62838136800,62824208400,62838122400,-14400,0,'AST',],[62838136800,62855672400,62838126000,62855661600,-10800,1,'ADT',],[62855672400,62861544000,62855658000,62861529600,-14400,0,'AST',],[62861544000,62869579260,62861529600,62869564860,-14400,0,'AST',],[62869579260,62887719660,62869568460,62887708860,-10800,1,'ADT',],[62887719660,62901028860,62887705260,62901014460,-14400,0,'AST',],[62901028860,62919169260,62901018060,62919158460,-10800,1,'ADT',],[62919169260,62932478460,62919154860,62932464060,-14400,0,'AST',],[62932478460,62950618860,62932467660,62950608060,-10800,1,'ADT',],[62950618860,62964532860,62950604460,62964518460,-14400,0,'AST',],[62964532860,62982068460,62964522060,62982057660,-10800,1,'ADT',],[62982068460,62995982460,62982054060,62995968060,-14400,0,'AST',],[62995982460,63013518060,62995971660,63013507260,-10800,1,'ADT',],[63013518060,63027432060,63013503660,63027417660,-14400,0,'AST',],[63027432060,63044967660,63027421260,63044956860,-10800,1,'ADT',],[63044967660,63058881660,63044953260,63058867260,-14400,0,'AST',],[63058881660,63077022060,63058870860,63077011260,-10800,1,'ADT',],[63077022060,63090331260,63077007660,63090316860,-14400,0,'AST',],[63090331260,63108471660,63090320460,63108460860,-10800,1,'ADT',],[63108471660,63121780860,63108457260,63121766460,-14400,0,'AST',],[63121780860,63139921260,63121770060,63139910460,-10800,1,'ADT',],[63139921260,63153835260,63139906860,63153820860,-14400,0,'AST',],[63153835260,63171370860,63153824460,63171360060,-10800,1,'ADT',],[63171370860,63185284860,63171356460,63185270460,-14400,0,'AST',],[63185284860,63202820460,63185274060,63202809660,-10800,1,'ADT',],[63202820460,63216734460,63202806060,63216720060,-14400,0,'AST',],[63216734460,63234874860,63216723660,63234864060,-10800,1,'ADT',],[63234874860,63248184060,63234860460,63248169660,-14400,0,'AST',],[63248184060,63266324460,63248173260,63266313660,-10800,1,'ADT',],[63266324460,63279633660,63266310060,63279619260,-14400,0,'AST',],[63279633660,63297774060,63279622860,63297763260,-10800,1,'ADT',],[63297774060,63303307200,63297759660,63303292800,-14400,0,'AST',],[63303307200,63309276000,63303292800,63309261600,-14400,0,'AST',],[63309276000,63329835600,63309265200,63329824800,-10800,1,'ADT',],[63329835600,63340725600,63329821200,63340711200,-14400,0,'AST',],[63340725600,63361285200,63340714800,63361274400,-10800,1,'ADT',],[63361285200,63372175200,63361270800,63372160800,-14400,0,'AST',],[63372175200,63392734800,63372164400,63392724000,-10800,1,'ADT',],[63392734800,63404229600,63392720400,63404215200,-14400,0,'AST',],[63404229600,63424789200,63404218800,63424778400,-10800,1,'ADT',],[63424789200,63435679200,63424774800,63435664800,-14400,0,'AST',],[63435679200,63456238800,63435668400,63456228000,-10800,1,'ADT',],[63456238800,63467128800,63456224400,63467114400,-14400,0,'AST',],[63467128800,63487688400,63467118000,63487677600,-10800,1,'ADT',],[63487688400,63498578400,63487674000,63498564000,-14400,0,'AST',],[63498578400,63519138000,63498567600,63519127200,-10800,1,'ADT',],[63519138000,63530028000,63519123600,63530013600,-14400,0,'AST',],[63530028000,63550587600,63530017200,63550576800,-10800,1,'ADT',],[63550587600,63561477600,63550573200,63561463200,-14400,0,'AST',],[63561477600,63582037200,63561466800,63582026400,-10800,1,'ADT',],[63582037200,63593532000,63582022800,63593517600,-14400,0,'AST',],[63593532000,63614091600,63593521200,63614080800,-10800,1,'ADT',],[63614091600,63624981600,63614077200,63624967200,-14400,0,'AST',],[63624981600,63645541200,63624970800,63645530400,-10800,1,'ADT',],[63645541200,63656431200,63645526800,63656416800,-14400,0,'AST',],[63656431200,63676990800,63656420400,63676980000,-10800,1,'ADT',],[63676990800,63687880800,63676976400,63687866400,-14400,0,'AST',],[63687880800,63708440400,63687870000,63708429600,-10800,1,'ADT',],[63708440400,63719330400,63708426000,63719316000,-14400,0,'AST',],[63719330400,63739890000,63719319600,63739879200,-10800,1,'ADT',],[63739890000,63751384800,63739875600,63751370400,-14400,0,'AST',],[63751384800,63771944400,63751374000,63771933600,-10800,1,'ADT',],[63771944400,63782834400,63771930000,63782820000,-14400,0,'AST',],[63782834400,63803394000,63782823600,63803383200,-10800,1,'ADT',],[63803394000,63814284000,63803379600,63814269600,-14400,0,'AST',],[63814284000,63834843600,63814273200,63834832800,-10800,1,'ADT',],[63834843600,63845733600,63834829200,63845719200,-14400,0,'AST',],[63845733600,63866293200,63845722800,63866282400,-10800,1,'ADT',],[63866293200,63877183200,63866278800,63877168800,-14400,0,'AST',],[63877183200,63897742800,63877172400,63897732000,-10800,1,'ADT',],[63897742800,63908632800,63897728400,63908618400,-14400,0,'AST',],[63908632800,63929192400,63908622000,63929181600,-10800,1,'ADT',],[63929192400,63940687200,63929178000,63940672800,-14400,0,'AST',],[63940687200,63961246800,63940676400,63961236000,-10800,1,'ADT',],];sub olson_version {'2016a'}sub has_dst_changes {93}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-14400}my$last_observance=bless({'format'=>'A%sT','gmtoff'=>'-4:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>732677,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>732677,'utc_rd_secs'=>0,'utc_year'=>2008 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-14400,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>732677,'local_rd_secs'=>14400,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>732677,'utc_rd_secs'=>14400,'utc_year'=>2008 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'Canada','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'Canada','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_MONCTON

$fatpacked{"DateTime/TimeZone/America/Monterrey.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_MONTERREY';
  package DateTime::TimeZone::America::Monterrey;$DateTime::TimeZone::America::Monterrey::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Monterrey::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60620940000,DateTime::TimeZone::NEG_INFINITY,60620915924,-24076,0,'LMT',],[60620940000,62703698400,60620918400,62703676800,-21600,0,'CST',],[62703698400,62711740800,62703676800,62711719200,-21600,0,'CST',],[62711740800,62729881200,62711722800,62729863200,-18000,1,'CDT',],[62729881200,62735320800,62729859600,62735299200,-21600,0,'CST',],[62735320800,62964547200,62735299200,62964525600,-21600,0,'CST',],[62964547200,62982082800,62964529200,62982064800,-18000,1,'CDT',],[62982082800,62995996800,62982061200,62995975200,-21600,0,'CST',],[62995996800,63013532400,62995978800,63013514400,-18000,1,'CDT',],[63013532400,63027446400,63013510800,63027424800,-21600,0,'CST',],[63027446400,63044982000,63027428400,63044964000,-18000,1,'CDT',],[63044982000,63058896000,63044960400,63058874400,-21600,0,'CST',],[63058896000,63077036400,63058878000,63077018400,-18000,1,'CDT',],[63077036400,63090345600,63077014800,63090324000,-21600,0,'CST',],[63090345600,63108486000,63090327600,63108468000,-18000,1,'CDT',],[63108486000,63124819200,63108464400,63124797600,-21600,0,'CST',],[63124819200,63137516400,63124801200,63137498400,-18000,1,'CDT',],[63137516400,63153849600,63137494800,63153828000,-21600,0,'CST',],[63153849600,63171385200,63153831600,63171367200,-18000,1,'CDT',],[63171385200,63185299200,63171363600,63185277600,-21600,0,'CST',],[63185299200,63202834800,63185281200,63202816800,-18000,1,'CDT',],[63202834800,63216748800,63202813200,63216727200,-21600,0,'CST',],[63216748800,63234889200,63216730800,63234871200,-18000,1,'CDT',],[63234889200,63248198400,63234867600,63248176800,-21600,0,'CST',],[63248198400,63266338800,63248180400,63266320800,-18000,1,'CDT',],[63266338800,63279648000,63266317200,63279626400,-21600,0,'CST',],[63279648000,63297788400,63279630000,63297770400,-18000,1,'CDT',],[63297788400,63311097600,63297766800,63311076000,-21600,0,'CST',],[63311097600,63329238000,63311079600,63329220000,-18000,1,'CDT',],[63329238000,63343152000,63329216400,63343130400,-21600,0,'CST',],[63343152000,63360687600,63343134000,63360669600,-18000,1,'CDT',],[63360687600,63374601600,63360666000,63374580000,-21600,0,'CST',],[63374601600,63392137200,63374583600,63392119200,-18000,1,'CDT',],[63392137200,63406051200,63392115600,63406029600,-21600,0,'CST',],[63406051200,63424191600,63406033200,63424173600,-18000,1,'CDT',],[63424191600,63437500800,63424170000,63437479200,-21600,0,'CST',],[63437500800,63455641200,63437482800,63455623200,-18000,1,'CDT',],[63455641200,63468950400,63455619600,63468928800,-21600,0,'CST',],[63468950400,63487090800,63468932400,63487072800,-18000,1,'CDT',],[63487090800,63501004800,63487069200,63500983200,-21600,0,'CST',],[63501004800,63518540400,63500986800,63518522400,-18000,1,'CDT',],[63518540400,63532454400,63518518800,63532432800,-21600,0,'CST',],[63532454400,63549990000,63532436400,63549972000,-18000,1,'CDT',],[63549990000,63563904000,63549968400,63563882400,-21600,0,'CST',],[63563904000,63581439600,63563886000,63581421600,-18000,1,'CDT',],[63581439600,63595353600,63581418000,63595332000,-21600,0,'CST',],[63595353600,63613494000,63595335600,63613476000,-18000,1,'CDT',],[63613494000,63626803200,63613472400,63626781600,-21600,0,'CST',],[63626803200,63644943600,63626785200,63644925600,-18000,1,'CDT',],[63644943600,63658252800,63644922000,63658231200,-21600,0,'CST',],[63658252800,63676393200,63658234800,63676375200,-18000,1,'CDT',],[63676393200,63690307200,63676371600,63690285600,-21600,0,'CST',],[63690307200,63707842800,63690289200,63707824800,-18000,1,'CDT',],[63707842800,63721756800,63707821200,63721735200,-21600,0,'CST',],[63721756800,63739292400,63721738800,63739274400,-18000,1,'CDT',],[63739292400,63753206400,63739270800,63753184800,-21600,0,'CST',],[63753206400,63771346800,63753188400,63771328800,-18000,1,'CDT',],[63771346800,63784656000,63771325200,63784634400,-21600,0,'CST',],[63784656000,63802796400,63784638000,63802778400,-18000,1,'CDT',],[63802796400,63816105600,63802774800,63816084000,-21600,0,'CST',],[63816105600,63834246000,63816087600,63834228000,-18000,1,'CDT',],[63834246000,63848160000,63834224400,63848138400,-21600,0,'CST',],[63848160000,63865695600,63848142000,63865677600,-18000,1,'CDT',],[63865695600,63879609600,63865674000,63879588000,-21600,0,'CST',],[63879609600,63897145200,63879591600,63897127200,-18000,1,'CDT',],[63897145200,63911059200,63897123600,63911037600,-21600,0,'CST',],[63911059200,63928594800,63911041200,63928576800,-18000,1,'CDT',],[63928594800,63942508800,63928573200,63942487200,-21600,0,'CST',],[63942508800,63960649200,63942490800,63960631200,-18000,1,'CDT',],];sub olson_version {'2016a'}sub has_dst_changes {33}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-21600}my$last_observance=bless({'format'=>'C%sT','gmtoff'=>'-6:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>726103,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>726103,'utc_rd_secs'=>0,'utc_year'=>1990 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-21600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>726103,'local_rd_secs'=>21600,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>726103,'utc_rd_secs'=>21600,'utc_year'=>1990 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2002','in'=>'Oct','letter'=>'S','name'=>'Mexico','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2002','in'=>'Apr','letter'=>'D','name'=>'Mexico','offset_from_std'=>3600,'on'=>'Sun>=1','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_MONTERREY

$fatpacked{"DateTime/TimeZone/America/Montevideo.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_MONTEVIDEO';
  package DateTime::TimeZone::America::Montevideo;$DateTime::TimeZone::America::Montevideo::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Montevideo::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59879015084,DateTime::TimeZone::NEG_INFINITY,59879001600,-13484,0,'LMT',],[59879015084,60568227884,59879001600,60568214400,-13484,0,'MMT',],[60568227884,60676140600,60568215284,60676128000,-12600,0,'UYT',],[60676140600,60691863600,60676129800,60691852800,-10800,1,'UYHST',],[60691863600,60707676600,60691851000,60707664000,-12600,0,'UYT',],[60707676600,60723399600,60707665800,60723388800,-10800,1,'UYHST',],[60723399600,60739212600,60723387000,60739200000,-12600,0,'UYT',],[60739212600,60754935600,60739201800,60754924800,-10800,1,'UYHST',],[60754935600,60994092600,60754923000,60994080000,-12600,0,'UYT',],[60994092600,61007396400,60994081800,61007385600,-10800,1,'UYHST',],[61007396400,61025542200,61007383800,61025529600,-12600,0,'UYT',],[61025542200,61038846000,61025531400,61038835200,-10800,1,'UYHST',],[61038846000,61056991800,61038833400,61056979200,-12600,0,'UYT',],[61056991800,61070295600,61056981000,61070284800,-10800,1,'UYHST',],[61070295600,61089046200,61070283000,61089033600,-12600,0,'UYT',],[61089046200,61101745200,61089035400,61101734400,-10800,1,'UYHST',],[61101745200,61120495800,61101732600,61120483200,-12600,0,'UYT',],[61120495800,61133194800,61120485000,61133184000,-10800,1,'UYHST',],[61133194800,61151945400,61133182200,61151932800,-12600,0,'UYT',],[61151945400,61164644400,61151934600,61164633600,-10800,1,'UYHST',],[61164644400,61183395000,61164631800,61183382400,-12600,0,'UYT',],[61183395000,61196698800,61183384200,61196688000,-10800,1,'UYHST',],[61196698800,61214844600,61196686200,61214832000,-12600,0,'UYT',],[61214844600,61228148400,61214833800,61228137600,-10800,1,'UYHST',],[61228148400,61238863800,61228135800,61238851200,-12600,0,'UYT',],[61238863800,61252081200,61238853000,61252070400,-10800,1,'UYHST',],[61252081200,61282063800,61252068600,61282051200,-12600,0,'UYT',],[61282063800,61289834400,61282056600,61289827200,-7200,1,'UYST',],[61289834400,61800894000,61289823600,61800883200,-10800,0,'UYT',],[61800894000,61816010400,61800886800,61816003200,-7200,1,'UYST',],[61816010400,61821457200,61815999600,61821446400,-10800,0,'UYT',],[61821457200,61825687200,61821450000,61825680000,-7200,1,'UYST',],[61825687200,61985962800,61825676400,61985952000,-10800,0,'UYT',],[61985962800,62001079200,61985955600,62001072000,-7200,1,'UYST',],[62001079200,62017412400,62001068400,62017401600,-10800,0,'UYT',],[62017412400,62035639200,62017405200,62035632000,-7200,1,'UYST',],[62035639200,62048862000,62035628400,62048851200,-10800,0,'UYT',],[62048862000,62067175200,62048854800,62067168000,-7200,1,'UYST',],[62067175200,62085236400,62067164400,62085225600,-10800,0,'UYT',],[62085236400,62101564200,62085227400,62101555200,-9000,1,'UYHST',],[62101564200,62116772400,62101553400,62116761600,-10800,0,'UYT',],[62116772400,62133100200,62116763400,62133091200,-9000,1,'UYHST',],[62133100200,62148308400,62133089400,62148297600,-10800,0,'UYT',],[62148308400,62164636200,62148299400,62164627200,-9000,1,'UYHST',],[62164636200,62208615600,62164625400,62208604800,-10800,0,'UYT',],[62208615600,62218375200,62208608400,62218368000,-7200,1,'UYST',],[62218375200,62267799600,62218364400,62267788800,-10800,0,'UYT',],[62267799600,62292594600,62267790600,62292585600,-9000,1,'UYHST',],[62292594600,62348666400,62292587400,62348659200,-7200,1,'UYST',],[62348666400,62385735600,62348655600,62385724800,-10800,0,'UYT',],[62385735600,62395927200,62385728400,62395920000,-7200,1,'UYST',],[62395927200,62443278000,62395916400,62443267200,-10800,0,'UYT',],[62443278000,62461677600,62443270800,62461670400,-7200,1,'UYST',],[62461677600,62702132400,62461666800,62702121600,-10800,0,'UYT',],[62702132400,62709991200,62702125200,62709984000,-7200,1,'UYST',],[62709991200,62733495600,62709980400,62733484800,-10800,0,'UYT',],[62733495600,62741354400,62733488400,62741347200,-7200,1,'UYST',],[62741354400,62761316400,62741343600,62761305600,-10800,0,'UYT',],[62761316400,62772199200,62761309200,62772192000,-7200,1,'UYST',],[62772199200,62792161200,62772188400,62792150400,-10800,0,'UYT',],[62792161200,62803648800,62792154000,62803641600,-7200,1,'UYST',],[62803648800,62824215600,62803638000,62824204800,-10800,0,'UYT',],[62824215600,62835098400,62824208400,62835091200,-7200,1,'UYST',],[62835098400,62855060400,62835087600,62855049600,-10800,0,'UYT',],[62855060400,62866548000,62855053200,62866540800,-7200,1,'UYST',],[62866548000,63231246000,62866537200,63231235200,-10800,0,'UYT',],[63231246000,63247579200,63231238800,63247572000,-7200,1,'UYST',],[63247579200,63264517200,63247568400,63264506400,-10800,0,'UYT',],[63264517200,63277819200,63264510000,63277812000,-7200,1,'UYST',],[63277819200,63295362000,63277808400,63295351200,-10800,0,'UYT',],[63295362000,63309268800,63295354800,63309261600,-7200,1,'UYST',],[63309268800,63327416400,63309258000,63327405600,-10800,0,'UYT',],[63327416400,63340718400,63327409200,63340711200,-7200,1,'UYST',],[63340718400,63358866000,63340707600,63358855200,-10800,0,'UYT',],[63358866000,63372168000,63358858800,63372160800,-7200,1,'UYST',],[63372168000,63390315600,63372157200,63390304800,-10800,0,'UYT',],[63390315600,63404222400,63390308400,63404215200,-7200,1,'UYST',],[63404222400,63421765200,63404211600,63421754400,-10800,0,'UYT',],[63421765200,63435672000,63421758000,63435664800,-7200,1,'UYST',],[63435672000,63453214800,63435661200,63453204000,-10800,0,'UYT',],[63453214800,63467121600,63453207600,63467114400,-7200,1,'UYST',],[63467121600,63485269200,63467110800,63485258400,-10800,0,'UYT',],[63485269200,63498571200,63485262000,63498564000,-7200,1,'UYST',],[63498571200,63516718800,63498560400,63516708000,-10800,0,'UYT',],[63516718800,63530020800,63516711600,63530013600,-7200,1,'UYST',],[63530020800,63548168400,63530010000,63548157600,-10800,0,'UYT',],[63548168400,63561470400,63548161200,63561463200,-7200,1,'UYST',],[63561470400,DateTime::TimeZone::INFINITY,63561459600,DateTime::TimeZone::INFINITY,-10800,0,'UYT',],];sub olson_version {'2016a'}sub has_dst_changes {43}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_MONTEVIDEO

$fatpacked{"DateTime/TimeZone/America/Nassau.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_NASSAU';
  package DateTime::TimeZone::America::Nassau;$DateTime::TimeZone::America::Nassau::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Nassau::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60310588170,DateTime::TimeZone::NEG_INFINITY,60310569600,-18570,0,'LMT',],[60310588170,61956342000,60310570170,61956324000,-18000,0,'EST',],[61956342000,61972063200,61956327600,61972048800,-14400,1,'EDT',],[61972063200,61987791600,61972045200,61987773600,-18000,0,'EST',],[61987791600,62004117600,61987777200,62004103200,-14400,1,'EDT',],[62004117600,62019241200,62004099600,62019223200,-18000,0,'EST',],[62019241200,62035567200,62019226800,62035552800,-14400,1,'EDT',],[62035567200,62051295600,62035549200,62051277600,-18000,0,'EST',],[62051295600,62067016800,62051281200,62067002400,-14400,1,'EDT',],[62067016800,62082745200,62066998800,62082727200,-18000,0,'EST',],[62082745200,62098466400,62082730800,62098452000,-14400,1,'EDT',],[62098466400,62114194800,62098448400,62114176800,-18000,0,'EST',],[62114194800,62129916000,62114180400,62129901600,-14400,1,'EDT',],[62129916000,62145644400,62129898000,62145626400,-18000,0,'EST',],[62145644400,62161365600,62145630000,62161351200,-14400,1,'EDT',],[62161365600,62177094000,62161347600,62177076000,-18000,0,'EST',],[62177094000,62193420000,62177079600,62193405600,-14400,1,'EDT',],[62193420000,62209148400,62193402000,62209130400,-18000,0,'EST',],[62209148400,62224869600,62209134000,62224855200,-14400,1,'EDT',],[62224869600,62240598000,62224851600,62240580000,-18000,0,'EST',],[62240598000,62256319200,62240583600,62256304800,-14400,1,'EDT',],[62256319200,62272047600,62256301200,62272029600,-18000,0,'EST',],[62272047600,62287768800,62272033200,62287754400,-14400,1,'EDT',],[62287768800,62303497200,62287750800,62303479200,-18000,0,'EST',],[62303497200,62319218400,62303482800,62319204000,-14400,1,'EDT',],[62319218400,62325003600,62319200400,62324985600,-18000,0,'EST',],[62325003600,62334946800,62324985600,62334928800,-18000,0,'EST',],[62334946800,62351272800,62334932400,62351258400,-14400,1,'EDT',],[62351272800,62366396400,62351254800,62366378400,-18000,0,'EST',],[62366396400,62382722400,62366382000,62382708000,-14400,1,'EDT',],[62382722400,62398450800,62382704400,62398432800,-18000,0,'EST',],[62398450800,62414172000,62398436400,62414157600,-14400,1,'EDT',],[62414172000,62429900400,62414154000,62429882400,-18000,0,'EST',],[62429900400,62445621600,62429886000,62445607200,-14400,1,'EDT',],[62445621600,62461350000,62445603600,62461332000,-18000,0,'EST',],[62461350000,62477071200,62461335600,62477056800,-14400,1,'EDT',],[62477071200,62492799600,62477053200,62492781600,-18000,0,'EST',],[62492799600,62508520800,62492785200,62508506400,-14400,1,'EDT',],[62508520800,62524249200,62508502800,62524231200,-18000,0,'EST',],[62524249200,62540575200,62524234800,62540560800,-14400,1,'EDT',],[62540575200,62555698800,62540557200,62555680800,-18000,0,'EST',],[62555698800,62572024800,62555684400,62572010400,-14400,1,'EDT',],[62572024800,62587753200,62572006800,62587735200,-18000,0,'EST',],[62587753200,62603474400,62587738800,62603460000,-14400,1,'EDT',],[62603474400,62619202800,62603456400,62619184800,-18000,0,'EST',],[62619202800,62634924000,62619188400,62634909600,-14400,1,'EDT',],[62634924000,62650652400,62634906000,62650634400,-18000,0,'EST',],[62650652400,62666373600,62650638000,62666359200,-14400,1,'EDT',],[62666373600,62680287600,62666355600,62680269600,-18000,0,'EST',],[62680287600,62697823200,62680273200,62697808800,-14400,1,'EDT',],[62697823200,62711737200,62697805200,62711719200,-18000,0,'EST',],[62711737200,62729877600,62711722800,62729863200,-14400,1,'EDT',],[62729877600,62743186800,62729859600,62743168800,-18000,0,'EST',],[62743186800,62761327200,62743172400,62761312800,-14400,1,'EDT',],[62761327200,62774636400,62761309200,62774618400,-18000,0,'EST',],[62774636400,62792776800,62774622000,62792762400,-14400,1,'EDT',],[62792776800,62806690800,62792758800,62806672800,-18000,0,'EST',],[62806690800,62824226400,62806676400,62824212000,-14400,1,'EDT',],[62824226400,62838140400,62824208400,62838122400,-18000,0,'EST',],[62838140400,62855676000,62838126000,62855661600,-14400,1,'EDT',],[62855676000,62869590000,62855658000,62869572000,-18000,0,'EST',],[62869590000,62887730400,62869575600,62887716000,-14400,1,'EDT',],[62887730400,62901039600,62887712400,62901021600,-18000,0,'EST',],[62901039600,62919180000,62901025200,62919165600,-14400,1,'EDT',],[62919180000,62932489200,62919162000,62932471200,-18000,0,'EST',],[62932489200,62950629600,62932474800,62950615200,-14400,1,'EDT',],[62950629600,62964543600,62950611600,62964525600,-18000,0,'EST',],[62964543600,62982079200,62964529200,62982064800,-14400,1,'EDT',],[62982079200,62995993200,62982061200,62995975200,-18000,0,'EST',],[62995993200,63013528800,62995978800,63013514400,-14400,1,'EDT',],[63013528800,63027442800,63013510800,63027424800,-18000,0,'EST',],[63027442800,63044978400,63027428400,63044964000,-14400,1,'EDT',],[63044978400,63058892400,63044960400,63058874400,-18000,0,'EST',],[63058892400,63077032800,63058878000,63077018400,-14400,1,'EDT',],[63077032800,63090342000,63077014800,63090324000,-18000,0,'EST',],[63090342000,63108482400,63090327600,63108468000,-14400,1,'EDT',],[63108482400,63121791600,63108464400,63121773600,-18000,0,'EST',],[63121791600,63139932000,63121777200,63139917600,-14400,1,'EDT',],[63139932000,63153846000,63139914000,63153828000,-18000,0,'EST',],[63153846000,63171381600,63153831600,63171367200,-14400,1,'EDT',],[63171381600,63185295600,63171363600,63185277600,-18000,0,'EST',],[63185295600,63202831200,63185281200,63202816800,-14400,1,'EDT',],[63202831200,63216745200,63202813200,63216727200,-18000,0,'EST',],[63216745200,63234885600,63216730800,63234871200,-14400,1,'EDT',],[63234885600,63248194800,63234867600,63248176800,-18000,0,'EST',],[63248194800,63266335200,63248180400,63266320800,-14400,1,'EDT',],[63266335200,63279644400,63266317200,63279626400,-18000,0,'EST',],[63279644400,63297784800,63279630000,63297770400,-14400,1,'EDT',],[63297784800,63309279600,63297766800,63309261600,-18000,0,'EST',],[63309279600,63329839200,63309265200,63329824800,-14400,1,'EDT',],[63329839200,63340729200,63329821200,63340711200,-18000,0,'EST',],[63340729200,63361288800,63340714800,63361274400,-14400,1,'EDT',],[63361288800,63372178800,63361270800,63372160800,-18000,0,'EST',],[63372178800,63392738400,63372164400,63392724000,-14400,1,'EDT',],[63392738400,63404233200,63392720400,63404215200,-18000,0,'EST',],[63404233200,63424792800,63404218800,63424778400,-14400,1,'EDT',],[63424792800,63435682800,63424774800,63435664800,-18000,0,'EST',],[63435682800,63456242400,63435668400,63456228000,-14400,1,'EDT',],[63456242400,63467132400,63456224400,63467114400,-18000,0,'EST',],[63467132400,63487692000,63467118000,63487677600,-14400,1,'EDT',],[63487692000,63498582000,63487674000,63498564000,-18000,0,'EST',],[63498582000,63519141600,63498567600,63519127200,-14400,1,'EDT',],[63519141600,63530031600,63519123600,63530013600,-18000,0,'EST',],[63530031600,63550591200,63530017200,63550576800,-14400,1,'EDT',],[63550591200,63561481200,63550573200,63561463200,-18000,0,'EST',],[63561481200,63582040800,63561466800,63582026400,-14400,1,'EDT',],[63582040800,63593535600,63582022800,63593517600,-18000,0,'EST',],[63593535600,63614095200,63593521200,63614080800,-14400,1,'EDT',],[63614095200,63624985200,63614077200,63624967200,-18000,0,'EST',],[63624985200,63645544800,63624970800,63645530400,-14400,1,'EDT',],[63645544800,63656434800,63645526800,63656416800,-18000,0,'EST',],[63656434800,63676994400,63656420400,63676980000,-14400,1,'EDT',],[63676994400,63687884400,63676976400,63687866400,-18000,0,'EST',],[63687884400,63708444000,63687870000,63708429600,-14400,1,'EDT',],[63708444000,63719334000,63708426000,63719316000,-18000,0,'EST',],[63719334000,63739893600,63719319600,63739879200,-14400,1,'EDT',],[63739893600,63751388400,63739875600,63751370400,-18000,0,'EST',],[63751388400,63771948000,63751374000,63771933600,-14400,1,'EDT',],[63771948000,63782838000,63771930000,63782820000,-18000,0,'EST',],[63782838000,63803397600,63782823600,63803383200,-14400,1,'EDT',],[63803397600,63814287600,63803379600,63814269600,-18000,0,'EST',],[63814287600,63834847200,63814273200,63834832800,-14400,1,'EDT',],[63834847200,63845737200,63834829200,63845719200,-18000,0,'EST',],[63845737200,63866296800,63845722800,63866282400,-14400,1,'EDT',],[63866296800,63877186800,63866278800,63877168800,-18000,0,'EST',],[63877186800,63897746400,63877172400,63897732000,-14400,1,'EDT',],[63897746400,63908636400,63897728400,63908618400,-18000,0,'EST',],[63908636400,63929196000,63908622000,63929181600,-14400,1,'EDT',],[63929196000,63940690800,63929178000,63940672800,-18000,0,'EST',],[63940690800,63961250400,63940676400,63961236000,-14400,1,'EDT',],];sub olson_version {'2016a'}sub has_dst_changes {64}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-18000}my$last_observance=bless({'format'=>'E%sT','gmtoff'=>'-5:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>721354,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>721354,'utc_rd_secs'=>0,'utc_year'=>1977 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-18000,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>721354,'local_rd_secs'=>18000,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>721354,'utc_rd_secs'=>18000,'utc_year'=>1977 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_NASSAU

$fatpacked{"DateTime/TimeZone/America/New_York.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_NEW_YORK';
  package DateTime::TimeZone::America::New_York;$DateTime::TimeZone::America::New_York::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::New_York::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59418032400,DateTime::TimeZone::NEG_INFINITY,59418014638,-17762,0,'LMT',],[59418032400,60502402800,59418014400,60502384800,-18000,0,'EST',],[60502402800,60520543200,60502388400,60520528800,-14400,1,'EDT',],[60520543200,60533852400,60520525200,60533834400,-18000,0,'EST',],[60533852400,60551992800,60533838000,60551978400,-14400,1,'EDT',],[60551992800,60557778000,60551974800,60557760000,-18000,0,'EST',],[60557778000,60565302000,60557760000,60565284000,-18000,0,'EST',],[60565302000,60584047200,60565287600,60584032800,-14400,1,'EDT',],[60584047200,60599170800,60584029200,60599152800,-18000,0,'EST',],[60599170800,60612472800,60599156400,60612458400,-14400,1,'EDT',],[60612472800,60631225200,60612454800,60631207200,-18000,0,'EST',],[60631225200,60643922400,60631210800,60643908000,-14400,1,'EDT',],[60643922400,60662674800,60643904400,60662656800,-18000,0,'EST',],[60662674800,60675976800,60662660400,60675962400,-14400,1,'EDT',],[60675976800,60694124400,60675958800,60694106400,-18000,0,'EST',],[60694124400,60707426400,60694110000,60707412000,-14400,1,'EDT',],[60707426400,60725574000,60707408400,60725556000,-18000,0,'EST',],[60725574000,60738876000,60725559600,60738861600,-14400,1,'EDT',],[60738876000,60757023600,60738858000,60757005600,-18000,0,'EST',],[60757023600,60770325600,60757009200,60770311200,-14400,1,'EDT',],[60770325600,60788473200,60770307600,60788455200,-18000,0,'EST',],[60788473200,60801775200,60788458800,60801760800,-14400,1,'EDT',],[60801775200,60820527600,60801757200,60820509600,-18000,0,'EST',],[60820527600,60833829600,60820513200,60833815200,-14400,1,'EDT',],[60833829600,60851977200,60833811600,60851959200,-18000,0,'EST',],[60851977200,60865279200,60851962800,60865264800,-14400,1,'EDT',],[60865279200,60883426800,60865261200,60883408800,-18000,0,'EST',],[60883426800,60896728800,60883412400,60896714400,-14400,1,'EDT',],[60896728800,60914876400,60896710800,60914858400,-18000,0,'EST',],[60914876400,60928178400,60914862000,60928164000,-14400,1,'EDT',],[60928178400,60946326000,60928160400,60946308000,-18000,0,'EST',],[60946326000,60959628000,60946311600,60959613600,-14400,1,'EDT',],[60959628000,60978380400,60959610000,60978362400,-18000,0,'EST',],[60978380400,60991077600,60978366000,60991063200,-14400,1,'EDT',],[60991077600,61009830000,60991059600,61009812000,-18000,0,'EST',],[61009830000,61023132000,61009815600,61023117600,-14400,1,'EDT',],[61023132000,61041279600,61023114000,61041261600,-18000,0,'EST',],[61041279600,61054581600,61041265200,61054567200,-14400,1,'EDT',],[61054581600,61072729200,61054563600,61072711200,-18000,0,'EST',],[61072729200,61086031200,61072714800,61086016800,-14400,1,'EDT',],[61086031200,61104178800,61086013200,61104160800,-18000,0,'EST',],[61104178800,61117480800,61104164400,61117466400,-14400,1,'EDT',],[61117480800,61135628400,61117462800,61135610400,-18000,0,'EST',],[61135628400,61148930400,61135614000,61148916000,-14400,1,'EDT',],[61148930400,61167682800,61148912400,61167664800,-18000,0,'EST',],[61167682800,61180380000,61167668400,61180365600,-14400,1,'EDT',],[61180380000,61199132400,61180362000,61199114400,-18000,0,'EST',],[61199132400,61212434400,61199118000,61212420000,-14400,1,'EDT',],[61212434400,61230582000,61212416400,61230564000,-18000,0,'EST',],[61230582000,61243884000,61230567600,61243869600,-14400,1,'EDT',],[61243884000,61252088400,61243866000,61252070400,-18000,0,'EST',],[61252088400,61255465200,61252070400,61255447200,-18000,0,'EST',],[61255465200,61366287600,61255450800,61366273200,-14400,1,'EWT',],[61366287600,61370287200,61366273200,61370272800,-14400,1,'EPT',],[61370287200,61378318800,61370269200,61378300800,-18000,0,'EST',],[61378318800,61388434800,61378300800,61388416800,-18000,0,'EST',],[61388434800,61401736800,61388420400,61401722400,-14400,1,'EDT',],[61401736800,61419884400,61401718800,61419866400,-18000,0,'EST',],[61419884400,61433186400,61419870000,61433172000,-14400,1,'EDT',],[61433186400,61451334000,61433168400,61451316000,-18000,0,'EST',],[61451334000,61464636000,61451319600,61464621600,-14400,1,'EDT',],[61464636000,61482783600,61464618000,61482765600,-18000,0,'EST',],[61482783600,61496085600,61482769200,61496071200,-14400,1,'EDT',],[61496085600,61514838000,61496067600,61514820000,-18000,0,'EST',],[61514838000,61527535200,61514823600,61527520800,-14400,1,'EDT',],[61527535200,61546287600,61527517200,61546269600,-18000,0,'EST',],[61546287600,61559589600,61546273200,61559575200,-14400,1,'EDT',],[61559589600,61577737200,61559571600,61577719200,-18000,0,'EST',],[61577737200,61591039200,61577722800,61591024800,-14400,1,'EDT',],[61591039200,61609186800,61591021200,61609168800,-18000,0,'EST',],[61609186800,61622488800,61609172400,61622474400,-14400,1,'EDT',],[61622488800,61640636400,61622470800,61640618400,-18000,0,'EST',],[61640636400,61653938400,61640622000,61653924000,-14400,1,'EDT',],[61653938400,61672086000,61653920400,61672068000,-18000,0,'EST',],[61672086000,61688412000,61672071600,61688397600,-14400,1,'EDT',],[61688412000,61704140400,61688394000,61704122400,-18000,0,'EST',],[61704140400,61719861600,61704126000,61719847200,-14400,1,'EDT',],[61719861600,61735590000,61719843600,61735572000,-18000,0,'EST',],[61735590000,61751311200,61735575600,61751296800,-14400,1,'EDT',],[61751311200,61767039600,61751293200,61767021600,-18000,0,'EST',],[61767039600,61782760800,61767025200,61782746400,-14400,1,'EDT',],[61782760800,61798489200,61782742800,61798471200,-18000,0,'EST',],[61798489200,61814210400,61798474800,61814196000,-14400,1,'EDT',],[61814210400,61829938800,61814192400,61829920800,-18000,0,'EST',],[61829938800,61846264800,61829924400,61846250400,-14400,1,'EDT',],[61846264800,61861993200,61846246800,61861975200,-18000,0,'EST',],[61861993200,61877714400,61861978800,61877700000,-14400,1,'EDT',],[61877714400,61893442800,61877696400,61893424800,-18000,0,'EST',],[61893442800,61909164000,61893428400,61909149600,-14400,1,'EDT',],[61909164000,61924892400,61909146000,61924874400,-18000,0,'EST',],[61924892400,61940613600,61924878000,61940599200,-14400,1,'EDT',],[61940613600,61956342000,61940595600,61956324000,-18000,0,'EST',],[61956342000,61972063200,61956327600,61972048800,-14400,1,'EDT',],[61972063200,61987791600,61972045200,61987773600,-18000,0,'EST',],[61987791600,62004117600,61987777200,62004103200,-14400,1,'EDT',],[62004117600,62019241200,62004099600,62019223200,-18000,0,'EST',],[62019241200,62035567200,62019226800,62035552800,-14400,1,'EDT',],[62035567200,62041006800,62035549200,62040988800,-18000,0,'EST',],[62041006800,62051295600,62040988800,62051277600,-18000,0,'EST',],[62051295600,62067016800,62051281200,62067002400,-14400,1,'EDT',],[62067016800,62082745200,62066998800,62082727200,-18000,0,'EST',],[62082745200,62098466400,62082730800,62098452000,-14400,1,'EDT',],[62098466400,62114194800,62098448400,62114176800,-18000,0,'EST',],[62114194800,62129916000,62114180400,62129901600,-14400,1,'EDT',],[62129916000,62145644400,62129898000,62145626400,-18000,0,'EST',],[62145644400,62161365600,62145630000,62161351200,-14400,1,'EDT',],[62161365600,62177094000,62161347600,62177076000,-18000,0,'EST',],[62177094000,62193420000,62177079600,62193405600,-14400,1,'EDT',],[62193420000,62209148400,62193402000,62209130400,-18000,0,'EST',],[62209148400,62224869600,62209134000,62224855200,-14400,1,'EDT',],[62224869600,62240598000,62224851600,62240580000,-18000,0,'EST',],[62240598000,62256319200,62240583600,62256304800,-14400,1,'EDT',],[62256319200,62262370800,62256301200,62262352800,-18000,0,'EST',],[62262370800,62287768800,62262356400,62287754400,-14400,1,'EDT',],[62287768800,62298054000,62287750800,62298036000,-18000,0,'EST',],[62298054000,62319218400,62298039600,62319204000,-14400,1,'EDT',],[62319218400,62334946800,62319200400,62334928800,-18000,0,'EST',],[62334946800,62351272800,62334932400,62351258400,-14400,1,'EDT',],[62351272800,62366396400,62351254800,62366378400,-18000,0,'EST',],[62366396400,62382722400,62366382000,62382708000,-14400,1,'EDT',],[62382722400,62398450800,62382704400,62398432800,-18000,0,'EST',],[62398450800,62414172000,62398436400,62414157600,-14400,1,'EDT',],[62414172000,62429900400,62414154000,62429882400,-18000,0,'EST',],[62429900400,62445621600,62429886000,62445607200,-14400,1,'EDT',],[62445621600,62461350000,62445603600,62461332000,-18000,0,'EST',],[62461350000,62477071200,62461335600,62477056800,-14400,1,'EDT',],[62477071200,62492799600,62477053200,62492781600,-18000,0,'EST',],[62492799600,62508520800,62492785200,62508506400,-14400,1,'EDT',],[62508520800,62524249200,62508502800,62524231200,-18000,0,'EST',],[62524249200,62540575200,62524234800,62540560800,-14400,1,'EDT',],[62540575200,62555698800,62540557200,62555680800,-18000,0,'EST',],[62555698800,62572024800,62555684400,62572010400,-14400,1,'EDT',],[62572024800,62587753200,62572006800,62587735200,-18000,0,'EST',],[62587753200,62603474400,62587738800,62603460000,-14400,1,'EDT',],[62603474400,62619202800,62603456400,62619184800,-18000,0,'EST',],[62619202800,62634924000,62619188400,62634909600,-14400,1,'EDT',],[62634924000,62650652400,62634906000,62650634400,-18000,0,'EST',],[62650652400,62666373600,62650638000,62666359200,-14400,1,'EDT',],[62666373600,62680287600,62666355600,62680269600,-18000,0,'EST',],[62680287600,62697823200,62680273200,62697808800,-14400,1,'EDT',],[62697823200,62711737200,62697805200,62711719200,-18000,0,'EST',],[62711737200,62729877600,62711722800,62729863200,-14400,1,'EDT',],[62729877600,62743186800,62729859600,62743168800,-18000,0,'EST',],[62743186800,62761327200,62743172400,62761312800,-14400,1,'EDT',],[62761327200,62774636400,62761309200,62774618400,-18000,0,'EST',],[62774636400,62792776800,62774622000,62792762400,-14400,1,'EDT',],[62792776800,62806690800,62792758800,62806672800,-18000,0,'EST',],[62806690800,62824226400,62806676400,62824212000,-14400,1,'EDT',],[62824226400,62838140400,62824208400,62838122400,-18000,0,'EST',],[62838140400,62855676000,62838126000,62855661600,-14400,1,'EDT',],[62855676000,62869590000,62855658000,62869572000,-18000,0,'EST',],[62869590000,62887730400,62869575600,62887716000,-14400,1,'EDT',],[62887730400,62901039600,62887712400,62901021600,-18000,0,'EST',],[62901039600,62919180000,62901025200,62919165600,-14400,1,'EDT',],[62919180000,62932489200,62919162000,62932471200,-18000,0,'EST',],[62932489200,62950629600,62932474800,62950615200,-14400,1,'EDT',],[62950629600,62964543600,62950611600,62964525600,-18000,0,'EST',],[62964543600,62982079200,62964529200,62982064800,-14400,1,'EDT',],[62982079200,62995993200,62982061200,62995975200,-18000,0,'EST',],[62995993200,63013528800,62995978800,63013514400,-14400,1,'EDT',],[63013528800,63027442800,63013510800,63027424800,-18000,0,'EST',],[63027442800,63044978400,63027428400,63044964000,-14400,1,'EDT',],[63044978400,63058892400,63044960400,63058874400,-18000,0,'EST',],[63058892400,63077032800,63058878000,63077018400,-14400,1,'EDT',],[63077032800,63090342000,63077014800,63090324000,-18000,0,'EST',],[63090342000,63108482400,63090327600,63108468000,-14400,1,'EDT',],[63108482400,63121791600,63108464400,63121773600,-18000,0,'EST',],[63121791600,63139932000,63121777200,63139917600,-14400,1,'EDT',],[63139932000,63153846000,63139914000,63153828000,-18000,0,'EST',],[63153846000,63171381600,63153831600,63171367200,-14400,1,'EDT',],[63171381600,63185295600,63171363600,63185277600,-18000,0,'EST',],[63185295600,63202831200,63185281200,63202816800,-14400,1,'EDT',],[63202831200,63216745200,63202813200,63216727200,-18000,0,'EST',],[63216745200,63234885600,63216730800,63234871200,-14400,1,'EDT',],[63234885600,63248194800,63234867600,63248176800,-18000,0,'EST',],[63248194800,63266335200,63248180400,63266320800,-14400,1,'EDT',],[63266335200,63279644400,63266317200,63279626400,-18000,0,'EST',],[63279644400,63297784800,63279630000,63297770400,-14400,1,'EDT',],[63297784800,63309279600,63297766800,63309261600,-18000,0,'EST',],[63309279600,63329839200,63309265200,63329824800,-14400,1,'EDT',],[63329839200,63340729200,63329821200,63340711200,-18000,0,'EST',],[63340729200,63361288800,63340714800,63361274400,-14400,1,'EDT',],[63361288800,63372178800,63361270800,63372160800,-18000,0,'EST',],[63372178800,63392738400,63372164400,63392724000,-14400,1,'EDT',],[63392738400,63404233200,63392720400,63404215200,-18000,0,'EST',],[63404233200,63424792800,63404218800,63424778400,-14400,1,'EDT',],[63424792800,63435682800,63424774800,63435664800,-18000,0,'EST',],[63435682800,63456242400,63435668400,63456228000,-14400,1,'EDT',],[63456242400,63467132400,63456224400,63467114400,-18000,0,'EST',],[63467132400,63487692000,63467118000,63487677600,-14400,1,'EDT',],[63487692000,63498582000,63487674000,63498564000,-18000,0,'EST',],[63498582000,63519141600,63498567600,63519127200,-14400,1,'EDT',],[63519141600,63530031600,63519123600,63530013600,-18000,0,'EST',],[63530031600,63550591200,63530017200,63550576800,-14400,1,'EDT',],[63550591200,63561481200,63550573200,63561463200,-18000,0,'EST',],[63561481200,63582040800,63561466800,63582026400,-14400,1,'EDT',],[63582040800,63593535600,63582022800,63593517600,-18000,0,'EST',],[63593535600,63614095200,63593521200,63614080800,-14400,1,'EDT',],[63614095200,63624985200,63614077200,63624967200,-18000,0,'EST',],[63624985200,63645544800,63624970800,63645530400,-14400,1,'EDT',],[63645544800,63656434800,63645526800,63656416800,-18000,0,'EST',],[63656434800,63676994400,63656420400,63676980000,-14400,1,'EDT',],[63676994400,63687884400,63676976400,63687866400,-18000,0,'EST',],[63687884400,63708444000,63687870000,63708429600,-14400,1,'EDT',],[63708444000,63719334000,63708426000,63719316000,-18000,0,'EST',],[63719334000,63739893600,63719319600,63739879200,-14400,1,'EDT',],[63739893600,63751388400,63739875600,63751370400,-18000,0,'EST',],[63751388400,63771948000,63751374000,63771933600,-14400,1,'EDT',],[63771948000,63782838000,63771930000,63782820000,-18000,0,'EST',],[63782838000,63803397600,63782823600,63803383200,-14400,1,'EDT',],[63803397600,63814287600,63803379600,63814269600,-18000,0,'EST',],[63814287600,63834847200,63814273200,63834832800,-14400,1,'EDT',],[63834847200,63845737200,63834829200,63845719200,-18000,0,'EST',],[63845737200,63866296800,63845722800,63866282400,-14400,1,'EDT',],[63866296800,63877186800,63866278800,63877168800,-18000,0,'EST',],[63877186800,63897746400,63877172400,63897732000,-14400,1,'EDT',],[63897746400,63908636400,63897728400,63908618400,-18000,0,'EST',],[63908636400,63929196000,63908622000,63929181600,-14400,1,'EDT',],[63929196000,63940690800,63929178000,63940672800,-18000,0,'EST',],[63940690800,63961250400,63940676400,63961236000,-14400,1,'EDT',],];sub olson_version {'2016a'}sub has_dst_changes {108}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-18000}my$last_observance=bless({'format'=>'E%sT','gmtoff'=>'-5:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>718067,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>718067,'utc_rd_secs'=>0,'utc_year'=>1968 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-18000,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>718067,'local_rd_secs'=>18000,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>718067,'utc_rd_secs'=>18000,'utc_year'=>1968 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_NEW_YORK

$fatpacked{"DateTime/TimeZone/America/Nipigon.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_NIPIGON';
  package DateTime::TimeZone::America::Nipigon;$DateTime::TimeZone::America::Nipigon::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Nipigon::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59768949184,DateTime::TimeZone::NEG_INFINITY,59768928000,-21184,0,'LMT',],[59768949184,60503612400,59768931184,60503594400,-18000,0,'EST',],[60503612400,60520543200,60503598000,60520528800,-14400,1,'EDT',],[60520543200,61212430800,60520525200,61212412800,-18000,0,'EST',],[61212430800,61255465200,61212416400,61255450800,-14400,1,'EDT',],[61255465200,61366287600,61255450800,61366273200,-14400,1,'EWT',],[61366287600,61370287200,61366273200,61370272800,-14400,1,'EPT',],[61370287200,62272047600,61370269200,62272029600,-18000,0,'EST',],[62272047600,62287768800,62272033200,62287754400,-14400,1,'EDT',],[62287768800,62303497200,62287750800,62303479200,-18000,0,'EST',],[62303497200,62319218400,62303482800,62319204000,-14400,1,'EDT',],[62319218400,62334946800,62319200400,62334928800,-18000,0,'EST',],[62334946800,62351272800,62334932400,62351258400,-14400,1,'EDT',],[62351272800,62366396400,62351254800,62366378400,-18000,0,'EST',],[62366396400,62382722400,62366382000,62382708000,-14400,1,'EDT',],[62382722400,62398450800,62382704400,62398432800,-18000,0,'EST',],[62398450800,62414172000,62398436400,62414157600,-14400,1,'EDT',],[62414172000,62429900400,62414154000,62429882400,-18000,0,'EST',],[62429900400,62445621600,62429886000,62445607200,-14400,1,'EDT',],[62445621600,62461350000,62445603600,62461332000,-18000,0,'EST',],[62461350000,62477071200,62461335600,62477056800,-14400,1,'EDT',],[62477071200,62492799600,62477053200,62492781600,-18000,0,'EST',],[62492799600,62508520800,62492785200,62508506400,-14400,1,'EDT',],[62508520800,62524249200,62508502800,62524231200,-18000,0,'EST',],[62524249200,62540575200,62524234800,62540560800,-14400,1,'EDT',],[62540575200,62555698800,62540557200,62555680800,-18000,0,'EST',],[62555698800,62572024800,62555684400,62572010400,-14400,1,'EDT',],[62572024800,62587753200,62572006800,62587735200,-18000,0,'EST',],[62587753200,62603474400,62587738800,62603460000,-14400,1,'EDT',],[62603474400,62619202800,62603456400,62619184800,-18000,0,'EST',],[62619202800,62634924000,62619188400,62634909600,-14400,1,'EDT',],[62634924000,62650652400,62634906000,62650634400,-18000,0,'EST',],[62650652400,62666373600,62650638000,62666359200,-14400,1,'EDT',],[62666373600,62680287600,62666355600,62680269600,-18000,0,'EST',],[62680287600,62697823200,62680273200,62697808800,-14400,1,'EDT',],[62697823200,62711737200,62697805200,62711719200,-18000,0,'EST',],[62711737200,62729877600,62711722800,62729863200,-14400,1,'EDT',],[62729877600,62743186800,62729859600,62743168800,-18000,0,'EST',],[62743186800,62761327200,62743172400,62761312800,-14400,1,'EDT',],[62761327200,62774636400,62761309200,62774618400,-18000,0,'EST',],[62774636400,62792776800,62774622000,62792762400,-14400,1,'EDT',],[62792776800,62806690800,62792758800,62806672800,-18000,0,'EST',],[62806690800,62824226400,62806676400,62824212000,-14400,1,'EDT',],[62824226400,62838140400,62824208400,62838122400,-18000,0,'EST',],[62838140400,62855676000,62838126000,62855661600,-14400,1,'EDT',],[62855676000,62869590000,62855658000,62869572000,-18000,0,'EST',],[62869590000,62887730400,62869575600,62887716000,-14400,1,'EDT',],[62887730400,62901039600,62887712400,62901021600,-18000,0,'EST',],[62901039600,62919180000,62901025200,62919165600,-14400,1,'EDT',],[62919180000,62932489200,62919162000,62932471200,-18000,0,'EST',],[62932489200,62950629600,62932474800,62950615200,-14400,1,'EDT',],[62950629600,62964543600,62950611600,62964525600,-18000,0,'EST',],[62964543600,62982079200,62964529200,62982064800,-14400,1,'EDT',],[62982079200,62995993200,62982061200,62995975200,-18000,0,'EST',],[62995993200,63013528800,62995978800,63013514400,-14400,1,'EDT',],[63013528800,63027442800,63013510800,63027424800,-18000,0,'EST',],[63027442800,63044978400,63027428400,63044964000,-14400,1,'EDT',],[63044978400,63058892400,63044960400,63058874400,-18000,0,'EST',],[63058892400,63077032800,63058878000,63077018400,-14400,1,'EDT',],[63077032800,63090342000,63077014800,63090324000,-18000,0,'EST',],[63090342000,63108482400,63090327600,63108468000,-14400,1,'EDT',],[63108482400,63121791600,63108464400,63121773600,-18000,0,'EST',],[63121791600,63139932000,63121777200,63139917600,-14400,1,'EDT',],[63139932000,63153846000,63139914000,63153828000,-18000,0,'EST',],[63153846000,63171381600,63153831600,63171367200,-14400,1,'EDT',],[63171381600,63185295600,63171363600,63185277600,-18000,0,'EST',],[63185295600,63202831200,63185281200,63202816800,-14400,1,'EDT',],[63202831200,63216745200,63202813200,63216727200,-18000,0,'EST',],[63216745200,63234885600,63216730800,63234871200,-14400,1,'EDT',],[63234885600,63248194800,63234867600,63248176800,-18000,0,'EST',],[63248194800,63266335200,63248180400,63266320800,-14400,1,'EDT',],[63266335200,63279644400,63266317200,63279626400,-18000,0,'EST',],[63279644400,63297784800,63279630000,63297770400,-14400,1,'EDT',],[63297784800,63309279600,63297766800,63309261600,-18000,0,'EST',],[63309279600,63329839200,63309265200,63329824800,-14400,1,'EDT',],[63329839200,63340729200,63329821200,63340711200,-18000,0,'EST',],[63340729200,63361288800,63340714800,63361274400,-14400,1,'EDT',],[63361288800,63372178800,63361270800,63372160800,-18000,0,'EST',],[63372178800,63392738400,63372164400,63392724000,-14400,1,'EDT',],[63392738400,63404233200,63392720400,63404215200,-18000,0,'EST',],[63404233200,63424792800,63404218800,63424778400,-14400,1,'EDT',],[63424792800,63435682800,63424774800,63435664800,-18000,0,'EST',],[63435682800,63456242400,63435668400,63456228000,-14400,1,'EDT',],[63456242400,63467132400,63456224400,63467114400,-18000,0,'EST',],[63467132400,63487692000,63467118000,63487677600,-14400,1,'EDT',],[63487692000,63498582000,63487674000,63498564000,-18000,0,'EST',],[63498582000,63519141600,63498567600,63519127200,-14400,1,'EDT',],[63519141600,63530031600,63519123600,63530013600,-18000,0,'EST',],[63530031600,63550591200,63530017200,63550576800,-14400,1,'EDT',],[63550591200,63561481200,63550573200,63561463200,-18000,0,'EST',],[63561481200,63582040800,63561466800,63582026400,-14400,1,'EDT',],[63582040800,63593535600,63582022800,63593517600,-18000,0,'EST',],[63593535600,63614095200,63593521200,63614080800,-14400,1,'EDT',],[63614095200,63624985200,63614077200,63624967200,-18000,0,'EST',],[63624985200,63645544800,63624970800,63645530400,-14400,1,'EDT',],[63645544800,63656434800,63645526800,63656416800,-18000,0,'EST',],[63656434800,63676994400,63656420400,63676980000,-14400,1,'EDT',],[63676994400,63687884400,63676976400,63687866400,-18000,0,'EST',],[63687884400,63708444000,63687870000,63708429600,-14400,1,'EDT',],[63708444000,63719334000,63708426000,63719316000,-18000,0,'EST',],[63719334000,63739893600,63719319600,63739879200,-14400,1,'EDT',],[63739893600,63751388400,63739875600,63751370400,-18000,0,'EST',],[63751388400,63771948000,63751374000,63771933600,-14400,1,'EDT',],[63771948000,63782838000,63771930000,63782820000,-18000,0,'EST',],[63782838000,63803397600,63782823600,63803383200,-14400,1,'EDT',],[63803397600,63814287600,63803379600,63814269600,-18000,0,'EST',],[63814287600,63834847200,63814273200,63834832800,-14400,1,'EDT',],[63834847200,63845737200,63834829200,63845719200,-18000,0,'EST',],[63845737200,63866296800,63845722800,63866282400,-14400,1,'EDT',],[63866296800,63877186800,63866278800,63877168800,-18000,0,'EST',],[63877186800,63897746400,63877172400,63897732000,-14400,1,'EDT',],[63897746400,63908636400,63897728400,63908618400,-18000,0,'EST',],[63908636400,63929196000,63908622000,63929181600,-14400,1,'EDT',],[63929196000,63940690800,63929178000,63940672800,-18000,0,'EST',],[63940690800,63961250400,63940676400,63961236000,-14400,1,'EDT',],];sub olson_version {'2016a'}sub has_dst_changes {58}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-18000}my$last_observance=bless({'format'=>'E%sT','gmtoff'=>'-5:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>708975,'local_rd_secs'=>10800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>708975,'utc_rd_secs'=>10800,'utc_year'=>1943 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-18000,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>708975,'local_rd_secs'=>25200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>708975,'utc_rd_secs'=>25200,'utc_year'=>1943 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'Canada','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'Canada','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_NIPIGON

$fatpacked{"DateTime/TimeZone/America/Nome.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_NOME';
  package DateTime::TimeZone::America::Nome;$DateTime::TimeZone::America::Nome::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Nome::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,58910324499,DateTime::TimeZone::NEG_INFINITY,58910371200,46701,0,'LMT',],[58910324499,59946735698,58910284801,59946696000,-39698,0,'LMT',],[59946735698,61252110000,59946696098,61252070400,-39600,0,'NST',],[61252110000,61255486800,61252070400,61255447200,-39600,0,'NST',],[61255486800,61366287600,61255450800,61366251600,-36000,1,'NWT',],[61366287600,61370308800,61366251600,61370272800,-36000,1,'NPT',],[61370308800,61378340400,61370269200,61378300800,-39600,0,'NST',],[61378340400,62048804400,61378300800,62048764800,-39600,0,'NST',],[62048804400,62104186800,62048764800,62104147200,-39600,0,'BST',],[62104186800,62114216400,62104147200,62114176800,-39600,0,'BST',],[62114216400,62129937600,62114180400,62129901600,-36000,1,'BDT',],[62129937600,62145666000,62129898000,62145626400,-39600,0,'BST',],[62145666000,62161387200,62145630000,62161351200,-36000,1,'BDT',],[62161387200,62177115600,62161347600,62177076000,-39600,0,'BST',],[62177115600,62193441600,62177079600,62193405600,-36000,1,'BDT',],[62193441600,62209170000,62193402000,62209130400,-39600,0,'BST',],[62209170000,62224891200,62209134000,62224855200,-36000,1,'BDT',],[62224891200,62240619600,62224851600,62240580000,-39600,0,'BST',],[62240619600,62256340800,62240583600,62256304800,-36000,1,'BDT',],[62256340800,62262392400,62256301200,62262352800,-39600,0,'BST',],[62262392400,62287790400,62262356400,62287754400,-36000,1,'BDT',],[62287790400,62298075600,62287750800,62298036000,-39600,0,'BST',],[62298075600,62319240000,62298039600,62319204000,-36000,1,'BDT',],[62319240000,62334968400,62319200400,62334928800,-39600,0,'BST',],[62334968400,62351294400,62334932400,62351258400,-36000,1,'BDT',],[62351294400,62366418000,62351254800,62366378400,-39600,0,'BST',],[62366418000,62382744000,62366382000,62382708000,-36000,1,'BDT',],[62382744000,62398472400,62382704400,62398432800,-39600,0,'BST',],[62398472400,62414193600,62398436400,62414157600,-36000,1,'BDT',],[62414193600,62429922000,62414154000,62429882400,-39600,0,'BST',],[62429922000,62445643200,62429886000,62445607200,-36000,1,'BDT',],[62445643200,62461371600,62445603600,62461332000,-39600,0,'BST',],[62461371600,62477092800,62461335600,62477056800,-36000,1,'BDT',],[62477092800,62492821200,62477053200,62492781600,-39600,0,'BST',],[62492821200,62508542400,62492785200,62508506400,-36000,1,'BDT',],[62508542400,62524270800,62508502800,62524231200,-39600,0,'BST',],[62524270800,62540596800,62524234800,62540560800,-36000,1,'BDT',],[62540596800,62555720400,62540557200,62555680800,-39600,0,'BST',],[62555720400,62572046400,62555684400,62572010400,-36000,1,'BDT',],[62572046400,62574714000,62572014000,62574681600,-32400,0,'YST',],[62574714000,62587767600,62574681600,62587735200,-32400,0,'AKST',],[62587767600,62603488800,62587738800,62603460000,-28800,1,'AKDT',],[62603488800,62619217200,62603456400,62619184800,-32400,0,'AKST',],[62619217200,62634938400,62619188400,62634909600,-28800,1,'AKDT',],[62634938400,62650666800,62634906000,62650634400,-32400,0,'AKST',],[62650666800,62666388000,62650638000,62666359200,-28800,1,'AKDT',],[62666388000,62680302000,62666355600,62680269600,-32400,0,'AKST',],[62680302000,62697837600,62680273200,62697808800,-28800,1,'AKDT',],[62697837600,62711751600,62697805200,62711719200,-32400,0,'AKST',],[62711751600,62729892000,62711722800,62729863200,-28800,1,'AKDT',],[62729892000,62743201200,62729859600,62743168800,-32400,0,'AKST',],[62743201200,62761341600,62743172400,62761312800,-28800,1,'AKDT',],[62761341600,62774650800,62761309200,62774618400,-32400,0,'AKST',],[62774650800,62792791200,62774622000,62792762400,-28800,1,'AKDT',],[62792791200,62806705200,62792758800,62806672800,-32400,0,'AKST',],[62806705200,62824240800,62806676400,62824212000,-28800,1,'AKDT',],[62824240800,62838154800,62824208400,62838122400,-32400,0,'AKST',],[62838154800,62855690400,62838126000,62855661600,-28800,1,'AKDT',],[62855690400,62869604400,62855658000,62869572000,-32400,0,'AKST',],[62869604400,62887744800,62869575600,62887716000,-28800,1,'AKDT',],[62887744800,62901054000,62887712400,62901021600,-32400,0,'AKST',],[62901054000,62919194400,62901025200,62919165600,-28800,1,'AKDT',],[62919194400,62932503600,62919162000,62932471200,-32400,0,'AKST',],[62932503600,62950644000,62932474800,62950615200,-28800,1,'AKDT',],[62950644000,62964558000,62950611600,62964525600,-32400,0,'AKST',],[62964558000,62982093600,62964529200,62982064800,-28800,1,'AKDT',],[62982093600,62996007600,62982061200,62995975200,-32400,0,'AKST',],[62996007600,63013543200,62995978800,63013514400,-28800,1,'AKDT',],[63013543200,63027457200,63013510800,63027424800,-32400,0,'AKST',],[63027457200,63044992800,63027428400,63044964000,-28800,1,'AKDT',],[63044992800,63058906800,63044960400,63058874400,-32400,0,'AKST',],[63058906800,63077047200,63058878000,63077018400,-28800,1,'AKDT',],[63077047200,63090356400,63077014800,63090324000,-32400,0,'AKST',],[63090356400,63108496800,63090327600,63108468000,-28800,1,'AKDT',],[63108496800,63121806000,63108464400,63121773600,-32400,0,'AKST',],[63121806000,63139946400,63121777200,63139917600,-28800,1,'AKDT',],[63139946400,63153860400,63139914000,63153828000,-32400,0,'AKST',],[63153860400,63171396000,63153831600,63171367200,-28800,1,'AKDT',],[63171396000,63185310000,63171363600,63185277600,-32400,0,'AKST',],[63185310000,63202845600,63185281200,63202816800,-28800,1,'AKDT',],[63202845600,63216759600,63202813200,63216727200,-32400,0,'AKST',],[63216759600,63234900000,63216730800,63234871200,-28800,1,'AKDT',],[63234900000,63248209200,63234867600,63248176800,-32400,0,'AKST',],[63248209200,63266349600,63248180400,63266320800,-28800,1,'AKDT',],[63266349600,63279658800,63266317200,63279626400,-32400,0,'AKST',],[63279658800,63297799200,63279630000,63297770400,-28800,1,'AKDT',],[63297799200,63309294000,63297766800,63309261600,-32400,0,'AKST',],[63309294000,63329853600,63309265200,63329824800,-28800,1,'AKDT',],[63329853600,63340743600,63329821200,63340711200,-32400,0,'AKST',],[63340743600,63361303200,63340714800,63361274400,-28800,1,'AKDT',],[63361303200,63372193200,63361270800,63372160800,-32400,0,'AKST',],[63372193200,63392752800,63372164400,63392724000,-28800,1,'AKDT',],[63392752800,63404247600,63392720400,63404215200,-32400,0,'AKST',],[63404247600,63424807200,63404218800,63424778400,-28800,1,'AKDT',],[63424807200,63435697200,63424774800,63435664800,-32400,0,'AKST',],[63435697200,63456256800,63435668400,63456228000,-28800,1,'AKDT',],[63456256800,63467146800,63456224400,63467114400,-32400,0,'AKST',],[63467146800,63487706400,63467118000,63487677600,-28800,1,'AKDT',],[63487706400,63498596400,63487674000,63498564000,-32400,0,'AKST',],[63498596400,63519156000,63498567600,63519127200,-28800,1,'AKDT',],[63519156000,63530046000,63519123600,63530013600,-32400,0,'AKST',],[63530046000,63550605600,63530017200,63550576800,-28800,1,'AKDT',],[63550605600,63561495600,63550573200,63561463200,-32400,0,'AKST',],[63561495600,63582055200,63561466800,63582026400,-28800,1,'AKDT',],[63582055200,63593550000,63582022800,63593517600,-32400,0,'AKST',],[63593550000,63614109600,63593521200,63614080800,-28800,1,'AKDT',],[63614109600,63624999600,63614077200,63624967200,-32400,0,'AKST',],[63624999600,63645559200,63624970800,63645530400,-28800,1,'AKDT',],[63645559200,63656449200,63645526800,63656416800,-32400,0,'AKST',],[63656449200,63677008800,63656420400,63676980000,-28800,1,'AKDT',],[63677008800,63687898800,63676976400,63687866400,-32400,0,'AKST',],[63687898800,63708458400,63687870000,63708429600,-28800,1,'AKDT',],[63708458400,63719348400,63708426000,63719316000,-32400,0,'AKST',],[63719348400,63739908000,63719319600,63739879200,-28800,1,'AKDT',],[63739908000,63751402800,63739875600,63751370400,-32400,0,'AKST',],[63751402800,63771962400,63751374000,63771933600,-28800,1,'AKDT',],[63771962400,63782852400,63771930000,63782820000,-32400,0,'AKST',],[63782852400,63803412000,63782823600,63803383200,-28800,1,'AKDT',],[63803412000,63814302000,63803379600,63814269600,-32400,0,'AKST',],[63814302000,63834861600,63814273200,63834832800,-28800,1,'AKDT',],[63834861600,63845751600,63834829200,63845719200,-32400,0,'AKST',],[63845751600,63866311200,63845722800,63866282400,-28800,1,'AKDT',],[63866311200,63877201200,63866278800,63877168800,-32400,0,'AKST',],[63877201200,63897760800,63877172400,63897732000,-28800,1,'AKDT',],[63897760800,63908650800,63897728400,63908618400,-32400,0,'AKST',],[63908650800,63929210400,63908622000,63929181600,-28800,1,'AKDT',],[63929210400,63940705200,63929178000,63940672800,-32400,0,'AKST',],[63940705200,63961264800,63940676400,63961236000,-28800,1,'AKDT',],];sub olson_version {'2016a'}sub has_dst_changes {61}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-32400}my$last_observance=bless({'format'=>'AK%sT','gmtoff'=>'-9:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>724244,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>724244,'utc_rd_secs'=>0,'utc_year'=>1984 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-32400,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>724244,'local_rd_secs'=>32400,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>724244,'utc_rd_secs'=>32400,'utc_year'=>1984 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_NOME

$fatpacked{"DateTime/TimeZone/America/Noronha.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_NORONHA';
  package DateTime::TimeZone::America::Noronha;$DateTime::TimeZone::America::Noronha::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Noronha::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60368465380,DateTime::TimeZone::NEG_INFINITY,60368457600,-7780,0,'LMT',],[60368465380,60928722000,60368458180,60928714800,-7200,0,'FNT',],[60928722000,60944317200,60928718400,60944313600,-3600,1,'FNST',],[60944317200,60960304800,60944310000,60960297600,-7200,0,'FNT',],[60960304800,60975853200,60960301200,60975849600,-3600,1,'FNST',],[60975853200,61501860000,60975846000,61501852800,-7200,0,'FNT',],[61501860000,61513610400,61501856400,61513606800,-3600,1,'FNST',],[61513610400,61533396000,61513603200,61533388800,-7200,0,'FNT',],[61533396000,61543846800,61533392400,61543843200,-3600,1,'FNST',],[61543846800,61564932000,61543839600,61564924800,-7200,0,'FNT',],[61564932000,61575469200,61564928400,61575465600,-3600,1,'FNST',],[61575469200,61596554400,61575462000,61596547200,-7200,0,'FNT',],[61596554400,61604326800,61596550800,61604323200,-3600,1,'FNST',],[61604326800,61944314400,61604319600,61944307200,-7200,0,'FNT',],[61944314400,61951482000,61944310800,61951478400,-3600,1,'FNST',],[61951482000,61980516000,61951474800,61980508800,-7200,0,'FNT',],[61980516000,61985610000,61980512400,61985606400,-3600,1,'FNST',],[61985610000,62006781600,61985602800,62006774400,-7200,0,'FNT',],[62006781600,62014554000,62006778000,62014550400,-3600,1,'FNST',],[62014554000,62035725600,62014546800,62035718400,-7200,0,'FNT',],[62035725600,62046090000,62035722000,62046086400,-3600,1,'FNST',],[62046090000,62067261600,62046082800,62067254400,-7200,0,'FNT',],[62067261600,62077712400,62067258000,62077708800,-3600,1,'FNST',],[62077712400,62635428000,62077705200,62635420800,-7200,0,'FNT',],[62635428000,62646915600,62635424400,62646912000,-3600,1,'FNST',],[62646915600,62666272800,62646908400,62666265600,-7200,0,'FNT',],[62666272800,62675946000,62666269200,62675942400,-3600,1,'FNST',],[62675946000,62697808800,62675938800,62697801600,-7200,0,'FNT',],[62697808800,62706877200,62697805200,62706873600,-3600,1,'FNST',],[62706877200,62728653600,62706870000,62728646400,-7200,0,'FNT',],[62728653600,62737722000,62728650000,62737718400,-3600,1,'FNST',],[62737722000,62760103200,62737714800,62760096000,-7200,0,'FNT',],[62760103200,62770381200,62760099600,62770377600,-3600,1,'FNST',],[62770381200,62789220000,62770374000,62789212800,-7200,0,'FNT',],[62789220000,63074340000,62789212800,63074332800,-7200,0,'FNT',],[63074340000,63074599200,63074332800,63074592000,-7200,0,'FNT',],[63074599200,63087296400,63074595600,63087292800,-3600,1,'FNST',],[63087296400,63106653600,63087289200,63106646400,-7200,0,'FNT',],[63106653600,63107254800,63106650000,63107251200,-3600,1,'FNST',],[63107254800,63136029600,63107247600,63136022400,-7200,0,'FNT',],[63136029600,63138708000,63136022400,63138700800,-7200,0,'FNT',],[63138708000,63149590800,63138704400,63149587200,-3600,1,'FNST',],[63149590800,63169120800,63149583600,63169113600,-7200,0,'FNT',],[63169120800,DateTime::TimeZone::INFINITY,63169113600,DateTime::TimeZone::INFINITY,-7200,0,'FNT',],];sub olson_version {'2016a'}sub has_dst_changes {19}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_NORONHA

$fatpacked{"DateTime/TimeZone/America/North_Dakota/Beulah.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_NORTH_DAKOTA_BEULAH';
  package DateTime::TimeZone::America::North_Dakota::Beulah;$DateTime::TimeZone::America::North_Dakota::Beulah::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::North_Dakota::Beulah::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59418039600,DateTime::TimeZone::NEG_INFINITY,59418015173,-24427,0,'LMT',],[59418039600,60502410000,59418014400,60502384800,-25200,0,'MST',],[60502410000,60520550400,60502388400,60520528800,-21600,1,'MDT',],[60520550400,60533859600,60520525200,60533834400,-25200,0,'MST',],[60533859600,60552000000,60533838000,60551978400,-21600,1,'MDT',],[60552000000,61255472400,60551974800,61255447200,-25200,0,'MST',],[61255472400,61366287600,61255450800,61366266000,-21600,1,'MWT',],[61366287600,61370294400,61366266000,61370272800,-21600,1,'MPT',],[61370294400,62051302800,61370269200,62051277600,-25200,0,'MST',],[62051302800,62067024000,62051281200,62067002400,-21600,1,'MDT',],[62067024000,62082752400,62066998800,62082727200,-25200,0,'MST',],[62082752400,62098473600,62082730800,62098452000,-21600,1,'MDT',],[62098473600,62114202000,62098448400,62114176800,-25200,0,'MST',],[62114202000,62129923200,62114180400,62129901600,-21600,1,'MDT',],[62129923200,62145651600,62129898000,62145626400,-25200,0,'MST',],[62145651600,62161372800,62145630000,62161351200,-21600,1,'MDT',],[62161372800,62177101200,62161347600,62177076000,-25200,0,'MST',],[62177101200,62193427200,62177079600,62193405600,-21600,1,'MDT',],[62193427200,62209155600,62193402000,62209130400,-25200,0,'MST',],[62209155600,62224876800,62209134000,62224855200,-21600,1,'MDT',],[62224876800,62240605200,62224851600,62240580000,-25200,0,'MST',],[62240605200,62256326400,62240583600,62256304800,-21600,1,'MDT',],[62256326400,62262378000,62256301200,62262352800,-25200,0,'MST',],[62262378000,62287776000,62262356400,62287754400,-21600,1,'MDT',],[62287776000,62298061200,62287750800,62298036000,-25200,0,'MST',],[62298061200,62319225600,62298039600,62319204000,-21600,1,'MDT',],[62319225600,62334954000,62319200400,62334928800,-25200,0,'MST',],[62334954000,62351280000,62334932400,62351258400,-21600,1,'MDT',],[62351280000,62366403600,62351254800,62366378400,-25200,0,'MST',],[62366403600,62382729600,62366382000,62382708000,-21600,1,'MDT',],[62382729600,62398458000,62382704400,62398432800,-25200,0,'MST',],[62398458000,62414179200,62398436400,62414157600,-21600,1,'MDT',],[62414179200,62429907600,62414154000,62429882400,-25200,0,'MST',],[62429907600,62445628800,62429886000,62445607200,-21600,1,'MDT',],[62445628800,62461357200,62445603600,62461332000,-25200,0,'MST',],[62461357200,62477078400,62461335600,62477056800,-21600,1,'MDT',],[62477078400,62492806800,62477053200,62492781600,-25200,0,'MST',],[62492806800,62508528000,62492785200,62508506400,-21600,1,'MDT',],[62508528000,62524256400,62508502800,62524231200,-25200,0,'MST',],[62524256400,62540582400,62524234800,62540560800,-21600,1,'MDT',],[62540582400,62555706000,62540557200,62555680800,-25200,0,'MST',],[62555706000,62572032000,62555684400,62572010400,-21600,1,'MDT',],[62572032000,62587760400,62572006800,62587735200,-25200,0,'MST',],[62587760400,62603481600,62587738800,62603460000,-21600,1,'MDT',],[62603481600,62619210000,62603456400,62619184800,-25200,0,'MST',],[62619210000,62634931200,62619188400,62634909600,-21600,1,'MDT',],[62634931200,62650659600,62634906000,62650634400,-25200,0,'MST',],[62650659600,62666380800,62650638000,62666359200,-21600,1,'MDT',],[62666380800,62680294800,62666355600,62680269600,-25200,0,'MST',],[62680294800,62697830400,62680273200,62697808800,-21600,1,'MDT',],[62697830400,62711744400,62697805200,62711719200,-25200,0,'MST',],[62711744400,62729884800,62711722800,62729863200,-21600,1,'MDT',],[62729884800,62743194000,62729859600,62743168800,-25200,0,'MST',],[62743194000,62761334400,62743172400,62761312800,-21600,1,'MDT',],[62761334400,62774643600,62761309200,62774618400,-25200,0,'MST',],[62774643600,62792784000,62774622000,62792762400,-21600,1,'MDT',],[62792784000,62806698000,62792758800,62806672800,-25200,0,'MST',],[62806698000,62824233600,62806676400,62824212000,-21600,1,'MDT',],[62824233600,62838147600,62824208400,62838122400,-25200,0,'MST',],[62838147600,62855683200,62838126000,62855661600,-21600,1,'MDT',],[62855683200,62869597200,62855658000,62869572000,-25200,0,'MST',],[62869597200,62887737600,62869575600,62887716000,-21600,1,'MDT',],[62887737600,62901046800,62887712400,62901021600,-25200,0,'MST',],[62901046800,62919187200,62901025200,62919165600,-21600,1,'MDT',],[62919187200,62932496400,62919162000,62932471200,-25200,0,'MST',],[62932496400,62950636800,62932474800,62950615200,-21600,1,'MDT',],[62950636800,62964550800,62950611600,62964525600,-25200,0,'MST',],[62964550800,62982086400,62964529200,62982064800,-21600,1,'MDT',],[62982086400,62996000400,62982061200,62995975200,-25200,0,'MST',],[62996000400,63013536000,62995978800,63013514400,-21600,1,'MDT',],[63013536000,63027450000,63013510800,63027424800,-25200,0,'MST',],[63027450000,63044985600,63027428400,63044964000,-21600,1,'MDT',],[63044985600,63058899600,63044960400,63058874400,-25200,0,'MST',],[63058899600,63077040000,63058878000,63077018400,-21600,1,'MDT',],[63077040000,63090349200,63077014800,63090324000,-25200,0,'MST',],[63090349200,63108489600,63090327600,63108468000,-21600,1,'MDT',],[63108489600,63121798800,63108464400,63121773600,-25200,0,'MST',],[63121798800,63139939200,63121777200,63139917600,-21600,1,'MDT',],[63139939200,63153853200,63139914000,63153828000,-25200,0,'MST',],[63153853200,63171388800,63153831600,63171367200,-21600,1,'MDT',],[63171388800,63185302800,63171363600,63185277600,-25200,0,'MST',],[63185302800,63202838400,63185281200,63202816800,-21600,1,'MDT',],[63202838400,63216752400,63202813200,63216727200,-25200,0,'MST',],[63216752400,63234892800,63216730800,63234871200,-21600,1,'MDT',],[63234892800,63248202000,63234867600,63248176800,-25200,0,'MST',],[63248202000,63266342400,63248180400,63266320800,-21600,1,'MDT',],[63266342400,63279651600,63266317200,63279626400,-25200,0,'MST',],[63279651600,63297792000,63279630000,63297770400,-21600,1,'MDT',],[63297792000,63309286800,63297766800,63309261600,-25200,0,'MST',],[63309286800,63329846400,63309265200,63329824800,-21600,1,'MDT',],[63329846400,63340736400,63329821200,63340711200,-25200,0,'MST',],[63340736400,63361296000,63340714800,63361274400,-21600,1,'MDT',],[63361296000,63372186000,63361270800,63372160800,-25200,0,'MST',],[63372186000,63392745600,63372164400,63392724000,-21600,1,'MDT',],[63392745600,63404240400,63392720400,63404215200,-25200,0,'MST',],[63404240400,63424800000,63404218800,63424778400,-21600,1,'MDT',],[63424800000,63435686400,63424778400,63435664800,-21600,0,'CST',],[63435686400,63456246000,63435668400,63456228000,-18000,1,'CDT',],[63456246000,63467136000,63456224400,63467114400,-21600,0,'CST',],[63467136000,63487695600,63467118000,63487677600,-18000,1,'CDT',],[63487695600,63498585600,63487674000,63498564000,-21600,0,'CST',],[63498585600,63519145200,63498567600,63519127200,-18000,1,'CDT',],[63519145200,63530035200,63519123600,63530013600,-21600,0,'CST',],[63530035200,63550594800,63530017200,63550576800,-18000,1,'CDT',],[63550594800,63561484800,63550573200,63561463200,-21600,0,'CST',],[63561484800,63582044400,63561466800,63582026400,-18000,1,'CDT',],[63582044400,63593539200,63582022800,63593517600,-21600,0,'CST',],[63593539200,63614098800,63593521200,63614080800,-18000,1,'CDT',],[63614098800,63624988800,63614077200,63624967200,-21600,0,'CST',],[63624988800,63645548400,63624970800,63645530400,-18000,1,'CDT',],[63645548400,63656438400,63645526800,63656416800,-21600,0,'CST',],[63656438400,63676998000,63656420400,63676980000,-18000,1,'CDT',],[63676998000,63687888000,63676976400,63687866400,-21600,0,'CST',],[63687888000,63708447600,63687870000,63708429600,-18000,1,'CDT',],[63708447600,63719337600,63708426000,63719316000,-21600,0,'CST',],[63719337600,63739897200,63719319600,63739879200,-18000,1,'CDT',],[63739897200,63751392000,63739875600,63751370400,-21600,0,'CST',],[63751392000,63771951600,63751374000,63771933600,-18000,1,'CDT',],[63771951600,63782841600,63771930000,63782820000,-21600,0,'CST',],[63782841600,63803401200,63782823600,63803383200,-18000,1,'CDT',],[63803401200,63814291200,63803379600,63814269600,-21600,0,'CST',],[63814291200,63834850800,63814273200,63834832800,-18000,1,'CDT',],[63834850800,63845740800,63834829200,63845719200,-21600,0,'CST',],[63845740800,63866300400,63845722800,63866282400,-18000,1,'CDT',],[63866300400,63877190400,63866278800,63877168800,-21600,0,'CST',],[63877190400,63897750000,63877172400,63897732000,-18000,1,'CDT',],[63897750000,63908640000,63897728400,63908618400,-21600,0,'CST',],[63908640000,63929199600,63908622000,63929181600,-18000,1,'CDT',],[63929199600,63940694400,63929178000,63940672800,-21600,0,'CST',],[63940694400,63961254000,63940676400,63961236000,-18000,1,'CDT',],];sub olson_version {'2016a'}sub has_dst_changes {65}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-21600}my$last_observance=bless({'format'=>'C%sT','gmtoff'=>'-6:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>734083,'local_rd_secs'=>7200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>734083,'utc_rd_secs'=>7200,'utc_year'=>2011 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-21600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>734083,'local_rd_secs'=>28800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>734083,'utc_rd_secs'=>28800,'utc_year'=>2011 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_NORTH_DAKOTA_BEULAH

$fatpacked{"DateTime/TimeZone/America/North_Dakota/Center.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_NORTH_DAKOTA_CENTER';
  package DateTime::TimeZone::America::North_Dakota::Center;$DateTime::TimeZone::America::North_Dakota::Center::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::North_Dakota::Center::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59418039600,DateTime::TimeZone::NEG_INFINITY,59418015288,-24312,0,'LMT',],[59418039600,60502410000,59418014400,60502384800,-25200,0,'MST',],[60502410000,60520550400,60502388400,60520528800,-21600,1,'MDT',],[60520550400,60533859600,60520525200,60533834400,-25200,0,'MST',],[60533859600,60552000000,60533838000,60551978400,-21600,1,'MDT',],[60552000000,61255472400,60551974800,61255447200,-25200,0,'MST',],[61255472400,61366287600,61255450800,61366266000,-21600,1,'MWT',],[61366287600,61370294400,61366266000,61370272800,-21600,1,'MPT',],[61370294400,62051302800,61370269200,62051277600,-25200,0,'MST',],[62051302800,62067024000,62051281200,62067002400,-21600,1,'MDT',],[62067024000,62082752400,62066998800,62082727200,-25200,0,'MST',],[62082752400,62098473600,62082730800,62098452000,-21600,1,'MDT',],[62098473600,62114202000,62098448400,62114176800,-25200,0,'MST',],[62114202000,62129923200,62114180400,62129901600,-21600,1,'MDT',],[62129923200,62145651600,62129898000,62145626400,-25200,0,'MST',],[62145651600,62161372800,62145630000,62161351200,-21600,1,'MDT',],[62161372800,62177101200,62161347600,62177076000,-25200,0,'MST',],[62177101200,62193427200,62177079600,62193405600,-21600,1,'MDT',],[62193427200,62209155600,62193402000,62209130400,-25200,0,'MST',],[62209155600,62224876800,62209134000,62224855200,-21600,1,'MDT',],[62224876800,62240605200,62224851600,62240580000,-25200,0,'MST',],[62240605200,62256326400,62240583600,62256304800,-21600,1,'MDT',],[62256326400,62262378000,62256301200,62262352800,-25200,0,'MST',],[62262378000,62287776000,62262356400,62287754400,-21600,1,'MDT',],[62287776000,62298061200,62287750800,62298036000,-25200,0,'MST',],[62298061200,62319225600,62298039600,62319204000,-21600,1,'MDT',],[62319225600,62334954000,62319200400,62334928800,-25200,0,'MST',],[62334954000,62351280000,62334932400,62351258400,-21600,1,'MDT',],[62351280000,62366403600,62351254800,62366378400,-25200,0,'MST',],[62366403600,62382729600,62366382000,62382708000,-21600,1,'MDT',],[62382729600,62398458000,62382704400,62398432800,-25200,0,'MST',],[62398458000,62414179200,62398436400,62414157600,-21600,1,'MDT',],[62414179200,62429907600,62414154000,62429882400,-25200,0,'MST',],[62429907600,62445628800,62429886000,62445607200,-21600,1,'MDT',],[62445628800,62461357200,62445603600,62461332000,-25200,0,'MST',],[62461357200,62477078400,62461335600,62477056800,-21600,1,'MDT',],[62477078400,62492806800,62477053200,62492781600,-25200,0,'MST',],[62492806800,62508528000,62492785200,62508506400,-21600,1,'MDT',],[62508528000,62524256400,62508502800,62524231200,-25200,0,'MST',],[62524256400,62540582400,62524234800,62540560800,-21600,1,'MDT',],[62540582400,62555706000,62540557200,62555680800,-25200,0,'MST',],[62555706000,62572032000,62555684400,62572010400,-21600,1,'MDT',],[62572032000,62587760400,62572006800,62587735200,-25200,0,'MST',],[62587760400,62603481600,62587738800,62603460000,-21600,1,'MDT',],[62603481600,62619210000,62603456400,62619184800,-25200,0,'MST',],[62619210000,62634931200,62619188400,62634909600,-21600,1,'MDT',],[62634931200,62650659600,62634906000,62650634400,-25200,0,'MST',],[62650659600,62666380800,62650638000,62666359200,-21600,1,'MDT',],[62666380800,62680294800,62666355600,62680269600,-25200,0,'MST',],[62680294800,62697830400,62680273200,62697808800,-21600,1,'MDT',],[62697830400,62711744400,62697805200,62711719200,-25200,0,'MST',],[62711744400,62729884800,62711722800,62729863200,-21600,1,'MDT',],[62729884800,62743194000,62729859600,62743168800,-25200,0,'MST',],[62743194000,62761334400,62743172400,62761312800,-21600,1,'MDT',],[62761334400,62774643600,62761309200,62774618400,-25200,0,'MST',],[62774643600,62792784000,62774622000,62792762400,-21600,1,'MDT',],[62792784000,62806698000,62792758800,62806672800,-25200,0,'MST',],[62806698000,62824233600,62806676400,62824212000,-21600,1,'MDT',],[62824233600,62838147600,62824208400,62838122400,-25200,0,'MST',],[62838147600,62855683200,62838126000,62855661600,-21600,1,'MDT',],[62855683200,62869593600,62855661600,62869572000,-21600,0,'CST',],[62869593600,62887734000,62869575600,62887716000,-18000,1,'CDT',],[62887734000,62901043200,62887712400,62901021600,-21600,0,'CST',],[62901043200,62919183600,62901025200,62919165600,-18000,1,'CDT',],[62919183600,62932492800,62919162000,62932471200,-21600,0,'CST',],[62932492800,62950633200,62932474800,62950615200,-18000,1,'CDT',],[62950633200,62964547200,62950611600,62964525600,-21600,0,'CST',],[62964547200,62982082800,62964529200,62982064800,-18000,1,'CDT',],[62982082800,62995996800,62982061200,62995975200,-21600,0,'CST',],[62995996800,63013532400,62995978800,63013514400,-18000,1,'CDT',],[63013532400,63027446400,63013510800,63027424800,-21600,0,'CST',],[63027446400,63044982000,63027428400,63044964000,-18000,1,'CDT',],[63044982000,63058896000,63044960400,63058874400,-21600,0,'CST',],[63058896000,63077036400,63058878000,63077018400,-18000,1,'CDT',],[63077036400,63090345600,63077014800,63090324000,-21600,0,'CST',],[63090345600,63108486000,63090327600,63108468000,-18000,1,'CDT',],[63108486000,63121795200,63108464400,63121773600,-21600,0,'CST',],[63121795200,63139935600,63121777200,63139917600,-18000,1,'CDT',],[63139935600,63153849600,63139914000,63153828000,-21600,0,'CST',],[63153849600,63171385200,63153831600,63171367200,-18000,1,'CDT',],[63171385200,63185299200,63171363600,63185277600,-21600,0,'CST',],[63185299200,63202834800,63185281200,63202816800,-18000,1,'CDT',],[63202834800,63216748800,63202813200,63216727200,-21600,0,'CST',],[63216748800,63234889200,63216730800,63234871200,-18000,1,'CDT',],[63234889200,63248198400,63234867600,63248176800,-21600,0,'CST',],[63248198400,63266338800,63248180400,63266320800,-18000,1,'CDT',],[63266338800,63279648000,63266317200,63279626400,-21600,0,'CST',],[63279648000,63297788400,63279630000,63297770400,-18000,1,'CDT',],[63297788400,63309283200,63297766800,63309261600,-21600,0,'CST',],[63309283200,63329842800,63309265200,63329824800,-18000,1,'CDT',],[63329842800,63340732800,63329821200,63340711200,-21600,0,'CST',],[63340732800,63361292400,63340714800,63361274400,-18000,1,'CDT',],[63361292400,63372182400,63361270800,63372160800,-21600,0,'CST',],[63372182400,63392742000,63372164400,63392724000,-18000,1,'CDT',],[63392742000,63404236800,63392720400,63404215200,-21600,0,'CST',],[63404236800,63424796400,63404218800,63424778400,-18000,1,'CDT',],[63424796400,63435686400,63424774800,63435664800,-21600,0,'CST',],[63435686400,63456246000,63435668400,63456228000,-18000,1,'CDT',],[63456246000,63467136000,63456224400,63467114400,-21600,0,'CST',],[63467136000,63487695600,63467118000,63487677600,-18000,1,'CDT',],[63487695600,63498585600,63487674000,63498564000,-21600,0,'CST',],[63498585600,63519145200,63498567600,63519127200,-18000,1,'CDT',],[63519145200,63530035200,63519123600,63530013600,-21600,0,'CST',],[63530035200,63550594800,63530017200,63550576800,-18000,1,'CDT',],[63550594800,63561484800,63550573200,63561463200,-21600,0,'CST',],[63561484800,63582044400,63561466800,63582026400,-18000,1,'CDT',],[63582044400,63593539200,63582022800,63593517600,-21600,0,'CST',],[63593539200,63614098800,63593521200,63614080800,-18000,1,'CDT',],[63614098800,63624988800,63614077200,63624967200,-21600,0,'CST',],[63624988800,63645548400,63624970800,63645530400,-18000,1,'CDT',],[63645548400,63656438400,63645526800,63656416800,-21600,0,'CST',],[63656438400,63676998000,63656420400,63676980000,-18000,1,'CDT',],[63676998000,63687888000,63676976400,63687866400,-21600,0,'CST',],[63687888000,63708447600,63687870000,63708429600,-18000,1,'CDT',],[63708447600,63719337600,63708426000,63719316000,-21600,0,'CST',],[63719337600,63739897200,63719319600,63739879200,-18000,1,'CDT',],[63739897200,63751392000,63739875600,63751370400,-21600,0,'CST',],[63751392000,63771951600,63751374000,63771933600,-18000,1,'CDT',],[63771951600,63782841600,63771930000,63782820000,-21600,0,'CST',],[63782841600,63803401200,63782823600,63803383200,-18000,1,'CDT',],[63803401200,63814291200,63803379600,63814269600,-21600,0,'CST',],[63814291200,63834850800,63814273200,63834832800,-18000,1,'CDT',],[63834850800,63845740800,63834829200,63845719200,-21600,0,'CST',],[63845740800,63866300400,63845722800,63866282400,-18000,1,'CDT',],[63866300400,63877190400,63866278800,63877168800,-21600,0,'CST',],[63877190400,63897750000,63877172400,63897732000,-18000,1,'CDT',],[63897750000,63908640000,63897728400,63908618400,-21600,0,'CST',],[63908640000,63929199600,63908622000,63929181600,-18000,1,'CDT',],[63929199600,63940694400,63929178000,63940672800,-21600,0,'CST',],[63940694400,63961254000,63940676400,63961236000,-18000,1,'CDT',],];sub olson_version {'2016a'}sub has_dst_changes {65}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-21600}my$last_observance=bless({'format'=>'C%sT','gmtoff'=>'-6:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>727496,'local_rd_secs'=>7200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>727496,'utc_rd_secs'=>7200,'utc_year'=>1993 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-21600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>727496,'local_rd_secs'=>28800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>727496,'utc_rd_secs'=>28800,'utc_year'=>1993 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_NORTH_DAKOTA_CENTER

$fatpacked{"DateTime/TimeZone/America/North_Dakota/New_Salem.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_NORTH_DAKOTA_NEW_SALEM';
  package DateTime::TimeZone::America::North_Dakota::New_Salem;$DateTime::TimeZone::America::North_Dakota::New_Salem::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::North_Dakota::New_Salem::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59418039600,DateTime::TimeZone::NEG_INFINITY,59418015261,-24339,0,'LMT',],[59418039600,60502410000,59418014400,60502384800,-25200,0,'MST',],[60502410000,60520550400,60502388400,60520528800,-21600,1,'MDT',],[60520550400,60533859600,60520525200,60533834400,-25200,0,'MST',],[60533859600,60552000000,60533838000,60551978400,-21600,1,'MDT',],[60552000000,61255472400,60551974800,61255447200,-25200,0,'MST',],[61255472400,61366287600,61255450800,61366266000,-21600,1,'MWT',],[61366287600,61370294400,61366266000,61370272800,-21600,1,'MPT',],[61370294400,62051302800,61370269200,62051277600,-25200,0,'MST',],[62051302800,62067024000,62051281200,62067002400,-21600,1,'MDT',],[62067024000,62082752400,62066998800,62082727200,-25200,0,'MST',],[62082752400,62098473600,62082730800,62098452000,-21600,1,'MDT',],[62098473600,62114202000,62098448400,62114176800,-25200,0,'MST',],[62114202000,62129923200,62114180400,62129901600,-21600,1,'MDT',],[62129923200,62145651600,62129898000,62145626400,-25200,0,'MST',],[62145651600,62161372800,62145630000,62161351200,-21600,1,'MDT',],[62161372800,62177101200,62161347600,62177076000,-25200,0,'MST',],[62177101200,62193427200,62177079600,62193405600,-21600,1,'MDT',],[62193427200,62209155600,62193402000,62209130400,-25200,0,'MST',],[62209155600,62224876800,62209134000,62224855200,-21600,1,'MDT',],[62224876800,62240605200,62224851600,62240580000,-25200,0,'MST',],[62240605200,62256326400,62240583600,62256304800,-21600,1,'MDT',],[62256326400,62262378000,62256301200,62262352800,-25200,0,'MST',],[62262378000,62287776000,62262356400,62287754400,-21600,1,'MDT',],[62287776000,62298061200,62287750800,62298036000,-25200,0,'MST',],[62298061200,62319225600,62298039600,62319204000,-21600,1,'MDT',],[62319225600,62334954000,62319200400,62334928800,-25200,0,'MST',],[62334954000,62351280000,62334932400,62351258400,-21600,1,'MDT',],[62351280000,62366403600,62351254800,62366378400,-25200,0,'MST',],[62366403600,62382729600,62366382000,62382708000,-21600,1,'MDT',],[62382729600,62398458000,62382704400,62398432800,-25200,0,'MST',],[62398458000,62414179200,62398436400,62414157600,-21600,1,'MDT',],[62414179200,62429907600,62414154000,62429882400,-25200,0,'MST',],[62429907600,62445628800,62429886000,62445607200,-21600,1,'MDT',],[62445628800,62461357200,62445603600,62461332000,-25200,0,'MST',],[62461357200,62477078400,62461335600,62477056800,-21600,1,'MDT',],[62477078400,62492806800,62477053200,62492781600,-25200,0,'MST',],[62492806800,62508528000,62492785200,62508506400,-21600,1,'MDT',],[62508528000,62524256400,62508502800,62524231200,-25200,0,'MST',],[62524256400,62540582400,62524234800,62540560800,-21600,1,'MDT',],[62540582400,62555706000,62540557200,62555680800,-25200,0,'MST',],[62555706000,62572032000,62555684400,62572010400,-21600,1,'MDT',],[62572032000,62587760400,62572006800,62587735200,-25200,0,'MST',],[62587760400,62603481600,62587738800,62603460000,-21600,1,'MDT',],[62603481600,62619210000,62603456400,62619184800,-25200,0,'MST',],[62619210000,62634931200,62619188400,62634909600,-21600,1,'MDT',],[62634931200,62650659600,62634906000,62650634400,-25200,0,'MST',],[62650659600,62666380800,62650638000,62666359200,-21600,1,'MDT',],[62666380800,62680294800,62666355600,62680269600,-25200,0,'MST',],[62680294800,62697830400,62680273200,62697808800,-21600,1,'MDT',],[62697830400,62711744400,62697805200,62711719200,-25200,0,'MST',],[62711744400,62729884800,62711722800,62729863200,-21600,1,'MDT',],[62729884800,62743194000,62729859600,62743168800,-25200,0,'MST',],[62743194000,62761334400,62743172400,62761312800,-21600,1,'MDT',],[62761334400,62774643600,62761309200,62774618400,-25200,0,'MST',],[62774643600,62792784000,62774622000,62792762400,-21600,1,'MDT',],[62792784000,62806698000,62792758800,62806672800,-25200,0,'MST',],[62806698000,62824233600,62806676400,62824212000,-21600,1,'MDT',],[62824233600,62838147600,62824208400,62838122400,-25200,0,'MST',],[62838147600,62855683200,62838126000,62855661600,-21600,1,'MDT',],[62855683200,62869597200,62855658000,62869572000,-25200,0,'MST',],[62869597200,62887737600,62869575600,62887716000,-21600,1,'MDT',],[62887737600,62901046800,62887712400,62901021600,-25200,0,'MST',],[62901046800,62919187200,62901025200,62919165600,-21600,1,'MDT',],[62919187200,62932496400,62919162000,62932471200,-25200,0,'MST',],[62932496400,62950636800,62932474800,62950615200,-21600,1,'MDT',],[62950636800,62964550800,62950611600,62964525600,-25200,0,'MST',],[62964550800,62982086400,62964529200,62982064800,-21600,1,'MDT',],[62982086400,62996000400,62982061200,62995975200,-25200,0,'MST',],[62996000400,63013536000,62995978800,63013514400,-21600,1,'MDT',],[63013536000,63027450000,63013510800,63027424800,-25200,0,'MST',],[63027450000,63044985600,63027428400,63044964000,-21600,1,'MDT',],[63044985600,63058899600,63044960400,63058874400,-25200,0,'MST',],[63058899600,63077040000,63058878000,63077018400,-21600,1,'MDT',],[63077040000,63090349200,63077014800,63090324000,-25200,0,'MST',],[63090349200,63108489600,63090327600,63108468000,-21600,1,'MDT',],[63108489600,63121798800,63108464400,63121773600,-25200,0,'MST',],[63121798800,63139939200,63121777200,63139917600,-21600,1,'MDT',],[63139939200,63153853200,63139914000,63153828000,-25200,0,'MST',],[63153853200,63171388800,63153831600,63171367200,-21600,1,'MDT',],[63171388800,63185302800,63171363600,63185277600,-25200,0,'MST',],[63185302800,63202838400,63185281200,63202816800,-21600,1,'MDT',],[63202838400,63216748800,63202816800,63216727200,-21600,0,'CST',],[63216748800,63234889200,63216730800,63234871200,-18000,1,'CDT',],[63234889200,63248198400,63234867600,63248176800,-21600,0,'CST',],[63248198400,63266338800,63248180400,63266320800,-18000,1,'CDT',],[63266338800,63279648000,63266317200,63279626400,-21600,0,'CST',],[63279648000,63297788400,63279630000,63297770400,-18000,1,'CDT',],[63297788400,63309283200,63297766800,63309261600,-21600,0,'CST',],[63309283200,63329842800,63309265200,63329824800,-18000,1,'CDT',],[63329842800,63340732800,63329821200,63340711200,-21600,0,'CST',],[63340732800,63361292400,63340714800,63361274400,-18000,1,'CDT',],[63361292400,63372182400,63361270800,63372160800,-21600,0,'CST',],[63372182400,63392742000,63372164400,63392724000,-18000,1,'CDT',],[63392742000,63404236800,63392720400,63404215200,-21600,0,'CST',],[63404236800,63424796400,63404218800,63424778400,-18000,1,'CDT',],[63424796400,63435686400,63424774800,63435664800,-21600,0,'CST',],[63435686400,63456246000,63435668400,63456228000,-18000,1,'CDT',],[63456246000,63467136000,63456224400,63467114400,-21600,0,'CST',],[63467136000,63487695600,63467118000,63487677600,-18000,1,'CDT',],[63487695600,63498585600,63487674000,63498564000,-21600,0,'CST',],[63498585600,63519145200,63498567600,63519127200,-18000,1,'CDT',],[63519145200,63530035200,63519123600,63530013600,-21600,0,'CST',],[63530035200,63550594800,63530017200,63550576800,-18000,1,'CDT',],[63550594800,63561484800,63550573200,63561463200,-21600,0,'CST',],[63561484800,63582044400,63561466800,63582026400,-18000,1,'CDT',],[63582044400,63593539200,63582022800,63593517600,-21600,0,'CST',],[63593539200,63614098800,63593521200,63614080800,-18000,1,'CDT',],[63614098800,63624988800,63614077200,63624967200,-21600,0,'CST',],[63624988800,63645548400,63624970800,63645530400,-18000,1,'CDT',],[63645548400,63656438400,63645526800,63656416800,-21600,0,'CST',],[63656438400,63676998000,63656420400,63676980000,-18000,1,'CDT',],[63676998000,63687888000,63676976400,63687866400,-21600,0,'CST',],[63687888000,63708447600,63687870000,63708429600,-18000,1,'CDT',],[63708447600,63719337600,63708426000,63719316000,-21600,0,'CST',],[63719337600,63739897200,63719319600,63739879200,-18000,1,'CDT',],[63739897200,63751392000,63739875600,63751370400,-21600,0,'CST',],[63751392000,63771951600,63751374000,63771933600,-18000,1,'CDT',],[63771951600,63782841600,63771930000,63782820000,-21600,0,'CST',],[63782841600,63803401200,63782823600,63803383200,-18000,1,'CDT',],[63803401200,63814291200,63803379600,63814269600,-21600,0,'CST',],[63814291200,63834850800,63814273200,63834832800,-18000,1,'CDT',],[63834850800,63845740800,63834829200,63845719200,-21600,0,'CST',],[63845740800,63866300400,63845722800,63866282400,-18000,1,'CDT',],[63866300400,63877190400,63866278800,63877168800,-21600,0,'CST',],[63877190400,63897750000,63877172400,63897732000,-18000,1,'CDT',],[63897750000,63908640000,63897728400,63908618400,-21600,0,'CST',],[63908640000,63929199600,63908622000,63929181600,-18000,1,'CDT',],[63929199600,63940694400,63929178000,63940672800,-21600,0,'CST',],[63940694400,63961254000,63940676400,63961236000,-18000,1,'CDT',],];sub olson_version {'2016a'}sub has_dst_changes {65}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-21600}my$last_observance=bless({'format'=>'C%sT','gmtoff'=>'-6:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>731514,'local_rd_secs'=>7200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>731514,'utc_rd_secs'=>7200,'utc_year'=>2004 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-21600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>731514,'local_rd_secs'=>28800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>731514,'utc_rd_secs'=>28800,'utc_year'=>2004 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_NORTH_DAKOTA_NEW_SALEM

$fatpacked{"DateTime/TimeZone/America/Ojinaga.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_OJINAGA';
  package DateTime::TimeZone::America::Ojinaga;$DateTime::TimeZone::America::Ojinaga::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Ojinaga::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60620943600,DateTime::TimeZone::NEG_INFINITY,60620918540,-25060,0,'LMT',],[60620943600,60792616800,60620918400,60792591600,-25200,0,'MST',],[60792616800,60900876000,60792595200,60900854400,-21600,0,'CST',],[60900876000,60915391200,60900850800,60915366000,-25200,0,'MST',],[60915391200,60928524000,60915369600,60928502400,-21600,0,'CST',],[60928524000,60944338800,60928498800,60944313600,-25200,0,'MST',],[60944338800,62956159200,60944317200,62956137600,-21600,0,'CST',],[62956159200,62964547200,62956137600,62964525600,-21600,0,'CST',],[62964547200,62982082800,62964529200,62982064800,-18000,1,'CDT',],[62982082800,62995996800,62982061200,62995975200,-21600,0,'CST',],[62995996800,63013532400,62995978800,63013514400,-18000,1,'CDT',],[63013532400,63019317600,63013510800,63019296000,-21600,0,'CST',],[63019317600,63027450000,63019296000,63027428400,-21600,0,'CST',],[63027450000,63044985600,63027428400,63044964000,-21600,1,'MDT',],[63044985600,63058899600,63044960400,63058874400,-25200,0,'MST',],[63058899600,63077040000,63058878000,63077018400,-21600,1,'MDT',],[63077040000,63090349200,63077014800,63090324000,-25200,0,'MST',],[63090349200,63108489600,63090327600,63108468000,-21600,1,'MDT',],[63108489600,63124822800,63108464400,63124797600,-25200,0,'MST',],[63124822800,63137520000,63124801200,63137498400,-21600,1,'MDT',],[63137520000,63153853200,63137494800,63153828000,-25200,0,'MST',],[63153853200,63171388800,63153831600,63171367200,-21600,1,'MDT',],[63171388800,63185302800,63171363600,63185277600,-25200,0,'MST',],[63185302800,63202838400,63185281200,63202816800,-21600,1,'MDT',],[63202838400,63216752400,63202813200,63216727200,-25200,0,'MST',],[63216752400,63234892800,63216730800,63234871200,-21600,1,'MDT',],[63234892800,63248202000,63234867600,63248176800,-25200,0,'MST',],[63248202000,63266342400,63248180400,63266320800,-21600,1,'MDT',],[63266342400,63279651600,63266317200,63279626400,-25200,0,'MST',],[63279651600,63297792000,63279630000,63297770400,-21600,1,'MDT',],[63297792000,63311101200,63297766800,63311076000,-25200,0,'MST',],[63311101200,63329241600,63311079600,63329220000,-21600,1,'MDT',],[63329241600,63343155600,63329216400,63343130400,-25200,0,'MST',],[63343155600,63360691200,63343134000,63360669600,-21600,1,'MDT',],[63360691200,63374605200,63360666000,63374580000,-25200,0,'MST',],[63374605200,63392140800,63374583600,63392119200,-21600,1,'MDT',],[63392140800,63398012400,63392115600,63397987200,-25200,0,'MST',],[63398012400,63404240400,63397987200,63404215200,-25200,0,'MST',],[63404240400,63424800000,63404218800,63424778400,-21600,1,'MDT',],[63424800000,63435690000,63424774800,63435664800,-25200,0,'MST',],[63435690000,63456249600,63435668400,63456228000,-21600,1,'MDT',],[63456249600,63467139600,63456224400,63467114400,-25200,0,'MST',],[63467139600,63487699200,63467118000,63487677600,-21600,1,'MDT',],[63487699200,63498589200,63487674000,63498564000,-25200,0,'MST',],[63498589200,63519148800,63498567600,63519127200,-21600,1,'MDT',],[63519148800,63530038800,63519123600,63530013600,-25200,0,'MST',],[63530038800,63550598400,63530017200,63550576800,-21600,1,'MDT',],[63550598400,63561488400,63550573200,63561463200,-25200,0,'MST',],[63561488400,63582048000,63561466800,63582026400,-21600,1,'MDT',],[63582048000,63593542800,63582022800,63593517600,-25200,0,'MST',],[63593542800,63614102400,63593521200,63614080800,-21600,1,'MDT',],[63614102400,63624992400,63614077200,63624967200,-25200,0,'MST',],[63624992400,63645552000,63624970800,63645530400,-21600,1,'MDT',],[63645552000,63656442000,63645526800,63656416800,-25200,0,'MST',],[63656442000,63677001600,63656420400,63676980000,-21600,1,'MDT',],[63677001600,63687891600,63676976400,63687866400,-25200,0,'MST',],[63687891600,63708451200,63687870000,63708429600,-21600,1,'MDT',],[63708451200,63719341200,63708426000,63719316000,-25200,0,'MST',],[63719341200,63739900800,63719319600,63739879200,-21600,1,'MDT',],[63739900800,63751395600,63739875600,63751370400,-25200,0,'MST',],[63751395600,63771955200,63751374000,63771933600,-21600,1,'MDT',],[63771955200,63782845200,63771930000,63782820000,-25200,0,'MST',],[63782845200,63803404800,63782823600,63803383200,-21600,1,'MDT',],[63803404800,63814294800,63803379600,63814269600,-25200,0,'MST',],[63814294800,63834854400,63814273200,63834832800,-21600,1,'MDT',],[63834854400,63845744400,63834829200,63845719200,-25200,0,'MST',],[63845744400,63866304000,63845722800,63866282400,-21600,1,'MDT',],[63866304000,63877194000,63866278800,63877168800,-25200,0,'MST',],[63877194000,63897753600,63877172400,63897732000,-21600,1,'MDT',],[63897753600,63908643600,63897728400,63908618400,-25200,0,'MST',],[63908643600,63929203200,63908622000,63929181600,-21600,1,'MDT',],[63929203200,63940698000,63929178000,63940672800,-25200,0,'MST',],[63940698000,63961257600,63940676400,63961236000,-21600,1,'MDT',],];sub olson_version {'2016a'}sub has_dst_changes {32}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-25200}my$last_observance=bless({'format'=>'M%sT','gmtoff'=>'-7:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>733773,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>733773,'utc_rd_secs'=>0,'utc_year'=>2011 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-25200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>733773,'local_rd_secs'=>25200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>733773,'utc_rd_secs'=>25200,'utc_year'=>2011 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_OJINAGA

$fatpacked{"DateTime/TimeZone/America/Panama.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_PANAMA';
  package DateTime::TimeZone::America::Panama;$DateTime::TimeZone::America::Panama::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Panama::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59611180688,DateTime::TimeZone::NEG_INFINITY,59611161600,-19088,0,'LMT',],[59611180688,60188764776,59611161512,60188745600,-19176,0,'CMT',],[60188764776,DateTime::TimeZone::INFINITY,60188746776,DateTime::TimeZone::INFINITY,-18000,0,'EST',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_PANAMA

$fatpacked{"DateTime/TimeZone/America/Pangnirtung.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_PANGNIRTUNG';
  package DateTime::TimeZone::America::Pangnirtung;$DateTime::TimeZone::America::Pangnirtung::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Pangnirtung::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60589382400,DateTime::TimeZone::NEG_INFINITY,60589382400,0,0,'zzz',],[60589382400,61255461600,60589368000,61255447200,-14400,0,'AST',],[61255461600,61366287600,61255450800,61366276800,-10800,1,'AWT',],[61366287600,61370283600,61366276800,61370272800,-10800,1,'APT',],[61370283600,61987780800,61370269200,61987766400,-14400,0,'AST',],[61987780800,62004110400,61987773600,62004103200,-7200,1,'ADDT',],[62004110400,62461346400,62004096000,62461332000,-14400,0,'AST',],[62461346400,62477067600,62461335600,62477056800,-10800,1,'ADT',],[62477067600,62492796000,62477053200,62492781600,-14400,0,'AST',],[62492796000,62508517200,62492785200,62508506400,-10800,1,'ADT',],[62508517200,62524245600,62508502800,62524231200,-14400,0,'AST',],[62524245600,62540571600,62524234800,62540560800,-10800,1,'ADT',],[62540571600,62555695200,62540557200,62555680800,-14400,0,'AST',],[62555695200,62572021200,62555684400,62572010400,-10800,1,'ADT',],[62572021200,62587749600,62572006800,62587735200,-14400,0,'AST',],[62587749600,62603470800,62587738800,62603460000,-10800,1,'ADT',],[62603470800,62619199200,62603456400,62619184800,-14400,0,'AST',],[62619199200,62634920400,62619188400,62634909600,-10800,1,'ADT',],[62634920400,62650648800,62634906000,62650634400,-14400,0,'AST',],[62650648800,62666370000,62650638000,62666359200,-10800,1,'ADT',],[62666370000,62680284000,62666355600,62680269600,-14400,0,'AST',],[62680284000,62697819600,62680273200,62697808800,-10800,1,'ADT',],[62697819600,62711733600,62697805200,62711719200,-14400,0,'AST',],[62711733600,62729874000,62711722800,62729863200,-10800,1,'ADT',],[62729874000,62743183200,62729859600,62743168800,-14400,0,'AST',],[62743183200,62761323600,62743172400,62761312800,-10800,1,'ADT',],[62761323600,62774632800,62761309200,62774618400,-14400,0,'AST',],[62774632800,62792773200,62774622000,62792762400,-10800,1,'ADT',],[62792773200,62806687200,62792758800,62806672800,-14400,0,'AST',],[62806687200,62824222800,62806676400,62824212000,-10800,1,'ADT',],[62824222800,62838136800,62824208400,62838122400,-14400,0,'AST',],[62838136800,62855672400,62838126000,62855661600,-10800,1,'ADT',],[62855672400,62869586400,62855658000,62869572000,-14400,0,'AST',],[62869586400,62887726800,62869575600,62887716000,-10800,1,'ADT',],[62887726800,62901036000,62887712400,62901021600,-14400,0,'AST',],[62901036000,62919176400,62901025200,62919165600,-10800,1,'ADT',],[62919176400,62932485600,62919162000,62932471200,-14400,0,'AST',],[62932485600,62950629600,62932471200,62950615200,-14400,1,'EDT',],[62950629600,62964543600,62950611600,62964525600,-18000,0,'EST',],[62964543600,62982079200,62964529200,62982064800,-14400,1,'EDT',],[62982079200,62995993200,62982061200,62995975200,-18000,0,'EST',],[62995993200,63013528800,62995978800,63013514400,-14400,1,'EDT',],[63013528800,63027442800,63013510800,63027424800,-18000,0,'EST',],[63027442800,63044978400,63027428400,63044964000,-14400,1,'EDT',],[63044978400,63058892400,63044960400,63058874400,-18000,0,'EST',],[63058892400,63077032800,63058878000,63077018400,-14400,1,'EDT',],[63077032800,63090345600,63077011200,63090324000,-21600,0,'CST',],[63090345600,63108486000,63090327600,63108468000,-18000,1,'CDT',],[63108486000,63121791600,63108468000,63121773600,-18000,0,'EST',],[63121791600,63139932000,63121777200,63139917600,-14400,1,'EDT',],[63139932000,63153846000,63139914000,63153828000,-18000,0,'EST',],[63153846000,63171381600,63153831600,63171367200,-14400,1,'EDT',],[63171381600,63185295600,63171363600,63185277600,-18000,0,'EST',],[63185295600,63202831200,63185281200,63202816800,-14400,1,'EDT',],[63202831200,63216745200,63202813200,63216727200,-18000,0,'EST',],[63216745200,63234885600,63216730800,63234871200,-14400,1,'EDT',],[63234885600,63248194800,63234867600,63248176800,-18000,0,'EST',],[63248194800,63266335200,63248180400,63266320800,-14400,1,'EDT',],[63266335200,63279644400,63266317200,63279626400,-18000,0,'EST',],[63279644400,63297784800,63279630000,63297770400,-14400,1,'EDT',],[63297784800,63309279600,63297766800,63309261600,-18000,0,'EST',],[63309279600,63329839200,63309265200,63329824800,-14400,1,'EDT',],[63329839200,63340729200,63329821200,63340711200,-18000,0,'EST',],[63340729200,63361288800,63340714800,63361274400,-14400,1,'EDT',],[63361288800,63372178800,63361270800,63372160800,-18000,0,'EST',],[63372178800,63392738400,63372164400,63392724000,-14400,1,'EDT',],[63392738400,63404233200,63392720400,63404215200,-18000,0,'EST',],[63404233200,63424792800,63404218800,63424778400,-14400,1,'EDT',],[63424792800,63435682800,63424774800,63435664800,-18000,0,'EST',],[63435682800,63456242400,63435668400,63456228000,-14400,1,'EDT',],[63456242400,63467132400,63456224400,63467114400,-18000,0,'EST',],[63467132400,63487692000,63467118000,63487677600,-14400,1,'EDT',],[63487692000,63498582000,63487674000,63498564000,-18000,0,'EST',],[63498582000,63519141600,63498567600,63519127200,-14400,1,'EDT',],[63519141600,63530031600,63519123600,63530013600,-18000,0,'EST',],[63530031600,63550591200,63530017200,63550576800,-14400,1,'EDT',],[63550591200,63561481200,63550573200,63561463200,-18000,0,'EST',],[63561481200,63582040800,63561466800,63582026400,-14400,1,'EDT',],[63582040800,63593535600,63582022800,63593517600,-18000,0,'EST',],[63593535600,63614095200,63593521200,63614080800,-14400,1,'EDT',],[63614095200,63624985200,63614077200,63624967200,-18000,0,'EST',],[63624985200,63645544800,63624970800,63645530400,-14400,1,'EDT',],[63645544800,63656434800,63645526800,63656416800,-18000,0,'EST',],[63656434800,63676994400,63656420400,63676980000,-14400,1,'EDT',],[63676994400,63687884400,63676976400,63687866400,-18000,0,'EST',],[63687884400,63708444000,63687870000,63708429600,-14400,1,'EDT',],[63708444000,63719334000,63708426000,63719316000,-18000,0,'EST',],[63719334000,63739893600,63719319600,63739879200,-14400,1,'EDT',],[63739893600,63751388400,63739875600,63751370400,-18000,0,'EST',],[63751388400,63771948000,63751374000,63771933600,-14400,1,'EDT',],[63771948000,63782838000,63771930000,63782820000,-18000,0,'EST',],[63782838000,63803397600,63782823600,63803383200,-14400,1,'EDT',],[63803397600,63814287600,63803379600,63814269600,-18000,0,'EST',],[63814287600,63834847200,63814273200,63834832800,-14400,1,'EDT',],[63834847200,63845737200,63834829200,63845719200,-18000,0,'EST',],[63845737200,63866296800,63845722800,63866282400,-14400,1,'EDT',],[63866296800,63877186800,63866278800,63877168800,-18000,0,'EST',],[63877186800,63897746400,63877172400,63897732000,-14400,1,'EDT',],[63897746400,63908636400,63897728400,63908618400,-18000,0,'EST',],[63908636400,63929196000,63908622000,63929181600,-14400,1,'EDT',],[63929196000,63940690800,63929178000,63940672800,-18000,0,'EST',],[63940690800,63961250400,63940676400,63961236000,-14400,1,'EDT',],];sub olson_version {'2016a'}sub has_dst_changes {51}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-18000}my$last_observance=bless({'format'=>'E%sT','gmtoff'=>'-5:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>730422,'local_rd_secs'=>7200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>730422,'utc_rd_secs'=>7200,'utc_year'=>2001 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-18000,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>730422,'local_rd_secs'=>25200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>730422,'utc_rd_secs'=>25200,'utc_year'=>2001 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'Canada','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'Canada','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_PANGNIRTUNG

$fatpacked{"DateTime/TimeZone/America/Paramaribo.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_PARAMARIBO';
  package DateTime::TimeZone::America::Paramaribo;$DateTime::TimeZone::America::Paramaribo::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Paramaribo::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60273776440,DateTime::TimeZone::NEG_INFINITY,60273763200,-13240,0,'LMT',],[60273776440,61031158852,60273763188,61031145600,-13252,0,'PMT',],[61031158852,61370365236,61031145616,61370352000,-13236,0,'PMT',],[61370365236,62321369400,61370352636,62321356800,-12600,0,'NEGT',],[62321369400,62601132600,62321356800,62601120000,-12600,0,'SRT',],[62601132600,DateTime::TimeZone::INFINITY,62601121800,DateTime::TimeZone::INFINITY,-10800,0,'SRT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_PARAMARIBO

$fatpacked{"DateTime/TimeZone/America/Phoenix.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_PHOENIX';
  package DateTime::TimeZone::America::Phoenix;$DateTime::TimeZone::America::Phoenix::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Phoenix::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59418039600,DateTime::TimeZone::NEG_INFINITY,59418012702,-26898,0,'LMT',],[59418039600,60502410000,59418014400,60502384800,-25200,0,'MST',],[60502410000,60520550400,60502388400,60520528800,-21600,1,'MDT',],[60520550400,60533859600,60520525200,60533834400,-25200,0,'MST',],[60533859600,60552000000,60533838000,60551978400,-21600,1,'MDT',],[60552000000,61255472400,60551974800,61255447200,-25200,0,'MST',],[61255472400,61315164060,61255450800,61315142460,-21600,1,'MWT',],[61315164060,61323030060,61315138860,61323004860,-25200,0,'MST',],[61323030060,61338837660,61323008460,61338816060,-21600,1,'MWT',],[61338837660,62041014000,61338812460,62040988800,-25200,0,'MST',],[62041014000,62051302800,62040988800,62051277600,-25200,0,'MST',],[62051302800,62067024000,62051281200,62067002400,-21600,1,'MDT',],[62067024000,62079462000,62066998800,62079436800,-25200,0,'MST',],[62079462000,DateTime::TimeZone::INFINITY,62079436800,DateTime::TimeZone::INFINITY,-25200,0,'MST',],];sub olson_version {'2016a'}sub has_dst_changes {5}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_PHOENIX

$fatpacked{"DateTime/TimeZone/America/Port_au_Prince.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_PORT_AU_PRINCE';
  package DateTime::TimeZone::America::Port_au_Prince;$DateTime::TimeZone::America::Port_au_Prince::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Port_au_Prince::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59611178960,DateTime::TimeZone::NEG_INFINITY,59611161600,-17360,0,'LMT',],[59611178960,60465199740,59611161620,60465182400,-17340,0,'PPMT',],[60465199740,62556901200,60465181740,62556883200,-18000,0,'EST',],[62556901200,62572017600,62556886800,62572003200,-14400,1,'EDT',],[62572017600,62587746000,62571999600,62587728000,-18000,0,'EST',],[62587746000,62603467200,62587731600,62603452800,-14400,1,'EDT',],[62603467200,62619195600,62603449200,62619177600,-18000,0,'EST',],[62619195600,62634916800,62619181200,62634902400,-14400,1,'EDT',],[62634916800,62650645200,62634898800,62650627200,-18000,0,'EST',],[62650645200,62666366400,62650630800,62666352000,-14400,1,'EDT',],[62666366400,62682094800,62666348400,62682076800,-18000,0,'EST',],[62682094800,62697816000,62682080400,62697801600,-14400,1,'EDT',],[62697816000,62711733600,62697798000,62711715600,-18000,0,'EST',],[62711733600,62729877600,62711719200,62729863200,-14400,1,'EDT',],[62729877600,62743183200,62729859600,62743165200,-18000,0,'EST',],[62743183200,62761327200,62743168800,62761312800,-14400,1,'EDT',],[62761327200,62774632800,62761309200,62774614800,-18000,0,'EST',],[62774632800,62792776800,62774618400,62792762400,-14400,1,'EDT',],[62792776800,62806687200,62792758800,62806669200,-18000,0,'EST',],[62806687200,62824226400,62806672800,62824212000,-14400,1,'EDT',],[62824226400,62838136800,62824208400,62838118800,-18000,0,'EST',],[62838136800,62855676000,62838122400,62855661600,-14400,1,'EDT',],[62855676000,62869586400,62855658000,62869568400,-18000,0,'EST',],[62869586400,62887730400,62869572000,62887716000,-14400,1,'EDT',],[62887730400,62901036000,62887712400,62901018000,-18000,0,'EST',],[62901036000,62919180000,62901021600,62919165600,-14400,1,'EDT',],[62919180000,62932485600,62919162000,62932467600,-18000,0,'EST',],[62932485600,62950629600,62932471200,62950615200,-14400,1,'EDT',],[62950629600,62964540000,62950611600,62964522000,-18000,0,'EST',],[62964540000,62982079200,62964525600,62982064800,-14400,1,'EDT',],[62982079200,62995989600,62982061200,62995971600,-18000,0,'EST',],[62995989600,63013528800,62995975200,63013514400,-14400,1,'EDT',],[63013528800,63248187600,63013510800,63248169600,-18000,0,'EST',],[63248187600,63266328000,63248173200,63266313600,-14400,1,'EDT',],[63266328000,63279637200,63266310000,63279619200,-18000,0,'EST',],[63279637200,63297777600,63279622800,63297763200,-14400,1,'EDT',],[63297777600,63467132400,63297759600,63467114400,-18000,0,'EST',],[63467132400,63487692000,63467118000,63487677600,-14400,1,'EDT',],[63487692000,63498582000,63487674000,63498564000,-18000,0,'EST',],[63498582000,63519141600,63498567600,63519127200,-14400,1,'EDT',],[63519141600,63530031600,63519123600,63530013600,-18000,0,'EST',],[63530031600,63550591200,63530017200,63550576800,-14400,1,'EDT',],[63550591200,63561481200,63550573200,63561463200,-18000,0,'EST',],[63561481200,63582040800,63561466800,63582026400,-14400,1,'EDT',],[63582040800,63593535600,63582022800,63593517600,-18000,0,'EST',],[63593535600,63614095200,63593521200,63614080800,-14400,1,'EDT',],[63614095200,63624985200,63614077200,63624967200,-18000,0,'EST',],[63624985200,63645544800,63624970800,63645530400,-14400,1,'EDT',],[63645544800,63656434800,63645526800,63656416800,-18000,0,'EST',],[63656434800,63676994400,63656420400,63676980000,-14400,1,'EDT',],[63676994400,63687884400,63676976400,63687866400,-18000,0,'EST',],[63687884400,63708444000,63687870000,63708429600,-14400,1,'EDT',],[63708444000,63719334000,63708426000,63719316000,-18000,0,'EST',],[63719334000,63739893600,63719319600,63739879200,-14400,1,'EDT',],[63739893600,63751388400,63739875600,63751370400,-18000,0,'EST',],[63751388400,63771948000,63751374000,63771933600,-14400,1,'EDT',],[63771948000,63782838000,63771930000,63782820000,-18000,0,'EST',],[63782838000,63803397600,63782823600,63803383200,-14400,1,'EDT',],[63803397600,63814287600,63803379600,63814269600,-18000,0,'EST',],[63814287600,63834847200,63814273200,63834832800,-14400,1,'EDT',],[63834847200,63845737200,63834829200,63845719200,-18000,0,'EST',],[63845737200,63866296800,63845722800,63866282400,-14400,1,'EDT',],[63866296800,63877186800,63866278800,63877168800,-18000,0,'EST',],[63877186800,63897746400,63877172400,63897732000,-14400,1,'EDT',],[63897746400,63908636400,63897728400,63908618400,-18000,0,'EST',],[63908636400,63929196000,63908622000,63929181600,-14400,1,'EDT',],[63929196000,63940690800,63929178000,63940672800,-18000,0,'EST',],[63940690800,63961250400,63940676400,63961236000,-14400,1,'EDT',],];sub olson_version {'2016a'}sub has_dst_changes {33}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-18000}my$last_observance=bless({'format'=>'E%sT','gmtoff'=>'-5:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>699828,'local_rd_secs'=>42540,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>699828,'utc_rd_secs'=>42540,'utc_year'=>1918 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-18000,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>699828,'local_rd_secs'=>60540,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>699828,'utc_rd_secs'=>60540,'utc_year'=>1918 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2012','in'=>'Nov','letter'=>'S','name'=>'Haiti','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2012','in'=>'Mar','letter'=>'D','name'=>'Haiti','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_PORT_AU_PRINCE

$fatpacked{"DateTime/TimeZone/America/Port_of_Spain.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_PORT_OF_SPAIN';
  package DateTime::TimeZone::America::Port_of_Spain;$DateTime::TimeZone::America::Port_of_Spain::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Port_of_Spain::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60310584364,DateTime::TimeZone::NEG_INFINITY,60310569600,-14764,0,'LMT',],[60310584364,DateTime::TimeZone::INFINITY,60310569964,DateTime::TimeZone::INFINITY,-14400,0,'AST',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_PORT_OF_SPAIN

$fatpacked{"DateTime/TimeZone/America/Porto_Velho.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_PORTO_VELHO';
  package DateTime::TimeZone::America::Porto_Velho;$DateTime::TimeZone::America::Porto_Velho::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Porto_Velho::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60368472936,DateTime::TimeZone::NEG_INFINITY,60368457600,-15336,0,'LMT',],[60368472936,60928729200,60368458536,60928714800,-14400,0,'AMT',],[60928729200,60944324400,60928718400,60944313600,-10800,1,'AMST',],[60944324400,60960312000,60944310000,60960297600,-14400,0,'AMT',],[60960312000,60975860400,60960301200,60975849600,-10800,1,'AMST',],[60975860400,61501867200,60975846000,61501852800,-14400,0,'AMT',],[61501867200,61513617600,61501856400,61513606800,-10800,1,'AMST',],[61513617600,61533403200,61513603200,61533388800,-14400,0,'AMT',],[61533403200,61543854000,61533392400,61543843200,-10800,1,'AMST',],[61543854000,61564939200,61543839600,61564924800,-14400,0,'AMT',],[61564939200,61575476400,61564928400,61575465600,-10800,1,'AMST',],[61575476400,61596561600,61575462000,61596547200,-14400,0,'AMT',],[61596561600,61604334000,61596550800,61604323200,-10800,1,'AMST',],[61604334000,61944321600,61604319600,61944307200,-14400,0,'AMT',],[61944321600,61951489200,61944310800,61951478400,-10800,1,'AMST',],[61951489200,61980523200,61951474800,61980508800,-14400,0,'AMT',],[61980523200,61985617200,61980512400,61985606400,-10800,1,'AMST',],[61985617200,62006788800,61985602800,62006774400,-14400,0,'AMT',],[62006788800,62014561200,62006778000,62014550400,-10800,1,'AMST',],[62014561200,62035732800,62014546800,62035718400,-14400,0,'AMT',],[62035732800,62046097200,62035722000,62046086400,-10800,1,'AMST',],[62046097200,62067268800,62046082800,62067254400,-14400,0,'AMT',],[62067268800,62077719600,62067258000,62077708800,-10800,1,'AMST',],[62077719600,62635435200,62077705200,62635420800,-14400,0,'AMT',],[62635435200,62646922800,62635424400,62646912000,-10800,1,'AMST',],[62646922800,62666280000,62646908400,62666265600,-14400,0,'AMT',],[62666280000,62675953200,62666269200,62675942400,-10800,1,'AMST',],[62675953200,62697816000,62675938800,62697801600,-14400,0,'AMT',],[62697816000,62706884400,62697805200,62706873600,-10800,1,'AMST',],[62706884400,62725723200,62706870000,62725708800,-14400,0,'AMT',],[62725723200,DateTime::TimeZone::INFINITY,62725708800,DateTime::TimeZone::INFINITY,-14400,0,'AMT',],];sub olson_version {'2016a'}sub has_dst_changes {14}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_PORTO_VELHO

$fatpacked{"DateTime/TimeZone/America/Puerto_Rico.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_PUERTO_RICO';
  package DateTime::TimeZone::America::Puerto_Rico;$DateTime::TimeZone::America::Puerto_Rico::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Puerto_Rico::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59902647865,DateTime::TimeZone::NEG_INFINITY,59902632000,-15865,0,'LMT',],[59902647865,61262625600,59902633465,61262611200,-14400,0,'AST',],[61262625600,61366287600,61262614800,61366276800,-10800,1,'AWT',],[61366287600,61370283600,61366276800,61370272800,-10800,1,'APT',],[61370283600,61378315200,61370269200,61378300800,-14400,0,'AST',],[61378315200,DateTime::TimeZone::INFINITY,61378300800,DateTime::TimeZone::INFINITY,-14400,0,'AST',],];sub olson_version {'2016a'}sub has_dst_changes {2}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_PUERTO_RICO

$fatpacked{"DateTime/TimeZone/America/Rainy_River.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_RAINY_RIVER';
  package DateTime::TimeZone::America::Rainy_River;$DateTime::TimeZone::America::Rainy_River::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Rainy_River::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59768950696,DateTime::TimeZone::NEG_INFINITY,59768928000,-22696,0,'LMT',],[59768950696,60503616000,59768929096,60503594400,-21600,0,'CST',],[60503616000,60520546800,60503598000,60520528800,-18000,1,'CDT',],[60520546800,61212434400,60520525200,61212412800,-21600,0,'CST',],[61212434400,61255468800,61212416400,61255450800,-18000,1,'CDT',],[61255468800,61366287600,61255450800,61366269600,-18000,1,'CWT',],[61366287600,61370290800,61366269600,61370272800,-18000,1,'CPT',],[61370290800,62272051200,61370269200,62272029600,-21600,0,'CST',],[62272051200,62287772400,62272033200,62287754400,-18000,1,'CDT',],[62287772400,62303500800,62287750800,62303479200,-21600,0,'CST',],[62303500800,62319222000,62303482800,62319204000,-18000,1,'CDT',],[62319222000,62334950400,62319200400,62334928800,-21600,0,'CST',],[62334950400,62351276400,62334932400,62351258400,-18000,1,'CDT',],[62351276400,62366400000,62351254800,62366378400,-21600,0,'CST',],[62366400000,62382726000,62366382000,62382708000,-18000,1,'CDT',],[62382726000,62398454400,62382704400,62398432800,-21600,0,'CST',],[62398454400,62414175600,62398436400,62414157600,-18000,1,'CDT',],[62414175600,62429904000,62414154000,62429882400,-21600,0,'CST',],[62429904000,62445625200,62429886000,62445607200,-18000,1,'CDT',],[62445625200,62461353600,62445603600,62461332000,-21600,0,'CST',],[62461353600,62477074800,62461335600,62477056800,-18000,1,'CDT',],[62477074800,62492803200,62477053200,62492781600,-21600,0,'CST',],[62492803200,62508524400,62492785200,62508506400,-18000,1,'CDT',],[62508524400,62524252800,62508502800,62524231200,-21600,0,'CST',],[62524252800,62540578800,62524234800,62540560800,-18000,1,'CDT',],[62540578800,62555702400,62540557200,62555680800,-21600,0,'CST',],[62555702400,62572028400,62555684400,62572010400,-18000,1,'CDT',],[62572028400,62587756800,62572006800,62587735200,-21600,0,'CST',],[62587756800,62603478000,62587738800,62603460000,-18000,1,'CDT',],[62603478000,62619206400,62603456400,62619184800,-21600,0,'CST',],[62619206400,62634927600,62619188400,62634909600,-18000,1,'CDT',],[62634927600,62650656000,62634906000,62650634400,-21600,0,'CST',],[62650656000,62666377200,62650638000,62666359200,-18000,1,'CDT',],[62666377200,62680291200,62666355600,62680269600,-21600,0,'CST',],[62680291200,62697826800,62680273200,62697808800,-18000,1,'CDT',],[62697826800,62711740800,62697805200,62711719200,-21600,0,'CST',],[62711740800,62729881200,62711722800,62729863200,-18000,1,'CDT',],[62729881200,62743190400,62729859600,62743168800,-21600,0,'CST',],[62743190400,62761330800,62743172400,62761312800,-18000,1,'CDT',],[62761330800,62774640000,62761309200,62774618400,-21600,0,'CST',],[62774640000,62792780400,62774622000,62792762400,-18000,1,'CDT',],[62792780400,62806694400,62792758800,62806672800,-21600,0,'CST',],[62806694400,62824230000,62806676400,62824212000,-18000,1,'CDT',],[62824230000,62838144000,62824208400,62838122400,-21600,0,'CST',],[62838144000,62855679600,62838126000,62855661600,-18000,1,'CDT',],[62855679600,62869593600,62855658000,62869572000,-21600,0,'CST',],[62869593600,62887734000,62869575600,62887716000,-18000,1,'CDT',],[62887734000,62901043200,62887712400,62901021600,-21600,0,'CST',],[62901043200,62919183600,62901025200,62919165600,-18000,1,'CDT',],[62919183600,62932492800,62919162000,62932471200,-21600,0,'CST',],[62932492800,62950633200,62932474800,62950615200,-18000,1,'CDT',],[62950633200,62964547200,62950611600,62964525600,-21600,0,'CST',],[62964547200,62982082800,62964529200,62982064800,-18000,1,'CDT',],[62982082800,62995996800,62982061200,62995975200,-21600,0,'CST',],[62995996800,63013532400,62995978800,63013514400,-18000,1,'CDT',],[63013532400,63027446400,63013510800,63027424800,-21600,0,'CST',],[63027446400,63044982000,63027428400,63044964000,-18000,1,'CDT',],[63044982000,63058896000,63044960400,63058874400,-21600,0,'CST',],[63058896000,63077036400,63058878000,63077018400,-18000,1,'CDT',],[63077036400,63090345600,63077014800,63090324000,-21600,0,'CST',],[63090345600,63108486000,63090327600,63108468000,-18000,1,'CDT',],[63108486000,63121795200,63108464400,63121773600,-21600,0,'CST',],[63121795200,63139935600,63121777200,63139917600,-18000,1,'CDT',],[63139935600,63153849600,63139914000,63153828000,-21600,0,'CST',],[63153849600,63171385200,63153831600,63171367200,-18000,1,'CDT',],[63171385200,63185299200,63171363600,63185277600,-21600,0,'CST',],[63185299200,63202834800,63185281200,63202816800,-18000,1,'CDT',],[63202834800,63216748800,63202813200,63216727200,-21600,0,'CST',],[63216748800,63234889200,63216730800,63234871200,-18000,1,'CDT',],[63234889200,63248198400,63234867600,63248176800,-21600,0,'CST',],[63248198400,63266338800,63248180400,63266320800,-18000,1,'CDT',],[63266338800,63279648000,63266317200,63279626400,-21600,0,'CST',],[63279648000,63297788400,63279630000,63297770400,-18000,1,'CDT',],[63297788400,63309283200,63297766800,63309261600,-21600,0,'CST',],[63309283200,63329842800,63309265200,63329824800,-18000,1,'CDT',],[63329842800,63340732800,63329821200,63340711200,-21600,0,'CST',],[63340732800,63361292400,63340714800,63361274400,-18000,1,'CDT',],[63361292400,63372182400,63361270800,63372160800,-21600,0,'CST',],[63372182400,63392742000,63372164400,63392724000,-18000,1,'CDT',],[63392742000,63404236800,63392720400,63404215200,-21600,0,'CST',],[63404236800,63424796400,63404218800,63424778400,-18000,1,'CDT',],[63424796400,63435686400,63424774800,63435664800,-21600,0,'CST',],[63435686400,63456246000,63435668400,63456228000,-18000,1,'CDT',],[63456246000,63467136000,63456224400,63467114400,-21600,0,'CST',],[63467136000,63487695600,63467118000,63487677600,-18000,1,'CDT',],[63487695600,63498585600,63487674000,63498564000,-21600,0,'CST',],[63498585600,63519145200,63498567600,63519127200,-18000,1,'CDT',],[63519145200,63530035200,63519123600,63530013600,-21600,0,'CST',],[63530035200,63550594800,63530017200,63550576800,-18000,1,'CDT',],[63550594800,63561484800,63550573200,63561463200,-21600,0,'CST',],[63561484800,63582044400,63561466800,63582026400,-18000,1,'CDT',],[63582044400,63593539200,63582022800,63593517600,-21600,0,'CST',],[63593539200,63614098800,63593521200,63614080800,-18000,1,'CDT',],[63614098800,63624988800,63614077200,63624967200,-21600,0,'CST',],[63624988800,63645548400,63624970800,63645530400,-18000,1,'CDT',],[63645548400,63656438400,63645526800,63656416800,-21600,0,'CST',],[63656438400,63676998000,63656420400,63676980000,-18000,1,'CDT',],[63676998000,63687888000,63676976400,63687866400,-21600,0,'CST',],[63687888000,63708447600,63687870000,63708429600,-18000,1,'CDT',],[63708447600,63719337600,63708426000,63719316000,-21600,0,'CST',],[63719337600,63739897200,63719319600,63739879200,-18000,1,'CDT',],[63739897200,63751392000,63739875600,63751370400,-21600,0,'CST',],[63751392000,63771951600,63751374000,63771933600,-18000,1,'CDT',],[63771951600,63782841600,63771930000,63782820000,-21600,0,'CST',],[63782841600,63803401200,63782823600,63803383200,-18000,1,'CDT',],[63803401200,63814291200,63803379600,63814269600,-21600,0,'CST',],[63814291200,63834850800,63814273200,63834832800,-18000,1,'CDT',],[63834850800,63845740800,63834829200,63845719200,-21600,0,'CST',],[63845740800,63866300400,63845722800,63866282400,-18000,1,'CDT',],[63866300400,63877190400,63866278800,63877168800,-21600,0,'CST',],[63877190400,63897750000,63877172400,63897732000,-18000,1,'CDT',],[63897750000,63908640000,63897728400,63908618400,-21600,0,'CST',],[63908640000,63929199600,63908622000,63929181600,-18000,1,'CDT',],[63929199600,63940694400,63929178000,63940672800,-21600,0,'CST',],[63940694400,63961254000,63940676400,63961236000,-18000,1,'CDT',],];sub olson_version {'2016a'}sub has_dst_changes {58}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-21600}my$last_observance=bless({'format'=>'C%sT','gmtoff'=>'-6:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>708975,'local_rd_secs'=>10800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>708975,'utc_rd_secs'=>10800,'utc_year'=>1943 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-21600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>708975,'local_rd_secs'=>28800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>708975,'utc_rd_secs'=>28800,'utc_year'=>1943 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'Canada','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'Canada','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_RAINY_RIVER

$fatpacked{"DateTime/TimeZone/America/Rankin_Inlet.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_RANKIN_INLET';
  package DateTime::TimeZone::America::Rankin_Inlet;$DateTime::TimeZone::America::Rankin_Inlet::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Rankin_Inlet::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,61725456000,DateTime::TimeZone::NEG_INFINITY,61725456000,0,0,'zzz',],[61725456000,61987788000,61725434400,61987766400,-21600,0,'CST',],[61987788000,62004117600,61987773600,62004103200,-14400,1,'CDDT',],[62004117600,62461353600,62004096000,62461332000,-21600,0,'CST',],[62461353600,62477074800,62461335600,62477056800,-18000,1,'CDT',],[62477074800,62492803200,62477053200,62492781600,-21600,0,'CST',],[62492803200,62508524400,62492785200,62508506400,-18000,1,'CDT',],[62508524400,62524252800,62508502800,62524231200,-21600,0,'CST',],[62524252800,62540578800,62524234800,62540560800,-18000,1,'CDT',],[62540578800,62555702400,62540557200,62555680800,-21600,0,'CST',],[62555702400,62572028400,62555684400,62572010400,-18000,1,'CDT',],[62572028400,62587756800,62572006800,62587735200,-21600,0,'CST',],[62587756800,62603478000,62587738800,62603460000,-18000,1,'CDT',],[62603478000,62619206400,62603456400,62619184800,-21600,0,'CST',],[62619206400,62634927600,62619188400,62634909600,-18000,1,'CDT',],[62634927600,62650656000,62634906000,62650634400,-21600,0,'CST',],[62650656000,62666377200,62650638000,62666359200,-18000,1,'CDT',],[62666377200,62680291200,62666355600,62680269600,-21600,0,'CST',],[62680291200,62697826800,62680273200,62697808800,-18000,1,'CDT',],[62697826800,62711740800,62697805200,62711719200,-21600,0,'CST',],[62711740800,62729881200,62711722800,62729863200,-18000,1,'CDT',],[62729881200,62743190400,62729859600,62743168800,-21600,0,'CST',],[62743190400,62761330800,62743172400,62761312800,-18000,1,'CDT',],[62761330800,62774640000,62761309200,62774618400,-21600,0,'CST',],[62774640000,62792780400,62774622000,62792762400,-18000,1,'CDT',],[62792780400,62806694400,62792758800,62806672800,-21600,0,'CST',],[62806694400,62824230000,62806676400,62824212000,-18000,1,'CDT',],[62824230000,62838144000,62824208400,62838122400,-21600,0,'CST',],[62838144000,62855679600,62838126000,62855661600,-18000,1,'CDT',],[62855679600,62869593600,62855658000,62869572000,-21600,0,'CST',],[62869593600,62887734000,62869575600,62887716000,-18000,1,'CDT',],[62887734000,62901043200,62887712400,62901021600,-21600,0,'CST',],[62901043200,62919183600,62901025200,62919165600,-18000,1,'CDT',],[62919183600,62932492800,62919162000,62932471200,-21600,0,'CST',],[62932492800,62950633200,62932474800,62950615200,-18000,1,'CDT',],[62950633200,62964547200,62950611600,62964525600,-21600,0,'CST',],[62964547200,62982082800,62964529200,62982064800,-18000,1,'CDT',],[62982082800,62995996800,62982061200,62995975200,-21600,0,'CST',],[62995996800,63013532400,62995978800,63013514400,-18000,1,'CDT',],[63013532400,63027446400,63013510800,63027424800,-21600,0,'CST',],[63027446400,63044982000,63027428400,63044964000,-18000,1,'CDT',],[63044982000,63058896000,63044960400,63058874400,-21600,0,'CST',],[63058896000,63077036400,63058878000,63077018400,-18000,1,'CDT',],[63077036400,63090345600,63077014800,63090324000,-21600,0,'CST',],[63090345600,63108486000,63090327600,63108468000,-18000,1,'CDT',],[63108486000,63121795200,63108468000,63121777200,-18000,0,'EST',],[63121795200,63139935600,63121777200,63139917600,-18000,1,'CDT',],[63139935600,63153849600,63139914000,63153828000,-21600,0,'CST',],[63153849600,63171385200,63153831600,63171367200,-18000,1,'CDT',],[63171385200,63185299200,63171363600,63185277600,-21600,0,'CST',],[63185299200,63202834800,63185281200,63202816800,-18000,1,'CDT',],[63202834800,63216748800,63202813200,63216727200,-21600,0,'CST',],[63216748800,63234889200,63216730800,63234871200,-18000,1,'CDT',],[63234889200,63248198400,63234867600,63248176800,-21600,0,'CST',],[63248198400,63266338800,63248180400,63266320800,-18000,1,'CDT',],[63266338800,63279648000,63266317200,63279626400,-21600,0,'CST',],[63279648000,63297788400,63279630000,63297770400,-18000,1,'CDT',],[63297788400,63309283200,63297766800,63309261600,-21600,0,'CST',],[63309283200,63329842800,63309265200,63329824800,-18000,1,'CDT',],[63329842800,63340732800,63329821200,63340711200,-21600,0,'CST',],[63340732800,63361292400,63340714800,63361274400,-18000,1,'CDT',],[63361292400,63372182400,63361270800,63372160800,-21600,0,'CST',],[63372182400,63392742000,63372164400,63392724000,-18000,1,'CDT',],[63392742000,63404236800,63392720400,63404215200,-21600,0,'CST',],[63404236800,63424796400,63404218800,63424778400,-18000,1,'CDT',],[63424796400,63435686400,63424774800,63435664800,-21600,0,'CST',],[63435686400,63456246000,63435668400,63456228000,-18000,1,'CDT',],[63456246000,63467136000,63456224400,63467114400,-21600,0,'CST',],[63467136000,63487695600,63467118000,63487677600,-18000,1,'CDT',],[63487695600,63498585600,63487674000,63498564000,-21600,0,'CST',],[63498585600,63519145200,63498567600,63519127200,-18000,1,'CDT',],[63519145200,63530035200,63519123600,63530013600,-21600,0,'CST',],[63530035200,63550594800,63530017200,63550576800,-18000,1,'CDT',],[63550594800,63561484800,63550573200,63561463200,-21600,0,'CST',],[63561484800,63582044400,63561466800,63582026400,-18000,1,'CDT',],[63582044400,63593539200,63582022800,63593517600,-21600,0,'CST',],[63593539200,63614098800,63593521200,63614080800,-18000,1,'CDT',],[63614098800,63624988800,63614077200,63624967200,-21600,0,'CST',],[63624988800,63645548400,63624970800,63645530400,-18000,1,'CDT',],[63645548400,63656438400,63645526800,63656416800,-21600,0,'CST',],[63656438400,63676998000,63656420400,63676980000,-18000,1,'CDT',],[63676998000,63687888000,63676976400,63687866400,-21600,0,'CST',],[63687888000,63708447600,63687870000,63708429600,-18000,1,'CDT',],[63708447600,63719337600,63708426000,63719316000,-21600,0,'CST',],[63719337600,63739897200,63719319600,63739879200,-18000,1,'CDT',],[63739897200,63751392000,63739875600,63751370400,-21600,0,'CST',],[63751392000,63771951600,63751374000,63771933600,-18000,1,'CDT',],[63771951600,63782841600,63771930000,63782820000,-21600,0,'CST',],[63782841600,63803401200,63782823600,63803383200,-18000,1,'CDT',],[63803401200,63814291200,63803379600,63814269600,-21600,0,'CST',],[63814291200,63834850800,63814273200,63834832800,-18000,1,'CDT',],[63834850800,63845740800,63834829200,63845719200,-21600,0,'CST',],[63845740800,63866300400,63845722800,63866282400,-18000,1,'CDT',],[63866300400,63877190400,63866278800,63877168800,-21600,0,'CST',],[63877190400,63897750000,63877172400,63897732000,-18000,1,'CDT',],[63897750000,63908640000,63897728400,63908618400,-21600,0,'CST',],[63908640000,63929199600,63908622000,63929181600,-18000,1,'CDT',],[63929199600,63940694400,63929178000,63940672800,-21600,0,'CST',],[63940694400,63961254000,63940676400,63961236000,-18000,1,'CDT',],];sub olson_version {'2016a'}sub has_dst_changes {49}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-21600}my$last_observance=bless({'format'=>'C%sT','gmtoff'=>'-6:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>730576,'local_rd_secs'=>10800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>730576,'utc_rd_secs'=>10800,'utc_year'=>2002 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-21600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>730576,'local_rd_secs'=>28800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>730576,'utc_rd_secs'=>28800,'utc_year'=>2002 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'Canada','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'Canada','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_RANKIN_INLET

$fatpacked{"DateTime/TimeZone/America/Recife.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_RECIFE';
  package DateTime::TimeZone::America::Recife;$DateTime::TimeZone::America::Recife::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Recife::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60368465976,DateTime::TimeZone::NEG_INFINITY,60368457600,-8376,0,'LMT',],[60368465976,60928725600,60368455176,60928714800,-10800,0,'BRT',],[60928725600,60944320800,60928718400,60944313600,-7200,1,'BRST',],[60944320800,60960308400,60944310000,60960297600,-10800,0,'BRT',],[60960308400,60975856800,60960301200,60975849600,-7200,1,'BRST',],[60975856800,61501863600,60975846000,61501852800,-10800,0,'BRT',],[61501863600,61513614000,61501856400,61513606800,-7200,1,'BRST',],[61513614000,61533399600,61513603200,61533388800,-10800,0,'BRT',],[61533399600,61543850400,61533392400,61543843200,-7200,1,'BRST',],[61543850400,61564935600,61543839600,61564924800,-10800,0,'BRT',],[61564935600,61575472800,61564928400,61575465600,-7200,1,'BRST',],[61575472800,61596558000,61575462000,61596547200,-10800,0,'BRT',],[61596558000,61604330400,61596550800,61604323200,-7200,1,'BRST',],[61604330400,61944318000,61604319600,61944307200,-10800,0,'BRT',],[61944318000,61951485600,61944310800,61951478400,-7200,1,'BRST',],[61951485600,61980519600,61951474800,61980508800,-10800,0,'BRT',],[61980519600,61985613600,61980512400,61985606400,-7200,1,'BRST',],[61985613600,62006785200,61985602800,62006774400,-10800,0,'BRT',],[62006785200,62014557600,62006778000,62014550400,-7200,1,'BRST',],[62014557600,62035729200,62014546800,62035718400,-10800,0,'BRT',],[62035729200,62046093600,62035722000,62046086400,-7200,1,'BRST',],[62046093600,62067265200,62046082800,62067254400,-10800,0,'BRT',],[62067265200,62077716000,62067258000,62077708800,-7200,1,'BRST',],[62077716000,62635431600,62077705200,62635420800,-10800,0,'BRT',],[62635431600,62646919200,62635424400,62646912000,-7200,1,'BRST',],[62646919200,62666276400,62646908400,62666265600,-10800,0,'BRT',],[62666276400,62675949600,62666269200,62675942400,-7200,1,'BRST',],[62675949600,62697812400,62675938800,62697801600,-10800,0,'BRT',],[62697812400,62706880800,62697805200,62706873600,-7200,1,'BRST',],[62706880800,62728657200,62706870000,62728646400,-10800,0,'BRT',],[62728657200,62737725600,62728650000,62737718400,-7200,1,'BRST',],[62737725600,62760106800,62737714800,62760096000,-10800,0,'BRT',],[62760106800,62770384800,62760099600,62770377600,-7200,1,'BRST',],[62770384800,62789223600,62770374000,62789212800,-10800,0,'BRT',],[62789223600,63074343600,62789212800,63074332800,-10800,0,'BRT',],[63074343600,63074602800,63074332800,63074592000,-10800,0,'BRT',],[63074602800,63087300000,63074595600,63087292800,-7200,1,'BRST',],[63087300000,63106657200,63087289200,63106646400,-10800,0,'BRT',],[63106657200,63107258400,63106650000,63107251200,-7200,1,'BRST',],[63107258400,63136033200,63107247600,63136022400,-10800,0,'BRT',],[63136033200,63138711600,63136022400,63138700800,-10800,0,'BRT',],[63138711600,63149594400,63138704400,63149587200,-7200,1,'BRST',],[63149594400,63169124400,63149583600,63169113600,-10800,0,'BRT',],[63169124400,DateTime::TimeZone::INFINITY,63169113600,DateTime::TimeZone::INFINITY,-10800,0,'BRT',],];sub olson_version {'2016a'}sub has_dst_changes {19}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_RECIFE

$fatpacked{"DateTime/TimeZone/America/Regina.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_REGINA';
  package DateTime::TimeZone::America::Regina;$DateTime::TimeZone::America::Regina::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Regina::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60105481116,DateTime::TimeZone::NEG_INFINITY,60105456000,-25116,0,'LMT',],[60105481116,60503619600,60105455916,60503594400,-25200,0,'MST',],[60503619600,60520550400,60503598000,60520528800,-21600,1,'MDT',],[60520550400,60884031600,60520525200,60884006400,-25200,0,'MST',],[60884031600,60897333600,60884010000,60897312000,-21600,1,'MDT',],[60897333600,60915481200,60897308400,60915456000,-25200,0,'MST',],[60915481200,60928783200,60915459600,60928761600,-21600,1,'MDT',],[60928783200,60946930800,60928758000,60946905600,-25200,0,'MST',],[60946930800,60960232800,60946909200,60960211200,-21600,1,'MDT',],[60960232800,60978985200,60960207600,60978960000,-25200,0,'MST',],[60978985200,60991682400,60978963600,60991660800,-21600,1,'MDT',],[60991682400,61010434800,60991657200,61010409600,-25200,0,'MST',],[61010434800,61023736800,61010413200,61023715200,-21600,1,'MDT',],[61023736800,61102969200,61023711600,61102944000,-25200,0,'MST',],[61102969200,61118690400,61102947600,61118668800,-21600,1,'MDT',],[61118690400,61134418800,61118665200,61134393600,-25200,0,'MST',],[61134418800,61149535200,61134397200,61149513600,-21600,1,'MDT',],[61149535200,61165868400,61149510000,61165843200,-25200,0,'MST',],[61165868400,61181589600,61165846800,61181568000,-21600,1,'MDT',],[61181589600,61197922800,61181564400,61197897600,-25200,0,'MST',],[61197922800,61213644000,61197901200,61213622400,-21600,1,'MDT',],[61213644000,61229372400,61213618800,61229347200,-25200,0,'MST',],[61229372400,61245093600,61229350800,61245072000,-21600,1,'MDT',],[61245093600,61255472400,61245068400,61255447200,-25200,0,'MST',],[61255472400,61366287600,61255450800,61366266000,-21600,1,'MWT',],[61366287600,61370294400,61366266000,61370272800,-21600,1,'MPT',],[61370294400,61387232400,61370269200,61387207200,-25200,0,'MST',],[61387232400,61402953600,61387210800,61402932000,-21600,1,'MDT',],[61402953600,61419891600,61402928400,61419866400,-25200,0,'MST',],[61419891600,61433193600,61419870000,61433172000,-21600,1,'MDT',],[61433193600,61451341200,61433168400,61451316000,-25200,0,'MST',],[61451341200,61464643200,61451319600,61464621600,-21600,1,'MDT',],[61464643200,61482790800,61464618000,61482765600,-25200,0,'MST',],[61482790800,61496092800,61482769200,61496071200,-21600,1,'MDT',],[61496092800,61514845200,61496067600,61514820000,-25200,0,'MST',],[61514845200,61527542400,61514823600,61527520800,-21600,1,'MDT',],[61527542400,61546294800,61527517200,61546269600,-25200,0,'MST',],[61546294800,61559596800,61546273200,61559575200,-21600,1,'MDT',],[61559596800,61577744400,61559571600,61577719200,-25200,0,'MST',],[61577744400,61591046400,61577722800,61591024800,-21600,1,'MDT',],[61591046400,61609194000,61591021200,61609168800,-25200,0,'MST',],[61609194000,61622496000,61609172400,61622474400,-21600,1,'MDT',],[61622496000,61640643600,61622470800,61640618400,-25200,0,'MST',],[61640643600,61653945600,61640622000,61653924000,-21600,1,'MDT',],[61653945600,61672093200,61653920400,61672068000,-25200,0,'MST',],[61672093200,61685395200,61672071600,61685373600,-21600,1,'MDT',],[61685395200,61704147600,61685370000,61704122400,-25200,0,'MST',],[61704147600,61717449600,61704126000,61717428000,-21600,1,'MDT',],[61717449600,61735597200,61717424400,61735572000,-25200,0,'MST',],[61735597200,61748899200,61735575600,61748877600,-21600,1,'MDT',],[61748899200,61798496400,61748874000,61798471200,-25200,0,'MST',],[61798496400,61814217600,61798474800,61814196000,-21600,1,'MDT',],[61814217600,61829946000,61814192400,61829920800,-25200,0,'MST',],[61829946000,DateTime::TimeZone::INFINITY,61829924400,DateTime::TimeZone::INFINITY,-21600,0,'CST',],];sub olson_version {'2016a'}sub has_dst_changes {26}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_REGINA

$fatpacked{"DateTime/TimeZone/America/Resolute.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_RESOLUTE';
  package DateTime::TimeZone::America::Resolute;$DateTime::TimeZone::America::Resolute::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Resolute::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,61430745600,DateTime::TimeZone::NEG_INFINITY,61430745600,0,0,'zzz',],[61430745600,61987788000,61430724000,61987766400,-21600,0,'CST',],[61987788000,62004117600,61987773600,62004103200,-14400,1,'CDDT',],[62004117600,62461353600,62004096000,62461332000,-21600,0,'CST',],[62461353600,62477074800,62461335600,62477056800,-18000,1,'CDT',],[62477074800,62492803200,62477053200,62492781600,-21600,0,'CST',],[62492803200,62508524400,62492785200,62508506400,-18000,1,'CDT',],[62508524400,62524252800,62508502800,62524231200,-21600,0,'CST',],[62524252800,62540578800,62524234800,62540560800,-18000,1,'CDT',],[62540578800,62555702400,62540557200,62555680800,-21600,0,'CST',],[62555702400,62572028400,62555684400,62572010400,-18000,1,'CDT',],[62572028400,62587756800,62572006800,62587735200,-21600,0,'CST',],[62587756800,62603478000,62587738800,62603460000,-18000,1,'CDT',],[62603478000,62619206400,62603456400,62619184800,-21600,0,'CST',],[62619206400,62634927600,62619188400,62634909600,-18000,1,'CDT',],[62634927600,62650656000,62634906000,62650634400,-21600,0,'CST',],[62650656000,62666377200,62650638000,62666359200,-18000,1,'CDT',],[62666377200,62680291200,62666355600,62680269600,-21600,0,'CST',],[62680291200,62697826800,62680273200,62697808800,-18000,1,'CDT',],[62697826800,62711740800,62697805200,62711719200,-21600,0,'CST',],[62711740800,62729881200,62711722800,62729863200,-18000,1,'CDT',],[62729881200,62743190400,62729859600,62743168800,-21600,0,'CST',],[62743190400,62761330800,62743172400,62761312800,-18000,1,'CDT',],[62761330800,62774640000,62761309200,62774618400,-21600,0,'CST',],[62774640000,62792780400,62774622000,62792762400,-18000,1,'CDT',],[62792780400,62806694400,62792758800,62806672800,-21600,0,'CST',],[62806694400,62824230000,62806676400,62824212000,-18000,1,'CDT',],[62824230000,62838144000,62824208400,62838122400,-21600,0,'CST',],[62838144000,62855679600,62838126000,62855661600,-18000,1,'CDT',],[62855679600,62869593600,62855658000,62869572000,-21600,0,'CST',],[62869593600,62887734000,62869575600,62887716000,-18000,1,'CDT',],[62887734000,62901043200,62887712400,62901021600,-21600,0,'CST',],[62901043200,62919183600,62901025200,62919165600,-18000,1,'CDT',],[62919183600,62932492800,62919162000,62932471200,-21600,0,'CST',],[62932492800,62950633200,62932474800,62950615200,-18000,1,'CDT',],[62950633200,62964547200,62950611600,62964525600,-21600,0,'CST',],[62964547200,62982082800,62964529200,62982064800,-18000,1,'CDT',],[62982082800,62995996800,62982061200,62995975200,-21600,0,'CST',],[62995996800,63013532400,62995978800,63013514400,-18000,1,'CDT',],[63013532400,63027446400,63013510800,63027424800,-21600,0,'CST',],[63027446400,63044982000,63027428400,63044964000,-18000,1,'CDT',],[63044982000,63058896000,63044960400,63058874400,-21600,0,'CST',],[63058896000,63077036400,63058878000,63077018400,-18000,1,'CDT',],[63077036400,63090345600,63077014800,63090324000,-21600,0,'CST',],[63090345600,63108486000,63090327600,63108468000,-18000,1,'CDT',],[63108486000,63121795200,63108468000,63121777200,-18000,0,'EST',],[63121795200,63139935600,63121777200,63139917600,-18000,1,'CDT',],[63139935600,63153849600,63139914000,63153828000,-21600,0,'CST',],[63153849600,63171385200,63153831600,63171367200,-18000,1,'CDT',],[63171385200,63185299200,63171363600,63185277600,-21600,0,'CST',],[63185299200,63202834800,63185281200,63202816800,-18000,1,'CDT',],[63202834800,63216748800,63202813200,63216727200,-21600,0,'CST',],[63216748800,63234889200,63216730800,63234871200,-18000,1,'CDT',],[63234889200,63248198400,63234867600,63248176800,-21600,0,'CST',],[63248198400,63266338800,63248180400,63266320800,-18000,1,'CDT',],[63266338800,63279648000,63266317200,63279626400,-21600,0,'CST',],[63279648000,63297788400,63279630000,63297770400,-18000,1,'CDT',],[63297788400,63309283200,63297770400,63309265200,-18000,0,'EST',],[63309283200,63329842800,63309265200,63329824800,-18000,1,'CDT',],[63329842800,63340732800,63329821200,63340711200,-21600,0,'CST',],[63340732800,63361292400,63340714800,63361274400,-18000,1,'CDT',],[63361292400,63372182400,63361270800,63372160800,-21600,0,'CST',],[63372182400,63392742000,63372164400,63392724000,-18000,1,'CDT',],[63392742000,63404236800,63392720400,63404215200,-21600,0,'CST',],[63404236800,63424796400,63404218800,63424778400,-18000,1,'CDT',],[63424796400,63435686400,63424774800,63435664800,-21600,0,'CST',],[63435686400,63456246000,63435668400,63456228000,-18000,1,'CDT',],[63456246000,63467136000,63456224400,63467114400,-21600,0,'CST',],[63467136000,63487695600,63467118000,63487677600,-18000,1,'CDT',],[63487695600,63498585600,63487674000,63498564000,-21600,0,'CST',],[63498585600,63519145200,63498567600,63519127200,-18000,1,'CDT',],[63519145200,63530035200,63519123600,63530013600,-21600,0,'CST',],[63530035200,63550594800,63530017200,63550576800,-18000,1,'CDT',],[63550594800,63561484800,63550573200,63561463200,-21600,0,'CST',],[63561484800,63582044400,63561466800,63582026400,-18000,1,'CDT',],[63582044400,63593539200,63582022800,63593517600,-21600,0,'CST',],[63593539200,63614098800,63593521200,63614080800,-18000,1,'CDT',],[63614098800,63624988800,63614077200,63624967200,-21600,0,'CST',],[63624988800,63645548400,63624970800,63645530400,-18000,1,'CDT',],[63645548400,63656438400,63645526800,63656416800,-21600,0,'CST',],[63656438400,63676998000,63656420400,63676980000,-18000,1,'CDT',],[63676998000,63687888000,63676976400,63687866400,-21600,0,'CST',],[63687888000,63708447600,63687870000,63708429600,-18000,1,'CDT',],[63708447600,63719337600,63708426000,63719316000,-21600,0,'CST',],[63719337600,63739897200,63719319600,63739879200,-18000,1,'CDT',],[63739897200,63751392000,63739875600,63751370400,-21600,0,'CST',],[63751392000,63771951600,63751374000,63771933600,-18000,1,'CDT',],[63771951600,63782841600,63771930000,63782820000,-21600,0,'CST',],[63782841600,63803401200,63782823600,63803383200,-18000,1,'CDT',],[63803401200,63814291200,63803379600,63814269600,-21600,0,'CST',],[63814291200,63834850800,63814273200,63834832800,-18000,1,'CDT',],[63834850800,63845740800,63834829200,63845719200,-21600,0,'CST',],[63845740800,63866300400,63845722800,63866282400,-18000,1,'CDT',],[63866300400,63877190400,63866278800,63877168800,-21600,0,'CST',],[63877190400,63897750000,63877172400,63897732000,-18000,1,'CDT',],[63897750000,63908640000,63897728400,63908618400,-21600,0,'CST',],[63908640000,63929199600,63908622000,63929181600,-18000,1,'CDT',],[63929199600,63940694400,63929178000,63940672800,-21600,0,'CST',],[63940694400,63961254000,63940676400,63961236000,-18000,1,'CDT',],];sub olson_version {'2016a'}sub has_dst_changes {49}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-21600}my$last_observance=bless({'format'=>'C%sT','gmtoff'=>'-6:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>732746,'local_rd_secs'=>10800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>732746,'utc_rd_secs'=>10800,'utc_year'=>2008 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-21600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>732746,'local_rd_secs'=>28800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>732746,'utc_rd_secs'=>28800,'utc_year'=>2008 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'Canada','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'Canada','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_RESOLUTE

$fatpacked{"DateTime/TimeZone/America/Rio_Branco.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_RIO_BRANCO';
  package DateTime::TimeZone::America::Rio_Branco;$DateTime::TimeZone::America::Rio_Branco::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Rio_Branco::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60368473872,DateTime::TimeZone::NEG_INFINITY,60368457600,-16272,0,'LMT',],[60368473872,60928732800,60368455872,60928714800,-18000,0,'ACT',],[60928732800,60944328000,60928718400,60944313600,-14400,1,'ACST',],[60944328000,60960315600,60944310000,60960297600,-18000,0,'ACT',],[60960315600,60975864000,60960301200,60975849600,-14400,1,'ACST',],[60975864000,61501870800,60975846000,61501852800,-18000,0,'ACT',],[61501870800,61513621200,61501856400,61513606800,-14400,1,'ACST',],[61513621200,61533406800,61513603200,61533388800,-18000,0,'ACT',],[61533406800,61543857600,61533392400,61543843200,-14400,1,'ACST',],[61543857600,61564942800,61543839600,61564924800,-18000,0,'ACT',],[61564942800,61575480000,61564928400,61575465600,-14400,1,'ACST',],[61575480000,61596565200,61575462000,61596547200,-18000,0,'ACT',],[61596565200,61604337600,61596550800,61604323200,-14400,1,'ACST',],[61604337600,61944325200,61604319600,61944307200,-18000,0,'ACT',],[61944325200,61951492800,61944310800,61951478400,-14400,1,'ACST',],[61951492800,61980526800,61951474800,61980508800,-18000,0,'ACT',],[61980526800,61985620800,61980512400,61985606400,-14400,1,'ACST',],[61985620800,62006792400,61985602800,62006774400,-18000,0,'ACT',],[62006792400,62014564800,62006778000,62014550400,-14400,1,'ACST',],[62014564800,62035736400,62014546800,62035718400,-18000,0,'ACT',],[62035736400,62046100800,62035722000,62046086400,-14400,1,'ACST',],[62046100800,62067272400,62046082800,62067254400,-18000,0,'ACT',],[62067272400,62077723200,62067258000,62077708800,-14400,1,'ACST',],[62077723200,62635438800,62077705200,62635420800,-18000,0,'ACT',],[62635438800,62646926400,62635424400,62646912000,-14400,1,'ACST',],[62646926400,62666283600,62646908400,62666265600,-18000,0,'ACT',],[62666283600,62675956800,62666269200,62675942400,-14400,1,'ACST',],[62675956800,62697819600,62675938800,62697801600,-18000,0,'ACT',],[62697819600,62706888000,62697805200,62706873600,-14400,1,'ACST',],[62706888000,62725726800,62706870000,62725708800,-18000,0,'ACT',],[62725726800,63349966800,62725708800,63349948800,-18000,0,'ACT',],[63349966800,63519739200,63349952400,63519724800,-14400,0,'AMT',],[63519739200,DateTime::TimeZone::INFINITY,63519721200,DateTime::TimeZone::INFINITY,-18000,0,'ACT',],];sub olson_version {'2016a'}sub has_dst_changes {14}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_RIO_BRANCO

$fatpacked{"DateTime/TimeZone/America/Santarem.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_SANTAREM';
  package DateTime::TimeZone::America::Santarem;$DateTime::TimeZone::America::Santarem::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Santarem::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60368470728,DateTime::TimeZone::NEG_INFINITY,60368457600,-13128,0,'LMT',],[60368470728,60928729200,60368456328,60928714800,-14400,0,'AMT',],[60928729200,60944324400,60928718400,60944313600,-10800,1,'AMST',],[60944324400,60960312000,60944310000,60960297600,-14400,0,'AMT',],[60960312000,60975860400,60960301200,60975849600,-10800,1,'AMST',],[60975860400,61501867200,60975846000,61501852800,-14400,0,'AMT',],[61501867200,61513617600,61501856400,61513606800,-10800,1,'AMST',],[61513617600,61533403200,61513603200,61533388800,-14400,0,'AMT',],[61533403200,61543854000,61533392400,61543843200,-10800,1,'AMST',],[61543854000,61564939200,61543839600,61564924800,-14400,0,'AMT',],[61564939200,61575476400,61564928400,61575465600,-10800,1,'AMST',],[61575476400,61596561600,61575462000,61596547200,-14400,0,'AMT',],[61596561600,61604334000,61596550800,61604323200,-10800,1,'AMST',],[61604334000,61944321600,61604319600,61944307200,-14400,0,'AMT',],[61944321600,61951489200,61944310800,61951478400,-10800,1,'AMST',],[61951489200,61980523200,61951474800,61980508800,-14400,0,'AMT',],[61980523200,61985617200,61980512400,61985606400,-10800,1,'AMST',],[61985617200,62006788800,61985602800,62006774400,-14400,0,'AMT',],[62006788800,62014561200,62006778000,62014550400,-10800,1,'AMST',],[62014561200,62035732800,62014546800,62035718400,-14400,0,'AMT',],[62035732800,62046097200,62035722000,62046086400,-10800,1,'AMST',],[62046097200,62067268800,62046082800,62067254400,-14400,0,'AMT',],[62067268800,62077719600,62067258000,62077708800,-10800,1,'AMST',],[62077719600,62635435200,62077705200,62635420800,-14400,0,'AMT',],[62635435200,62646922800,62635424400,62646912000,-10800,1,'AMST',],[62646922800,62666280000,62646908400,62666265600,-14400,0,'AMT',],[62666280000,62675953200,62666269200,62675942400,-10800,1,'AMST',],[62675953200,62697816000,62675938800,62697801600,-14400,0,'AMT',],[62697816000,62706884400,62697805200,62706873600,-10800,1,'AMST',],[62706884400,62725723200,62706870000,62725708800,-14400,0,'AMT',],[62725723200,63349963200,62725708800,63349948800,-14400,0,'AMT',],[63349963200,DateTime::TimeZone::INFINITY,63349952400,DateTime::TimeZone::INFINITY,-10800,0,'BRT',],];sub olson_version {'2016a'}sub has_dst_changes {14}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_SANTAREM

$fatpacked{"DateTime/TimeZone/America/Santiago.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_SANTIAGO';
  package DateTime::TimeZone::America::Santiago;$DateTime::TimeZone::America::Santiago::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Santiago::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59611178566,DateTime::TimeZone::NEG_INFINITY,59611161600,-16966,0,'LMT',],[59611178566,60243021766,59611161600,60243004800,-16966,0,'SMT',],[60243021766,60447272400,60243003766,60447254400,-18000,0,'CLT',],[60447272400,60516477766,60447255434,60516460800,-16966,0,'SMT',],[60516477766,60541876800,60516463366,60541862400,-14400,0,'CLT',],[60541876800,60799696966,60541859834,60799680000,-16966,0,'SMT',],[60799696966,60818097600,60799682566,60818083200,-14400,1,'CLST',],[60818097600,60831320400,60818079600,60831302400,-18000,0,'CLT',],[60831320400,60849633600,60831306000,60849619200,-14400,1,'CLST',],[60849633600,60862856400,60849615600,60862838400,-18000,0,'CLT',],[60862856400,60881169600,60862842000,60881155200,-14400,1,'CLST',],[60881169600,60894392400,60881151600,60894374400,-18000,0,'CLT',],[60894392400,60912705600,60894378000,60912691200,-14400,1,'CLST',],[60912705600,60925928400,60912687600,60925910400,-18000,0,'CLT',],[60925928400,60944328000,60925914000,60944313600,-14400,1,'CLST',],[60944328000,60957550800,60944310000,60957532800,-18000,0,'CLT',],[60957550800,61265131200,60957536400,61265116800,-14400,0,'CLT',],[61265131200,61270405200,61265113200,61270387200,-18000,0,'CLT',],[61270405200,61395163200,61270390800,61395148800,-14400,0,'CLT',],[61395163200,61399306800,61395152400,61399296000,-10800,1,'CLST',],[61399306800,61417627200,61399292400,61417612800,-14400,0,'CLT',],[61417627200,61422033600,61417609200,61422015600,-18000,0,'CLT',],[61422033600,62099064000,61422019200,62099049600,-14400,0,'CLT',],[62099064000,62111761200,62099053200,62111750400,-10800,1,'CLST',],[62111761200,62132328000,62111746800,62132313600,-14400,0,'CLT',],[62132328000,62143210800,62132317200,62143200000,-10800,1,'CLST',],[62143210800,62160148800,62143196400,62160134400,-14400,0,'CLT',],[62160148800,62173450800,62160138000,62173440000,-10800,1,'CLST',],[62173450800,62191598400,62173436400,62191584000,-14400,0,'CLT',],[62191598400,62204900400,62191587600,62204889600,-10800,1,'CLST',],[62204900400,62223652800,62204886000,62223638400,-14400,0,'CLT',],[62223652800,62236350000,62223642000,62236339200,-10800,1,'CLST',],[62236350000,62253892800,62236335600,62253878400,-14400,0,'CLT',],[62253892800,62267799600,62253882000,62267788800,-10800,1,'CLST',],[62267799600,62286552000,62267785200,62286537600,-14400,0,'CLT',],[62286552000,62299249200,62286541200,62299238400,-10800,1,'CLST',],[62299249200,62318001600,62299234800,62317987200,-14400,0,'CLT',],[62318001600,62331303600,62317990800,62331292800,-10800,1,'CLST',],[62331303600,62349451200,62331289200,62349436800,-14400,0,'CLT',],[62349451200,62362753200,62349440400,62362742400,-10800,1,'CLST',],[62362753200,62380900800,62362738800,62380886400,-14400,0,'CLT',],[62380900800,62394202800,62380890000,62394192000,-10800,1,'CLST',],[62394202800,62412955200,62394188400,62412940800,-14400,0,'CLT',],[62412955200,62425652400,62412944400,62425641600,-10800,1,'CLST',],[62425652400,62444404800,62425638000,62444390400,-14400,0,'CLT',],[62444404800,62457102000,62444394000,62457091200,-10800,1,'CLST',],[62457102000,62475854400,62457087600,62475840000,-14400,0,'CLT',],[62475854400,62489156400,62475843600,62489145600,-10800,1,'CLST',],[62489156400,62507304000,62489142000,62507289600,-14400,0,'CLT',],[62507304000,62520606000,62507293200,62520595200,-10800,1,'CLST',],[62520606000,62538753600,62520591600,62538739200,-14400,0,'CLT',],[62538753600,62552055600,62538742800,62552044800,-10800,1,'CLST',],[62552055600,62570203200,62552041200,62570188800,-14400,0,'CLT',],[62570203200,62583505200,62570192400,62583494400,-10800,1,'CLST',],[62583505200,62602257600,62583490800,62602243200,-14400,0,'CLT',],[62602257600,62614954800,62602246800,62614944000,-10800,1,'CLST',],[62614954800,62633707200,62614940400,62633692800,-14400,0,'CLT',],[62633707200,62646404400,62633696400,62646393600,-10800,1,'CLST',],[62646404400,62665156800,62646390000,62665142400,-14400,0,'CLT',],[62665156800,62680878000,62665146000,62680867200,-10800,1,'CLST',],[62680878000,62696606400,62680863600,62696592000,-14400,0,'CLT',],[62696606400,62709908400,62696595600,62709897600,-10800,1,'CLST',],[62709908400,62728056000,62709894000,62728041600,-14400,0,'CLT',],[62728056000,62741358000,62728045200,62741347200,-10800,1,'CLST',],[62741358000,62760110400,62741343600,62760096000,-14400,0,'CLT',],[62760110400,62772807600,62760099600,62772796800,-10800,1,'CLST',],[62772807600,62789140800,62772793200,62789126400,-14400,0,'CLT',],[62789140800,62804257200,62789130000,62804246400,-10800,1,'CLST',],[62804257200,62823009600,62804242800,62822995200,-14400,0,'CLT',],[62823009600,62836311600,62822998800,62836300800,-10800,1,'CLST',],[62836311600,62854459200,62836297200,62854444800,-14400,0,'CLT',],[62854459200,62867761200,62854448400,62867750400,-10800,1,'CLST',],[62867761200,62885908800,62867746800,62885894400,-14400,0,'CLT',],[62885908800,62899210800,62885898000,62899200000,-10800,1,'CLST',],[62899210800,62917358400,62899196400,62917344000,-14400,0,'CLT',],[62917358400,62930660400,62917347600,62930649600,-10800,1,'CLST',],[62930660400,62949412800,62930646000,62949398400,-14400,0,'CLT',],[62949412800,62962110000,62949402000,62962099200,-10800,1,'CLST',],[62962110000,62980862400,62962095600,62980848000,-14400,0,'CLT',],[62980862400,62995374000,62980851600,62995363200,-10800,1,'CLST',],[62995374000,63012312000,62995359600,63012297600,-14400,0,'CLT',],[63012312000,63025614000,63012301200,63025603200,-10800,1,'CLST',],[63025614000,63042552000,63025599600,63042537600,-14400,0,'CLT',],[63042552000,63058878000,63042541200,63058867200,-10800,1,'CLST',],[63058878000,63075211200,63058863600,63075196800,-14400,0,'CLT',],[63075211200,63088513200,63075200400,63088502400,-10800,1,'CLST',],[63088513200,63107265600,63088498800,63107251200,-14400,0,'CLT',],[63107265600,63119962800,63107254800,63119952000,-10800,1,'CLST',],[63119962800,63138715200,63119948400,63138700800,-14400,0,'CLT',],[63138715200,63151412400,63138704400,63151401600,-10800,1,'CLST',],[63151412400,63170164800,63151398000,63170150400,-14400,0,'CLT',],[63170164800,63182862000,63170154000,63182851200,-10800,1,'CLST',],[63182862000,63201614400,63182847600,63201600000,-14400,0,'CLT',],[63201614400,63214916400,63201603600,63214905600,-10800,1,'CLST',],[63214916400,63233064000,63214902000,63233049600,-14400,0,'CLT',],[63233064000,63246366000,63233053200,63246355200,-10800,1,'CLST',],[63246366000,63264513600,63246351600,63264499200,-14400,0,'CLT',],[63264513600,63277815600,63264502800,63277804800,-10800,1,'CLST',],[63277815600,63296568000,63277801200,63296553600,-14400,0,'CLT',],[63296568000,63309265200,63296557200,63309254400,-10800,1,'CLST',],[63309265200,63328017600,63309250800,63328003200,-14400,0,'CLT',],[63328017600,63342529200,63328006800,63342518400,-10800,1,'CLST',],[63342529200,63359467200,63342514800,63359452800,-14400,0,'CLT',],[63359467200,63372769200,63359456400,63372758400,-10800,1,'CLST',],[63372769200,63390916800,63372754800,63390902400,-14400,0,'CLT',],[63390916800,63406033200,63390906000,63406022400,-10800,1,'CLST',],[63406033200,63422366400,63406018800,63422352000,-14400,0,'CLT',],[63422366400,63440506800,63422355600,63440496000,-10800,1,'CLST',],[63440506800,63449582400,63440492400,63449568000,-14400,0,'CLT',],[63449582400,63471351600,63449571600,63471340800,-10800,1,'CLST',],[63471351600,63482241600,63471337200,63482227200,-14400,0,'CLT',],[63482241600,63502801200,63482230800,63502790400,-10800,1,'CLST',],[63502801200,63514296000,63502786800,63514281600,-14400,0,'CLT',],[63514296000,63534250800,63514285200,63534240000,-10800,1,'CLST',],[63534250800,63545745600,63534236400,63545731200,-14400,0,'CLT',],[63545745600,63565700400,63545734800,63565689600,-10800,1,'CLST',],[63565700400,DateTime::TimeZone::INFINITY,63565689600,DateTime::TimeZone::INFINITY,-10800,0,'CLT',],];sub olson_version {'2016a'}sub has_dst_changes {53}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_SANTIAGO

$fatpacked{"DateTime/TimeZone/America/Santo_Domingo.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_SANTO_DOMINGO';
  package DateTime::TimeZone::America::Santo_Domingo;$DateTime::TimeZone::America::Santo_Domingo::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Santo_Domingo::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59611178376,DateTime::TimeZone::NEG_INFINITY,59611161600,-16776,0,'LMT',],[59611178376,60975909600,59611161576,60975892800,-16800,0,'SDMT',],[60975909600,62035563600,60975891600,62035545600,-18000,0,'EST',],[62035563600,62046014400,62035549200,62046000000,-14400,1,'EDT',],[62046014400,62129912400,62045996400,62129894400,-18000,0,'EST',],[62129912400,62140105800,62129896200,62140089600,-16200,1,'EHDT',],[62140105800,62161362000,62140087800,62161344000,-18000,0,'EST',],[62161362000,62168877000,62161345800,62168860800,-16200,1,'EHDT',],[62168877000,62193416400,62168859000,62193398400,-18000,0,'EST',],[62193416400,62200499400,62193400200,62200483200,-16200,1,'EHDT',],[62200499400,62224866000,62200481400,62224848000,-18000,0,'EST',],[62224866000,62232121800,62224849800,62232105600,-16200,1,'EHDT',],[62232121800,62256315600,62232103800,62256297600,-18000,0,'EST',],[62256315600,62263657800,62256299400,62263641600,-16200,1,'EHDT',],[62263657800,62287765200,62263639800,62287747200,-18000,0,'EST',],[62287765200,63108482400,62287750800,63108468000,-14400,0,'AST',],[63108482400,63111506400,63108464400,63111488400,-18000,0,'EST',],[63111506400,DateTime::TimeZone::INFINITY,63111492000,DateTime::TimeZone::INFINITY,-14400,0,'AST',],];sub olson_version {'2016a'}sub has_dst_changes {6}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_SANTO_DOMINGO

$fatpacked{"DateTime/TimeZone/America/Sao_Paulo.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_SAO_PAULO';
  package DateTime::TimeZone::America::Sao_Paulo;$DateTime::TimeZone::America::Sao_Paulo::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Sao_Paulo::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60368468788,DateTime::TimeZone::NEG_INFINITY,60368457600,-11188,0,'LMT',],[60368468788,60928725600,60368457988,60928714800,-10800,0,'BRT',],[60928725600,60944320800,60928718400,60944313600,-7200,1,'BRST',],[60944320800,60960308400,60944310000,60960297600,-10800,0,'BRT',],[60960308400,60975856800,60960301200,60975849600,-7200,1,'BRST',],[60975856800,61501863600,60975846000,61501852800,-10800,0,'BRT',],[61501863600,61513614000,61501856400,61513606800,-7200,1,'BRST',],[61513614000,61533399600,61513603200,61533388800,-10800,0,'BRT',],[61533399600,61543850400,61533392400,61543843200,-7200,1,'BRST',],[61543850400,61564935600,61543839600,61564924800,-10800,0,'BRT',],[61564935600,61575472800,61564928400,61575465600,-7200,1,'BRST',],[61575472800,61596558000,61575462000,61596547200,-10800,0,'BRT',],[61596558000,61604330400,61596550800,61604323200,-7200,1,'BRST',],[61604330400,61940257200,61604319600,61940246400,-10800,0,'BRT',],[61940257200,61946301600,61940250000,61946294400,-7200,1,'BRST',],[61946301600,61951485600,61946294400,61951478400,-7200,1,'BRST',],[61951485600,61980519600,61951474800,61980508800,-10800,0,'BRT',],[61980519600,61985613600,61980512400,61985606400,-7200,1,'BRST',],[61985613600,62006785200,61985602800,62006774400,-10800,0,'BRT',],[62006785200,62014557600,62006778000,62014550400,-7200,1,'BRST',],[62014557600,62035729200,62014546800,62035718400,-10800,0,'BRT',],[62035729200,62046093600,62035722000,62046086400,-7200,1,'BRST',],[62046093600,62067265200,62046082800,62067254400,-10800,0,'BRT',],[62067265200,62077716000,62067258000,62077708800,-7200,1,'BRST',],[62077716000,62635431600,62077705200,62635420800,-10800,0,'BRT',],[62635431600,62646919200,62635424400,62646912000,-7200,1,'BRST',],[62646919200,62666276400,62646908400,62666265600,-10800,0,'BRT',],[62666276400,62675949600,62666269200,62675942400,-7200,1,'BRST',],[62675949600,62697812400,62675938800,62697801600,-10800,0,'BRT',],[62697812400,62706880800,62697805200,62706873600,-7200,1,'BRST',],[62706880800,62728657200,62706870000,62728646400,-10800,0,'BRT',],[62728657200,62737725600,62728650000,62737718400,-7200,1,'BRST',],[62737725600,62760106800,62737714800,62760096000,-10800,0,'BRT',],[62760106800,62770384800,62760099600,62770377600,-7200,1,'BRST',],[62770384800,62792161200,62770374000,62792150400,-10800,0,'BRT',],[62792161200,62802439200,62792154000,62802432000,-7200,1,'BRST',],[62802439200,62823610800,62802428400,62823600000,-10800,0,'BRT',],[62823610800,62833284000,62823603600,62833276800,-7200,1,'BRST',],[62833284000,62855665200,62833273200,62855654400,-10800,0,'BRT',],[62855665200,62864128800,62855658000,62864121600,-7200,1,'BRST',],[62864128800,62886510000,62864118000,62886499200,-10800,0,'BRT',],[62886510000,62897392800,62886502800,62897385600,-7200,1,'BRST',],[62897392800,62917959600,62897382000,62917948800,-10800,0,'BRT',],[62917959600,62928842400,62917952400,62928835200,-7200,1,'BRST',],[62928842400,62949409200,62928831600,62949398400,-10800,0,'BRT',],[62949409200,62959687200,62949402000,62959680000,-7200,1,'BRST',],[62959687200,62980254000,62959676400,62980243200,-10800,0,'BRT',],[62980254000,62991741600,62980246800,62991734400,-7200,1,'BRST',],[62991741600,63011790000,62991730800,63011779200,-10800,0,'BRT',],[63011790000,63024400800,63011782800,63024393600,-7200,1,'BRST',],[63024400800,63043758000,63024390000,63043747200,-10800,0,'BRT',],[63043758000,63055245600,63043750800,63055238400,-7200,1,'BRST',],[63055245600,63074602800,63055234800,63074592000,-10800,0,'BRT',],[63074602800,63087300000,63074595600,63087292800,-7200,1,'BRST',],[63087300000,63106657200,63087289200,63106646400,-10800,0,'BRT',],[63106657200,63118144800,63106650000,63118137600,-7200,1,'BRST',],[63118144800,63138711600,63118134000,63138700800,-10800,0,'BRT',],[63138711600,63149594400,63138704400,63149587200,-7200,1,'BRST',],[63149594400,63171975600,63149583600,63171964800,-10800,0,'BRT',],[63171975600,63181044000,63171968400,63181036800,-7200,1,'BRST',],[63181044000,63202215600,63181033200,63202204800,-10800,0,'BRT',],[63202215600,63212493600,63202208400,63212486400,-7200,1,'BRST',],[63212493600,63235047600,63212482800,63235036800,-10800,0,'BRT',],[63235047600,63244548000,63235040400,63244540800,-7200,1,'BRST',],[63244548000,63265114800,63244537200,63265104000,-10800,0,'BRT',],[63265114800,63275997600,63265107600,63275990400,-7200,1,'BRST',],[63275997600,63298378800,63275986800,63298368000,-10800,0,'BRT',],[63298378800,63308052000,63298371600,63308044800,-7200,1,'BRST',],[63308052000,63328014000,63308041200,63328003200,-10800,0,'BRT',],[63328014000,63338896800,63328006800,63338889600,-7200,1,'BRST',],[63338896800,63360068400,63338886000,63360057600,-10800,0,'BRT',],[63360068400,63370346400,63360061200,63370339200,-7200,1,'BRST',],[63370346400,63391518000,63370335600,63391507200,-10800,0,'BRT',],[63391518000,63402400800,63391510800,63402393600,-7200,1,'BRST',],[63402400800,63422967600,63402390000,63422956800,-10800,0,'BRT',],[63422967600,63433850400,63422960400,63433843200,-7200,1,'BRST',],[63433850400,63454417200,63433839600,63454406400,-10800,0,'BRT',],[63454417200,63465904800,63454410000,63465897600,-7200,1,'BRST',],[63465904800,63486471600,63465894000,63486460800,-10800,0,'BRT',],[63486471600,63496749600,63486464400,63496742400,-7200,1,'BRST',],[63496749600,63517921200,63496738800,63517910400,-10800,0,'BRT',],[63517921200,63528199200,63517914000,63528192000,-7200,1,'BRST',],[63528199200,63549370800,63528188400,63549360000,-10800,0,'BRT',],[63549370800,63560253600,63549363600,63560246400,-7200,1,'BRST',],[63560253600,63580820400,63560242800,63580809600,-10800,0,'BRT',],[63580820400,63591703200,63580813200,63591696000,-7200,1,'BRST',],[63591703200,63612270000,63591692400,63612259200,-10800,0,'BRT',],[63612270000,63623152800,63612262800,63623145600,-7200,1,'BRST',],[63623152800,63643719600,63623142000,63643708800,-10800,0,'BRT',],[63643719600,63654602400,63643712400,63654595200,-7200,1,'BRST',],[63654602400,63675774000,63654591600,63675763200,-10800,0,'BRT',],[63675774000,63686052000,63675766800,63686044800,-7200,1,'BRST',],[63686052000,63707223600,63686041200,63707212800,-10800,0,'BRT',],[63707223600,63717501600,63707216400,63717494400,-7200,1,'BRST',],[63717501600,63738673200,63717490800,63738662400,-10800,0,'BRT',],[63738673200,63749556000,63738666000,63749548800,-7200,1,'BRST',],[63749556000,63770122800,63749545200,63770112000,-10800,0,'BRT',],[63770122800,63781005600,63770115600,63780998400,-7200,1,'BRST',],[63781005600,63801572400,63780994800,63801561600,-10800,0,'BRT',],[63801572400,63813060000,63801565200,63813052800,-7200,1,'BRST',],[63813060000,63833022000,63813049200,63833011200,-10800,0,'BRT',],[63833022000,63843904800,63833014800,63843897600,-7200,1,'BRST',],[63843904800,63865076400,63843894000,63865065600,-10800,0,'BRT',],[63865076400,63875354400,63865069200,63875347200,-7200,1,'BRST',],[63875354400,63896526000,63875343600,63896515200,-10800,0,'BRT',],[63896526000,63907408800,63896518800,63907401600,-7200,1,'BRST',],[63907408800,63927975600,63907398000,63927964800,-10800,0,'BRT',],[63927975600,63938858400,63927968400,63938851200,-7200,1,'BRST',],[63938858400,63959425200,63938847600,63959414400,-10800,0,'BRT',],[63959425200,63970308000,63959418000,63970300800,-7200,1,'BRST',],[63970308000,63990874800,63970297200,63990864000,-10800,0,'BRT',],[63990874800,64001757600,63990867600,64001750400,-7200,1,'BRST',],[64001757600,64022929200,64001746800,64022918400,-10800,0,'BRT',],[64022929200,64033207200,64022922000,64033200000,-7200,1,'BRST',],[64033207200,64054378800,64033196400,64054368000,-10800,0,'BRT',],[64054378800,64064656800,64054371600,64064649600,-7200,1,'BRST',],[64064656800,64085828400,64064646000,64085817600,-10800,0,'BRT',],[64085828400,64096106400,64085821200,64096099200,-7200,1,'BRST',],[64096106400,64117278000,64096095600,64117267200,-10800,0,'BRT',],[64117278000,64128160800,64117270800,64128153600,-7200,1,'BRST',],[64128160800,64148727600,64128150000,64148716800,-10800,0,'BRT',],[64148727600,64160215200,64148720400,64160208000,-7200,1,'BRST',],[64160215200,64180177200,64160204400,64180166400,-10800,0,'BRT',],[64180177200,64191060000,64180170000,64191052800,-7200,1,'BRST',],[64191060000,64212231600,64191049200,64212220800,-10800,0,'BRT',],[64212231600,64222509600,64212224400,64222502400,-7200,1,'BRST',],[64222509600,64243681200,64222498800,64243670400,-10800,0,'BRT',],[64243681200,64254564000,64243674000,64254556800,-7200,1,'BRST',],[64254564000,64275130800,64254553200,64275120000,-10800,0,'BRT',],[64275130800,64286013600,64275123600,64286006400,-7200,1,'BRST',],[64286013600,64306580400,64286002800,64306569600,-10800,0,'BRT',],[64306580400,64317463200,64306573200,64317456000,-7200,1,'BRST',],[64317463200,64338030000,64317452400,64338019200,-10800,0,'BRT',],];sub olson_version {'2016a'}sub has_dst_changes {67}sub _max_year {2038}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-10800}my$last_observance=bless({'format'=>'BR%sT','gmtoff'=>'-3:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>716971,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>716971,'utc_rd_secs'=>0,'utc_year'=>1965 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-10800,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>716971,'local_rd_secs'=>7200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>716971,'utc_rd_secs'=>7200,'utc_year'=>1965 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'0:00','from'=>'2008','in'=>'Oct','letter'=>'S','name'=>'Brazil','offset_from_std'=>3600,'on'=>'Sun>=15','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'0:00','from'=>'2038','in'=>'Feb','letter'=>'','name'=>'Brazil','offset_from_std'=>0,'on'=>'Sun>=15','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_SAO_PAULO

$fatpacked{"DateTime/TimeZone/America/Scoresbysund.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_SCORESBYSUND';
  package DateTime::TimeZone::America::Scoresbysund;$DateTime::TimeZone::America::Scoresbysund::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Scoresbysund::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60449592472,DateTime::TimeZone::NEG_INFINITY,60449587200,-5272,0,'LMT',],[60449592472,62459524800,60449585272,62459517600,-7200,0,'CGT',],[62459524800,62474644800,62459521200,62474641200,-3600,1,'CGST',],[62474644800,62490362400,62474637600,62490355200,-7200,0,'CGT',],[62490362400,62506083600,62490362400,62506083600,0,1,'EGST',],[62506083600,62521808400,62506080000,62521804800,-3600,0,'EGT',],[62521808400,62537533200,62521808400,62537533200,0,1,'EGST',],[62537533200,62553258000,62537529600,62553254400,-3600,0,'EGT',],[62553258000,62568982800,62553258000,62568982800,0,1,'EGST',],[62568982800,62584707600,62568979200,62584704000,-3600,0,'EGT',],[62584707600,62601037200,62584707600,62601037200,0,1,'EGST',],[62601037200,62616762000,62601033600,62616758400,-3600,0,'EGT',],[62616762000,62632486800,62616762000,62632486800,0,1,'EGST',],[62632486800,62648211600,62632483200,62648208000,-3600,0,'EGT',],[62648211600,62663936400,62648211600,62663936400,0,1,'EGST',],[62663936400,62679661200,62663932800,62679657600,-3600,0,'EGT',],[62679661200,62695386000,62679661200,62695386000,0,1,'EGST',],[62695386000,62711110800,62695382400,62711107200,-3600,0,'EGT',],[62711110800,62726835600,62711110800,62726835600,0,1,'EGST',],[62726835600,62742560400,62726832000,62742556800,-3600,0,'EGT',],[62742560400,62758285200,62742560400,62758285200,0,1,'EGST',],[62758285200,62774010000,62758281600,62774006400,-3600,0,'EGT',],[62774010000,62790339600,62774010000,62790339600,0,1,'EGST',],[62790339600,62806064400,62790336000,62806060800,-3600,0,'EGT',],[62806064400,62821789200,62806064400,62821789200,0,1,'EGST',],[62821789200,62837514000,62821785600,62837510400,-3600,0,'EGT',],[62837514000,62853238800,62837514000,62853238800,0,1,'EGST',],[62853238800,62868963600,62853235200,62868960000,-3600,0,'EGT',],[62868963600,62884688400,62868963600,62884688400,0,1,'EGST',],[62884688400,62900413200,62884684800,62900409600,-3600,0,'EGT',],[62900413200,62916138000,62900413200,62916138000,0,1,'EGST',],[62916138000,62931862800,62916134400,62931859200,-3600,0,'EGT',],[62931862800,62947587600,62931862800,62947587600,0,1,'EGST',],[62947587600,62963917200,62947584000,62963913600,-3600,0,'EGT',],[62963917200,62982061200,62963917200,62982061200,0,1,'EGST',],[62982061200,62995366800,62982057600,62995363200,-3600,0,'EGT',],[62995366800,63013510800,62995366800,63013510800,0,1,'EGST',],[63013510800,63026816400,63013507200,63026812800,-3600,0,'EGT',],[63026816400,63044960400,63026816400,63044960400,0,1,'EGST',],[63044960400,63058266000,63044956800,63058262400,-3600,0,'EGT',],[63058266000,63077014800,63058266000,63077014800,0,1,'EGST',],[63077014800,63089715600,63077011200,63089712000,-3600,0,'EGT',],[63089715600,63108464400,63089715600,63108464400,0,1,'EGST',],[63108464400,63121165200,63108460800,63121161600,-3600,0,'EGT',],[63121165200,63139914000,63121165200,63139914000,0,1,'EGST',],[63139914000,63153219600,63139910400,63153216000,-3600,0,'EGT',],[63153219600,63171363600,63153219600,63171363600,0,1,'EGST',],[63171363600,63184669200,63171360000,63184665600,-3600,0,'EGT',],[63184669200,63202813200,63184669200,63202813200,0,1,'EGST',],[63202813200,63216118800,63202809600,63216115200,-3600,0,'EGT',],[63216118800,63234867600,63216118800,63234867600,0,1,'EGST',],[63234867600,63247568400,63234864000,63247564800,-3600,0,'EGT',],[63247568400,63266317200,63247568400,63266317200,0,1,'EGST',],[63266317200,63279018000,63266313600,63279014400,-3600,0,'EGT',],[63279018000,63297766800,63279018000,63297766800,0,1,'EGST',],[63297766800,63310467600,63297763200,63310464000,-3600,0,'EGT',],[63310467600,63329216400,63310467600,63329216400,0,1,'EGST',],[63329216400,63342522000,63329212800,63342518400,-3600,0,'EGT',],[63342522000,63360666000,63342522000,63360666000,0,1,'EGST',],[63360666000,63373971600,63360662400,63373968000,-3600,0,'EGT',],[63373971600,63392115600,63373971600,63392115600,0,1,'EGST',],[63392115600,63405421200,63392112000,63405417600,-3600,0,'EGT',],[63405421200,63424170000,63405421200,63424170000,0,1,'EGST',],[63424170000,63436870800,63424166400,63436867200,-3600,0,'EGT',],[63436870800,63455619600,63436870800,63455619600,0,1,'EGST',],[63455619600,63468320400,63455616000,63468316800,-3600,0,'EGT',],[63468320400,63487069200,63468320400,63487069200,0,1,'EGST',],[63487069200,63500374800,63487065600,63500371200,-3600,0,'EGT',],[63500374800,63518518800,63500374800,63518518800,0,1,'EGST',],[63518518800,63531824400,63518515200,63531820800,-3600,0,'EGT',],[63531824400,63549968400,63531824400,63549968400,0,1,'EGST',],[63549968400,63563274000,63549964800,63563270400,-3600,0,'EGT',],[63563274000,63581418000,63563274000,63581418000,0,1,'EGST',],[63581418000,63594723600,63581414400,63594720000,-3600,0,'EGT',],[63594723600,63613472400,63594723600,63613472400,0,1,'EGST',],[63613472400,63626173200,63613468800,63626169600,-3600,0,'EGT',],[63626173200,63644922000,63626173200,63644922000,0,1,'EGST',],[63644922000,63657622800,63644918400,63657619200,-3600,0,'EGT',],[63657622800,63676371600,63657622800,63676371600,0,1,'EGST',],[63676371600,63689677200,63676368000,63689673600,-3600,0,'EGT',],[63689677200,63707821200,63689677200,63707821200,0,1,'EGST',],[63707821200,63721126800,63707817600,63721123200,-3600,0,'EGT',],[63721126800,63739270800,63721126800,63739270800,0,1,'EGST',],[63739270800,63752576400,63739267200,63752572800,-3600,0,'EGT',],[63752576400,63771325200,63752576400,63771325200,0,1,'EGST',],[63771325200,63784026000,63771321600,63784022400,-3600,0,'EGT',],[63784026000,63802774800,63784026000,63802774800,0,1,'EGST',],[63802774800,63815475600,63802771200,63815472000,-3600,0,'EGT',],[63815475600,63834224400,63815475600,63834224400,0,1,'EGST',],[63834224400,63847530000,63834220800,63847526400,-3600,0,'EGT',],[63847530000,63865674000,63847530000,63865674000,0,1,'EGST',],[63865674000,63878979600,63865670400,63878976000,-3600,0,'EGT',],[63878979600,63897123600,63878979600,63897123600,0,1,'EGST',],[63897123600,63910429200,63897120000,63910425600,-3600,0,'EGT',],[63910429200,63928573200,63910429200,63928573200,0,1,'EGST',],[63928573200,63941878800,63928569600,63941875200,-3600,0,'EGT',],[63941878800,63960627600,63941878800,63960627600,0,1,'EGST',],];sub olson_version {'2016a'}sub has_dst_changes {48}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-3600}my$last_observance=bless({'format'=>'EG%sT','gmtoff'=>'-1:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>723268,'local_rd_secs'=>7200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>723268,'utc_rd_secs'=>7200,'utc_year'=>1982 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-3600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>723268,'local_rd_secs'=>7200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>723268,'utc_rd_secs'=>7200,'utc_year'=>1982 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_SCORESBYSUND

$fatpacked{"DateTime/TimeZone/America/Sitka.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_SITKA';
  package DateTime::TimeZone::America::Sitka;$DateTime::TimeZone::America::Sitka::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Sitka::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,58910317273,DateTime::TimeZone::NEG_INFINITY,58910371200,53927,0,'LMT',],[58910317273,59946728473,58910284800,59946696000,-32473,0,'LMT',],[59946728473,61252099200,59946699673,61252070400,-28800,0,'PST',],[61252099200,61255476000,61252070400,61255447200,-28800,0,'PST',],[61255476000,61366287600,61255450800,61366262400,-25200,1,'PWT',],[61366287600,61370298000,61366262400,61370272800,-25200,1,'PPT',],[61370298000,61378329600,61370269200,61378300800,-28800,0,'PST',],[61378329600,62104176000,61378300800,62104147200,-28800,0,'PST',],[62104176000,62114205600,62104147200,62114176800,-28800,0,'PST',],[62114205600,62129926800,62114180400,62129901600,-25200,1,'PDT',],[62129926800,62145655200,62129898000,62145626400,-28800,0,'PST',],[62145655200,62161376400,62145630000,62161351200,-25200,1,'PDT',],[62161376400,62177104800,62161347600,62177076000,-28800,0,'PST',],[62177104800,62193430800,62177079600,62193405600,-25200,1,'PDT',],[62193430800,62209159200,62193402000,62209130400,-28800,0,'PST',],[62209159200,62224880400,62209134000,62224855200,-25200,1,'PDT',],[62224880400,62240608800,62224851600,62240580000,-28800,0,'PST',],[62240608800,62256330000,62240583600,62256304800,-25200,1,'PDT',],[62256330000,62262381600,62256301200,62262352800,-28800,0,'PST',],[62262381600,62287779600,62262356400,62287754400,-25200,1,'PDT',],[62287779600,62298064800,62287750800,62298036000,-28800,0,'PST',],[62298064800,62319229200,62298039600,62319204000,-25200,1,'PDT',],[62319229200,62334957600,62319200400,62334928800,-28800,0,'PST',],[62334957600,62351283600,62334932400,62351258400,-25200,1,'PDT',],[62351283600,62366407200,62351254800,62366378400,-28800,0,'PST',],[62366407200,62382733200,62366382000,62382708000,-25200,1,'PDT',],[62382733200,62398461600,62382704400,62398432800,-28800,0,'PST',],[62398461600,62414182800,62398436400,62414157600,-25200,1,'PDT',],[62414182800,62429911200,62414154000,62429882400,-28800,0,'PST',],[62429911200,62445632400,62429886000,62445607200,-25200,1,'PDT',],[62445632400,62461360800,62445603600,62461332000,-28800,0,'PST',],[62461360800,62477082000,62461335600,62477056800,-25200,1,'PDT',],[62477082000,62492810400,62477053200,62492781600,-28800,0,'PST',],[62492810400,62508531600,62492785200,62508506400,-25200,1,'PDT',],[62508531600,62524260000,62508502800,62524231200,-28800,0,'PST',],[62524260000,62540586000,62524234800,62540560800,-25200,1,'PDT',],[62540586000,62555709600,62540557200,62555680800,-28800,0,'PST',],[62555709600,62572035600,62555684400,62572010400,-25200,1,'PDT',],[62572035600,62574714000,62572003200,62574681600,-32400,0,'YST',],[62574714000,62587767600,62574681600,62587735200,-32400,0,'AKST',],[62587767600,62603488800,62587738800,62603460000,-28800,1,'AKDT',],[62603488800,62619217200,62603456400,62619184800,-32400,0,'AKST',],[62619217200,62634938400,62619188400,62634909600,-28800,1,'AKDT',],[62634938400,62650666800,62634906000,62650634400,-32400,0,'AKST',],[62650666800,62666388000,62650638000,62666359200,-28800,1,'AKDT',],[62666388000,62680302000,62666355600,62680269600,-32400,0,'AKST',],[62680302000,62697837600,62680273200,62697808800,-28800,1,'AKDT',],[62697837600,62711751600,62697805200,62711719200,-32400,0,'AKST',],[62711751600,62729892000,62711722800,62729863200,-28800,1,'AKDT',],[62729892000,62743201200,62729859600,62743168800,-32400,0,'AKST',],[62743201200,62761341600,62743172400,62761312800,-28800,1,'AKDT',],[62761341600,62774650800,62761309200,62774618400,-32400,0,'AKST',],[62774650800,62792791200,62774622000,62792762400,-28800,1,'AKDT',],[62792791200,62806705200,62792758800,62806672800,-32400,0,'AKST',],[62806705200,62824240800,62806676400,62824212000,-28800,1,'AKDT',],[62824240800,62838154800,62824208400,62838122400,-32400,0,'AKST',],[62838154800,62855690400,62838126000,62855661600,-28800,1,'AKDT',],[62855690400,62869604400,62855658000,62869572000,-32400,0,'AKST',],[62869604400,62887744800,62869575600,62887716000,-28800,1,'AKDT',],[62887744800,62901054000,62887712400,62901021600,-32400,0,'AKST',],[62901054000,62919194400,62901025200,62919165600,-28800,1,'AKDT',],[62919194400,62932503600,62919162000,62932471200,-32400,0,'AKST',],[62932503600,62950644000,62932474800,62950615200,-28800,1,'AKDT',],[62950644000,62964558000,62950611600,62964525600,-32400,0,'AKST',],[62964558000,62982093600,62964529200,62982064800,-28800,1,'AKDT',],[62982093600,62996007600,62982061200,62995975200,-32400,0,'AKST',],[62996007600,63013543200,62995978800,63013514400,-28800,1,'AKDT',],[63013543200,63027457200,63013510800,63027424800,-32400,0,'AKST',],[63027457200,63044992800,63027428400,63044964000,-28800,1,'AKDT',],[63044992800,63058906800,63044960400,63058874400,-32400,0,'AKST',],[63058906800,63077047200,63058878000,63077018400,-28800,1,'AKDT',],[63077047200,63090356400,63077014800,63090324000,-32400,0,'AKST',],[63090356400,63108496800,63090327600,63108468000,-28800,1,'AKDT',],[63108496800,63121806000,63108464400,63121773600,-32400,0,'AKST',],[63121806000,63139946400,63121777200,63139917600,-28800,1,'AKDT',],[63139946400,63153860400,63139914000,63153828000,-32400,0,'AKST',],[63153860400,63171396000,63153831600,63171367200,-28800,1,'AKDT',],[63171396000,63185310000,63171363600,63185277600,-32400,0,'AKST',],[63185310000,63202845600,63185281200,63202816800,-28800,1,'AKDT',],[63202845600,63216759600,63202813200,63216727200,-32400,0,'AKST',],[63216759600,63234900000,63216730800,63234871200,-28800,1,'AKDT',],[63234900000,63248209200,63234867600,63248176800,-32400,0,'AKST',],[63248209200,63266349600,63248180400,63266320800,-28800,1,'AKDT',],[63266349600,63279658800,63266317200,63279626400,-32400,0,'AKST',],[63279658800,63297799200,63279630000,63297770400,-28800,1,'AKDT',],[63297799200,63309294000,63297766800,63309261600,-32400,0,'AKST',],[63309294000,63329853600,63309265200,63329824800,-28800,1,'AKDT',],[63329853600,63340743600,63329821200,63340711200,-32400,0,'AKST',],[63340743600,63361303200,63340714800,63361274400,-28800,1,'AKDT',],[63361303200,63372193200,63361270800,63372160800,-32400,0,'AKST',],[63372193200,63392752800,63372164400,63392724000,-28800,1,'AKDT',],[63392752800,63404247600,63392720400,63404215200,-32400,0,'AKST',],[63404247600,63424807200,63404218800,63424778400,-28800,1,'AKDT',],[63424807200,63435697200,63424774800,63435664800,-32400,0,'AKST',],[63435697200,63456256800,63435668400,63456228000,-28800,1,'AKDT',],[63456256800,63467146800,63456224400,63467114400,-32400,0,'AKST',],[63467146800,63487706400,63467118000,63487677600,-28800,1,'AKDT',],[63487706400,63498596400,63487674000,63498564000,-32400,0,'AKST',],[63498596400,63519156000,63498567600,63519127200,-28800,1,'AKDT',],[63519156000,63530046000,63519123600,63530013600,-32400,0,'AKST',],[63530046000,63550605600,63530017200,63550576800,-28800,1,'AKDT',],[63550605600,63561495600,63550573200,63561463200,-32400,0,'AKST',],[63561495600,63582055200,63561466800,63582026400,-28800,1,'AKDT',],[63582055200,63593550000,63582022800,63593517600,-32400,0,'AKST',],[63593550000,63614109600,63593521200,63614080800,-28800,1,'AKDT',],[63614109600,63624999600,63614077200,63624967200,-32400,0,'AKST',],[63624999600,63645559200,63624970800,63645530400,-28800,1,'AKDT',],[63645559200,63656449200,63645526800,63656416800,-32400,0,'AKST',],[63656449200,63677008800,63656420400,63676980000,-28800,1,'AKDT',],[63677008800,63687898800,63676976400,63687866400,-32400,0,'AKST',],[63687898800,63708458400,63687870000,63708429600,-28800,1,'AKDT',],[63708458400,63719348400,63708426000,63719316000,-32400,0,'AKST',],[63719348400,63739908000,63719319600,63739879200,-28800,1,'AKDT',],[63739908000,63751402800,63739875600,63751370400,-32400,0,'AKST',],[63751402800,63771962400,63751374000,63771933600,-28800,1,'AKDT',],[63771962400,63782852400,63771930000,63782820000,-32400,0,'AKST',],[63782852400,63803412000,63782823600,63803383200,-28800,1,'AKDT',],[63803412000,63814302000,63803379600,63814269600,-32400,0,'AKST',],[63814302000,63834861600,63814273200,63834832800,-28800,1,'AKDT',],[63834861600,63845751600,63834829200,63845719200,-32400,0,'AKST',],[63845751600,63866311200,63845722800,63866282400,-28800,1,'AKDT',],[63866311200,63877201200,63866278800,63877168800,-32400,0,'AKST',],[63877201200,63897760800,63877172400,63897732000,-28800,1,'AKDT',],[63897760800,63908650800,63897728400,63908618400,-32400,0,'AKST',],[63908650800,63929210400,63908622000,63929181600,-28800,1,'AKDT',],[63929210400,63940705200,63929178000,63940672800,-32400,0,'AKST',],[63940705200,63961264800,63940676400,63961236000,-28800,1,'AKDT',],];sub olson_version {'2016a'}sub has_dst_changes {61}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-32400}my$last_observance=bless({'format'=>'AK%sT','gmtoff'=>'-9:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>724244,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>724244,'utc_rd_secs'=>0,'utc_year'=>1984 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-32400,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>724244,'local_rd_secs'=>32400,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>724244,'utc_rd_secs'=>32400,'utc_year'=>1984 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_SITKA

$fatpacked{"DateTime/TimeZone/America/St_Johns.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_ST_JOHNS';
  package DateTime::TimeZone::America::St_Johns;$DateTime::TimeZone::America::St_Johns::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::St_Johns::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59421785452,DateTime::TimeZone::NEG_INFINITY,59421772800,-12652,0,'LMT',],[59421785452,60471552652,59421772800,60471540000,-12652,0,'NST',],[60471552652,60485545852,60471543600,60485536800,-9052,1,'NDT',],[60485545852,60494700652,60485533200,60494688000,-12652,0,'NST',],[60494700652,60503607052,60494688000,60503594400,-12652,0,'NST',],[60503607052,60520537852,60503598000,60520528800,-9052,1,'NDT',],[60520537852,60526236652,60520525200,60526224000,-12652,0,'NST',],[60526236652,60537033052,60526224000,60537020400,-12652,0,'NST',],[60537033052,60545583052,60537024000,60545574000,-9052,1,'NDT',],[60545583052,60568396252,60545570400,60568383600,-12652,0,'NST',],[60568396252,60584117452,60568387200,60584108400,-9052,1,'NDT',],[60584117452,60599845852,60584104800,60599833200,-12652,0,'NST',],[60599845852,60615567052,60599836800,60615558000,-9052,1,'NDT',],[60615567052,60631900252,60615554400,60631887600,-12652,0,'NST',],[60631900252,60647016652,60631891200,60647007600,-9052,1,'NDT',],[60647016652,60663349852,60647004000,60663337200,-12652,0,'NST',],[60663349852,60678466252,60663340800,60678457200,-9052,1,'NDT',],[60678466252,60694799452,60678453600,60694786800,-12652,0,'NST',],[60694799452,60709915852,60694790400,60709906800,-9052,1,'NDT',],[60709915852,60726249052,60709903200,60726236400,-12652,0,'NST',],[60726249052,60741365452,60726240000,60741356400,-9052,1,'NDT',],[60741365452,60757698652,60741352800,60757686000,-12652,0,'NST',],[60757698652,60773419852,60757689600,60773410800,-9052,1,'NDT',],[60773419852,60789148252,60773407200,60789135600,-12652,0,'NST',],[60789148252,60804869452,60789139200,60804860400,-9052,1,'NDT',],[60804869452,60821202652,60804856800,60821190000,-12652,0,'NST',],[60821202652,60836319052,60821193600,60836310000,-9052,1,'NDT',],[60836319052,60852652252,60836306400,60852639600,-12652,0,'NST',],[60852652252,60867768652,60852643200,60867759600,-9052,1,'NDT',],[60867768652,60884101852,60867756000,60884089200,-12652,0,'NST',],[60884101852,60899218252,60884092800,60899209200,-9052,1,'NDT',],[60899218252,60915551452,60899205600,60915538800,-12652,0,'NST',],[60915551452,60930667852,60915542400,60930658800,-9052,1,'NDT',],[60930667852,60947001052,60930655200,60946988400,-12652,0,'NST',],[60947001052,60962722252,60946992000,60962713200,-9052,1,'NDT',],[60962722252,60979055452,60962709600,60979042800,-12652,0,'NST',],[60979055452,60994171852,60979046400,60994162800,-9052,1,'NDT',],[60994171852,61010505052,60994159200,61010492400,-12652,0,'NST',],[61010505052,61025621452,61010496000,61025612400,-9052,1,'NDT',],[61025621452,61038761452,61025608800,61038748800,-12652,0,'NST',],[61038761452,61041954600,61038748852,61041942000,-12600,0,'NST',],[61041954600,61057071000,61041945600,61057062000,-9000,1,'NDT',],[61057071000,61074012600,61057058400,61074000000,-12600,0,'NST',],[61074012600,61086709800,61074003600,61086700800,-9000,1,'NDT',],[61086709800,61105462200,61086697200,61105449600,-12600,0,'NST',],[61105462200,61118159400,61105453200,61118150400,-9000,1,'NDT',],[61118159400,61136911800,61118146800,61136899200,-12600,0,'NST',],[61136911800,61149609000,61136902800,61149600000,-9000,1,'NDT',],[61149609000,61168966200,61149596400,61168953600,-12600,0,'NST',],[61168966200,61181058600,61168957200,61181049600,-9000,1,'NDT',],[61181058600,61200415800,61181046000,61200403200,-12600,0,'NST',],[61200415800,61213113000,61200406800,61213104000,-9000,1,'NDT',],[61213113000,61231865400,61213100400,61231852800,-12600,0,'NST',],[61231865400,61244562600,61231856400,61244553600,-9000,1,'NDT',],[61244562600,61263315000,61244550000,61263302400,-12600,0,'NST',],[61263315000,61366287600,61263306000,61366278600,-9000,1,'NWT',],[61366287600,61370281800,61366278600,61370272800,-9000,1,'NPT',],[61370281800,61378313400,61370269200,61378300800,-12600,0,'NST',],[61378313400,61389639000,61378300800,61389626400,-12600,0,'NST',],[61389639000,61402336200,61389630000,61402327200,-9000,1,'NDT',],[61402336200,61421088600,61402323600,61421076000,-12600,0,'NST',],[61421088600,61433785800,61421079600,61433776800,-9000,1,'NDT',],[61433785800,61452538200,61433773200,61452525600,-12600,0,'NST',],[61452538200,61465235400,61452529200,61465226400,-9000,1,'NDT',],[61465235400,61483987800,61465222800,61483975200,-12600,0,'NST',],[61483987800,61496685000,61483978800,61496676000,-9000,1,'NDT',],[61496685000,61516042200,61496672400,61516029600,-12600,0,'NST',],[61516042200,61528739400,61516033200,61528730400,-9000,1,'NDT',],[61528739400,61546282200,61528726800,61546269600,-12600,0,'NST',],[61546282200,61559584200,61546273200,61559575200,-9000,1,'NDT',],[61559584200,61577731800,61559571600,61577719200,-12600,0,'NST',],[61577731800,61591033800,61577722800,61591024800,-9000,1,'NDT',],[61591033800,61609181400,61591021200,61609168800,-12600,0,'NST',],[61609181400,61622483400,61609172400,61622474400,-9000,1,'NDT',],[61622483400,61640631000,61622470800,61640618400,-12600,0,'NST',],[61640631000,61653933000,61640622000,61653924000,-9000,1,'NDT',],[61653933000,61672080600,61653920400,61672068000,-12600,0,'NST',],[61672080600,61685382600,61672071600,61685373600,-9000,1,'NDT',],[61685382600,61704135000,61685370000,61704122400,-12600,0,'NST',],[61704135000,61717437000,61704126000,61717428000,-9000,1,'NDT',],[61717437000,61735584600,61717424400,61735572000,-12600,0,'NST',],[61735584600,61748886600,61735575600,61748877600,-9000,1,'NDT',],[61748886600,61767034200,61748874000,61767021600,-12600,0,'NST',],[61767034200,61780336200,61767025200,61780327200,-9000,1,'NDT',],[61780336200,61798483800,61780323600,61798471200,-12600,0,'NST',],[61798483800,61811785800,61798474800,61811776800,-9000,1,'NDT',],[61811785800,61829933400,61811773200,61829920800,-12600,0,'NST',],[61829933400,61846259400,61829924400,61846250400,-9000,1,'NDT',],[61846259400,61861987800,61846246800,61861975200,-12600,0,'NST',],[61861987800,61877709000,61861978800,61877700000,-9000,1,'NDT',],[61877709000,61893437400,61877696400,61893424800,-12600,0,'NST',],[61893437400,61909158600,61893428400,61909149600,-9000,1,'NDT',],[61909158600,61924887000,61909146000,61924874400,-12600,0,'NST',],[61924887000,61940608200,61924878000,61940599200,-9000,1,'NDT',],[61940608200,61956336600,61940595600,61956324000,-12600,0,'NST',],[61956336600,61972057800,61956327600,61972048800,-9000,1,'NDT',],[61972057800,61987786200,61972045200,61987773600,-12600,0,'NST',],[61987786200,62004112200,61987777200,62004103200,-9000,1,'NDT',],[62004112200,62019235800,62004099600,62019223200,-12600,0,'NST',],[62019235800,62035561800,62019226800,62035552800,-9000,1,'NDT',],[62035561800,62051290200,62035549200,62051277600,-12600,0,'NST',],[62051290200,62067011400,62051281200,62067002400,-9000,1,'NDT',],[62067011400,62082739800,62066998800,62082727200,-12600,0,'NST',],[62082739800,62098461000,62082730800,62098452000,-9000,1,'NDT',],[62098461000,62114189400,62098448400,62114176800,-12600,0,'NST',],[62114189400,62129910600,62114180400,62129901600,-9000,1,'NDT',],[62129910600,62145639000,62129898000,62145626400,-12600,0,'NST',],[62145639000,62161360200,62145630000,62161351200,-9000,1,'NDT',],[62161360200,62177088600,62161347600,62177076000,-12600,0,'NST',],[62177088600,62193414600,62177079600,62193405600,-9000,1,'NDT',],[62193414600,62209143000,62193402000,62209130400,-12600,0,'NST',],[62209143000,62224864200,62209134000,62224855200,-9000,1,'NDT',],[62224864200,62240592600,62224851600,62240580000,-12600,0,'NST',],[62240592600,62256313800,62240583600,62256304800,-9000,1,'NDT',],[62256313800,62272042200,62256301200,62272029600,-12600,0,'NST',],[62272042200,62287763400,62272033200,62287754400,-9000,1,'NDT',],[62287763400,62303491800,62287750800,62303479200,-12600,0,'NST',],[62303491800,62319213000,62303482800,62319204000,-9000,1,'NDT',],[62319213000,62334941400,62319200400,62334928800,-12600,0,'NST',],[62334941400,62351267400,62334932400,62351258400,-9000,1,'NDT',],[62351267400,62366391000,62351254800,62366378400,-12600,0,'NST',],[62366391000,62382717000,62366382000,62382708000,-9000,1,'NDT',],[62382717000,62398445400,62382704400,62398432800,-12600,0,'NST',],[62398445400,62414166600,62398436400,62414157600,-9000,1,'NDT',],[62414166600,62429895000,62414154000,62429882400,-12600,0,'NST',],[62429895000,62445616200,62429886000,62445607200,-9000,1,'NDT',],[62445616200,62461344600,62445603600,62461332000,-12600,0,'NST',],[62461344600,62477065800,62461335600,62477056800,-9000,1,'NDT',],[62477065800,62492794200,62477053200,62492781600,-12600,0,'NST',],[62492794200,62508515400,62492785200,62508506400,-9000,1,'NDT',],[62508515400,62524243800,62508502800,62524231200,-12600,0,'NST',],[62524243800,62540569800,62524234800,62540560800,-9000,1,'NDT',],[62540569800,62555693400,62540557200,62555680800,-12600,0,'NST',],[62555693400,62572019400,62555684400,62572010400,-9000,1,'NDT',],[62572019400,62587747800,62572006800,62587735200,-12600,0,'NST',],[62587747800,62603469000,62587738800,62603460000,-9000,1,'NDT',],[62603469000,62619197400,62603456400,62619184800,-12600,0,'NST',],[62619197400,62634918600,62619188400,62634909600,-9000,1,'NDT',],[62634918600,62650647000,62634906000,62650634400,-12600,0,'NST',],[62650647000,62666368200,62650638000,62666359200,-9000,1,'NDT',],[62666368200,62680275060,62666355600,62680262460,-12600,0,'NST',],[62680275060,62697810660,62680266060,62697801660,-9000,1,'NDT',],[62697810660,62711724660,62697798060,62711712060,-12600,0,'NST',],[62711724660,62729861460,62711719260,62729856060,-5400,1,'NDDT',],[62729861460,62743174260,62729848860,62743161660,-12600,0,'NST',],[62743174260,62761314660,62743165260,62761305660,-9000,1,'NDT',],[62761314660,62774623860,62761302060,62774611260,-12600,0,'NST',],[62774623860,62792764260,62774614860,62792755260,-9000,1,'NDT',],[62792764260,62806678260,62792751660,62806665660,-12600,0,'NST',],[62806678260,62824213860,62806669260,62824204860,-9000,1,'NDT',],[62824213860,62838127860,62824201260,62838115260,-12600,0,'NST',],[62838127860,62855663460,62838118860,62855654460,-9000,1,'NDT',],[62855663460,62869577460,62855650860,62869564860,-12600,0,'NST',],[62869577460,62887717860,62869568460,62887708860,-9000,1,'NDT',],[62887717860,62901027060,62887705260,62901014460,-12600,0,'NST',],[62901027060,62919167460,62901018060,62919158460,-9000,1,'NDT',],[62919167460,62932476660,62919154860,62932464060,-12600,0,'NST',],[62932476660,62950617060,62932467660,62950608060,-9000,1,'NDT',],[62950617060,62964531060,62950604460,62964518460,-12600,0,'NST',],[62964531060,62982066660,62964522060,62982057660,-9000,1,'NDT',],[62982066660,62995980660,62982054060,62995968060,-12600,0,'NST',],[62995980660,63013516260,62995971660,63013507260,-9000,1,'NDT',],[63013516260,63027430260,63013503660,63027417660,-12600,0,'NST',],[63027430260,63044965860,63027421260,63044956860,-9000,1,'NDT',],[63044965860,63058879860,63044953260,63058867260,-12600,0,'NST',],[63058879860,63077020260,63058870860,63077011260,-9000,1,'NDT',],[63077020260,63090329460,63077007660,63090316860,-12600,0,'NST',],[63090329460,63108469860,63090320460,63108460860,-9000,1,'NDT',],[63108469860,63121779060,63108457260,63121766460,-12600,0,'NST',],[63121779060,63139919460,63121770060,63139910460,-9000,1,'NDT',],[63139919460,63153833460,63139906860,63153820860,-12600,0,'NST',],[63153833460,63171369060,63153824460,63171360060,-9000,1,'NDT',],[63171369060,63185283060,63171356460,63185270460,-12600,0,'NST',],[63185283060,63202818660,63185274060,63202809660,-9000,1,'NDT',],[63202818660,63216732660,63202806060,63216720060,-12600,0,'NST',],[63216732660,63234873060,63216723660,63234864060,-9000,1,'NDT',],[63234873060,63248182260,63234860460,63248169660,-12600,0,'NST',],[63248182260,63266322660,63248173260,63266313660,-9000,1,'NDT',],[63266322660,63279631860,63266310060,63279619260,-12600,0,'NST',],[63279631860,63297772260,63279622860,63297763260,-9000,1,'NDT',],[63297772260,63309267060,63297759660,63309254460,-12600,0,'NST',],[63309267060,63329826660,63309258060,63329817660,-9000,1,'NDT',],[63329826660,63340716660,63329814060,63340704060,-12600,0,'NST',],[63340716660,63361276260,63340707660,63361267260,-9000,1,'NDT',],[63361276260,63372166260,63361263660,63372153660,-12600,0,'NST',],[63372166260,63392725860,63372157260,63392716860,-9000,1,'NDT',],[63392725860,63404220660,63392713260,63404208060,-12600,0,'NST',],[63404220660,63424780260,63404211660,63424771260,-9000,1,'NDT',],[63424780260,63435670260,63424767660,63435657660,-12600,0,'NST',],[63435670260,63455797800,63435661260,63455788800,-9000,1,'NDT',],[63455797800,63456237000,63455788800,63456228000,-9000,1,'NDT',],[63456237000,63467127000,63456224400,63467114400,-12600,0,'NST',],[63467127000,63487686600,63467118000,63487677600,-9000,1,'NDT',],[63487686600,63498576600,63487674000,63498564000,-12600,0,'NST',],[63498576600,63519136200,63498567600,63519127200,-9000,1,'NDT',],[63519136200,63530026200,63519123600,63530013600,-12600,0,'NST',],[63530026200,63550585800,63530017200,63550576800,-9000,1,'NDT',],[63550585800,63561475800,63550573200,63561463200,-12600,0,'NST',],[63561475800,63582035400,63561466800,63582026400,-9000,1,'NDT',],[63582035400,63593530200,63582022800,63593517600,-12600,0,'NST',],[63593530200,63614089800,63593521200,63614080800,-9000,1,'NDT',],[63614089800,63624979800,63614077200,63624967200,-12600,0,'NST',],[63624979800,63645539400,63624970800,63645530400,-9000,1,'NDT',],[63645539400,63656429400,63645526800,63656416800,-12600,0,'NST',],[63656429400,63676989000,63656420400,63676980000,-9000,1,'NDT',],[63676989000,63687879000,63676976400,63687866400,-12600,0,'NST',],[63687879000,63708438600,63687870000,63708429600,-9000,1,'NDT',],[63708438600,63719328600,63708426000,63719316000,-12600,0,'NST',],[63719328600,63739888200,63719319600,63739879200,-9000,1,'NDT',],[63739888200,63751383000,63739875600,63751370400,-12600,0,'NST',],[63751383000,63771942600,63751374000,63771933600,-9000,1,'NDT',],[63771942600,63782832600,63771930000,63782820000,-12600,0,'NST',],[63782832600,63803392200,63782823600,63803383200,-9000,1,'NDT',],[63803392200,63814282200,63803379600,63814269600,-12600,0,'NST',],[63814282200,63834841800,63814273200,63834832800,-9000,1,'NDT',],[63834841800,63845731800,63834829200,63845719200,-12600,0,'NST',],[63845731800,63866291400,63845722800,63866282400,-9000,1,'NDT',],[63866291400,63877181400,63866278800,63877168800,-12600,0,'NST',],[63877181400,63897741000,63877172400,63897732000,-9000,1,'NDT',],[63897741000,63908631000,63897728400,63908618400,-12600,0,'NST',],[63908631000,63929190600,63908622000,63929181600,-9000,1,'NDT',],[63929190600,63940685400,63929178000,63940672800,-12600,0,'NST',],[63940685400,63961245000,63940676400,63961236000,-9000,1,'NDT',],];sub olson_version {'2016a'}sub has_dst_changes {110}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-12600}my$last_observance=bless({'format'=>'N%sT','gmtoff'=>'-3:30','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>734442,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>734442,'utc_rd_secs'=>0,'utc_year'=>2012 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-12600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>734442,'local_rd_secs'=>9000,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>734442,'utc_rd_secs'=>9000,'utc_year'=>2012 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'Canada','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'Canada','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_ST_JOHNS

$fatpacked{"DateTime/TimeZone/America/Swift_Current.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_SWIFT_CURRENT';
  package DateTime::TimeZone::America::Swift_Current;$DateTime::TimeZone::America::Swift_Current::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Swift_Current::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60105481880,DateTime::TimeZone::NEG_INFINITY,60105456000,-25880,0,'LMT',],[60105481880,60503619600,60105456680,60503594400,-25200,0,'MST',],[60503619600,60520550400,60503598000,60520528800,-21600,1,'MDT',],[60520550400,61255472400,60520525200,61255447200,-25200,0,'MST',],[61255472400,61366287600,61255450800,61366266000,-21600,1,'MWT',],[61366287600,61370294400,61366266000,61370272800,-21600,1,'MPT',],[61370294400,61388442000,61370269200,61388416800,-25200,0,'MST',],[61388442000,61402953600,61388420400,61402932000,-21600,1,'MDT',],[61402953600,61419891600,61402928400,61419866400,-25200,0,'MST',],[61419891600,61433193600,61419870000,61433172000,-21600,1,'MDT',],[61433193600,61451341200,61433168400,61451316000,-25200,0,'MST',],[61451341200,61464643200,61451319600,61464621600,-21600,1,'MDT',],[61464643200,61482790800,61464618000,61482765600,-25200,0,'MST',],[61482790800,61496092800,61482769200,61496071200,-21600,1,'MDT',],[61496092800,61504556400,61496067600,61504531200,-25200,0,'MST',],[61504556400,61735597200,61504531200,61735572000,-25200,0,'MST',],[61735597200,61751318400,61735575600,61751296800,-21600,1,'MDT',],[61751318400,61798496400,61751293200,61798471200,-25200,0,'MST',],[61798496400,61814217600,61798474800,61814196000,-21600,1,'MDT',],[61814217600,61829946000,61814192400,61829920800,-25200,0,'MST',],[61829946000,61843248000,61829924400,61843226400,-21600,1,'MDT',],[61843248000,61862000400,61843222800,61861975200,-25200,0,'MST',],[61862000400,61874697600,61861978800,61874676000,-21600,1,'MDT',],[61874697600,62209155600,61874672400,62209130400,-25200,0,'MST',],[62209155600,DateTime::TimeZone::INFINITY,62209134000,DateTime::TimeZone::INFINITY,-21600,0,'CST',],];sub olson_version {'2016a'}sub has_dst_changes {11}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_SWIFT_CURRENT

$fatpacked{"DateTime/TimeZone/America/Tegucigalpa.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_TEGUCIGALPA';
  package DateTime::TimeZone::America::Tegucigalpa;$DateTime::TimeZone::America::Tegucigalpa::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Tegucigalpa::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60597179332,DateTime::TimeZone::NEG_INFINITY,60597158400,-20932,0,'LMT',],[60597179332,62682703200,60597157732,62682681600,-21600,0,'CST',],[62682703200,62695400400,62682685200,62695382400,-18000,1,'CDT',],[62695400400,62714152800,62695378800,62714131200,-21600,0,'CST',],[62714152800,62726850000,62714134800,62726832000,-18000,1,'CDT',],[62726850000,63282664800,62726828400,63282643200,-21600,0,'CST',],[63282664800,63290610000,63282646800,63290592000,-18000,1,'CDT',],[63290610000,DateTime::TimeZone::INFINITY,63290588400,DateTime::TimeZone::INFINITY,-21600,0,'CST',],];sub olson_version {'2016a'}sub has_dst_changes {3}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AMERICA_TEGUCIGALPA

$fatpacked{"DateTime/TimeZone/America/Thule.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_THULE';
  package DateTime::TimeZone::America::Thule;$DateTime::TimeZone::America::Thule::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Thule::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60449603708,DateTime::TimeZone::NEG_INFINITY,60449587200,-16508,0,'LMT',],[60449603708,62806082400,60449589308,62806068000,-14400,0,'AST',],[62806082400,62821803600,62806071600,62821792800,-10800,1,'ADT',],[62821803600,62837532000,62821789200,62837517600,-14400,0,'AST',],[62837532000,62853253200,62837521200,62853242400,-10800,1,'ADT',],[62853253200,62869586400,62853238800,62869572000,-14400,0,'AST',],[62869586400,62887726800,62869575600,62887716000,-10800,1,'ADT',],[62887726800,62901036000,62887712400,62901021600,-14400,0,'AST',],[62901036000,62919176400,62901025200,62919165600,-10800,1,'ADT',],[62919176400,62932485600,62919162000,62932471200,-14400,0,'AST',],[62932485600,62950626000,62932474800,62950615200,-10800,1,'ADT',],[62950626000,62964540000,62950611600,62964525600,-14400,0,'AST',],[62964540000,62982075600,62964529200,62982064800,-10800,1,'ADT',],[62982075600,62995989600,62982061200,62995975200,-14400,0,'AST',],[62995989600,63013525200,62995978800,63013514400,-10800,1,'ADT',],[63013525200,63027439200,63013510800,63027424800,-14400,0,'AST',],[63027439200,63044974800,63027428400,63044964000,-10800,1,'ADT',],[63044974800,63058888800,63044960400,63058874400,-14400,0,'AST',],[63058888800,63077029200,63058878000,63077018400,-10800,1,'ADT',],[63077029200,63090338400,63077014800,63090324000,-14400,0,'AST',],[63090338400,63108478800,63090327600,63108468000,-10800,1,'ADT',],[63108478800,63121788000,63108464400,63121773600,-14400,0,'AST',],[63121788000,63139928400,63121777200,63139917600,-10800,1,'ADT',],[63139928400,63153842400,63139914000,63153828000,-14400,0,'AST',],[63153842400,63171378000,63153831600,63171367200,-10800,1,'ADT',],[63171378000,63185292000,63171363600,63185277600,-14400,0,'AST',],[63185292000,63202827600,63185281200,63202816800,-10800,1,'ADT',],[63202827600,63216741600,63202813200,63216727200,-14400,0,'AST',],[63216741600,63234882000,63216730800,63234871200,-10800,1,'ADT',],[63234882000,63248191200,63234867600,63248176800,-14400,0,'AST',],[63248191200,63266331600,63248180400,63266320800,-10800,1,'ADT',],[63266331600,63279640800,63266317200,63279626400,-14400,0,'AST',],[63279640800,63297781200,63279630000,63297770400,-10800,1,'ADT',],[63297781200,63309276000,63297766800,63309261600,-14400,0,'AST',],[63309276000,63329835600,63309265200,63329824800,-10800,1,'ADT',],[63329835600,63340725600,63329821200,63340711200,-14400,0,'AST',],[63340725600,63361285200,63340714800,63361274400,-10800,1,'ADT',],[63361285200,63372175200,63361270800,63372160800,-14400,0,'AST',],[63372175200,63392734800,63372164400,63392724000,-10800,1,'ADT',],[63392734800,63404229600,63392720400,63404215200,-14400,0,'AST',],[63404229600,63424789200,63404218800,63424778400,-10800,1,'ADT',],[63424789200,63435679200,63424774800,63435664800,-14400,0,'AST',],[63435679200,63456238800,63435668400,63456228000,-10800,1,'ADT',],[63456238800,63467128800,63456224400,63467114400,-14400,0,'AST',],[63467128800,63487688400,63467118000,63487677600,-10800,1,'ADT',],[63487688400,63498578400,63487674000,63498564000,-14400,0,'AST',],[63498578400,63519138000,63498567600,63519127200,-10800,1,'ADT',],[63519138000,63530028000,63519123600,63530013600,-14400,0,'AST',],[63530028000,63550587600,63530017200,63550576800,-10800,1,'ADT',],[63550587600,63561477600,63550573200,63561463200,-14400,0,'AST',],[63561477600,63582037200,63561466800,63582026400,-10800,1,'ADT',],[63582037200,63593532000,63582022800,63593517600,-14400,0,'AST',],[63593532000,63614091600,63593521200,63614080800,-10800,1,'ADT',],[63614091600,63624981600,63614077200,63624967200,-14400,0,'AST',],[63624981600,63645541200,63624970800,63645530400,-10800,1,'ADT',],[63645541200,63656431200,63645526800,63656416800,-14400,0,'AST',],[63656431200,63676990800,63656420400,63676980000,-10800,1,'ADT',],[63676990800,63687880800,63676976400,63687866400,-14400,0,'AST',],[63687880800,63708440400,63687870000,63708429600,-10800,1,'ADT',],[63708440400,63719330400,63708426000,63719316000,-14400,0,'AST',],[63719330400,63739890000,63719319600,63739879200,-10800,1,'ADT',],[63739890000,63751384800,63739875600,63751370400,-14400,0,'AST',],[63751384800,63771944400,63751374000,63771933600,-10800,1,'ADT',],[63771944400,63782834400,63771930000,63782820000,-14400,0,'AST',],[63782834400,63803394000,63782823600,63803383200,-10800,1,'ADT',],[63803394000,63814284000,63803379600,63814269600,-14400,0,'AST',],[63814284000,63834843600,63814273200,63834832800,-10800,1,'ADT',],[63834843600,63845733600,63834829200,63845719200,-14400,0,'AST',],[63845733600,63866293200,63845722800,63866282400,-10800,1,'ADT',],[63866293200,63877183200,63866278800,63877168800,-14400,0,'AST',],[63877183200,63897742800,63877172400,63897732000,-10800,1,'ADT',],[63897742800,63908632800,63897728400,63908618400,-14400,0,'AST',],[63908632800,63929192400,63908622000,63929181600,-10800,1,'ADT',],[63929192400,63940687200,63929178000,63940672800,-14400,0,'AST',],[63940687200,63961246800,63940676400,63961236000,-10800,1,'ADT',],];sub olson_version {'2016a'}sub has_dst_changes {37}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-14400}my$last_observance=bless({'format'=>'A%sT','gmtoff'=>'-4:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>699648,'local_rd_secs'=>2108,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>699648,'utc_rd_secs'=>2108,'utc_year'=>1917 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-14400,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>699648,'local_rd_secs'=>16508,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>699648,'utc_rd_secs'=>16508,'utc_year'=>1917 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'Thule','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'Thule','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_THULE

$fatpacked{"DateTime/TimeZone/America/Thunder_Bay.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_THUNDER_BAY';
  package DateTime::TimeZone::America::Thunder_Bay;$DateTime::TimeZone::America::Thunder_Bay::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Thunder_Bay::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59768949420,DateTime::TimeZone::NEG_INFINITY,59768928000,-21420,0,'LMT',],[59768949420,60242248800,59768927820,60242227200,-21600,0,'CST',],[60242248800,61252088400,60242230800,61252070400,-18000,0,'EST',],[61252088400,61255465200,61252070400,61255447200,-18000,0,'EST',],[61255465200,61366287600,61255450800,61366273200,-14400,1,'EWT',],[61366287600,61370287200,61366273200,61370272800,-14400,1,'EPT',],[61370287200,62135701200,61370269200,62135683200,-18000,0,'EST',],[62135701200,62145644400,62135683200,62145626400,-18000,0,'EST',],[62145644400,62161365600,62145630000,62161351200,-14400,1,'EDT',],[62161365600,62177094000,62161347600,62177076000,-18000,0,'EST',],[62177094000,62193420000,62177079600,62193405600,-14400,1,'EDT',],[62193420000,62209148400,62193402000,62209130400,-18000,0,'EST',],[62209148400,62224869600,62209134000,62224855200,-14400,1,'EDT',],[62224869600,62230395600,62224851600,62230377600,-18000,0,'EST',],[62230395600,62261931600,62230377600,62261913600,-18000,0,'EST',],[62261931600,62272047600,62261913600,62272029600,-18000,0,'EST',],[62272047600,62287768800,62272033200,62287754400,-14400,1,'EDT',],[62287768800,62303497200,62287750800,62303479200,-18000,0,'EST',],[62303497200,62319218400,62303482800,62319204000,-14400,1,'EDT',],[62319218400,62334946800,62319200400,62334928800,-18000,0,'EST',],[62334946800,62351272800,62334932400,62351258400,-14400,1,'EDT',],[62351272800,62366396400,62351254800,62366378400,-18000,0,'EST',],[62366396400,62382722400,62366382000,62382708000,-14400,1,'EDT',],[62382722400,62398450800,62382704400,62398432800,-18000,0,'EST',],[62398450800,62414172000,62398436400,62414157600,-14400,1,'EDT',],[62414172000,62429900400,62414154000,62429882400,-18000,0,'EST',],[62429900400,62445621600,62429886000,62445607200,-14400,1,'EDT',],[62445621600,62461350000,62445603600,62461332000,-18000,0,'EST',],[62461350000,62477071200,62461335600,62477056800,-14400,1,'EDT',],[62477071200,62492799600,62477053200,62492781600,-18000,0,'EST',],[62492799600,62508520800,62492785200,62508506400,-14400,1,'EDT',],[62508520800,62524249200,62508502800,62524231200,-18000,0,'EST',],[62524249200,62540575200,62524234800,62540560800,-14400,1,'EDT',],[62540575200,62555698800,62540557200,62555680800,-18000,0,'EST',],[62555698800,62572024800,62555684400,62572010400,-14400,1,'EDT',],[62572024800,62587753200,62572006800,62587735200,-18000,0,'EST',],[62587753200,62603474400,62587738800,62603460000,-14400,1,'EDT',],[62603474400,62619202800,62603456400,62619184800,-18000,0,'EST',],[62619202800,62634924000,62619188400,62634909600,-14400,1,'EDT',],[62634924000,62650652400,62634906000,62650634400,-18000,0,'EST',],[62650652400,62666373600,62650638000,62666359200,-14400,1,'EDT',],[62666373600,62680287600,62666355600,62680269600,-18000,0,'EST',],[62680287600,62697823200,62680273200,62697808800,-14400,1,'EDT',],[62697823200,62711737200,62697805200,62711719200,-18000,0,'EST',],[62711737200,62729877600,62711722800,62729863200,-14400,1,'EDT',],[62729877600,62743186800,62729859600,62743168800,-18000,0,'EST',],[62743186800,62761327200,62743172400,62761312800,-14400,1,'EDT',],[62761327200,62774636400,62761309200,62774618400,-18000,0,'EST',],[62774636400,62792776800,62774622000,62792762400,-14400,1,'EDT',],[62792776800,62806690800,62792758800,62806672800,-18000,0,'EST',],[62806690800,62824226400,62806676400,62824212000,-14400,1,'EDT',],[62824226400,62838140400,62824208400,62838122400,-18000,0,'EST',],[62838140400,62855676000,62838126000,62855661600,-14400,1,'EDT',],[62855676000,62869590000,62855658000,62869572000,-18000,0,'EST',],[62869590000,62887730400,62869575600,62887716000,-14400,1,'EDT',],[62887730400,62901039600,62887712400,62901021600,-18000,0,'EST',],[62901039600,62919180000,62901025200,62919165600,-14400,1,'EDT',],[62919180000,62932489200,62919162000,62932471200,-18000,0,'EST',],[62932489200,62950629600,62932474800,62950615200,-14400,1,'EDT',],[62950629600,62964543600,62950611600,62964525600,-18000,0,'EST',],[62964543600,62982079200,62964529200,62982064800,-14400,1,'EDT',],[62982079200,62995993200,62982061200,62995975200,-18000,0,'EST',],[62995993200,63013528800,62995978800,63013514400,-14400,1,'EDT',],[63013528800,63027442800,63013510800,63027424800,-18000,0,'EST',],[63027442800,63044978400,63027428400,63044964000,-14400,1,'EDT',],[63044978400,63058892400,63044960400,63058874400,-18000,0,'EST',],[63058892400,63077032800,63058878000,63077018400,-14400,1,'EDT',],[63077032800,63090342000,63077014800,63090324000,-18000,0,'EST',],[63090342000,63108482400,63090327600,63108468000,-14400,1,'EDT',],[63108482400,63121791600,63108464400,63121773600,-18000,0,'EST',],[63121791600,63139932000,63121777200,63139917600,-14400,1,'EDT',],[63139932000,63153846000,63139914000,63153828000,-18000,0,'EST',],[63153846000,63171381600,63153831600,63171367200,-14400,1,'EDT',],[63171381600,63185295600,63171363600,63185277600,-18000,0,'EST',],[63185295600,63202831200,63185281200,63202816800,-14400,1,'EDT',],[63202831200,63216745200,63202813200,63216727200,-18000,0,'EST',],[63216745200,63234885600,63216730800,63234871200,-14400,1,'EDT',],[63234885600,63248194800,63234867600,63248176800,-18000,0,'EST',],[63248194800,63266335200,63248180400,63266320800,-14400,1,'EDT',],[63266335200,63279644400,63266317200,63279626400,-18000,0,'EST',],[63279644400,63297784800,63279630000,63297770400,-14400,1,'EDT',],[63297784800,63309279600,63297766800,63309261600,-18000,0,'EST',],[63309279600,63329839200,63309265200,63329824800,-14400,1,'EDT',],[63329839200,63340729200,63329821200,63340711200,-18000,0,'EST',],[63340729200,63361288800,63340714800,63361274400,-14400,1,'EDT',],[63361288800,63372178800,63361270800,63372160800,-18000,0,'EST',],[63372178800,63392738400,63372164400,63392724000,-14400,1,'EDT',],[63392738400,63404233200,63392720400,63404215200,-18000,0,'EST',],[63404233200,63424792800,63404218800,63424778400,-14400,1,'EDT',],[63424792800,63435682800,63424774800,63435664800,-18000,0,'EST',],[63435682800,63456242400,63435668400,63456228000,-14400,1,'EDT',],[63456242400,63467132400,63456224400,63467114400,-18000,0,'EST',],[63467132400,63487692000,63467118000,63487677600,-14400,1,'EDT',],[63487692000,63498582000,63487674000,63498564000,-18000,0,'EST',],[63498582000,63519141600,63498567600,63519127200,-14400,1,'EDT',],[63519141600,63530031600,63519123600,63530013600,-18000,0,'EST',],[63530031600,63550591200,63530017200,63550576800,-14400,1,'EDT',],[63550591200,63561481200,63550573200,63561463200,-18000,0,'EST',],[63561481200,63582040800,63561466800,63582026400,-14400,1,'EDT',],[63582040800,63593535600,63582022800,63593517600,-18000,0,'EST',],[63593535600,63614095200,63593521200,63614080800,-14400,1,'EDT',],[63614095200,63624985200,63614077200,63624967200,-18000,0,'EST',],[63624985200,63645544800,63624970800,63645530400,-14400,1,'EDT',],[63645544800,63656434800,63645526800,63656416800,-18000,0,'EST',],[63656434800,63676994400,63656420400,63676980000,-14400,1,'EDT',],[63676994400,63687884400,63676976400,63687866400,-18000,0,'EST',],[63687884400,63708444000,63687870000,63708429600,-14400,1,'EDT',],[63708444000,63719334000,63708426000,63719316000,-18000,0,'EST',],[63719334000,63739893600,63719319600,63739879200,-14400,1,'EDT',],[63739893600,63751388400,63739875600,63751370400,-18000,0,'EST',],[63751388400,63771948000,63751374000,63771933600,-14400,1,'EDT',],[63771948000,63782838000,63771930000,63782820000,-18000,0,'EST',],[63782838000,63803397600,63782823600,63803383200,-14400,1,'EDT',],[63803397600,63814287600,63803379600,63814269600,-18000,0,'EST',],[63814287600,63834847200,63814273200,63834832800,-14400,1,'EDT',],[63834847200,63845737200,63834829200,63845719200,-18000,0,'EST',],[63845737200,63866296800,63845722800,63866282400,-14400,1,'EDT',],[63866296800,63877186800,63866278800,63877168800,-18000,0,'EST',],[63877186800,63897746400,63877172400,63897732000,-14400,1,'EDT',],[63897746400,63908636400,63897728400,63908618400,-18000,0,'EST',],[63908636400,63929196000,63908622000,63929181600,-14400,1,'EDT',],[63929196000,63940690800,63929178000,63940672800,-18000,0,'EST',],[63940690800,63961250400,63940676400,63961236000,-14400,1,'EDT',],];sub olson_version {'2016a'}sub has_dst_changes {59}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-18000}my$last_observance=bless({'format'=>'E%sT','gmtoff'=>'-5:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>720624,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>720624,'utc_rd_secs'=>0,'utc_year'=>1975 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-18000,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>720624,'local_rd_secs'=>18000,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>720624,'utc_rd_secs'=>18000,'utc_year'=>1975 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'Canada','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'Canada','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_THUNDER_BAY

$fatpacked{"DateTime/TimeZone/America/Tijuana.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_TIJUANA';
  package DateTime::TimeZone::America::Tijuana;$DateTime::TimeZone::America::Tijuana::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Tijuana::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60620947200,DateTime::TimeZone::NEG_INFINITY,60620919116,-28084,0,'LMT',],[60620947200,60684015600,60620922000,60683990400,-25200,0,'MST',],[60684015600,60792620400,60683986800,60792591600,-28800,0,'PST',],[60792620400,60900879600,60792595200,60900854400,-25200,0,'MST',],[60900879600,60912720000,60900850800,60912691200,-28800,0,'PST',],[60912720000,60928441200,60912694800,60928416000,-25200,1,'PDT',],[60928441200,61261862400,60928412400,61261833600,-28800,0,'PST',],[61261862400,61366287600,61261837200,61366262400,-25200,1,'PWT',],[61366287600,61374006000,61366262400,61373980800,-25200,1,'PPT',],[61374006000,61449609600,61373977200,61449580800,-28800,0,'PST',],[61449609600,61474143600,61449584400,61474118400,-25200,1,'PDT',],[61474143600,61630790400,61474114800,61630761600,-28800,0,'PST',],[61630790400,61640647200,61630761600,61640618400,-28800,0,'PST',],[61640647200,61653949200,61640622000,61653924000,-25200,1,'PDT',],[61653949200,61672096800,61653920400,61672068000,-28800,0,'PST',],[61672096800,61685398800,61672071600,61685373600,-25200,1,'PDT',],[61685398800,61704151200,61685370000,61704122400,-28800,0,'PST',],[61704151200,61717453200,61704126000,61717428000,-25200,1,'PDT',],[61717453200,61735600800,61717424400,61735572000,-28800,0,'PST',],[61735600800,61748902800,61735575600,61748877600,-25200,1,'PDT',],[61748902800,61767050400,61748874000,61767021600,-28800,0,'PST',],[61767050400,61780352400,61767025200,61780327200,-25200,1,'PDT',],[61780352400,61798500000,61780323600,61798471200,-28800,0,'PST',],[61798500000,61811802000,61798474800,61811776800,-25200,1,'PDT',],[61811802000,61829949600,61811773200,61829920800,-28800,0,'PST',],[61829949600,61843251600,61829924400,61843226400,-25200,1,'PDT',],[61843251600,61851715200,61843222800,61851686400,-28800,0,'PST',],[61851715200,62325014400,61851686400,62324985600,-28800,0,'PST',],[62325014400,62334957600,62324985600,62334928800,-28800,0,'PST',],[62334957600,62351283600,62334932400,62351258400,-25200,1,'PDT',],[62351283600,62366407200,62351254800,62366378400,-28800,0,'PST',],[62366407200,62382733200,62366382000,62382708000,-25200,1,'PDT',],[62382733200,62398461600,62382704400,62398432800,-28800,0,'PST',],[62398461600,62414182800,62398436400,62414157600,-25200,1,'PDT',],[62414182800,62429911200,62414154000,62429882400,-28800,0,'PST',],[62429911200,62445632400,62429886000,62445607200,-25200,1,'PDT',],[62445632400,62461360800,62445603600,62461332000,-28800,0,'PST',],[62461360800,62477082000,62461335600,62477056800,-25200,1,'PDT',],[62477082000,62492810400,62477053200,62492781600,-28800,0,'PST',],[62492810400,62508531600,62492785200,62508506400,-25200,1,'PDT',],[62508531600,62524260000,62508502800,62524231200,-28800,0,'PST',],[62524260000,62540586000,62524234800,62540560800,-25200,1,'PDT',],[62540586000,62555709600,62540557200,62555680800,-28800,0,'PST',],[62555709600,62572035600,62555684400,62572010400,-25200,1,'PDT',],[62572035600,62587764000,62572006800,62587735200,-28800,0,'PST',],[62587764000,62603485200,62587738800,62603460000,-25200,1,'PDT',],[62603485200,62619213600,62603456400,62619184800,-28800,0,'PST',],[62619213600,62634934800,62619188400,62634909600,-25200,1,'PDT',],[62634934800,62650663200,62634906000,62650634400,-28800,0,'PST',],[62650663200,62666384400,62650638000,62666359200,-25200,1,'PDT',],[62666384400,62680298400,62666355600,62680269600,-28800,0,'PST',],[62680298400,62697834000,62680273200,62697808800,-25200,1,'PDT',],[62697834000,62711748000,62697805200,62711719200,-28800,0,'PST',],[62711748000,62729888400,62711722800,62729863200,-25200,1,'PDT',],[62729888400,62743197600,62729859600,62743168800,-28800,0,'PST',],[62743197600,62761338000,62743172400,62761312800,-25200,1,'PDT',],[62761338000,62774647200,62761309200,62774618400,-28800,0,'PST',],[62774647200,62792787600,62774622000,62792762400,-25200,1,'PDT',],[62792787600,62806701600,62792758800,62806672800,-28800,0,'PST',],[62806701600,62824237200,62806676400,62824212000,-25200,1,'PDT',],[62824237200,62838151200,62824208400,62838122400,-28800,0,'PST',],[62838151200,62855686800,62838126000,62855661600,-25200,1,'PDT',],[62855686800,62869600800,62855658000,62869572000,-28800,0,'PST',],[62869600800,62887741200,62869575600,62887716000,-25200,1,'PDT',],[62887741200,62901050400,62887712400,62901021600,-28800,0,'PST',],[62901050400,62919190800,62901025200,62919165600,-25200,1,'PDT',],[62919190800,62932500000,62919162000,62932471200,-28800,0,'PST',],[62932500000,62950640400,62932474800,62950615200,-25200,1,'PDT',],[62950640400,62956166400,62950611600,62956137600,-28800,0,'PST',],[62956166400,62964554400,62956137600,62964525600,-28800,0,'PST',],[62964554400,62982090000,62964529200,62982064800,-25200,1,'PDT',],[62982090000,62996004000,62982061200,62995975200,-28800,0,'PST',],[62996004000,63013539600,62995978800,63013514400,-25200,1,'PDT',],[63013539600,63027453600,63013510800,63027424800,-28800,0,'PST',],[63027453600,63044989200,63027428400,63044964000,-25200,1,'PDT',],[63044989200,63058903200,63044960400,63058874400,-28800,0,'PST',],[63058903200,63077043600,63058878000,63077018400,-25200,1,'PDT',],[63077043600,63090352800,63077014800,63090324000,-28800,0,'PST',],[63090352800,63108493200,63090327600,63108468000,-25200,1,'PDT',],[63108493200,63114019200,63108464400,63113990400,-28800,0,'PST',],[63114019200,63121802400,63113990400,63121773600,-28800,0,'PST',],[63121802400,63139942800,63121777200,63139917600,-25200,1,'PDT',],[63139942800,63149875200,63139914000,63149846400,-28800,0,'PST',],[63149875200,63153856800,63149846400,63153828000,-28800,0,'PST',],[63153856800,63171392400,63153831600,63171367200,-25200,1,'PDT',],[63171392400,63185306400,63171363600,63185277600,-28800,0,'PST',],[63185306400,63202842000,63185281200,63202816800,-25200,1,'PDT',],[63202842000,63216756000,63202813200,63216727200,-28800,0,'PST',],[63216756000,63234896400,63216730800,63234871200,-25200,1,'PDT',],[63234896400,63248205600,63234867600,63248176800,-28800,0,'PST',],[63248205600,63266346000,63248180400,63266320800,-25200,1,'PDT',],[63266346000,63279655200,63266317200,63279626400,-28800,0,'PST',],[63279655200,63297795600,63279630000,63297770400,-25200,1,'PDT',],[63297795600,63311104800,63297766800,63311076000,-28800,0,'PST',],[63311104800,63329245200,63311079600,63329220000,-25200,1,'PDT',],[63329245200,63343159200,63329216400,63343130400,-28800,0,'PST',],[63343159200,63360694800,63343134000,63360669600,-25200,1,'PDT',],[63360694800,63374608800,63360666000,63374580000,-28800,0,'PST',],[63374608800,63392144400,63374583600,63392119200,-25200,1,'PDT',],[63392144400,63398016000,63392115600,63397987200,-28800,0,'PST',],[63398016000,63404244000,63397987200,63404215200,-28800,0,'PST',],[63404244000,63424803600,63404218800,63424778400,-25200,1,'PDT',],[63424803600,63435693600,63424774800,63435664800,-28800,0,'PST',],[63435693600,63456253200,63435668400,63456228000,-25200,1,'PDT',],[63456253200,63467143200,63456224400,63467114400,-28800,0,'PST',],[63467143200,63487702800,63467118000,63487677600,-25200,1,'PDT',],[63487702800,63498592800,63487674000,63498564000,-28800,0,'PST',],[63498592800,63519152400,63498567600,63519127200,-25200,1,'PDT',],[63519152400,63530042400,63519123600,63530013600,-28800,0,'PST',],[63530042400,63550602000,63530017200,63550576800,-25200,1,'PDT',],[63550602000,63561492000,63550573200,63561463200,-28800,0,'PST',],[63561492000,63582051600,63561466800,63582026400,-25200,1,'PDT',],[63582051600,63593546400,63582022800,63593517600,-28800,0,'PST',],[63593546400,63614106000,63593521200,63614080800,-25200,1,'PDT',],[63614106000,63624996000,63614077200,63624967200,-28800,0,'PST',],[63624996000,63645555600,63624970800,63645530400,-25200,1,'PDT',],[63645555600,63656445600,63645526800,63656416800,-28800,0,'PST',],[63656445600,63677005200,63656420400,63676980000,-25200,1,'PDT',],[63677005200,63687895200,63676976400,63687866400,-28800,0,'PST',],[63687895200,63708454800,63687870000,63708429600,-25200,1,'PDT',],[63708454800,63719344800,63708426000,63719316000,-28800,0,'PST',],[63719344800,63739904400,63719319600,63739879200,-25200,1,'PDT',],[63739904400,63751399200,63739875600,63751370400,-28800,0,'PST',],[63751399200,63771958800,63751374000,63771933600,-25200,1,'PDT',],[63771958800,63782848800,63771930000,63782820000,-28800,0,'PST',],[63782848800,63803408400,63782823600,63803383200,-25200,1,'PDT',],[63803408400,63814298400,63803379600,63814269600,-28800,0,'PST',],[63814298400,63834858000,63814273200,63834832800,-25200,1,'PDT',],[63834858000,63845748000,63834829200,63845719200,-28800,0,'PST',],[63845748000,63866307600,63845722800,63866282400,-25200,1,'PDT',],[63866307600,63877197600,63866278800,63877168800,-28800,0,'PST',],[63877197600,63897757200,63877172400,63897732000,-25200,1,'PDT',],[63897757200,63908647200,63897728400,63908618400,-28800,0,'PST',],[63908647200,63929206800,63908622000,63929181600,-25200,1,'PDT',],[63929206800,63940701600,63929178000,63940672800,-28800,0,'PST',],[63940701600,63961261200,63940676400,63961236000,-25200,1,'PDT',],];sub olson_version {'2016a'}sub has_dst_changes {63}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-28800}my$last_observance=bless({'format'=>'P%sT','gmtoff'=>'-8:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>733773,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>733773,'utc_rd_secs'=>0,'utc_year'=>2011 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-28800,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>733773,'local_rd_secs'=>28800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>733773,'utc_rd_secs'=>28800,'utc_year'=>2011 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_TIJUANA

$fatpacked{"DateTime/TimeZone/America/Toronto.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_TORONTO';
  package DateTime::TimeZone::America::Toronto;$DateTime::TimeZone::America::Toronto::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Toronto::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59768947052,DateTime::TimeZone::NEG_INFINITY,59768928000,-19052,0,'LMT',],[59768947052,60503612400,59768929052,60503594400,-18000,0,'EST',],[60503612400,60520543200,60503598000,60520528800,-14400,1,'EDT',],[60520543200,60526242000,60520525200,60526224000,-18000,0,'EST',],[60526242000,60533929800,60526224000,60533911800,-18000,0,'EST',],[60533929800,60551985600,60533915400,60551971200,-14400,1,'EDT',],[60551985600,60568326000,60551967600,60568308000,-18000,0,'EST',],[60568326000,60581016000,60568311600,60581001600,-14400,1,'EDT',],[60581016000,60600985200,60580998000,60600967200,-18000,0,'EST',],[60600985200,60611608800,60600970800,60611594400,-14400,1,'EDT',],[60611608800,60632434800,60611590800,60632416800,-18000,0,'EST',],[60632434800,60643317600,60632420400,60643303200,-14400,1,'EDT',],[60643317600,60663884400,60643299600,60663866400,-18000,0,'EST',],[60663884400,60674767200,60663870000,60674752800,-14400,1,'EDT',],[60674767200,60694729200,60674749200,60694711200,-18000,0,'EST',],[60694729200,60706821600,60694714800,60706807200,-14400,1,'EDT',],[60706821600,60726178800,60706803600,60726160800,-18000,0,'EST',],[60726178800,60738271200,60726164400,60738256800,-14400,1,'EDT',],[60738271200,60757628400,60738253200,60757610400,-18000,0,'EST',],[60757628400,60769720800,60757614000,60769706400,-14400,1,'EDT',],[60769720800,60789078000,60769702800,60789060000,-18000,0,'EST',],[60789078000,60801775200,60789063600,60801760800,-14400,1,'EDT',],[60801775200,60820527600,60801757200,60820509600,-18000,0,'EST',],[60820527600,60833829600,60820513200,60833815200,-14400,1,'EDT',],[60833829600,60851977200,60833811600,60851959200,-18000,0,'EST',],[60851977200,60865279200,60851962800,60865264800,-14400,1,'EDT',],[60865279200,60883426800,60865261200,60883408800,-18000,0,'EST',],[60883426800,60896728800,60883412400,60896714400,-14400,1,'EDT',],[60896728800,60914876400,60896710800,60914858400,-18000,0,'EST',],[60914876400,60928178400,60914862000,60928164000,-14400,1,'EDT',],[60928178400,60946930800,60928160400,60946912800,-18000,0,'EST',],[60946930800,60959628000,60946916400,60959613600,-14400,1,'EDT',],[60959628000,60978380400,60959610000,60978362400,-18000,0,'EST',],[60978380400,60991682400,60978366000,60991668000,-14400,1,'EDT',],[60991682400,61009830000,60991664400,61009812000,-18000,0,'EST',],[61009830000,61023132000,61009815600,61023117600,-14400,1,'EDT',],[61023132000,61041279600,61023114000,61041261600,-18000,0,'EST',],[61041279600,61054581600,61041265200,61054567200,-14400,1,'EDT',],[61054581600,61072729200,61054563600,61072711200,-18000,0,'EST',],[61072729200,61086031200,61072714800,61086016800,-14400,1,'EDT',],[61086031200,61104178800,61086013200,61104160800,-18000,0,'EST',],[61104178800,61117480800,61104164400,61117466400,-14400,1,'EDT',],[61117480800,61135628400,61117462800,61135610400,-18000,0,'EST',],[61135628400,61148930400,61135614000,61148916000,-14400,1,'EDT',],[61148930400,61167682800,61148912400,61167664800,-18000,0,'EST',],[61167682800,61180380000,61167668400,61180365600,-14400,1,'EDT',],[61180380000,61199132400,61180362000,61199114400,-18000,0,'EST',],[61199132400,61255465200,61199118000,61255450800,-14400,1,'EDT',],[61255465200,61366287600,61255450800,61366273200,-14400,1,'EWT',],[61366287600,61370287200,61366273200,61370272800,-14400,1,'EPT',],[61370287200,61378318800,61370269200,61378300800,-18000,0,'EST',],[61378318800,61388434800,61378300800,61388416800,-18000,0,'EST',],[61388434800,61401736800,61388420400,61401722400,-14400,1,'EDT',],[61401736800,61419877200,61401718800,61419859200,-18000,0,'EST',],[61419877200,61433179200,61419862800,61433164800,-14400,1,'EDT',],[61433179200,61451326800,61433161200,61451308800,-18000,0,'EST',],[61451326800,61464628800,61451312400,61464614400,-14400,1,'EDT',],[61464628800,61482776400,61464610800,61482758400,-18000,0,'EST',],[61482776400,61501521600,61482762000,61501507200,-14400,1,'EDT',],[61501521600,61514838000,61501503600,61514820000,-18000,0,'EST',],[61514838000,61532978400,61514823600,61532964000,-14400,1,'EDT',],[61532978400,61546287600,61532960400,61546269600,-18000,0,'EST',],[61546287600,61559589600,61546273200,61559575200,-14400,1,'EDT',],[61559589600,61577737200,61559571600,61577719200,-18000,0,'EST',],[61577737200,61591039200,61577722800,61591024800,-14400,1,'EDT',],[61591039200,61609186800,61591021200,61609168800,-18000,0,'EST',],[61609186800,61622488800,61609172400,61622474400,-14400,1,'EDT',],[61622488800,61640636400,61622470800,61640618400,-18000,0,'EST',],[61640636400,61653938400,61640622000,61653924000,-14400,1,'EDT',],[61653938400,61672086000,61653920400,61672068000,-18000,0,'EST',],[61672086000,61685388000,61672071600,61685373600,-14400,1,'EDT',],[61685388000,61704140400,61685370000,61704122400,-18000,0,'EST',],[61704140400,61717442400,61704126000,61717428000,-14400,1,'EDT',],[61717442400,61735590000,61717424400,61735572000,-18000,0,'EST',],[61735590000,61751311200,61735575600,61751296800,-14400,1,'EDT',],[61751311200,61767039600,61751293200,61767021600,-18000,0,'EST',],[61767039600,61782760800,61767025200,61782746400,-14400,1,'EDT',],[61782760800,61798489200,61782742800,61798471200,-18000,0,'EST',],[61798489200,61814210400,61798474800,61814196000,-14400,1,'EDT',],[61814210400,61829938800,61814192400,61829920800,-18000,0,'EST',],[61829938800,61846264800,61829924400,61846250400,-14400,1,'EDT',],[61846264800,61861993200,61846246800,61861975200,-18000,0,'EST',],[61861993200,61877714400,61861978800,61877700000,-14400,1,'EDT',],[61877714400,61893442800,61877696400,61893424800,-18000,0,'EST',],[61893442800,61909164000,61893428400,61909149600,-14400,1,'EDT',],[61909164000,61924892400,61909146000,61924874400,-18000,0,'EST',],[61924892400,61940613600,61924878000,61940599200,-14400,1,'EDT',],[61940613600,61956342000,61940595600,61956324000,-18000,0,'EST',],[61956342000,61972063200,61956327600,61972048800,-14400,1,'EDT',],[61972063200,61987791600,61972045200,61987773600,-18000,0,'EST',],[61987791600,62004117600,61987777200,62004103200,-14400,1,'EDT',],[62004117600,62019241200,62004099600,62019223200,-18000,0,'EST',],[62019241200,62035567200,62019226800,62035552800,-14400,1,'EDT',],[62035567200,62051295600,62035549200,62051277600,-18000,0,'EST',],[62051295600,62067016800,62051281200,62067002400,-14400,1,'EDT',],[62067016800,62082745200,62066998800,62082727200,-18000,0,'EST',],[62082745200,62098466400,62082730800,62098452000,-14400,1,'EDT',],[62098466400,62114194800,62098448400,62114176800,-18000,0,'EST',],[62114194800,62129916000,62114180400,62129901600,-14400,1,'EDT',],[62129916000,62145644400,62129898000,62145626400,-18000,0,'EST',],[62145644400,62161365600,62145630000,62161351200,-14400,1,'EDT',],[62161365600,62177094000,62161347600,62177076000,-18000,0,'EST',],[62177094000,62193420000,62177079600,62193405600,-14400,1,'EDT',],[62193420000,62209148400,62193402000,62209130400,-18000,0,'EST',],[62209148400,62224869600,62209134000,62224855200,-14400,1,'EDT',],[62224869600,62240598000,62224851600,62240580000,-18000,0,'EST',],[62240598000,62256319200,62240583600,62256304800,-14400,1,'EDT',],[62256319200,62261931600,62256301200,62261913600,-18000,0,'EST',],[62261931600,62272047600,62261913600,62272029600,-18000,0,'EST',],[62272047600,62287768800,62272033200,62287754400,-14400,1,'EDT',],[62287768800,62303497200,62287750800,62303479200,-18000,0,'EST',],[62303497200,62319218400,62303482800,62319204000,-14400,1,'EDT',],[62319218400,62334946800,62319200400,62334928800,-18000,0,'EST',],[62334946800,62351272800,62334932400,62351258400,-14400,1,'EDT',],[62351272800,62366396400,62351254800,62366378400,-18000,0,'EST',],[62366396400,62382722400,62366382000,62382708000,-14400,1,'EDT',],[62382722400,62398450800,62382704400,62398432800,-18000,0,'EST',],[62398450800,62414172000,62398436400,62414157600,-14400,1,'EDT',],[62414172000,62429900400,62414154000,62429882400,-18000,0,'EST',],[62429900400,62445621600,62429886000,62445607200,-14400,1,'EDT',],[62445621600,62461350000,62445603600,62461332000,-18000,0,'EST',],[62461350000,62477071200,62461335600,62477056800,-14400,1,'EDT',],[62477071200,62492799600,62477053200,62492781600,-18000,0,'EST',],[62492799600,62508520800,62492785200,62508506400,-14400,1,'EDT',],[62508520800,62524249200,62508502800,62524231200,-18000,0,'EST',],[62524249200,62540575200,62524234800,62540560800,-14400,1,'EDT',],[62540575200,62555698800,62540557200,62555680800,-18000,0,'EST',],[62555698800,62572024800,62555684400,62572010400,-14400,1,'EDT',],[62572024800,62587753200,62572006800,62587735200,-18000,0,'EST',],[62587753200,62603474400,62587738800,62603460000,-14400,1,'EDT',],[62603474400,62619202800,62603456400,62619184800,-18000,0,'EST',],[62619202800,62634924000,62619188400,62634909600,-14400,1,'EDT',],[62634924000,62650652400,62634906000,62650634400,-18000,0,'EST',],[62650652400,62666373600,62650638000,62666359200,-14400,1,'EDT',],[62666373600,62680287600,62666355600,62680269600,-18000,0,'EST',],[62680287600,62697823200,62680273200,62697808800,-14400,1,'EDT',],[62697823200,62711737200,62697805200,62711719200,-18000,0,'EST',],[62711737200,62729877600,62711722800,62729863200,-14400,1,'EDT',],[62729877600,62743186800,62729859600,62743168800,-18000,0,'EST',],[62743186800,62761327200,62743172400,62761312800,-14400,1,'EDT',],[62761327200,62774636400,62761309200,62774618400,-18000,0,'EST',],[62774636400,62792776800,62774622000,62792762400,-14400,1,'EDT',],[62792776800,62806690800,62792758800,62806672800,-18000,0,'EST',],[62806690800,62824226400,62806676400,62824212000,-14400,1,'EDT',],[62824226400,62838140400,62824208400,62838122400,-18000,0,'EST',],[62838140400,62855676000,62838126000,62855661600,-14400,1,'EDT',],[62855676000,62869590000,62855658000,62869572000,-18000,0,'EST',],[62869590000,62887730400,62869575600,62887716000,-14400,1,'EDT',],[62887730400,62901039600,62887712400,62901021600,-18000,0,'EST',],[62901039600,62919180000,62901025200,62919165600,-14400,1,'EDT',],[62919180000,62932489200,62919162000,62932471200,-18000,0,'EST',],[62932489200,62950629600,62932474800,62950615200,-14400,1,'EDT',],[62950629600,62964543600,62950611600,62964525600,-18000,0,'EST',],[62964543600,62982079200,62964529200,62982064800,-14400,1,'EDT',],[62982079200,62995993200,62982061200,62995975200,-18000,0,'EST',],[62995993200,63013528800,62995978800,63013514400,-14400,1,'EDT',],[63013528800,63027442800,63013510800,63027424800,-18000,0,'EST',],[63027442800,63044978400,63027428400,63044964000,-14400,1,'EDT',],[63044978400,63058892400,63044960400,63058874400,-18000,0,'EST',],[63058892400,63077032800,63058878000,63077018400,-14400,1,'EDT',],[63077032800,63090342000,63077014800,63090324000,-18000,0,'EST',],[63090342000,63108482400,63090327600,63108468000,-14400,1,'EDT',],[63108482400,63121791600,63108464400,63121773600,-18000,0,'EST',],[63121791600,63139932000,63121777200,63139917600,-14400,1,'EDT',],[63139932000,63153846000,63139914000,63153828000,-18000,0,'EST',],[63153846000,63171381600,63153831600,63171367200,-14400,1,'EDT',],[63171381600,63185295600,63171363600,63185277600,-18000,0,'EST',],[63185295600,63202831200,63185281200,63202816800,-14400,1,'EDT',],[63202831200,63216745200,63202813200,63216727200,-18000,0,'EST',],[63216745200,63234885600,63216730800,63234871200,-14400,1,'EDT',],[63234885600,63248194800,63234867600,63248176800,-18000,0,'EST',],[63248194800,63266335200,63248180400,63266320800,-14400,1,'EDT',],[63266335200,63279644400,63266317200,63279626400,-18000,0,'EST',],[63279644400,63297784800,63279630000,63297770400,-14400,1,'EDT',],[63297784800,63309279600,63297766800,63309261600,-18000,0,'EST',],[63309279600,63329839200,63309265200,63329824800,-14400,1,'EDT',],[63329839200,63340729200,63329821200,63340711200,-18000,0,'EST',],[63340729200,63361288800,63340714800,63361274400,-14400,1,'EDT',],[63361288800,63372178800,63361270800,63372160800,-18000,0,'EST',],[63372178800,63392738400,63372164400,63392724000,-14400,1,'EDT',],[63392738400,63404233200,63392720400,63404215200,-18000,0,'EST',],[63404233200,63424792800,63404218800,63424778400,-14400,1,'EDT',],[63424792800,63435682800,63424774800,63435664800,-18000,0,'EST',],[63435682800,63456242400,63435668400,63456228000,-14400,1,'EDT',],[63456242400,63467132400,63456224400,63467114400,-18000,0,'EST',],[63467132400,63487692000,63467118000,63487677600,-14400,1,'EDT',],[63487692000,63498582000,63487674000,63498564000,-18000,0,'EST',],[63498582000,63519141600,63498567600,63519127200,-14400,1,'EDT',],[63519141600,63530031600,63519123600,63530013600,-18000,0,'EST',],[63530031600,63550591200,63530017200,63550576800,-14400,1,'EDT',],[63550591200,63561481200,63550573200,63561463200,-18000,0,'EST',],[63561481200,63582040800,63561466800,63582026400,-14400,1,'EDT',],[63582040800,63593535600,63582022800,63593517600,-18000,0,'EST',],[63593535600,63614095200,63593521200,63614080800,-14400,1,'EDT',],[63614095200,63624985200,63614077200,63624967200,-18000,0,'EST',],[63624985200,63645544800,63624970800,63645530400,-14400,1,'EDT',],[63645544800,63656434800,63645526800,63656416800,-18000,0,'EST',],[63656434800,63676994400,63656420400,63676980000,-14400,1,'EDT',],[63676994400,63687884400,63676976400,63687866400,-18000,0,'EST',],[63687884400,63708444000,63687870000,63708429600,-14400,1,'EDT',],[63708444000,63719334000,63708426000,63719316000,-18000,0,'EST',],[63719334000,63739893600,63719319600,63739879200,-14400,1,'EDT',],[63739893600,63751388400,63739875600,63751370400,-18000,0,'EST',],[63751388400,63771948000,63751374000,63771933600,-14400,1,'EDT',],[63771948000,63782838000,63771930000,63782820000,-18000,0,'EST',],[63782838000,63803397600,63782823600,63803383200,-14400,1,'EDT',],[63803397600,63814287600,63803379600,63814269600,-18000,0,'EST',],[63814287600,63834847200,63814273200,63834832800,-14400,1,'EDT',],[63834847200,63845737200,63834829200,63845719200,-18000,0,'EST',],[63845737200,63866296800,63845722800,63866282400,-14400,1,'EDT',],[63866296800,63877186800,63866278800,63877168800,-18000,0,'EST',],[63877186800,63897746400,63877172400,63897732000,-14400,1,'EDT',],[63897746400,63908636400,63897728400,63908618400,-18000,0,'EST',],[63908636400,63929196000,63908622000,63929181600,-14400,1,'EDT',],[63929196000,63940690800,63929178000,63940672800,-18000,0,'EST',],[63940690800,63961250400,63940676400,63961236000,-14400,1,'EDT',],];sub olson_version {'2016a'}sub has_dst_changes {107}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-18000}my$last_observance=bless({'format'=>'E%sT','gmtoff'=>'-5:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>720624,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>720624,'utc_rd_secs'=>0,'utc_year'=>1975 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-18000,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>720624,'local_rd_secs'=>18000,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>720624,'utc_rd_secs'=>18000,'utc_year'=>1975 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'Canada','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'Canada','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_TORONTO

$fatpacked{"DateTime/TimeZone/America/Vancouver.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_VANCOUVER';
  package DateTime::TimeZone::America::Vancouver;$DateTime::TimeZone::America::Vancouver::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Vancouver::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59421802348,DateTime::TimeZone::NEG_INFINITY,59421772800,-29548,0,'LMT',],[59421802348,60503623200,59421773548,60503594400,-28800,0,'PST',],[60503623200,60520554000,60503598000,60520528800,-25200,1,'PDT',],[60520554000,61255476000,60520525200,61255447200,-28800,0,'PST',],[61255476000,61366287600,61255450800,61366262400,-25200,1,'PWT',],[61366287600,61370298000,61366262400,61370272800,-25200,1,'PPT',],[61370298000,61388445600,61370269200,61388416800,-28800,0,'PST',],[61388445600,61402957200,61388420400,61402932000,-25200,1,'PDT',],[61402957200,61419895200,61402928400,61419866400,-28800,0,'PST',],[61419895200,61433197200,61419870000,61433172000,-25200,1,'PDT',],[61433197200,61451344800,61433168400,61451316000,-28800,0,'PST',],[61451344800,61464646800,61451319600,61464621600,-25200,1,'PDT',],[61464646800,61482794400,61464618000,61482765600,-28800,0,'PST',],[61482794400,61496096400,61482769200,61496071200,-25200,1,'PDT',],[61496096400,61514848800,61496067600,61514820000,-28800,0,'PST',],[61514848800,61527546000,61514823600,61527520800,-25200,1,'PDT',],[61527546000,61546298400,61527517200,61546269600,-28800,0,'PST',],[61546298400,61559600400,61546273200,61559575200,-25200,1,'PDT',],[61559600400,61577748000,61559571600,61577719200,-28800,0,'PST',],[61577748000,61591050000,61577722800,61591024800,-25200,1,'PDT',],[61591050000,61609197600,61591021200,61609168800,-28800,0,'PST',],[61609197600,61622499600,61609172400,61622474400,-25200,1,'PDT',],[61622499600,61640647200,61622470800,61640618400,-28800,0,'PST',],[61640647200,61653949200,61640622000,61653924000,-25200,1,'PDT',],[61653949200,61672096800,61653920400,61672068000,-28800,0,'PST',],[61672096800,61685398800,61672071600,61685373600,-25200,1,'PDT',],[61685398800,61704151200,61685370000,61704122400,-28800,0,'PST',],[61704151200,61717453200,61704126000,61717428000,-25200,1,'PDT',],[61717453200,61735600800,61717424400,61735572000,-28800,0,'PST',],[61735600800,61748902800,61735575600,61748877600,-25200,1,'PDT',],[61748902800,61767050400,61748874000,61767021600,-28800,0,'PST',],[61767050400,61780352400,61767025200,61780327200,-25200,1,'PDT',],[61780352400,61798500000,61780323600,61798471200,-28800,0,'PST',],[61798500000,61811802000,61798474800,61811776800,-25200,1,'PDT',],[61811802000,61829949600,61811773200,61829920800,-28800,0,'PST',],[61829949600,61843251600,61829924400,61843226400,-25200,1,'PDT',],[61843251600,61862004000,61843222800,61861975200,-28800,0,'PST',],[61862004000,61874701200,61861978800,61874676000,-25200,1,'PDT',],[61874701200,61893453600,61874672400,61893424800,-28800,0,'PST',],[61893453600,61909174800,61893428400,61909149600,-25200,1,'PDT',],[61909174800,61924903200,61909146000,61924874400,-28800,0,'PST',],[61924903200,61940624400,61924878000,61940599200,-25200,1,'PDT',],[61940624400,61956352800,61940595600,61956324000,-28800,0,'PST',],[61956352800,61972074000,61956327600,61972048800,-25200,1,'PDT',],[61972074000,61987802400,61972045200,61987773600,-28800,0,'PST',],[61987802400,62004128400,61987777200,62004103200,-25200,1,'PDT',],[62004128400,62019252000,62004099600,62019223200,-28800,0,'PST',],[62019252000,62035578000,62019226800,62035552800,-25200,1,'PDT',],[62035578000,62051306400,62035549200,62051277600,-28800,0,'PST',],[62051306400,62067027600,62051281200,62067002400,-25200,1,'PDT',],[62067027600,62082756000,62066998800,62082727200,-28800,0,'PST',],[62082756000,62098477200,62082730800,62098452000,-25200,1,'PDT',],[62098477200,62114205600,62098448400,62114176800,-28800,0,'PST',],[62114205600,62129926800,62114180400,62129901600,-25200,1,'PDT',],[62129926800,62145655200,62129898000,62145626400,-28800,0,'PST',],[62145655200,62161376400,62145630000,62161351200,-25200,1,'PDT',],[62161376400,62177104800,62161347600,62177076000,-28800,0,'PST',],[62177104800,62193430800,62177079600,62193405600,-25200,1,'PDT',],[62193430800,62209159200,62193402000,62209130400,-28800,0,'PST',],[62209159200,62224880400,62209134000,62224855200,-25200,1,'PDT',],[62224880400,62240608800,62224851600,62240580000,-28800,0,'PST',],[62240608800,62256330000,62240583600,62256304800,-25200,1,'PDT',],[62256330000,62272058400,62256301200,62272029600,-28800,0,'PST',],[62272058400,62287779600,62272033200,62287754400,-25200,1,'PDT',],[62287779600,62303508000,62287750800,62303479200,-28800,0,'PST',],[62303508000,62319229200,62303482800,62319204000,-25200,1,'PDT',],[62319229200,62334957600,62319200400,62334928800,-28800,0,'PST',],[62334957600,62351283600,62334932400,62351258400,-25200,1,'PDT',],[62351283600,62366407200,62351254800,62366378400,-28800,0,'PST',],[62366407200,62382733200,62366382000,62382708000,-25200,1,'PDT',],[62382733200,62398461600,62382704400,62398432800,-28800,0,'PST',],[62398461600,62414182800,62398436400,62414157600,-25200,1,'PDT',],[62414182800,62429911200,62414154000,62429882400,-28800,0,'PST',],[62429911200,62445632400,62429886000,62445607200,-25200,1,'PDT',],[62445632400,62461360800,62445603600,62461332000,-28800,0,'PST',],[62461360800,62477082000,62461335600,62477056800,-25200,1,'PDT',],[62477082000,62492810400,62477053200,62492781600,-28800,0,'PST',],[62492810400,62508531600,62492785200,62508506400,-25200,1,'PDT',],[62508531600,62524260000,62508502800,62524231200,-28800,0,'PST',],[62524260000,62540586000,62524234800,62540560800,-25200,1,'PDT',],[62540586000,62555709600,62540557200,62555680800,-28800,0,'PST',],[62555709600,62572035600,62555684400,62572010400,-25200,1,'PDT',],[62572035600,62587764000,62572006800,62587735200,-28800,0,'PST',],[62587764000,62603485200,62587738800,62603460000,-25200,1,'PDT',],[62603485200,62619213600,62603456400,62619184800,-28800,0,'PST',],[62619213600,62634934800,62619188400,62634909600,-25200,1,'PDT',],[62634934800,62650663200,62634906000,62650634400,-28800,0,'PST',],[62650663200,62666384400,62650638000,62666359200,-25200,1,'PDT',],[62666384400,62672169600,62666355600,62672140800,-28800,0,'PST',],[62672169600,62680298400,62672140800,62680269600,-28800,0,'PST',],[62680298400,62697834000,62680273200,62697808800,-25200,1,'PDT',],[62697834000,62711748000,62697805200,62711719200,-28800,0,'PST',],[62711748000,62729888400,62711722800,62729863200,-25200,1,'PDT',],[62729888400,62743197600,62729859600,62743168800,-28800,0,'PST',],[62743197600,62761338000,62743172400,62761312800,-25200,1,'PDT',],[62761338000,62774647200,62761309200,62774618400,-28800,0,'PST',],[62774647200,62792787600,62774622000,62792762400,-25200,1,'PDT',],[62792787600,62806701600,62792758800,62806672800,-28800,0,'PST',],[62806701600,62824237200,62806676400,62824212000,-25200,1,'PDT',],[62824237200,62838151200,62824208400,62838122400,-28800,0,'PST',],[62838151200,62855686800,62838126000,62855661600,-25200,1,'PDT',],[62855686800,62869600800,62855658000,62869572000,-28800,0,'PST',],[62869600800,62887741200,62869575600,62887716000,-25200,1,'PDT',],[62887741200,62901050400,62887712400,62901021600,-28800,0,'PST',],[62901050400,62919190800,62901025200,62919165600,-25200,1,'PDT',],[62919190800,62932500000,62919162000,62932471200,-28800,0,'PST',],[62932500000,62950640400,62932474800,62950615200,-25200,1,'PDT',],[62950640400,62964554400,62950611600,62964525600,-28800,0,'PST',],[62964554400,62982090000,62964529200,62982064800,-25200,1,'PDT',],[62982090000,62996004000,62982061200,62995975200,-28800,0,'PST',],[62996004000,63013539600,62995978800,63013514400,-25200,1,'PDT',],[63013539600,63027453600,63013510800,63027424800,-28800,0,'PST',],[63027453600,63044989200,63027428400,63044964000,-25200,1,'PDT',],[63044989200,63058903200,63044960400,63058874400,-28800,0,'PST',],[63058903200,63077043600,63058878000,63077018400,-25200,1,'PDT',],[63077043600,63090352800,63077014800,63090324000,-28800,0,'PST',],[63090352800,63108493200,63090327600,63108468000,-25200,1,'PDT',],[63108493200,63121802400,63108464400,63121773600,-28800,0,'PST',],[63121802400,63139942800,63121777200,63139917600,-25200,1,'PDT',],[63139942800,63153856800,63139914000,63153828000,-28800,0,'PST',],[63153856800,63171392400,63153831600,63171367200,-25200,1,'PDT',],[63171392400,63185306400,63171363600,63185277600,-28800,0,'PST',],[63185306400,63202842000,63185281200,63202816800,-25200,1,'PDT',],[63202842000,63216756000,63202813200,63216727200,-28800,0,'PST',],[63216756000,63234896400,63216730800,63234871200,-25200,1,'PDT',],[63234896400,63248205600,63234867600,63248176800,-28800,0,'PST',],[63248205600,63266346000,63248180400,63266320800,-25200,1,'PDT',],[63266346000,63279655200,63266317200,63279626400,-28800,0,'PST',],[63279655200,63297795600,63279630000,63297770400,-25200,1,'PDT',],[63297795600,63309290400,63297766800,63309261600,-28800,0,'PST',],[63309290400,63329850000,63309265200,63329824800,-25200,1,'PDT',],[63329850000,63340740000,63329821200,63340711200,-28800,0,'PST',],[63340740000,63361299600,63340714800,63361274400,-25200,1,'PDT',],[63361299600,63372189600,63361270800,63372160800,-28800,0,'PST',],[63372189600,63392749200,63372164400,63392724000,-25200,1,'PDT',],[63392749200,63404244000,63392720400,63404215200,-28800,0,'PST',],[63404244000,63424803600,63404218800,63424778400,-25200,1,'PDT',],[63424803600,63435693600,63424774800,63435664800,-28800,0,'PST',],[63435693600,63456253200,63435668400,63456228000,-25200,1,'PDT',],[63456253200,63467143200,63456224400,63467114400,-28800,0,'PST',],[63467143200,63487702800,63467118000,63487677600,-25200,1,'PDT',],[63487702800,63498592800,63487674000,63498564000,-28800,0,'PST',],[63498592800,63519152400,63498567600,63519127200,-25200,1,'PDT',],[63519152400,63530042400,63519123600,63530013600,-28800,0,'PST',],[63530042400,63550602000,63530017200,63550576800,-25200,1,'PDT',],[63550602000,63561492000,63550573200,63561463200,-28800,0,'PST',],[63561492000,63582051600,63561466800,63582026400,-25200,1,'PDT',],[63582051600,63593546400,63582022800,63593517600,-28800,0,'PST',],[63593546400,63614106000,63593521200,63614080800,-25200,1,'PDT',],[63614106000,63624996000,63614077200,63624967200,-28800,0,'PST',],[63624996000,63645555600,63624970800,63645530400,-25200,1,'PDT',],[63645555600,63656445600,63645526800,63656416800,-28800,0,'PST',],[63656445600,63677005200,63656420400,63676980000,-25200,1,'PDT',],[63677005200,63687895200,63676976400,63687866400,-28800,0,'PST',],[63687895200,63708454800,63687870000,63708429600,-25200,1,'PDT',],[63708454800,63719344800,63708426000,63719316000,-28800,0,'PST',],[63719344800,63739904400,63719319600,63739879200,-25200,1,'PDT',],[63739904400,63751399200,63739875600,63751370400,-28800,0,'PST',],[63751399200,63771958800,63751374000,63771933600,-25200,1,'PDT',],[63771958800,63782848800,63771930000,63782820000,-28800,0,'PST',],[63782848800,63803408400,63782823600,63803383200,-25200,1,'PDT',],[63803408400,63814298400,63803379600,63814269600,-28800,0,'PST',],[63814298400,63834858000,63814273200,63834832800,-25200,1,'PDT',],[63834858000,63845748000,63834829200,63845719200,-28800,0,'PST',],[63845748000,63866307600,63845722800,63866282400,-25200,1,'PDT',],[63866307600,63877197600,63866278800,63877168800,-28800,0,'PST',],[63877197600,63897757200,63877172400,63897732000,-25200,1,'PDT',],[63897757200,63908647200,63897728400,63908618400,-28800,0,'PST',],[63908647200,63929206800,63908622000,63929181600,-25200,1,'PDT',],[63929206800,63940701600,63929178000,63940672800,-28800,0,'PST',],[63940701600,63961261200,63940676400,63961236000,-25200,1,'PDT',],];sub olson_version {'2016a'}sub has_dst_changes {85}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-28800}my$last_observance=bless({'format'=>'P%sT','gmtoff'=>'-8:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>725372,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>725372,'utc_rd_secs'=>0,'utc_year'=>1988 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-28800,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>725372,'local_rd_secs'=>28800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>725372,'utc_rd_secs'=>28800,'utc_year'=>1988 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'Canada','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'Canada','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_VANCOUVER

$fatpacked{"DateTime/TimeZone/America/Whitehorse.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_WHITEHORSE';
  package DateTime::TimeZone::America::Whitehorse;$DateTime::TimeZone::America::Whitehorse::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Whitehorse::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59946685212,DateTime::TimeZone::NEG_INFINITY,59946652800,-32412,0,'LMT',],[59946685212,60503626800,59946652812,60503594400,-32400,0,'YST',],[60503626800,60520557600,60503598000,60520528800,-28800,1,'YDT',],[60520557600,60538705200,60520525200,60538672800,-32400,0,'YST',],[60538705200,60552518400,60538676400,60552489600,-28800,1,'YDT',],[60552518400,61255479600,60552486000,61255447200,-32400,0,'YST',],[61255479600,61366287600,61255450800,61366258800,-28800,1,'YWT',],[61366287600,61370301600,61366258800,61370272800,-28800,1,'YPT',],[61370301600,61987798800,61370269200,61987766400,-32400,0,'YST',],[61987798800,62004128400,61987773600,62004103200,-25200,1,'YDDT',],[62004128400,62053722000,62004096000,62053689600,-32400,0,'YST',],[62053722000,62451244800,62053693200,62451216000,-28800,0,'PST',],[62451244800,62461360800,62451216000,62461332000,-28800,0,'PST',],[62461360800,62477082000,62461335600,62477056800,-25200,1,'PDT',],[62477082000,62492810400,62477053200,62492781600,-28800,0,'PST',],[62492810400,62508531600,62492785200,62508506400,-25200,1,'PDT',],[62508531600,62524260000,62508502800,62524231200,-28800,0,'PST',],[62524260000,62540586000,62524234800,62540560800,-25200,1,'PDT',],[62540586000,62555709600,62540557200,62555680800,-28800,0,'PST',],[62555709600,62572035600,62555684400,62572010400,-25200,1,'PDT',],[62572035600,62587764000,62572006800,62587735200,-28800,0,'PST',],[62587764000,62603485200,62587738800,62603460000,-25200,1,'PDT',],[62603485200,62619213600,62603456400,62619184800,-28800,0,'PST',],[62619213600,62634934800,62619188400,62634909600,-25200,1,'PDT',],[62634934800,62650663200,62634906000,62650634400,-28800,0,'PST',],[62650663200,62666384400,62650638000,62666359200,-25200,1,'PDT',],[62666384400,62680298400,62666355600,62680269600,-28800,0,'PST',],[62680298400,62697834000,62680273200,62697808800,-25200,1,'PDT',],[62697834000,62711748000,62697805200,62711719200,-28800,0,'PST',],[62711748000,62729888400,62711722800,62729863200,-25200,1,'PDT',],[62729888400,62743197600,62729859600,62743168800,-28800,0,'PST',],[62743197600,62761338000,62743172400,62761312800,-25200,1,'PDT',],[62761338000,62774647200,62761309200,62774618400,-28800,0,'PST',],[62774647200,62792787600,62774622000,62792762400,-25200,1,'PDT',],[62792787600,62806701600,62792758800,62806672800,-28800,0,'PST',],[62806701600,62824237200,62806676400,62824212000,-25200,1,'PDT',],[62824237200,62838151200,62824208400,62838122400,-28800,0,'PST',],[62838151200,62855686800,62838126000,62855661600,-25200,1,'PDT',],[62855686800,62869600800,62855658000,62869572000,-28800,0,'PST',],[62869600800,62887741200,62869575600,62887716000,-25200,1,'PDT',],[62887741200,62901050400,62887712400,62901021600,-28800,0,'PST',],[62901050400,62919190800,62901025200,62919165600,-25200,1,'PDT',],[62919190800,62932500000,62919162000,62932471200,-28800,0,'PST',],[62932500000,62950640400,62932474800,62950615200,-25200,1,'PDT',],[62950640400,62964554400,62950611600,62964525600,-28800,0,'PST',],[62964554400,62982090000,62964529200,62982064800,-25200,1,'PDT',],[62982090000,62996004000,62982061200,62995975200,-28800,0,'PST',],[62996004000,63013539600,62995978800,63013514400,-25200,1,'PDT',],[63013539600,63027453600,63013510800,63027424800,-28800,0,'PST',],[63027453600,63044989200,63027428400,63044964000,-25200,1,'PDT',],[63044989200,63058903200,63044960400,63058874400,-28800,0,'PST',],[63058903200,63077043600,63058878000,63077018400,-25200,1,'PDT',],[63077043600,63090352800,63077014800,63090324000,-28800,0,'PST',],[63090352800,63108493200,63090327600,63108468000,-25200,1,'PDT',],[63108493200,63121802400,63108464400,63121773600,-28800,0,'PST',],[63121802400,63139942800,63121777200,63139917600,-25200,1,'PDT',],[63139942800,63153856800,63139914000,63153828000,-28800,0,'PST',],[63153856800,63171392400,63153831600,63171367200,-25200,1,'PDT',],[63171392400,63185306400,63171363600,63185277600,-28800,0,'PST',],[63185306400,63202842000,63185281200,63202816800,-25200,1,'PDT',],[63202842000,63216756000,63202813200,63216727200,-28800,0,'PST',],[63216756000,63234896400,63216730800,63234871200,-25200,1,'PDT',],[63234896400,63248205600,63234867600,63248176800,-28800,0,'PST',],[63248205600,63266346000,63248180400,63266320800,-25200,1,'PDT',],[63266346000,63279655200,63266317200,63279626400,-28800,0,'PST',],[63279655200,63297795600,63279630000,63297770400,-25200,1,'PDT',],[63297795600,63309290400,63297766800,63309261600,-28800,0,'PST',],[63309290400,63329850000,63309265200,63329824800,-25200,1,'PDT',],[63329850000,63340740000,63329821200,63340711200,-28800,0,'PST',],[63340740000,63361299600,63340714800,63361274400,-25200,1,'PDT',],[63361299600,63372189600,63361270800,63372160800,-28800,0,'PST',],[63372189600,63392749200,63372164400,63392724000,-25200,1,'PDT',],[63392749200,63404244000,63392720400,63404215200,-28800,0,'PST',],[63404244000,63424803600,63404218800,63424778400,-25200,1,'PDT',],[63424803600,63435693600,63424774800,63435664800,-28800,0,'PST',],[63435693600,63456253200,63435668400,63456228000,-25200,1,'PDT',],[63456253200,63467143200,63456224400,63467114400,-28800,0,'PST',],[63467143200,63487702800,63467118000,63487677600,-25200,1,'PDT',],[63487702800,63498592800,63487674000,63498564000,-28800,0,'PST',],[63498592800,63519152400,63498567600,63519127200,-25200,1,'PDT',],[63519152400,63530042400,63519123600,63530013600,-28800,0,'PST',],[63530042400,63550602000,63530017200,63550576800,-25200,1,'PDT',],[63550602000,63561492000,63550573200,63561463200,-28800,0,'PST',],[63561492000,63582051600,63561466800,63582026400,-25200,1,'PDT',],[63582051600,63593546400,63582022800,63593517600,-28800,0,'PST',],[63593546400,63614106000,63593521200,63614080800,-25200,1,'PDT',],[63614106000,63624996000,63614077200,63624967200,-28800,0,'PST',],[63624996000,63645555600,63624970800,63645530400,-25200,1,'PDT',],[63645555600,63656445600,63645526800,63656416800,-28800,0,'PST',],[63656445600,63677005200,63656420400,63676980000,-25200,1,'PDT',],[63677005200,63687895200,63676976400,63687866400,-28800,0,'PST',],[63687895200,63708454800,63687870000,63708429600,-25200,1,'PDT',],[63708454800,63719344800,63708426000,63719316000,-28800,0,'PST',],[63719344800,63739904400,63719319600,63739879200,-25200,1,'PDT',],[63739904400,63751399200,63739875600,63751370400,-28800,0,'PST',],[63751399200,63771958800,63751374000,63771933600,-25200,1,'PDT',],[63771958800,63782848800,63771930000,63782820000,-28800,0,'PST',],[63782848800,63803408400,63782823600,63803383200,-25200,1,'PDT',],[63803408400,63814298400,63803379600,63814269600,-28800,0,'PST',],[63814298400,63834858000,63814273200,63834832800,-25200,1,'PDT',],[63834858000,63845748000,63834829200,63845719200,-28800,0,'PST',],[63845748000,63866307600,63845722800,63866282400,-25200,1,'PDT',],[63866307600,63877197600,63866278800,63877168800,-28800,0,'PST',],[63877197600,63897757200,63877172400,63897732000,-25200,1,'PDT',],[63897757200,63908647200,63897728400,63908618400,-28800,0,'PST',],[63908647200,63929206800,63908622000,63929181600,-25200,1,'PDT',],[63929206800,63940701600,63929178000,63940672800,-28800,0,'PST',],[63940701600,63961261200,63940676400,63961236000,-25200,1,'PDT',],];sub olson_version {'2016a'}sub has_dst_changes {53}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-28800}my$last_observance=bless({'format'=>'P%sT','gmtoff'=>'-8:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>722815,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>722815,'utc_rd_secs'=>0,'utc_year'=>1981 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-28800,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>722815,'local_rd_secs'=>28800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>722815,'utc_rd_secs'=>28800,'utc_year'=>1981 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'Canada','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'Canada','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_WHITEHORSE

$fatpacked{"DateTime/TimeZone/America/Winnipeg.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_WINNIPEG';
  package DateTime::TimeZone::America::Winnipeg;$DateTime::TimeZone::America::Winnipeg::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Winnipeg::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59533424916,DateTime::TimeZone::NEG_INFINITY,59533401600,-23316,0,'LMT',],[59533424916,60441314400,59533403316,60441292800,-21600,0,'CST',],[60441314400,60454011600,60441296400,60453993600,-18000,1,'CDT',],[60454011600,60503616000,60453990000,60503594400,-21600,0,'CST',],[60503616000,60520546800,60503598000,60520528800,-18000,1,'CDT',],[60520546800,61105996800,60520525200,61105975200,-21600,0,'CST',],[61105996800,61117484400,61105978800,61117466400,-18000,1,'CDT',],[61117484400,61255468800,61117462800,61255447200,-21600,0,'CST',],[61255468800,61366287600,61255450800,61366269600,-18000,1,'CWT',],[61366287600,61370290800,61366269600,61370272800,-18000,1,'CPT',],[61370290800,61389648000,61370269200,61389626400,-21600,0,'CST',],[61389648000,61402950000,61389630000,61402932000,-18000,1,'CDT',],[61402950000,61419888000,61402928400,61419866400,-21600,0,'CST',],[61419888000,61433190000,61419870000,61433172000,-18000,1,'CDT',],[61433190000,61451337600,61433168400,61451316000,-21600,0,'CST',],[61451337600,61464639600,61451319600,61464621600,-18000,1,'CDT',],[61464639600,61482787200,61464618000,61482765600,-21600,0,'CST',],[61482787200,61496089200,61482769200,61496071200,-18000,1,'CDT',],[61496089200,61514928000,61496067600,61514906400,-21600,0,'CST',],[61514928000,61528057200,61514910000,61528039200,-18000,1,'CDT',],[61528057200,61546291200,61528035600,61546269600,-21600,0,'CST',],[61546291200,61559593200,61546273200,61559575200,-18000,1,'CDT',],[61559593200,61577740800,61559571600,61577719200,-21600,0,'CST',],[61577740800,61591042800,61577722800,61591024800,-18000,1,'CDT',],[61591042800,61609190400,61591021200,61609168800,-21600,0,'CST',],[61609190400,61622492400,61609172400,61622474400,-18000,1,'CDT',],[61622492400,61640640000,61622470800,61640618400,-21600,0,'CST',],[61640640000,61653942000,61640622000,61653924000,-18000,1,'CDT',],[61653942000,61672089600,61653920400,61672068000,-21600,0,'CST',],[61672089600,61685391600,61672071600,61685373600,-18000,1,'CDT',],[61685391600,61704144000,61685370000,61704122400,-21600,0,'CST',],[61704144000,61717446000,61704126000,61717428000,-18000,1,'CDT',],[61717446000,61735593600,61717424400,61735572000,-21600,0,'CST',],[61735593600,61748895600,61735575600,61748877600,-18000,1,'CDT',],[61748895600,61767043200,61748874000,61767021600,-21600,0,'CST',],[61767043200,61780345200,61767025200,61780327200,-18000,1,'CDT',],[61780345200,61798492800,61780323600,61798471200,-21600,0,'CST',],[61798492800,61814214000,61798474800,61814196000,-18000,1,'CDT',],[61814214000,61829942400,61814192400,61829920800,-21600,0,'CST',],[61829942400,61843244400,61829924400,61843226400,-18000,1,'CDT',],[61843244400,61924896000,61843222800,61924874400,-21600,0,'CST',],[61924896000,61937593200,61924878000,61937575200,-18000,1,'CDT',],[61937593200,62019244800,61937571600,62019223200,-21600,0,'CST',],[62019244800,62035574400,62019226800,62035556400,-18000,1,'CDT',],[62035574400,62051299200,62035552800,62051277600,-21600,0,'CST',],[62051299200,62067024000,62051281200,62067006000,-18000,1,'CDT',],[62067024000,62082748800,62067002400,62082727200,-21600,0,'CST',],[62082748800,62098473600,62082730800,62098455600,-18000,1,'CDT',],[62098473600,62114198400,62098452000,62114176800,-21600,0,'CST',],[62114198400,62129923200,62114180400,62129905200,-18000,1,'CDT',],[62129923200,62145648000,62129901600,62145626400,-21600,0,'CST',],[62145648000,62161372800,62145630000,62161354800,-18000,1,'CDT',],[62161372800,62177097600,62161351200,62177076000,-21600,0,'CST',],[62177097600,62193427200,62177079600,62193409200,-18000,1,'CDT',],[62193427200,62209152000,62193405600,62209130400,-21600,0,'CST',],[62209152000,62224876800,62209134000,62224858800,-18000,1,'CDT',],[62224876800,62240601600,62224855200,62240580000,-21600,0,'CST',],[62240601600,62256326400,62240583600,62256308400,-18000,1,'CDT',],[62256326400,62272051200,62256304800,62272029600,-21600,0,'CST',],[62272051200,62287776000,62272033200,62287758000,-18000,1,'CDT',],[62287776000,62303500800,62287754400,62303479200,-21600,0,'CST',],[62303500800,62319225600,62303482800,62319207600,-18000,1,'CDT',],[62319225600,62334950400,62319204000,62334928800,-21600,0,'CST',],[62334950400,62351280000,62334932400,62351262000,-18000,1,'CDT',],[62351280000,62366400000,62351258400,62366378400,-21600,0,'CST',],[62366400000,62382729600,62366382000,62382711600,-18000,1,'CDT',],[62382729600,62398454400,62382708000,62398432800,-21600,0,'CST',],[62398454400,62414179200,62398436400,62414161200,-18000,1,'CDT',],[62414179200,62429904000,62414157600,62429882400,-21600,0,'CST',],[62429904000,62445628800,62429886000,62445610800,-18000,1,'CDT',],[62445628800,62461353600,62445607200,62461332000,-21600,0,'CST',],[62461353600,62477078400,62461335600,62477060400,-18000,1,'CDT',],[62477078400,62492803200,62477056800,62492781600,-21600,0,'CST',],[62492803200,62508528000,62492785200,62508510000,-18000,1,'CDT',],[62508528000,62524252800,62508506400,62524231200,-21600,0,'CST',],[62524252800,62540582400,62524234800,62540564400,-18000,1,'CDT',],[62540582400,62555702400,62540560800,62555680800,-21600,0,'CST',],[62555702400,62572032000,62555684400,62572014000,-18000,1,'CDT',],[62572032000,62587756800,62572010400,62587735200,-21600,0,'CST',],[62587756800,62603481600,62587738800,62603463600,-18000,1,'CDT',],[62603481600,62619206400,62603460000,62619184800,-21600,0,'CST',],[62619206400,62634931200,62619188400,62634913200,-18000,1,'CDT',],[62634931200,62650656000,62634909600,62650634400,-21600,0,'CST',],[62650656000,62666380800,62650638000,62666362800,-18000,1,'CDT',],[62666380800,62680291200,62666359200,62680269600,-21600,0,'CST',],[62680291200,62697830400,62680273200,62697812400,-18000,1,'CDT',],[62697830400,62711740800,62697808800,62711719200,-21600,0,'CST',],[62711740800,62729884800,62711722800,62729866800,-18000,1,'CDT',],[62729884800,62743190400,62729863200,62743168800,-21600,0,'CST',],[62743190400,62761334400,62743172400,62761316400,-18000,1,'CDT',],[62761334400,62774640000,62761312800,62774618400,-21600,0,'CST',],[62774640000,62792784000,62774622000,62792766000,-18000,1,'CDT',],[62792784000,62806694400,62792762400,62806672800,-21600,0,'CST',],[62806694400,62824233600,62806676400,62824215600,-18000,1,'CDT',],[62824233600,62838144000,62824212000,62838122400,-21600,0,'CST',],[62838144000,62855683200,62838126000,62855665200,-18000,1,'CDT',],[62855683200,62869593600,62855661600,62869572000,-21600,0,'CST',],[62869593600,62887737600,62869575600,62887719600,-18000,1,'CDT',],[62887737600,62901043200,62887716000,62901021600,-21600,0,'CST',],[62901043200,62919187200,62901025200,62919169200,-18000,1,'CDT',],[62919187200,62932492800,62919165600,62932471200,-21600,0,'CST',],[62932492800,62950636800,62932474800,62950618800,-18000,1,'CDT',],[62950636800,62964547200,62950615200,62964525600,-21600,0,'CST',],[62964547200,62982086400,62964529200,62982068400,-18000,1,'CDT',],[62982086400,62995996800,62982064800,62995975200,-21600,0,'CST',],[62995996800,63013536000,62995978800,63013518000,-18000,1,'CDT',],[63013536000,63027446400,63013514400,63027424800,-21600,0,'CST',],[63027446400,63044985600,63027428400,63044967600,-18000,1,'CDT',],[63044985600,63058896000,63044964000,63058874400,-21600,0,'CST',],[63058896000,63077040000,63058878000,63077022000,-18000,1,'CDT',],[63077040000,63090345600,63077018400,63090324000,-21600,0,'CST',],[63090345600,63108489600,63090327600,63108471600,-18000,1,'CDT',],[63108489600,63121795200,63108468000,63121773600,-21600,0,'CST',],[63121795200,63139939200,63121777200,63139921200,-18000,1,'CDT',],[63139939200,63153849600,63139917600,63153828000,-21600,0,'CST',],[63153849600,63171388800,63153831600,63171370800,-18000,1,'CDT',],[63171388800,63185299200,63171367200,63185277600,-21600,0,'CST',],[63185299200,63202838400,63185281200,63202820400,-18000,1,'CDT',],[63202838400,63216748800,63202816800,63216727200,-21600,0,'CST',],[63216748800,63234892800,63216730800,63234874800,-18000,1,'CDT',],[63234892800,63248198400,63234871200,63248176800,-21600,0,'CST',],[63248198400,63266342400,63248180400,63266324400,-18000,1,'CDT',],[63266342400,63271778400,63266320800,63271756800,-21600,0,'CST',],[63271778400,63279648000,63271756800,63279626400,-21600,0,'CST',],[63279648000,63297788400,63279630000,63297770400,-18000,1,'CDT',],[63297788400,63309283200,63297766800,63309261600,-21600,0,'CST',],[63309283200,63329842800,63309265200,63329824800,-18000,1,'CDT',],[63329842800,63340732800,63329821200,63340711200,-21600,0,'CST',],[63340732800,63361292400,63340714800,63361274400,-18000,1,'CDT',],[63361292400,63372182400,63361270800,63372160800,-21600,0,'CST',],[63372182400,63392742000,63372164400,63392724000,-18000,1,'CDT',],[63392742000,63404236800,63392720400,63404215200,-21600,0,'CST',],[63404236800,63424796400,63404218800,63424778400,-18000,1,'CDT',],[63424796400,63435686400,63424774800,63435664800,-21600,0,'CST',],[63435686400,63456246000,63435668400,63456228000,-18000,1,'CDT',],[63456246000,63467136000,63456224400,63467114400,-21600,0,'CST',],[63467136000,63487695600,63467118000,63487677600,-18000,1,'CDT',],[63487695600,63498585600,63487674000,63498564000,-21600,0,'CST',],[63498585600,63519145200,63498567600,63519127200,-18000,1,'CDT',],[63519145200,63530035200,63519123600,63530013600,-21600,0,'CST',],[63530035200,63550594800,63530017200,63550576800,-18000,1,'CDT',],[63550594800,63561484800,63550573200,63561463200,-21600,0,'CST',],[63561484800,63582044400,63561466800,63582026400,-18000,1,'CDT',],[63582044400,63593539200,63582022800,63593517600,-21600,0,'CST',],[63593539200,63614098800,63593521200,63614080800,-18000,1,'CDT',],[63614098800,63624988800,63614077200,63624967200,-21600,0,'CST',],[63624988800,63645548400,63624970800,63645530400,-18000,1,'CDT',],[63645548400,63656438400,63645526800,63656416800,-21600,0,'CST',],[63656438400,63676998000,63656420400,63676980000,-18000,1,'CDT',],[63676998000,63687888000,63676976400,63687866400,-21600,0,'CST',],[63687888000,63708447600,63687870000,63708429600,-18000,1,'CDT',],[63708447600,63719337600,63708426000,63719316000,-21600,0,'CST',],[63719337600,63739897200,63719319600,63739879200,-18000,1,'CDT',],[63739897200,63751392000,63739875600,63751370400,-21600,0,'CST',],[63751392000,63771951600,63751374000,63771933600,-18000,1,'CDT',],[63771951600,63782841600,63771930000,63782820000,-21600,0,'CST',],[63782841600,63803401200,63782823600,63803383200,-18000,1,'CDT',],[63803401200,63814291200,63803379600,63814269600,-21600,0,'CST',],[63814291200,63834850800,63814273200,63834832800,-18000,1,'CDT',],[63834850800,63845740800,63834829200,63845719200,-21600,0,'CST',],[63845740800,63866300400,63845722800,63866282400,-18000,1,'CDT',],[63866300400,63877190400,63866278800,63877168800,-21600,0,'CST',],[63877190400,63897750000,63877172400,63897732000,-18000,1,'CDT',],[63897750000,63908640000,63897728400,63908618400,-21600,0,'CST',],[63908640000,63929199600,63908622000,63929181600,-18000,1,'CDT',],[63929199600,63940694400,63929178000,63940672800,-21600,0,'CST',],[63940694400,63961254000,63940676400,63961236000,-18000,1,'CDT',],];sub olson_version {'2016a'}sub has_dst_changes {83}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-21600}my$last_observance=bless({'format'=>'C%sT','gmtoff'=>'-6:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>732312,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>732312,'utc_rd_secs'=>0,'utc_year'=>2007 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-21600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>732312,'local_rd_secs'=>21600,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>732312,'utc_rd_secs'=>21600,'utc_year'=>2007 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'Canada','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'Canada','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_WINNIPEG

$fatpacked{"DateTime/TimeZone/America/Yakutat.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_YAKUTAT';
  package DateTime::TimeZone::America::Yakutat;$DateTime::TimeZone::America::Yakutat::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Yakutat::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,58910318335,DateTime::TimeZone::NEG_INFINITY,58910371200,52865,0,'LMT',],[58910318335,59946729535,58910284800,59946696000,-33535,0,'LMT',],[59946729535,61252102800,59946697135,61252070400,-32400,0,'YST',],[61252102800,61255479600,61252070400,61255447200,-32400,0,'YST',],[61255479600,61366287600,61255450800,61366258800,-28800,1,'YWT',],[61366287600,61370301600,61366258800,61370272800,-28800,1,'YPT',],[61370301600,61378333200,61370269200,61378300800,-32400,0,'YST',],[61378333200,62104179600,61378300800,62104147200,-32400,0,'YST',],[62104179600,62114209200,62104147200,62114176800,-32400,0,'YST',],[62114209200,62129930400,62114180400,62129901600,-28800,1,'YDT',],[62129930400,62145658800,62129898000,62145626400,-32400,0,'YST',],[62145658800,62161380000,62145630000,62161351200,-28800,1,'YDT',],[62161380000,62177108400,62161347600,62177076000,-32400,0,'YST',],[62177108400,62193434400,62177079600,62193405600,-28800,1,'YDT',],[62193434400,62209162800,62193402000,62209130400,-32400,0,'YST',],[62209162800,62224884000,62209134000,62224855200,-28800,1,'YDT',],[62224884000,62240612400,62224851600,62240580000,-32400,0,'YST',],[62240612400,62256333600,62240583600,62256304800,-28800,1,'YDT',],[62256333600,62262385200,62256301200,62262352800,-32400,0,'YST',],[62262385200,62287783200,62262356400,62287754400,-28800,1,'YDT',],[62287783200,62298068400,62287750800,62298036000,-32400,0,'YST',],[62298068400,62319232800,62298039600,62319204000,-28800,1,'YDT',],[62319232800,62334961200,62319200400,62334928800,-32400,0,'YST',],[62334961200,62351287200,62334932400,62351258400,-28800,1,'YDT',],[62351287200,62366410800,62351254800,62366378400,-32400,0,'YST',],[62366410800,62382736800,62366382000,62382708000,-28800,1,'YDT',],[62382736800,62398465200,62382704400,62398432800,-32400,0,'YST',],[62398465200,62414186400,62398436400,62414157600,-28800,1,'YDT',],[62414186400,62429914800,62414154000,62429882400,-32400,0,'YST',],[62429914800,62445636000,62429886000,62445607200,-28800,1,'YDT',],[62445636000,62461364400,62445603600,62461332000,-32400,0,'YST',],[62461364400,62477085600,62461335600,62477056800,-28800,1,'YDT',],[62477085600,62492814000,62477053200,62492781600,-32400,0,'YST',],[62492814000,62508535200,62492785200,62508506400,-28800,1,'YDT',],[62508535200,62524263600,62508502800,62524231200,-32400,0,'YST',],[62524263600,62540589600,62524234800,62540560800,-28800,1,'YDT',],[62540589600,62555713200,62540557200,62555680800,-32400,0,'YST',],[62555713200,62572039200,62555684400,62572010400,-28800,1,'YDT',],[62572039200,62574714000,62572006800,62574681600,-32400,0,'YST',],[62574714000,62587767600,62574681600,62587735200,-32400,0,'AKST',],[62587767600,62603488800,62587738800,62603460000,-28800,1,'AKDT',],[62603488800,62619217200,62603456400,62619184800,-32400,0,'AKST',],[62619217200,62634938400,62619188400,62634909600,-28800,1,'AKDT',],[62634938400,62650666800,62634906000,62650634400,-32400,0,'AKST',],[62650666800,62666388000,62650638000,62666359200,-28800,1,'AKDT',],[62666388000,62680302000,62666355600,62680269600,-32400,0,'AKST',],[62680302000,62697837600,62680273200,62697808800,-28800,1,'AKDT',],[62697837600,62711751600,62697805200,62711719200,-32400,0,'AKST',],[62711751600,62729892000,62711722800,62729863200,-28800,1,'AKDT',],[62729892000,62743201200,62729859600,62743168800,-32400,0,'AKST',],[62743201200,62761341600,62743172400,62761312800,-28800,1,'AKDT',],[62761341600,62774650800,62761309200,62774618400,-32400,0,'AKST',],[62774650800,62792791200,62774622000,62792762400,-28800,1,'AKDT',],[62792791200,62806705200,62792758800,62806672800,-32400,0,'AKST',],[62806705200,62824240800,62806676400,62824212000,-28800,1,'AKDT',],[62824240800,62838154800,62824208400,62838122400,-32400,0,'AKST',],[62838154800,62855690400,62838126000,62855661600,-28800,1,'AKDT',],[62855690400,62869604400,62855658000,62869572000,-32400,0,'AKST',],[62869604400,62887744800,62869575600,62887716000,-28800,1,'AKDT',],[62887744800,62901054000,62887712400,62901021600,-32400,0,'AKST',],[62901054000,62919194400,62901025200,62919165600,-28800,1,'AKDT',],[62919194400,62932503600,62919162000,62932471200,-32400,0,'AKST',],[62932503600,62950644000,62932474800,62950615200,-28800,1,'AKDT',],[62950644000,62964558000,62950611600,62964525600,-32400,0,'AKST',],[62964558000,62982093600,62964529200,62982064800,-28800,1,'AKDT',],[62982093600,62996007600,62982061200,62995975200,-32400,0,'AKST',],[62996007600,63013543200,62995978800,63013514400,-28800,1,'AKDT',],[63013543200,63027457200,63013510800,63027424800,-32400,0,'AKST',],[63027457200,63044992800,63027428400,63044964000,-28800,1,'AKDT',],[63044992800,63058906800,63044960400,63058874400,-32400,0,'AKST',],[63058906800,63077047200,63058878000,63077018400,-28800,1,'AKDT',],[63077047200,63090356400,63077014800,63090324000,-32400,0,'AKST',],[63090356400,63108496800,63090327600,63108468000,-28800,1,'AKDT',],[63108496800,63121806000,63108464400,63121773600,-32400,0,'AKST',],[63121806000,63139946400,63121777200,63139917600,-28800,1,'AKDT',],[63139946400,63153860400,63139914000,63153828000,-32400,0,'AKST',],[63153860400,63171396000,63153831600,63171367200,-28800,1,'AKDT',],[63171396000,63185310000,63171363600,63185277600,-32400,0,'AKST',],[63185310000,63202845600,63185281200,63202816800,-28800,1,'AKDT',],[63202845600,63216759600,63202813200,63216727200,-32400,0,'AKST',],[63216759600,63234900000,63216730800,63234871200,-28800,1,'AKDT',],[63234900000,63248209200,63234867600,63248176800,-32400,0,'AKST',],[63248209200,63266349600,63248180400,63266320800,-28800,1,'AKDT',],[63266349600,63279658800,63266317200,63279626400,-32400,0,'AKST',],[63279658800,63297799200,63279630000,63297770400,-28800,1,'AKDT',],[63297799200,63309294000,63297766800,63309261600,-32400,0,'AKST',],[63309294000,63329853600,63309265200,63329824800,-28800,1,'AKDT',],[63329853600,63340743600,63329821200,63340711200,-32400,0,'AKST',],[63340743600,63361303200,63340714800,63361274400,-28800,1,'AKDT',],[63361303200,63372193200,63361270800,63372160800,-32400,0,'AKST',],[63372193200,63392752800,63372164400,63392724000,-28800,1,'AKDT',],[63392752800,63404247600,63392720400,63404215200,-32400,0,'AKST',],[63404247600,63424807200,63404218800,63424778400,-28800,1,'AKDT',],[63424807200,63435697200,63424774800,63435664800,-32400,0,'AKST',],[63435697200,63456256800,63435668400,63456228000,-28800,1,'AKDT',],[63456256800,63467146800,63456224400,63467114400,-32400,0,'AKST',],[63467146800,63487706400,63467118000,63487677600,-28800,1,'AKDT',],[63487706400,63498596400,63487674000,63498564000,-32400,0,'AKST',],[63498596400,63519156000,63498567600,63519127200,-28800,1,'AKDT',],[63519156000,63530046000,63519123600,63530013600,-32400,0,'AKST',],[63530046000,63550605600,63530017200,63550576800,-28800,1,'AKDT',],[63550605600,63561495600,63550573200,63561463200,-32400,0,'AKST',],[63561495600,63582055200,63561466800,63582026400,-28800,1,'AKDT',],[63582055200,63593550000,63582022800,63593517600,-32400,0,'AKST',],[63593550000,63614109600,63593521200,63614080800,-28800,1,'AKDT',],[63614109600,63624999600,63614077200,63624967200,-32400,0,'AKST',],[63624999600,63645559200,63624970800,63645530400,-28800,1,'AKDT',],[63645559200,63656449200,63645526800,63656416800,-32400,0,'AKST',],[63656449200,63677008800,63656420400,63676980000,-28800,1,'AKDT',],[63677008800,63687898800,63676976400,63687866400,-32400,0,'AKST',],[63687898800,63708458400,63687870000,63708429600,-28800,1,'AKDT',],[63708458400,63719348400,63708426000,63719316000,-32400,0,'AKST',],[63719348400,63739908000,63719319600,63739879200,-28800,1,'AKDT',],[63739908000,63751402800,63739875600,63751370400,-32400,0,'AKST',],[63751402800,63771962400,63751374000,63771933600,-28800,1,'AKDT',],[63771962400,63782852400,63771930000,63782820000,-32400,0,'AKST',],[63782852400,63803412000,63782823600,63803383200,-28800,1,'AKDT',],[63803412000,63814302000,63803379600,63814269600,-32400,0,'AKST',],[63814302000,63834861600,63814273200,63834832800,-28800,1,'AKDT',],[63834861600,63845751600,63834829200,63845719200,-32400,0,'AKST',],[63845751600,63866311200,63845722800,63866282400,-28800,1,'AKDT',],[63866311200,63877201200,63866278800,63877168800,-32400,0,'AKST',],[63877201200,63897760800,63877172400,63897732000,-28800,1,'AKDT',],[63897760800,63908650800,63897728400,63908618400,-32400,0,'AKST',],[63908650800,63929210400,63908622000,63929181600,-28800,1,'AKDT',],[63929210400,63940705200,63929178000,63940672800,-32400,0,'AKST',],[63940705200,63961264800,63940676400,63961236000,-28800,1,'AKDT',],];sub olson_version {'2016a'}sub has_dst_changes {61}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-32400}my$last_observance=bless({'format'=>'AK%sT','gmtoff'=>'-9:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>724244,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>724244,'utc_rd_secs'=>0,'utc_year'=>1984 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-32400,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>724244,'local_rd_secs'=>32400,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>724244,'utc_rd_secs'=>32400,'utc_year'=>1984 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_YAKUTAT

$fatpacked{"DateTime/TimeZone/America/Yellowknife.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AMERICA_YELLOWKNIFE';
  package DateTime::TimeZone::America::Yellowknife;$DateTime::TimeZone::America::Yellowknife::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::America::Yellowknife::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,61031145600,DateTime::TimeZone::NEG_INFINITY,61031145600,0,0,'zzz',],[61031145600,61255472400,61031120400,61255447200,-25200,0,'MST',],[61255472400,61366287600,61255450800,61366266000,-21600,1,'MWT',],[61366287600,61370294400,61366266000,61370272800,-21600,1,'MPT',],[61370294400,61987791600,61370269200,61987766400,-25200,0,'MST',],[61987791600,62004121200,61987773600,62004103200,-18000,1,'MDDT',],[62004121200,62451241200,62004096000,62451216000,-25200,0,'MST',],[62451241200,62461357200,62451216000,62461332000,-25200,0,'MST',],[62461357200,62477078400,62461335600,62477056800,-21600,1,'MDT',],[62477078400,62492806800,62477053200,62492781600,-25200,0,'MST',],[62492806800,62508528000,62492785200,62508506400,-21600,1,'MDT',],[62508528000,62524256400,62508502800,62524231200,-25200,0,'MST',],[62524256400,62540582400,62524234800,62540560800,-21600,1,'MDT',],[62540582400,62555706000,62540557200,62555680800,-25200,0,'MST',],[62555706000,62572032000,62555684400,62572010400,-21600,1,'MDT',],[62572032000,62587760400,62572006800,62587735200,-25200,0,'MST',],[62587760400,62603481600,62587738800,62603460000,-21600,1,'MDT',],[62603481600,62619210000,62603456400,62619184800,-25200,0,'MST',],[62619210000,62634931200,62619188400,62634909600,-21600,1,'MDT',],[62634931200,62650659600,62634906000,62650634400,-25200,0,'MST',],[62650659600,62666380800,62650638000,62666359200,-21600,1,'MDT',],[62666380800,62680294800,62666355600,62680269600,-25200,0,'MST',],[62680294800,62697830400,62680273200,62697808800,-21600,1,'MDT',],[62697830400,62711744400,62697805200,62711719200,-25200,0,'MST',],[62711744400,62729884800,62711722800,62729863200,-21600,1,'MDT',],[62729884800,62743194000,62729859600,62743168800,-25200,0,'MST',],[62743194000,62761334400,62743172400,62761312800,-21600,1,'MDT',],[62761334400,62774643600,62761309200,62774618400,-25200,0,'MST',],[62774643600,62792784000,62774622000,62792762400,-21600,1,'MDT',],[62792784000,62806698000,62792758800,62806672800,-25200,0,'MST',],[62806698000,62824233600,62806676400,62824212000,-21600,1,'MDT',],[62824233600,62838147600,62824208400,62838122400,-25200,0,'MST',],[62838147600,62855683200,62838126000,62855661600,-21600,1,'MDT',],[62855683200,62869597200,62855658000,62869572000,-25200,0,'MST',],[62869597200,62887737600,62869575600,62887716000,-21600,1,'MDT',],[62887737600,62901046800,62887712400,62901021600,-25200,0,'MST',],[62901046800,62919187200,62901025200,62919165600,-21600,1,'MDT',],[62919187200,62932496400,62919162000,62932471200,-25200,0,'MST',],[62932496400,62950636800,62932474800,62950615200,-21600,1,'MDT',],[62950636800,62964550800,62950611600,62964525600,-25200,0,'MST',],[62964550800,62982086400,62964529200,62982064800,-21600,1,'MDT',],[62982086400,62996000400,62982061200,62995975200,-25200,0,'MST',],[62996000400,63013536000,62995978800,63013514400,-21600,1,'MDT',],[63013536000,63027450000,63013510800,63027424800,-25200,0,'MST',],[63027450000,63044985600,63027428400,63044964000,-21600,1,'MDT',],[63044985600,63058899600,63044960400,63058874400,-25200,0,'MST',],[63058899600,63077040000,63058878000,63077018400,-21600,1,'MDT',],[63077040000,63090349200,63077014800,63090324000,-25200,0,'MST',],[63090349200,63108489600,63090327600,63108468000,-21600,1,'MDT',],[63108489600,63121798800,63108464400,63121773600,-25200,0,'MST',],[63121798800,63139939200,63121777200,63139917600,-21600,1,'MDT',],[63139939200,63153853200,63139914000,63153828000,-25200,0,'MST',],[63153853200,63171388800,63153831600,63171367200,-21600,1,'MDT',],[63171388800,63185302800,63171363600,63185277600,-25200,0,'MST',],[63185302800,63202838400,63185281200,63202816800,-21600,1,'MDT',],[63202838400,63216752400,63202813200,63216727200,-25200,0,'MST',],[63216752400,63234892800,63216730800,63234871200,-21600,1,'MDT',],[63234892800,63248202000,63234867600,63248176800,-25200,0,'MST',],[63248202000,63266342400,63248180400,63266320800,-21600,1,'MDT',],[63266342400,63279651600,63266317200,63279626400,-25200,0,'MST',],[63279651600,63297792000,63279630000,63297770400,-21600,1,'MDT',],[63297792000,63309286800,63297766800,63309261600,-25200,0,'MST',],[63309286800,63329846400,63309265200,63329824800,-21600,1,'MDT',],[63329846400,63340736400,63329821200,63340711200,-25200,0,'MST',],[63340736400,63361296000,63340714800,63361274400,-21600,1,'MDT',],[63361296000,63372186000,63361270800,63372160800,-25200,0,'MST',],[63372186000,63392745600,63372164400,63392724000,-21600,1,'MDT',],[63392745600,63404240400,63392720400,63404215200,-25200,0,'MST',],[63404240400,63424800000,63404218800,63424778400,-21600,1,'MDT',],[63424800000,63435690000,63424774800,63435664800,-25200,0,'MST',],[63435690000,63456249600,63435668400,63456228000,-21600,1,'MDT',],[63456249600,63467139600,63456224400,63467114400,-25200,0,'MST',],[63467139600,63487699200,63467118000,63487677600,-21600,1,'MDT',],[63487699200,63498589200,63487674000,63498564000,-25200,0,'MST',],[63498589200,63519148800,63498567600,63519127200,-21600,1,'MDT',],[63519148800,63530038800,63519123600,63530013600,-25200,0,'MST',],[63530038800,63550598400,63530017200,63550576800,-21600,1,'MDT',],[63550598400,63561488400,63550573200,63561463200,-25200,0,'MST',],[63561488400,63582048000,63561466800,63582026400,-21600,1,'MDT',],[63582048000,63593542800,63582022800,63593517600,-25200,0,'MST',],[63593542800,63614102400,63593521200,63614080800,-21600,1,'MDT',],[63614102400,63624992400,63614077200,63624967200,-25200,0,'MST',],[63624992400,63645552000,63624970800,63645530400,-21600,1,'MDT',],[63645552000,63656442000,63645526800,63656416800,-25200,0,'MST',],[63656442000,63677001600,63656420400,63676980000,-21600,1,'MDT',],[63677001600,63687891600,63676976400,63687866400,-25200,0,'MST',],[63687891600,63708451200,63687870000,63708429600,-21600,1,'MDT',],[63708451200,63719341200,63708426000,63719316000,-25200,0,'MST',],[63719341200,63739900800,63719319600,63739879200,-21600,1,'MDT',],[63739900800,63751395600,63739875600,63751370400,-25200,0,'MST',],[63751395600,63771955200,63751374000,63771933600,-21600,1,'MDT',],[63771955200,63782845200,63771930000,63782820000,-25200,0,'MST',],[63782845200,63803404800,63782823600,63803383200,-21600,1,'MDT',],[63803404800,63814294800,63803379600,63814269600,-25200,0,'MST',],[63814294800,63834854400,63814273200,63834832800,-21600,1,'MDT',],[63834854400,63845744400,63834829200,63845719200,-25200,0,'MST',],[63845744400,63866304000,63845722800,63866282400,-21600,1,'MDT',],[63866304000,63877194000,63866278800,63877168800,-25200,0,'MST',],[63877194000,63897753600,63877172400,63897732000,-21600,1,'MDT',],[63897753600,63908643600,63897728400,63908618400,-25200,0,'MST',],[63908643600,63929203200,63908622000,63929181600,-21600,1,'MDT',],[63929203200,63940698000,63929178000,63940672800,-25200,0,'MST',],[63940698000,63961257600,63940676400,63961236000,-21600,1,'MDT',],];sub olson_version {'2016a'}sub has_dst_changes {51}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-25200}my$last_observance=bless({'format'=>'M%sT','gmtoff'=>'-7:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>722815,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>722815,'utc_rd_secs'=>0,'utc_year'=>1981 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-25200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>722815,'local_rd_secs'=>25200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>722815,'utc_rd_secs'=>25200,'utc_year'=>1981 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'Canada','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'Canada','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AMERICA_YELLOWKNIFE

$fatpacked{"DateTime/TimeZone/Antarctica/Casey.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ANTARCTICA_CASEY';
  package DateTime::TimeZone::Antarctica::Casey;$DateTime::TimeZone::Antarctica::Casey::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Antarctica::Casey::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,62104147200,DateTime::TimeZone::NEG_INFINITY,62104147200,0,0,'zzz',],[62104147200,63391485600,62104176000,63391514400,28800,0,'AWST',],[63391485600,63403398000,63391525200,63403437600,39600,0,'CAST',],[63403398000,63455421600,63403426800,63455450400,28800,0,'AWST',],[63455421600,63465526800,63455461200,63465566400,39600,0,'CAST',],[63465526800,DateTime::TimeZone::INFINITY,63465555600,DateTime::TimeZone::INFINITY,28800,0,'AWST',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ANTARCTICA_CASEY

$fatpacked{"DateTime/TimeZone/Antarctica/Davis.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ANTARCTICA_DAVIS';
  package DateTime::TimeZone::Antarctica::Davis;$DateTime::TimeZone::Antarctica::Davis::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Antarctica::Davis::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,61726492800,DateTime::TimeZone::NEG_INFINITY,61726492800,0,0,'zzz',],[61726492800,61972621200,61726518000,61972646400,25200,0,'DAVT',],[61972621200,62106825600,61972621200,62106825600,0,0,'zzz',],[62106825600,63391489200,62106850800,63391514400,25200,0,'DAVT',],[63391489200,63403934400,63391507200,63403952400,18000,0,'DAVT',],[63403934400,63455425200,63403959600,63455450400,25200,0,'DAVT',],[63455425200,63465537600,63455443200,63465555600,18000,0,'DAVT',],[63465537600,DateTime::TimeZone::INFINITY,63465562800,DateTime::TimeZone::INFINITY,25200,0,'DAVT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ANTARCTICA_DAVIS

$fatpacked{"DateTime/TimeZone/Antarctica/DumontDUrville.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ANTARCTICA_DUMONTDURVILLE';
  package DateTime::TimeZone::Antarctica::DumontDUrville;$DateTime::TimeZone::Antarctica::DumontDUrville::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Antarctica::DumontDUrville::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,61409836800,DateTime::TimeZone::NEG_INFINITY,61409836800,0,0,'zzz',],[61409836800,61568690400,61409872800,61568726400,36000,0,'PMT',],[61568690400,61720185600,61568690400,61720185600,0,0,'zzz',],[61720185600,DateTime::TimeZone::INFINITY,61720221600,DateTime::TimeZone::INFINITY,36000,0,'DDUT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ANTARCTICA_DUMONTDURVILLE

$fatpacked{"DateTime/TimeZone/Antarctica/Macquarie.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ANTARCTICA_MACQUARIE';
  package DateTime::TimeZone::Antarctica::Macquarie;$DateTime::TimeZone::Antarctica::Macquarie::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Antarctica::Macquarie::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59921424000,DateTime::TimeZone::NEG_INFINITY,59921424000,0,0,'zzz',],[59921424000,60455174400,59921460000,60455210400,36000,0,'AEST',],[60455174400,60465790800,60455214000,60465830400,39600,1,'AEDT',],[60465790800,60470290800,60465830400,60470330400,39600,1,'AEDT',],[60470290800,60533964000,60470326800,60534000000,36000,0,'AEST',],[60533964000,61448630400,60533964000,61448630400,0,0,'zzz',],[61448630400,62040952800,61448666400,62040988800,36000,0,'AEST',],[62040952800,62064547200,62040988800,62064583200,36000,0,'AEST',],[62064547200,62080272000,62064586800,62080311600,39600,1,'AEDT',],[62080272000,62098416000,62080308000,62098452000,36000,0,'AEST',],[62098416000,62109907200,62098455600,62109946800,39600,1,'AEDT',],[62109907200,62129865600,62109943200,62129901600,36000,0,'AEST',],[62129865600,62141356800,62129905200,62141396400,39600,1,'AEDT',],[62141356800,62161315200,62141392800,62161351200,36000,0,'AEST',],[62161315200,62173411200,62161354800,62173450800,39600,1,'AEDT',],[62173411200,62193369600,62173447200,62193405600,36000,0,'AEST',],[62193369600,62203651200,62193409200,62203690800,39600,1,'AEDT',],[62203651200,62224819200,62203687200,62224855200,36000,0,'AEST',],[62224819200,62235705600,62224858800,62235745200,39600,1,'AEDT',],[62235705600,62256268800,62235741600,62256304800,36000,0,'AEST',],[62256268800,62267155200,62256308400,62267194800,39600,1,'AEDT',],[62267155200,62287718400,62267191200,62287754400,36000,0,'AEST',],[62287718400,62298604800,62287758000,62298644400,39600,1,'AEDT',],[62298604800,62319168000,62298640800,62319204000,36000,0,'AEST',],[62319168000,62330659200,62319207600,62330698800,39600,1,'AEDT',],[62330659200,62351222400,62330695200,62351258400,36000,0,'AEST',],[62351222400,62362108800,62351262000,62362148400,39600,1,'AEDT',],[62362108800,62382672000,62362144800,62382708000,36000,0,'AEST',],[62382672000,62393558400,62382711600,62393598000,39600,1,'AEDT',],[62393558400,62414121600,62393594400,62414157600,36000,0,'AEST',],[62414121600,62425008000,62414161200,62425047600,39600,1,'AEDT',],[62425008000,62445571200,62425044000,62445607200,36000,0,'AEST',],[62445571200,62456457600,62445610800,62456497200,39600,1,'AEDT',],[62456457600,62477020800,62456493600,62477056800,36000,0,'AEST',],[62477020800,62487907200,62477060400,62487946800,39600,1,'AEDT',],[62487907200,62508470400,62487943200,62508506400,36000,0,'AEST',],[62508470400,62521776000,62508510000,62521815600,39600,1,'AEDT',],[62521776000,62540524800,62521812000,62540560800,36000,0,'AEST',],[62540524800,62553225600,62540564400,62553265200,39600,1,'AEDT',],[62553225600,62571974400,62553261600,62572010400,36000,0,'AEST',],[62571974400,62582860800,62572014000,62582900400,39600,1,'AEDT',],[62582860800,62603424000,62582896800,62603460000,36000,0,'AEST',],[62603424000,62614310400,62603463600,62614350000,39600,1,'AEDT',],[62614310400,62634873600,62614346400,62634909600,36000,0,'AEST',],[62634873600,62645760000,62634913200,62645799600,39600,1,'AEDT',],[62645760000,62665718400,62645796000,62665754400,36000,0,'AEST',],[62665718400,62678419200,62665758000,62678458800,39600,1,'AEDT',],[62678419200,62697772800,62678455200,62697808800,36000,0,'AEST',],[62697772800,62710473600,62697812400,62710513200,39600,1,'AEDT',],[62710473600,62729827200,62710509600,62729863200,36000,0,'AEST',],[62729827200,62741923200,62729866800,62741962800,39600,1,'AEDT',],[62741923200,62761276800,62741959200,62761312800,36000,0,'AEST',],[62761276800,62773372800,62761316400,62773412400,39600,1,'AEDT',],[62773372800,62792726400,62773408800,62792762400,36000,0,'AEST',],[62792726400,62806032000,62792766000,62806071600,39600,1,'AEDT',],[62806032000,62822361600,62806068000,62822397600,36000,0,'AEST',],[62822361600,62837481600,62822401200,62837521200,39600,1,'AEDT',],[62837481600,62853811200,62837517600,62853847200,36000,0,'AEST',],[62853811200,62868931200,62853850800,62868970800,39600,1,'AEDT',],[62868931200,62885260800,62868967200,62885296800,36000,0,'AEST',],[62885260800,62900380800,62885300400,62900420400,39600,1,'AEDT',],[62900380800,62916710400,62900416800,62916746400,36000,0,'AEST',],[62916710400,62931830400,62916750000,62931870000,39600,1,'AEDT',],[62931830400,62948160000,62931866400,62948196000,36000,0,'AEST',],[62948160000,62963884800,62948199600,62963924400,39600,1,'AEDT',],[62963884800,62980214400,62963920800,62980250400,36000,0,'AEST',],[62980214400,62995334400,62980254000,62995374000,39600,1,'AEDT',],[62995334400,63011664000,62995370400,63011700000,36000,0,'AEST',],[63011664000,63026784000,63011703600,63026823600,39600,1,'AEDT',],[63026784000,63043113600,63026820000,63043149600,36000,0,'AEST',],[63043113600,63058233600,63043153200,63058273200,39600,1,'AEDT',],[63058233600,63074563200,63058269600,63074599200,36000,0,'AEST',],[63074563200,63089683200,63074602800,63089722800,39600,1,'AEDT',],[63089683200,63102988800,63089719200,63103024800,36000,0,'AEST',],[63102988800,63121132800,63103028400,63121172400,39600,1,'AEDT',],[63121132800,63138067200,63121168800,63138103200,36000,0,'AEST',],[63138067200,63153187200,63138106800,63153226800,39600,1,'AEDT',],[63153187200,63169516800,63153223200,63169552800,36000,0,'AEST',],[63169516800,63184636800,63169556400,63184676400,39600,1,'AEDT',],[63184636800,63200966400,63184672800,63201002400,36000,0,'AEST',],[63200966400,63216086400,63201006000,63216126000,39600,1,'AEDT',],[63216086400,63232416000,63216122400,63232452000,36000,0,'AEST',],[63232416000,63247536000,63232455600,63247575600,39600,1,'AEDT',],[63247536000,63263865600,63247572000,63263901600,36000,0,'AEST',],[63263865600,63279590400,63263905200,63279630000,39600,1,'AEDT',],[63279590400,63295315200,63279626400,63295351200,36000,0,'AEST',],[63295315200,63310435200,63295354800,63310474800,39600,1,'AEDT',],[63310435200,63327369600,63310471200,63327405600,36000,0,'AEST',],[63327369600,63343094400,63327409200,63343134000,39600,1,'AEDT',],[63343094400,63358819200,63343130400,63358855200,36000,0,'AEST',],[63358819200,63374544000,63358858800,63374583600,39600,1,'AEDT',],[63374544000,63390268800,63374580000,63390304800,36000,0,'AEST',],[63390268800,63405993600,63390308400,63406033200,39600,1,'AEDT',],[63405993600,DateTime::TimeZone::INFINITY,63406033200,DateTime::TimeZone::INFINITY,39600,0,'MIST',],];sub olson_version {'2016a'}sub has_dst_changes {45}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ANTARCTICA_MACQUARIE

$fatpacked{"DateTime/TimeZone/Antarctica/Mawson.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ANTARCTICA_MAWSON';
  package DateTime::TimeZone::Antarctica::Mawson;$DateTime::TimeZone::Antarctica::Mawson::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Antarctica::Mawson::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,61634476800,DateTime::TimeZone::NEG_INFINITY,61634476800,0,0,'zzz',],[61634476800,63391492800,61634498400,63391514400,21600,0,'MAWT',],[63391492800,DateTime::TimeZone::INFINITY,63391510800,DateTime::TimeZone::INFINITY,18000,0,'MAWT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ANTARCTICA_MAWSON

$fatpacked{"DateTime/TimeZone/Antarctica/Palmer.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ANTARCTICA_PALMER';
  package DateTime::TimeZone::Antarctica::Palmer;$DateTime::TimeZone::Antarctica::Palmer::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Antarctica::Palmer::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,61977916800,DateTime::TimeZone::NEG_INFINITY,61977916800,0,0,'zzz',],[61977916800,61983025200,61977906000,61983014400,-10800,1,'ARST',],[61983025200,62002728000,61983010800,62002713600,-14400,0,'ART',],[62002728000,62014561200,62002717200,62014550400,-10800,1,'ARST',],[62014561200,62034264000,62014546800,62034249600,-14400,0,'ART',],[62034264000,62048862000,62034253200,62048851200,-10800,1,'ARST',],[62048862000,62064590400,62048847600,62064576000,-14400,0,'ART',],[62064590400,62080916400,62064579600,62080905600,-10800,1,'ARST',],[62080916400,62096644800,62080902000,62096630400,-14400,0,'ART',],[62096644800,62112366000,62096634000,62112355200,-10800,1,'ARST',],[62112366000,62128094400,62112351600,62128080000,-14400,0,'ART',],[62128094400,62263825200,62128083600,62263814400,-10800,0,'ART',],[62263825200,62272288800,62263818000,62272281600,-7200,1,'ARST',],[62272288800,62524753200,62272278000,62524742400,-10800,0,'ART',],[62524753200,62538753600,62524738800,62538739200,-14400,0,'CLT',],[62538753600,62552055600,62538742800,62552044800,-10800,1,'CLST',],[62552055600,62570203200,62552041200,62570188800,-14400,0,'CLT',],[62570203200,62583505200,62570192400,62583494400,-10800,1,'CLST',],[62583505200,62602257600,62583490800,62602243200,-14400,0,'CLT',],[62602257600,62614954800,62602246800,62614944000,-10800,1,'CLST',],[62614954800,62633707200,62614940400,62633692800,-14400,0,'CLT',],[62633707200,62646404400,62633696400,62646393600,-10800,1,'CLST',],[62646404400,62665156800,62646390000,62665142400,-14400,0,'CLT',],[62665156800,62680878000,62665146000,62680867200,-10800,1,'CLST',],[62680878000,62696606400,62680863600,62696592000,-14400,0,'CLT',],[62696606400,62709908400,62696595600,62709897600,-10800,1,'CLST',],[62709908400,62728056000,62709894000,62728041600,-14400,0,'CLT',],[62728056000,62741358000,62728045200,62741347200,-10800,1,'CLST',],[62741358000,62760110400,62741343600,62760096000,-14400,0,'CLT',],[62760110400,62772807600,62760099600,62772796800,-10800,1,'CLST',],[62772807600,62789140800,62772793200,62789126400,-14400,0,'CLT',],[62789140800,62804257200,62789130000,62804246400,-10800,1,'CLST',],[62804257200,62823009600,62804242800,62822995200,-14400,0,'CLT',],[62823009600,62836311600,62822998800,62836300800,-10800,1,'CLST',],[62836311600,62854459200,62836297200,62854444800,-14400,0,'CLT',],[62854459200,62867761200,62854448400,62867750400,-10800,1,'CLST',],[62867761200,62885908800,62867746800,62885894400,-14400,0,'CLT',],[62885908800,62899210800,62885898000,62899200000,-10800,1,'CLST',],[62899210800,62917358400,62899196400,62917344000,-14400,0,'CLT',],[62917358400,62930660400,62917347600,62930649600,-10800,1,'CLST',],[62930660400,62949412800,62930646000,62949398400,-14400,0,'CLT',],[62949412800,62962110000,62949402000,62962099200,-10800,1,'CLST',],[62962110000,62980862400,62962095600,62980848000,-14400,0,'CLT',],[62980862400,62995374000,62980851600,62995363200,-10800,1,'CLST',],[62995374000,63012312000,62995359600,63012297600,-14400,0,'CLT',],[63012312000,63025614000,63012301200,63025603200,-10800,1,'CLST',],[63025614000,63042552000,63025599600,63042537600,-14400,0,'CLT',],[63042552000,63058878000,63042541200,63058867200,-10800,1,'CLST',],[63058878000,63075211200,63058863600,63075196800,-14400,0,'CLT',],[63075211200,63088513200,63075200400,63088502400,-10800,1,'CLST',],[63088513200,63107265600,63088498800,63107251200,-14400,0,'CLT',],[63107265600,63119962800,63107254800,63119952000,-10800,1,'CLST',],[63119962800,63138715200,63119948400,63138700800,-14400,0,'CLT',],[63138715200,63151412400,63138704400,63151401600,-10800,1,'CLST',],[63151412400,63170164800,63151398000,63170150400,-14400,0,'CLT',],[63170164800,63182862000,63170154000,63182851200,-10800,1,'CLST',],[63182862000,63201614400,63182847600,63201600000,-14400,0,'CLT',],[63201614400,63214916400,63201603600,63214905600,-10800,1,'CLST',],[63214916400,63233064000,63214902000,63233049600,-14400,0,'CLT',],[63233064000,63246366000,63233053200,63246355200,-10800,1,'CLST',],[63246366000,63264513600,63246351600,63264499200,-14400,0,'CLT',],[63264513600,63277815600,63264502800,63277804800,-10800,1,'CLST',],[63277815600,63296568000,63277801200,63296553600,-14400,0,'CLT',],[63296568000,63309265200,63296557200,63309254400,-10800,1,'CLST',],[63309265200,63328017600,63309250800,63328003200,-14400,0,'CLT',],[63328017600,63342529200,63328006800,63342518400,-10800,1,'CLST',],[63342529200,63359467200,63342514800,63359452800,-14400,0,'CLT',],[63359467200,63372769200,63359456400,63372758400,-10800,1,'CLST',],[63372769200,63390916800,63372754800,63390902400,-14400,0,'CLT',],[63390916800,63406033200,63390906000,63406022400,-10800,1,'CLST',],[63406033200,63422366400,63406018800,63422352000,-14400,0,'CLT',],[63422366400,63440506800,63422355600,63440496000,-10800,1,'CLST',],[63440506800,63449582400,63440492400,63449568000,-14400,0,'CLT',],[63449582400,63471351600,63449571600,63471340800,-10800,1,'CLST',],[63471351600,63482241600,63471337200,63482227200,-14400,0,'CLT',],[63482241600,63502801200,63482230800,63502790400,-10800,1,'CLST',],[63502801200,63514296000,63502786800,63514281600,-14400,0,'CLT',],[63514296000,63534250800,63514285200,63534240000,-10800,1,'CLST',],[63534250800,63545745600,63534236400,63545731200,-14400,0,'CLT',],[63545745600,63565700400,63545734800,63565689600,-10800,1,'CLST',],[63565700400,DateTime::TimeZone::INFINITY,63565689600,DateTime::TimeZone::INFINITY,-10800,0,'CLT',],];sub olson_version {'2016a'}sub has_dst_changes {39}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ANTARCTICA_PALMER

$fatpacked{"DateTime/TimeZone/Antarctica/Rothera.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ANTARCTICA_ROTHERA';
  package DateTime::TimeZone::Antarctica::Rothera;$DateTime::TimeZone::Antarctica::Rothera::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Antarctica::Rothera::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,62353929600,DateTime::TimeZone::NEG_INFINITY,62353929600,0,0,'zzz',],[62353929600,DateTime::TimeZone::INFINITY,62353918800,DateTime::TimeZone::INFINITY,-10800,0,'ROTT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ANTARCTICA_ROTHERA

$fatpacked{"DateTime/TimeZone/Antarctica/Syowa.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ANTARCTICA_SYOWA';
  package DateTime::TimeZone::Antarctica::Syowa;$DateTime::TimeZone::Antarctica::Syowa::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Antarctica::Syowa::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,61727875200,DateTime::TimeZone::NEG_INFINITY,61727875200,0,0,'zzz',],[61727875200,DateTime::TimeZone::INFINITY,61727886000,DateTime::TimeZone::INFINITY,10800,0,'SYOT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ANTARCTICA_SYOWA

$fatpacked{"DateTime/TimeZone/Antarctica/Troll.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ANTARCTICA_TROLL';
  package DateTime::TimeZone::Antarctica::Troll;$DateTime::TimeZone::Antarctica::Troll::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Antarctica::Troll::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,63243849600,DateTime::TimeZone::NEG_INFINITY,63243849600,0,0,'zzz',],[63243849600,63247568400,63243849600,63247568400,0,0,'UTC',],[63247568400,63266317200,63247575600,63266324400,7200,1,'CEST',],[63266317200,63279018000,63266317200,63279018000,0,0,'UTC',],[63279018000,63297766800,63279025200,63297774000,7200,1,'CEST',],[63297766800,63310467600,63297766800,63310467600,0,0,'UTC',],[63310467600,63329216400,63310474800,63329223600,7200,1,'CEST',],[63329216400,63342522000,63329216400,63342522000,0,0,'UTC',],[63342522000,63360666000,63342529200,63360673200,7200,1,'CEST',],[63360666000,63373971600,63360666000,63373971600,0,0,'UTC',],[63373971600,63392115600,63373978800,63392122800,7200,1,'CEST',],[63392115600,63405421200,63392115600,63405421200,0,0,'UTC',],[63405421200,63424170000,63405428400,63424177200,7200,1,'CEST',],[63424170000,63436870800,63424170000,63436870800,0,0,'UTC',],[63436870800,63455619600,63436878000,63455626800,7200,1,'CEST',],[63455619600,63468320400,63455619600,63468320400,0,0,'UTC',],[63468320400,63487069200,63468327600,63487076400,7200,1,'CEST',],[63487069200,63500374800,63487069200,63500374800,0,0,'UTC',],[63500374800,63518518800,63500382000,63518526000,7200,1,'CEST',],[63518518800,63531824400,63518518800,63531824400,0,0,'UTC',],[63531824400,63549968400,63531831600,63549975600,7200,1,'CEST',],[63549968400,63563274000,63549968400,63563274000,0,0,'UTC',],[63563274000,63581418000,63563281200,63581425200,7200,1,'CEST',],[63581418000,63594723600,63581418000,63594723600,0,0,'UTC',],[63594723600,63613472400,63594730800,63613479600,7200,1,'CEST',],[63613472400,63626173200,63613472400,63626173200,0,0,'UTC',],[63626173200,63644922000,63626180400,63644929200,7200,1,'CEST',],[63644922000,63657622800,63644922000,63657622800,0,0,'UTC',],[63657622800,63676371600,63657630000,63676378800,7200,1,'CEST',],[63676371600,63689677200,63676371600,63689677200,0,0,'UTC',],[63689677200,63707821200,63689684400,63707828400,7200,1,'CEST',],[63707821200,63721126800,63707821200,63721126800,0,0,'UTC',],[63721126800,63739270800,63721134000,63739278000,7200,1,'CEST',],[63739270800,63752576400,63739270800,63752576400,0,0,'UTC',],[63752576400,63771325200,63752583600,63771332400,7200,1,'CEST',],[63771325200,63784026000,63771325200,63784026000,0,0,'UTC',],[63784026000,63802774800,63784033200,63802782000,7200,1,'CEST',],[63802774800,63815475600,63802774800,63815475600,0,0,'UTC',],[63815475600,63834224400,63815482800,63834231600,7200,1,'CEST',],[63834224400,63847530000,63834224400,63847530000,0,0,'UTC',],[63847530000,63865674000,63847537200,63865681200,7200,1,'CEST',],[63865674000,63878979600,63865674000,63878979600,0,0,'UTC',],[63878979600,63897123600,63878986800,63897130800,7200,1,'CEST',],[63897123600,63910429200,63897123600,63910429200,0,0,'UTC',],[63910429200,63928573200,63910436400,63928580400,7200,1,'CEST',],[63928573200,63941878800,63928573200,63941878800,0,0,'UTC',],[63941878800,63960627600,63941886000,63960634800,7200,1,'CEST',],];sub olson_version {'2016a'}sub has_dst_changes {23}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {0}my$last_observance=bless({'format'=>'%s','gmtoff'=>'0:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>731989,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>731989,'utc_rd_secs'=>0,'utc_year'=>2006 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>0,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>731989,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>731989,'utc_rd_secs'=>0,'utc_year'=>2006 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'2004','in'=>'Oct','letter'=>'UTC','name'=>'Troll','offset_from_std'=>0,'on'=>'lastSun','save'=>'0:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'2005','in'=>'Mar','letter'=>'CEST','name'=>'Troll','offset_from_std'=>7200,'on'=>'lastSun','save'=>'2:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_ANTARCTICA_TROLL

$fatpacked{"DateTime/TimeZone/Antarctica/Vostok.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ANTARCTICA_VOSTOK';
  package DateTime::TimeZone::Antarctica::Vostok;$DateTime::TimeZone::Antarctica::Vostok::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Antarctica::Vostok::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,61755609600,DateTime::TimeZone::NEG_INFINITY,61755609600,0,0,'zzz',],[61755609600,DateTime::TimeZone::INFINITY,61755631200,DateTime::TimeZone::INFINITY,21600,0,'VOST',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ANTARCTICA_VOSTOK

$fatpacked{"DateTime/TimeZone/Asia/Almaty.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_ALMATY';
  package DateTime::TimeZone::Asia::Almaty;$DateTime::TimeZone::Asia::Almaty::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Almaty::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60694512732,DateTime::TimeZone::NEG_INFINITY,60694531200,18468,0,'LMT',],[60694512732,60888135600,60694530732,60888153600,18000,0,'ALMT',],[60888135600,62490592800,60888157200,62490614400,21600,0,'ALMT',],[62490592800,62506400400,62490618000,62506425600,25200,1,'ALMST',],[62506400400,62522128800,62506422000,62522150400,21600,0,'ALMT',],[62522128800,62537936400,62522154000,62537961600,25200,1,'ALMST',],[62537936400,62553664800,62537958000,62553686400,21600,0,'ALMT',],[62553664800,62569472400,62553690000,62569497600,25200,1,'ALMST',],[62569472400,62585287200,62569494000,62585308800,21600,0,'ALMT',],[62585287200,62601019200,62585312400,62601044400,25200,1,'ALMST',],[62601019200,62616744000,62601040800,62616765600,21600,0,'ALMT',],[62616744000,62632468800,62616769200,62632494000,25200,1,'ALMST',],[62632468800,62648193600,62632490400,62648215200,21600,0,'ALMT',],[62648193600,62663918400,62648218800,62663943600,25200,1,'ALMST',],[62663918400,62679643200,62663940000,62679664800,21600,0,'ALMT',],[62679643200,62695368000,62679668400,62695393200,25200,1,'ALMST',],[62695368000,62711092800,62695389600,62711114400,21600,0,'ALMT',],[62711092800,62726817600,62711118000,62726842800,25200,1,'ALMST',],[62726817600,62742542400,62726839200,62742564000,21600,0,'ALMT',],[62742542400,62758267200,62742567600,62758292400,25200,1,'ALMST',],[62758267200,62773992000,62758288800,62774013600,21600,0,'ALMT',],[62773992000,62790321600,62774017200,62790346800,25200,1,'ALMST',],[62790321600,62798349600,62790343200,62798371200,21600,0,'ALMT',],[62798349600,62829885600,62798371200,62829907200,21600,0,'ALMT',],[62829885600,62837485200,62829907200,62837506800,21600,0,'ALMT',],[62837485200,62853206400,62837510400,62853231600,25200,1,'ALMST',],[62853206400,62868945600,62853228000,62868967200,21600,0,'ALMT',],[62868945600,62884670400,62868970800,62884695600,25200,1,'ALMST',],[62884670400,62900395200,62884692000,62900416800,21600,0,'ALMT',],[62900395200,62916120000,62900420400,62916145200,25200,1,'ALMST',],[62916120000,62931844800,62916141600,62931866400,21600,0,'ALMT',],[62931844800,62947569600,62931870000,62947594800,25200,1,'ALMST',],[62947569600,62963899200,62947591200,62963920800,21600,0,'ALMT',],[62963899200,62982043200,62963924400,62982068400,25200,1,'ALMST',],[62982043200,62995348800,62982064800,62995370400,21600,0,'ALMT',],[62995348800,63013492800,62995374000,63013518000,25200,1,'ALMST',],[63013492800,63026798400,63013514400,63026820000,21600,0,'ALMT',],[63026798400,63044942400,63026823600,63044967600,25200,1,'ALMST',],[63044942400,63058248000,63044964000,63058269600,21600,0,'ALMT',],[63058248000,63076996800,63058273200,63077022000,25200,1,'ALMST',],[63076996800,63089697600,63077018400,63089719200,21600,0,'ALMT',],[63089697600,63108446400,63089722800,63108471600,25200,1,'ALMST',],[63108446400,63121147200,63108468000,63121168800,21600,0,'ALMT',],[63121147200,63139896000,63121172400,63139921200,25200,1,'ALMST',],[63139896000,63153201600,63139917600,63153223200,21600,0,'ALMT',],[63153201600,63171345600,63153226800,63171370800,25200,1,'ALMST',],[63171345600,63184651200,63171367200,63184672800,21600,0,'ALMT',],[63184651200,63202795200,63184676400,63202820400,25200,1,'ALMST',],[63202795200,63216100800,63202816800,63216122400,21600,0,'ALMT',],[63216100800,63234849600,63216126000,63234874800,25200,1,'ALMST',],[63234849600,63246506400,63234871200,63246528000,21600,0,'ALMT',],[63246506400,DateTime::TimeZone::INFINITY,63246528000,DateTime::TimeZone::INFINITY,21600,0,'ALMT',],];sub olson_version {'2016a'}sub has_dst_changes {23}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_ALMATY

$fatpacked{"DateTime/TimeZone/Asia/Amman.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_AMMAN';
  package DateTime::TimeZone::Asia::Amman;$DateTime::TimeZone::Asia::Amman::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Amman::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60904906576,DateTime::TimeZone::NEG_INFINITY,60904915200,8624,0,'LMT',],[60904906576,62243848800,60904913776,62243856000,7200,0,'EET',],[62243848800,62253954000,62243859600,62253964800,10800,1,'EEST',],[62253954000,62272274400,62253961200,62272281600,7200,0,'EET',],[62272274400,62285490000,62272285200,62285500800,10800,1,'EEST',],[62285490000,62303810400,62285497200,62303817600,7200,0,'EET',],[62303810400,62317026000,62303821200,62317036800,10800,1,'EEST',],[62317026000,62335432800,62317033200,62335440000,7200,0,'EET',],[62335432800,62351326800,62335443600,62351337600,10800,1,'EEST',],[62351326800,62366968800,62351334000,62366976000,7200,0,'EET',],[62366968800,62380184400,62366979600,62380195200,10800,1,'EEST',],[62380184400,62398418400,62380191600,62398425600,7200,0,'EET',],[62398418400,62411634000,62398429200,62411644800,10800,1,'EEST',],[62411634000,62616837600,62411641200,62616844800,7200,0,'EET',],[62616837600,62632645200,62616848400,62632656000,10800,1,'EEST',],[62632645200,62648632800,62632652400,62648640000,7200,0,'EET',],[62648632800,62664354000,62648643600,62664364800,10800,1,'EEST',],[62664354000,62680082400,62664361200,62680089600,7200,0,'EET',],[62680082400,62695803600,62680093200,62695814400,10800,1,'EEST',],[62695803600,62711532000,62695810800,62711539200,7200,0,'EET',],[62711532000,62727858000,62711542800,62727868800,10800,1,'EEST',],[62727858000,62746264800,62727865200,62746272000,7200,0,'EET',],[62746264800,62759307600,62746275600,62759318400,10800,1,'EEST',],[62759307600,62776850400,62759314800,62776857600,7200,0,'EET',],[62776850400,62790757200,62776861200,62790768000,10800,1,'EEST',],[62790757200,62807522400,62790764400,62807529600,7200,0,'EET',],[62807522400,62821602000,62807533200,62821612800,10800,1,'EEST',],[62821602000,62838540000,62821609200,62838547200,7200,0,'EET',],[62838540000,62853656400,62838550800,62853667200,10800,1,'EEST',],[62853656400,62869384800,62853663600,62869392000,7200,0,'EET',],[62869384800,62885106000,62869395600,62885116800,10800,1,'EEST',],[62885106000,62900834400,62885113200,62900841600,7200,0,'EET',],[62900834400,62915346000,62900845200,62915356800,10800,1,'EEST',],[62915346000,62932888800,62915353200,62932896000,7200,0,'EET',],[62932888800,62946799200,62932899600,62946810000,10800,1,'EEST',],[62946799200,62964338400,62946806400,62964345600,7200,0,'EET',],[62964338400,62978853600,62964349200,62978864400,10800,1,'EEST',],[62978853600,62995788000,62978860800,62995795200,7200,0,'EET',],[62995788000,63010303200,62995798800,63010314000,10800,1,'EEST',],[63010303200,63027237600,63010310400,63027244800,7200,0,'EET',],[63027237600,63041752800,63027248400,63041763600,10800,1,'EEST',],[63041752800,63066463200,63041760000,63066470400,7200,0,'EET',],[63066463200,63073807200,63066474000,63073818000,10800,1,'EEST',],[63073807200,63090050400,63073814400,63090057600,7200,0,'EET',],[63090050400,63105861600,63090061200,63105872400,10800,1,'EEST',],[63105861600,63121500000,63105868800,63121507200,7200,0,'EET',],[63121500000,63137311200,63121510800,63137322000,10800,1,'EEST',],[63137311200,63153036000,63137318400,63153043200,7200,0,'EET',],[63153036000,63168760800,63153046800,63168771600,10800,1,'EEST',],[63168760800,63184485600,63168768000,63184492800,7200,0,'EET',],[63184485600,63202629600,63184496400,63202640400,10800,1,'EEST',],[63202629600,63215935200,63202636800,63215942400,7200,0,'EET',],[63215935200,63233474400,63215946000,63233485200,10800,1,'EEST',],[63233474400,63247989600,63233481600,63247996800,7200,0,'EET',],[63247989600,63263714400,63248000400,63263725200,10800,1,'EEST',],[63263714400,63279439200,63263721600,63279446400,7200,0,'EET',],[63279439200,63297583200,63279450000,63297594000,10800,1,'EEST',],[63297583200,63310888800,63297590400,63310896000,7200,0,'EET',],[63310888800,63329032800,63310899600,63329043600,10800,1,'EEST',],[63329032800,63342338400,63329040000,63342345600,7200,0,'EET',],[63342338400,63361087200,63342349200,63361098000,10800,1,'EEST',],[63361087200,63373788000,63361094400,63373795200,7200,0,'EET',],[63373788000,63392536800,63373798800,63392547600,10800,1,'EEST',],[63392536800,63405237600,63392544000,63405244800,7200,0,'EET',],[63405237600,63423986400,63405248400,63423997200,10800,1,'EEST',],[63423986400,63437292000,63423993600,63437299200,7200,0,'EET',],[63437292000,63455436000,63437302800,63455446800,10800,1,'EEST',],[63455436000,63468741600,63455443200,63468748800,7200,0,'EET',],[63468741600,63523170000,63468752400,63523180800,10800,1,'EEST',],[63523170000,63531640800,63523177200,63531648000,7200,0,'EET',],[63531640800,63550389600,63531651600,63550400400,10800,1,'EEST',],[63550389600,63563090400,63550396800,63563097600,7200,0,'EET',],[63563090400,63581839200,63563101200,63581850000,10800,1,'EEST',],[63581839200,63595144800,63581846400,63595152000,7200,0,'EET',],[63595144800,63613288800,63595155600,63613299600,10800,1,'EEST',],[63613288800,63626594400,63613296000,63626601600,7200,0,'EET',],[63626594400,63644738400,63626605200,63644749200,10800,1,'EEST',],[63644738400,63658044000,63644745600,63658051200,7200,0,'EET',],[63658044000,63676188000,63658054800,63676198800,10800,1,'EEST',],[63676188000,63689493600,63676195200,63689500800,7200,0,'EET',],[63689493600,63707637600,63689504400,63707648400,10800,1,'EEST',],[63707637600,63720943200,63707644800,63720950400,7200,0,'EET',],[63720943200,63739692000,63720954000,63739702800,10800,1,'EEST',],[63739692000,63752392800,63739699200,63752400000,7200,0,'EET',],[63752392800,63771141600,63752403600,63771152400,10800,1,'EEST',],[63771141600,63784447200,63771148800,63784454400,7200,0,'EET',],[63784447200,63802591200,63784458000,63802602000,10800,1,'EEST',],[63802591200,63815896800,63802598400,63815904000,7200,0,'EET',],[63815896800,63834040800,63815907600,63834051600,10800,1,'EEST',],[63834040800,63847346400,63834048000,63847353600,7200,0,'EET',],[63847346400,63865490400,63847357200,63865501200,10800,1,'EEST',],[63865490400,63878796000,63865497600,63878803200,7200,0,'EET',],[63878796000,63897544800,63878806800,63897555600,10800,1,'EEST',],[63897544800,63910245600,63897552000,63910252800,7200,0,'EET',],[63910245600,63928994400,63910256400,63929005200,10800,1,'EEST',],[63928994400,63941695200,63929001600,63941702400,7200,0,'EET',],[63941695200,63960444000,63941706000,63960454800,10800,1,'EEST',],];sub olson_version {'2016a'}sub has_dst_changes {48}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {7200}my$last_observance=bless({'format'=>'EE%sT','gmtoff'=>'2:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>704917,'local_rd_secs'=>84976,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>704917,'utc_rd_secs'=>84976,'utc_year'=>1931 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>7200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>704917,'local_rd_secs'=>77776,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>704917,'utc_rd_secs'=>77776,'utc_year'=>1931 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'24:00','from'=>'2014','in'=>'Mar','letter'=>'S','name'=>'Jordan','offset_from_std'=>3600,'on'=>'lastThu','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'0:00s','from'=>'2014','in'=>'Oct','letter'=>'','name'=>'Jordan','offset_from_std'=>0,'on'=>'lastFri','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_ASIA_AMMAN

$fatpacked{"DateTime/TimeZone/Asia/Anadyr.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_ANADYR';
  package DateTime::TimeZone::Asia::Anadyr;$DateTime::TimeZone::Asia::Anadyr::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Anadyr::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60694488604,DateTime::TimeZone::NEG_INFINITY,60694531200,42596,0,'LMT',],[60694488604,60888110400,60694531804,60888153600,43200,0,'ANAT',],[60888110400,62490567600,60888157200,62490614400,46800,0,'ANAT',],[62490567600,62506375200,62490618000,62506425600,50400,1,'ANAST',],[62506375200,62522103600,62506422000,62522150400,46800,0,'ANAT',],[62522103600,62537914800,62522150400,62537961600,46800,1,'ANAST',],[62537914800,62553643200,62537958000,62553686400,43200,0,'ANAT',],[62553643200,62569450800,62553690000,62569497600,46800,1,'ANAST',],[62569450800,62585265600,62569494000,62585308800,43200,0,'ANAT',],[62585265600,62600997600,62585312400,62601044400,46800,1,'ANAST',],[62600997600,62616722400,62601040800,62616765600,43200,0,'ANAT',],[62616722400,62632447200,62616769200,62632494000,46800,1,'ANAST',],[62632447200,62648172000,62632490400,62648215200,43200,0,'ANAT',],[62648172000,62663896800,62648218800,62663943600,46800,1,'ANAST',],[62663896800,62679621600,62663940000,62679664800,43200,0,'ANAT',],[62679621600,62695346400,62679668400,62695393200,46800,1,'ANAST',],[62695346400,62711071200,62695389600,62711114400,43200,0,'ANAT',],[62711071200,62726796000,62711118000,62726842800,46800,1,'ANAST',],[62726796000,62742520800,62726839200,62742564000,43200,0,'ANAT',],[62742520800,62758245600,62742567600,62758292400,46800,1,'ANAST',],[62758245600,62773970400,62758288800,62774013600,43200,0,'ANAT',],[62773970400,62790300000,62774017200,62790346800,46800,1,'ANAST',],[62790300000,62806024800,62790343200,62806068000,43200,0,'ANAT',],[62806024800,62821753200,62806068000,62821796400,43200,1,'ANAST',],[62821753200,62831430000,62821792800,62831469600,39600,0,'ANAT',],[62831430000,62837463600,62831473200,62837506800,43200,0,'ANAT',],[62837463600,62853184800,62837510400,62853231600,46800,1,'ANAST',],[62853184800,62868924000,62853228000,62868967200,43200,0,'ANAT',],[62868924000,62884648800,62868970800,62884695600,46800,1,'ANAST',],[62884648800,62900373600,62884692000,62900416800,43200,0,'ANAT',],[62900373600,62916098400,62900420400,62916145200,46800,1,'ANAST',],[62916098400,62931823200,62916141600,62931866400,43200,0,'ANAT',],[62931823200,62947548000,62931870000,62947594800,46800,1,'ANAST',],[62947548000,62963877600,62947591200,62963920800,43200,0,'ANAT',],[62963877600,62982021600,62963924400,62982068400,46800,1,'ANAST',],[62982021600,62995327200,62982064800,62995370400,43200,0,'ANAT',],[62995327200,63013471200,62995374000,63013518000,46800,1,'ANAST',],[63013471200,63026776800,63013514400,63026820000,43200,0,'ANAT',],[63026776800,63044920800,63026823600,63044967600,46800,1,'ANAST',],[63044920800,63058226400,63044964000,63058269600,43200,0,'ANAT',],[63058226400,63076975200,63058273200,63077022000,46800,1,'ANAST',],[63076975200,63089676000,63077018400,63089719200,43200,0,'ANAT',],[63089676000,63108424800,63089722800,63108471600,46800,1,'ANAST',],[63108424800,63121125600,63108468000,63121168800,43200,0,'ANAT',],[63121125600,63139874400,63121172400,63139921200,46800,1,'ANAST',],[63139874400,63153180000,63139917600,63153223200,43200,0,'ANAT',],[63153180000,63171324000,63153226800,63171370800,46800,1,'ANAST',],[63171324000,63184629600,63171367200,63184672800,43200,0,'ANAT',],[63184629600,63202773600,63184676400,63202820400,46800,1,'ANAST',],[63202773600,63216079200,63202816800,63216122400,43200,0,'ANAT',],[63216079200,63234828000,63216126000,63234874800,46800,1,'ANAST',],[63234828000,63247528800,63234871200,63247572000,43200,0,'ANAT',],[63247528800,63266277600,63247575600,63266324400,46800,1,'ANAST',],[63266277600,63278978400,63266320800,63279021600,43200,0,'ANAT',],[63278978400,63297727200,63279025200,63297774000,46800,1,'ANAST',],[63297727200,63310428000,63297770400,63310471200,43200,0,'ANAT',],[63310428000,63329176800,63310474800,63329223600,46800,1,'ANAST',],[63329176800,63342482400,63329220000,63342525600,43200,0,'ANAT',],[63342482400,63360626400,63342529200,63360673200,46800,1,'ANAST',],[63360626400,63373932000,63360669600,63373975200,43200,0,'ANAT',],[63373932000,63392076000,63373978800,63392122800,46800,1,'ANAST',],[63392076000,63405381600,63392119200,63405424800,43200,0,'ANAT',],[63405381600,63424134000,63405424800,63424177200,43200,1,'ANAST',],[63424134000,63436834800,63424173600,63436874400,39600,0,'ANAT',],[63436834800,DateTime::TimeZone::INFINITY,63436878000,DateTime::TimeZone::INFINITY,43200,0,'ANAT',],];sub olson_version {'2016a'}sub has_dst_changes {30}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_ANADYR

$fatpacked{"DateTime/TimeZone/Asia/Aqtau.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_AQTAU';
  package DateTime::TimeZone::Asia::Aqtau;$DateTime::TimeZone::Asia::Aqtau::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Aqtau::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60694519136,DateTime::TimeZone::NEG_INFINITY,60694531200,12064,0,'LMT',],[60694519136,60888139200,60694533536,60888153600,14400,0,'FORT',],[60888139200,61914740400,60888157200,61914758400,18000,0,'FORT',],[61914740400,62506407600,61914758400,62506425600,18000,0,'SHET',],[62506407600,62522128800,62506429200,62522150400,21600,0,'SHET',],[62522128800,62537940000,62522150400,62537961600,21600,1,'SHEST',],[62537940000,62553668400,62537958000,62553686400,18000,0,'SHET',],[62553668400,62569476000,62553690000,62569497600,21600,1,'SHEST',],[62569476000,62585290800,62569494000,62585308800,18000,0,'SHET',],[62585290800,62601022800,62585312400,62601044400,21600,1,'SHEST',],[62601022800,62616747600,62601040800,62616765600,18000,0,'SHET',],[62616747600,62632472400,62616769200,62632494000,21600,1,'SHEST',],[62632472400,62648197200,62632490400,62648215200,18000,0,'SHET',],[62648197200,62663922000,62648218800,62663943600,21600,1,'SHEST',],[62663922000,62679646800,62663940000,62679664800,18000,0,'SHET',],[62679646800,62695371600,62679668400,62695393200,21600,1,'SHEST',],[62695371600,62711096400,62695389600,62711114400,18000,0,'SHET',],[62711096400,62726821200,62711118000,62726842800,21600,1,'SHEST',],[62726821200,62742546000,62726839200,62742564000,18000,0,'SHET',],[62742546000,62758270800,62742567600,62758292400,21600,1,'SHEST',],[62758270800,62773995600,62758288800,62774013600,18000,0,'SHET',],[62773995600,62790325200,62774017200,62790346800,21600,1,'SHEST',],[62790325200,62798353200,62790343200,62798371200,18000,0,'SHET',],[62798353200,62828506800,62798371200,62828524800,18000,0,'SHET',],[62828506800,62837488800,62828524800,62837506800,18000,0,'AQTT',],[62837488800,62853210000,62837510400,62853231600,21600,1,'AQTST',],[62853210000,62868949200,62853228000,62868967200,18000,0,'AQTT',],[62868949200,62884674000,62868970800,62884695600,21600,1,'AQTST',],[62884674000,62900398800,62884692000,62900416800,18000,0,'AQTT',],[62900398800,62916123600,62900420400,62916145200,21600,1,'AQTST',],[62916123600,62931848400,62916141600,62931866400,18000,0,'AQTT',],[62931848400,62947576800,62931866400,62947594800,18000,1,'AQTST',],[62947576800,62963906400,62947591200,62963920800,14400,0,'AQTT',],[62963906400,62982050400,62963924400,62982068400,18000,1,'AQTST',],[62982050400,62995356000,62982064800,62995370400,14400,0,'AQTT',],[62995356000,63013500000,62995374000,63013518000,18000,1,'AQTST',],[63013500000,63026805600,63013514400,63026820000,14400,0,'AQTT',],[63026805600,63044949600,63026823600,63044967600,18000,1,'AQTST',],[63044949600,63058255200,63044964000,63058269600,14400,0,'AQTT',],[63058255200,63077004000,63058273200,63077022000,18000,1,'AQTST',],[63077004000,63089704800,63077018400,63089719200,14400,0,'AQTT',],[63089704800,63108453600,63089722800,63108471600,18000,1,'AQTST',],[63108453600,63121154400,63108468000,63121168800,14400,0,'AQTT',],[63121154400,63139903200,63121172400,63139921200,18000,1,'AQTST',],[63139903200,63153208800,63139917600,63153223200,14400,0,'AQTT',],[63153208800,63171352800,63153226800,63171370800,18000,1,'AQTST',],[63171352800,63184658400,63171367200,63184672800,14400,0,'AQTT',],[63184658400,63202802400,63184676400,63202820400,18000,1,'AQTST',],[63202802400,63216108000,63202816800,63216122400,14400,0,'AQTT',],[63216108000,63234856800,63216126000,63234874800,18000,1,'AQTST',],[63234856800,63246513600,63234871200,63246528000,14400,0,'AQTT',],[63246513600,DateTime::TimeZone::INFINITY,63246531600,DateTime::TimeZone::INFINITY,18000,0,'AQTT',],];sub olson_version {'2016a'}sub has_dst_changes {22}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_AQTAU

$fatpacked{"DateTime/TimeZone/Asia/Aqtobe.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_AQTOBE';
  package DateTime::TimeZone::Asia::Aqtobe;$DateTime::TimeZone::Asia::Aqtobe::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Aqtobe::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60694517480,DateTime::TimeZone::NEG_INFINITY,60694531200,13720,0,'LMT',],[60694517480,60888139200,60694531880,60888153600,14400,0,'AKTT',],[60888139200,62490596400,60888157200,62490614400,18000,0,'AKTT',],[62490596400,62506404000,62490618000,62506425600,21600,1,'AKTST',],[62506404000,62522128800,62506425600,62522150400,21600,0,'AKTT',],[62522128800,62537940000,62522150400,62537961600,21600,1,'AKTST',],[62537940000,62553668400,62537958000,62553686400,18000,0,'AKTT',],[62553668400,62569476000,62553690000,62569497600,21600,1,'AKTST',],[62569476000,62585290800,62569494000,62585308800,18000,0,'AKTT',],[62585290800,62601022800,62585312400,62601044400,21600,1,'AKTST',],[62601022800,62616747600,62601040800,62616765600,18000,0,'AKTT',],[62616747600,62632472400,62616769200,62632494000,21600,1,'AKTST',],[62632472400,62648197200,62632490400,62648215200,18000,0,'AKTT',],[62648197200,62663922000,62648218800,62663943600,21600,1,'AKTST',],[62663922000,62679646800,62663940000,62679664800,18000,0,'AKTT',],[62679646800,62695371600,62679668400,62695393200,21600,1,'AKTST',],[62695371600,62711096400,62695389600,62711114400,18000,0,'AKTT',],[62711096400,62726821200,62711118000,62726842800,21600,1,'AKTST',],[62726821200,62742546000,62726839200,62742564000,18000,0,'AKTT',],[62742546000,62758270800,62742567600,62758292400,21600,1,'AKTST',],[62758270800,62773995600,62758288800,62774013600,18000,0,'AKTT',],[62773995600,62790325200,62774017200,62790346800,21600,1,'AKTST',],[62790325200,62798353200,62790343200,62798371200,18000,0,'AKTT',],[62798353200,62828506800,62798371200,62828524800,18000,0,'AKTT',],[62828506800,62837488800,62828524800,62837506800,18000,0,'AQTT',],[62837488800,62853210000,62837510400,62853231600,21600,1,'AQTST',],[62853210000,62868949200,62853228000,62868967200,18000,0,'AQTT',],[62868949200,62884674000,62868970800,62884695600,21600,1,'AQTST',],[62884674000,62900398800,62884692000,62900416800,18000,0,'AQTT',],[62900398800,62916123600,62900420400,62916145200,21600,1,'AQTST',],[62916123600,62931848400,62916141600,62931866400,18000,0,'AQTT',],[62931848400,62947573200,62931870000,62947594800,21600,1,'AQTST',],[62947573200,62963902800,62947591200,62963920800,18000,0,'AQTT',],[62963902800,62982046800,62963924400,62982068400,21600,1,'AQTST',],[62982046800,62995352400,62982064800,62995370400,18000,0,'AQTT',],[62995352400,63013496400,62995374000,63013518000,21600,1,'AQTST',],[63013496400,63026802000,63013514400,63026820000,18000,0,'AQTT',],[63026802000,63044946000,63026823600,63044967600,21600,1,'AQTST',],[63044946000,63058251600,63044964000,63058269600,18000,0,'AQTT',],[63058251600,63077000400,63058273200,63077022000,21600,1,'AQTST',],[63077000400,63089701200,63077018400,63089719200,18000,0,'AQTT',],[63089701200,63108450000,63089722800,63108471600,21600,1,'AQTST',],[63108450000,63121150800,63108468000,63121168800,18000,0,'AQTT',],[63121150800,63139899600,63121172400,63139921200,21600,1,'AQTST',],[63139899600,63153205200,63139917600,63153223200,18000,0,'AQTT',],[63153205200,63171349200,63153226800,63171370800,21600,1,'AQTST',],[63171349200,63184654800,63171367200,63184672800,18000,0,'AQTT',],[63184654800,63202798800,63184676400,63202820400,21600,1,'AQTST',],[63202798800,63216104400,63202816800,63216122400,18000,0,'AQTT',],[63216104400,63234853200,63216126000,63234874800,21600,1,'AQTST',],[63234853200,63246510000,63234871200,63246528000,18000,0,'AQTT',],[63246510000,DateTime::TimeZone::INFINITY,63246528000,DateTime::TimeZone::INFINITY,18000,0,'AQTT',],];sub olson_version {'2016a'}sub has_dst_changes {23}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_AQTOBE

$fatpacked{"DateTime/TimeZone/Asia/Ashgabat.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_ASHGABAT';
  package DateTime::TimeZone::Asia::Ashgabat;$DateTime::TimeZone::Asia::Ashgabat::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Ashgabat::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60694517188,DateTime::TimeZone::NEG_INFINITY,60694531200,14012,0,'LMT',],[60694517188,60888139200,60694531588,60888153600,14400,0,'ASHT',],[60888139200,62490596400,60888157200,62490614400,18000,0,'ASHT',],[62490596400,62506404000,62490618000,62506425600,21600,1,'ASHST',],[62506404000,62522132400,62506422000,62522150400,18000,0,'ASHT',],[62522132400,62537940000,62522154000,62537961600,21600,1,'ASHST',],[62537940000,62553668400,62537958000,62553686400,18000,0,'ASHT',],[62553668400,62569476000,62553690000,62569497600,21600,1,'ASHST',],[62569476000,62585290800,62569494000,62585308800,18000,0,'ASHT',],[62585290800,62601022800,62585312400,62601044400,21600,1,'ASHST',],[62601022800,62616747600,62601040800,62616765600,18000,0,'ASHT',],[62616747600,62632472400,62616769200,62632494000,21600,1,'ASHST',],[62632472400,62648197200,62632490400,62648215200,18000,0,'ASHT',],[62648197200,62663922000,62648218800,62663943600,21600,1,'ASHST',],[62663922000,62679646800,62663940000,62679664800,18000,0,'ASHT',],[62679646800,62695371600,62679668400,62695393200,21600,1,'ASHST',],[62695371600,62711096400,62695389600,62711114400,18000,0,'ASHT',],[62711096400,62726821200,62711118000,62726842800,21600,1,'ASHST',],[62726821200,62742546000,62726839200,62742564000,18000,0,'ASHT',],[62742546000,62758270800,62742567600,62758292400,21600,1,'ASHST',],[62758270800,62773995600,62758288800,62774013600,18000,0,'ASHT',],[62773995600,62790325200,62774017200,62790346800,21600,1,'ASHST',],[62790325200,62806050000,62790343200,62806068000,18000,0,'ASHT',],[62806050000,62821778400,62806068000,62821796400,18000,1,'ASHST',],[62821778400,62824190400,62821792800,62824204800,14400,0,'ASHT',],[62824190400,62831455200,62824204800,62831469600,14400,0,'TMT',],[62831455200,DateTime::TimeZone::INFINITY,62831473200,DateTime::TimeZone::INFINITY,18000,0,'TMT',],];sub olson_version {'2016a'}sub has_dst_changes {11}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_ASHGABAT

$fatpacked{"DateTime/TimeZone/Asia/Baghdad.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_BAGHDAD';
  package DateTime::TimeZone::Asia::Baghdad;$DateTime::TimeZone::Asia::Baghdad::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Baghdad::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59611150940,DateTime::TimeZone::NEG_INFINITY,59611161600,10660,0,'LMT',],[59611150940,60494677344,59611161596,60494688000,10656,0,'BMT',],[60494677344,62524731600,60494688144,62524742400,10800,0,'AST',],[62524731600,62537947200,62524746000,62537961600,14400,1,'ADT',],[62537947200,62553589200,62537958000,62553600000,10800,0,'AST',],[62553589200,62569483200,62553603600,62569497600,14400,1,'ADT',],[62569483200,62585298000,62569494000,62585308800,10800,0,'AST',],[62585298000,62601105600,62585312400,62601120000,14400,1,'ADT',],[62601105600,62616834000,62601116400,62616844800,10800,0,'AST',],[62616834000,62632476000,62616848400,62632490400,14400,1,'ADT',],[62632476000,62648200800,62632486800,62648211600,10800,0,'AST',],[62648200800,62663925600,62648215200,62663940000,14400,1,'ADT',],[62663925600,62679650400,62663936400,62679661200,10800,0,'AST',],[62679650400,62695375200,62679664800,62695389600,14400,1,'ADT',],[62695375200,62711100000,62695386000,62711110800,10800,0,'AST',],[62711100000,62726824800,62711114400,62726839200,14400,1,'ADT',],[62726824800,62742549600,62726835600,62742560400,10800,0,'AST',],[62742549600,62758274400,62742564000,62758288800,14400,1,'ADT',],[62758274400,62773999200,62758285200,62774010000,10800,0,'AST',],[62773999200,62790328800,62774013600,62790343200,14400,1,'ADT',],[62790328800,62806147200,62790339600,62806158000,10800,0,'AST',],[62806147200,62821958400,62806161600,62821972800,14400,1,'ADT',],[62821958400,62837769600,62821969200,62837780400,10800,0,'AST',],[62837769600,62853580800,62837784000,62853595200,14400,1,'ADT',],[62853580800,62869305600,62853591600,62869316400,10800,0,'AST',],[62869305600,62885116800,62869320000,62885131200,14400,1,'ADT',],[62885116800,62900841600,62885127600,62900852400,10800,0,'AST',],[62900841600,62916652800,62900856000,62916667200,14400,1,'ADT',],[62916652800,62932377600,62916663600,62932388400,10800,0,'AST',],[62932377600,62948188800,62932392000,62948203200,14400,1,'ADT',],[62948188800,62964000000,62948199600,62964010800,10800,0,'AST',],[62964000000,62979811200,62964014400,62979825600,14400,1,'ADT',],[62979811200,62995536000,62979822000,62995546800,10800,0,'AST',],[62995536000,63011347200,62995550400,63011361600,14400,1,'ADT',],[63011347200,63027072000,63011358000,63027082800,10800,0,'AST',],[63027072000,63042883200,63027086400,63042897600,14400,1,'ADT',],[63042883200,63058608000,63042894000,63058618800,10800,0,'AST',],[63058608000,63074419200,63058622400,63074433600,14400,1,'ADT',],[63074419200,63090230400,63074430000,63090241200,10800,0,'AST',],[63090230400,63106041600,63090244800,63106056000,14400,1,'ADT',],[63106041600,63121766400,63106052400,63121777200,10800,0,'AST',],[63121766400,63137577600,63121780800,63137592000,14400,1,'ADT',],[63137577600,63153302400,63137588400,63153313200,10800,0,'AST',],[63153302400,63169113600,63153316800,63169128000,14400,1,'ADT',],[63169113600,63184838400,63169124400,63184849200,10800,0,'AST',],[63184838400,63200649600,63184852800,63200664000,14400,1,'ADT',],[63200649600,63216460800,63200660400,63216471600,10800,0,'AST',],[63216460800,63232272000,63216475200,63232286400,14400,1,'ADT',],[63232272000,63247996800,63232282800,63248007600,10800,0,'AST',],[63247996800,63263808000,63248011200,63263822400,14400,1,'ADT',],[63263808000,63279532800,63263818800,63279543600,10800,0,'AST',],[63279532800,63295344000,63279547200,63295358400,14400,1,'ADT',],[63295344000,63311068800,63295354800,63311079600,10800,0,'AST',],[63311068800,63326880000,63311083200,63326894400,14400,1,'ADT',],[63326880000,DateTime::TimeZone::INFINITY,63326890800,DateTime::TimeZone::INFINITY,10800,0,'AST',],];sub olson_version {'2016a'}sub has_dst_changes {26}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_BAGHDAD

$fatpacked{"DateTime/TimeZone/Asia/Baku.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_BAKU';
  package DateTime::TimeZone::Asia::Baku;$DateTime::TimeZone::Asia::Baku::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Baku::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60694519236,DateTime::TimeZone::NEG_INFINITY,60694531200,11964,0,'LMT',],[60694519236,61730542800,60694530036,61730553600,10800,0,'BAKT',],[61730542800,62490600000,61730557200,62490614400,14400,0,'BAKT',],[62490600000,62506407600,62490618000,62506425600,18000,1,'BAKST',],[62506407600,62522136000,62506422000,62522150400,14400,0,'BAKT',],[62522136000,62537943600,62522154000,62537961600,18000,1,'BAKST',],[62537943600,62553672000,62537958000,62553686400,14400,0,'BAKT',],[62553672000,62569479600,62553690000,62569497600,18000,1,'BAKST',],[62569479600,62585294400,62569494000,62585308800,14400,0,'BAKT',],[62585294400,62601026400,62585312400,62601044400,18000,1,'BAKST',],[62601026400,62616751200,62601040800,62616765600,14400,0,'BAKT',],[62616751200,62632476000,62616769200,62632494000,18000,1,'BAKST',],[62632476000,62648200800,62632490400,62648215200,14400,0,'BAKT',],[62648200800,62663925600,62648218800,62663943600,18000,1,'BAKST',],[62663925600,62679650400,62663940000,62679664800,14400,0,'BAKT',],[62679650400,62695375200,62679668400,62695393200,18000,1,'BAKST',],[62695375200,62711100000,62695389600,62711114400,14400,0,'BAKT',],[62711100000,62726824800,62711118000,62726842800,18000,1,'BAKST',],[62726824800,62742549600,62726839200,62742564000,14400,0,'BAKT',],[62742549600,62758274400,62742567600,62758292400,18000,1,'BAKST',],[62758274400,62773999200,62758288800,62774013600,14400,0,'BAKT',],[62773999200,62790328800,62774017200,62790346800,18000,1,'BAKST',],[62790328800,62806053600,62790343200,62806068000,14400,0,'BAKT',],[62806053600,62819179200,62806068000,62819193600,14400,1,'BAKST',],[62819179200,62821782000,62819193600,62821796400,14400,1,'AZST',],[62821782000,62837496000,62821792800,62837506800,10800,0,'AZT',],[62837496000,62853217200,62837510400,62853231600,14400,1,'AZST',],[62853217200,62956123200,62853231600,62956137600,14400,0,'AZT',],[62956123200,62963917200,62956137600,62963931600,14400,0,'AZT',],[62963917200,62982061200,62963935200,62982079200,18000,1,'AZST',],[62982061200,62987745600,62982075600,62987760000,14400,0,'AZT',],[62987745600,62995363200,62987760000,62995377600,14400,0,'AZT',],[62995363200,63013507200,62995381200,63013525200,18000,1,'AZST',],[63013507200,63026812800,63013521600,63026827200,14400,0,'AZT',],[63026812800,63044956800,63026830800,63044974800,18000,1,'AZST',],[63044956800,63058262400,63044971200,63058276800,14400,0,'AZT',],[63058262400,63077011200,63058280400,63077029200,18000,1,'AZST',],[63077011200,63089712000,63077025600,63089726400,14400,0,'AZT',],[63089712000,63108460800,63089730000,63108478800,18000,1,'AZST',],[63108460800,63121161600,63108475200,63121176000,14400,0,'AZT',],[63121161600,63139910400,63121179600,63139928400,18000,1,'AZST',],[63139910400,63153216000,63139924800,63153230400,14400,0,'AZT',],[63153216000,63171360000,63153234000,63171378000,18000,1,'AZST',],[63171360000,63184665600,63171374400,63184680000,14400,0,'AZT',],[63184665600,63202809600,63184683600,63202827600,18000,1,'AZST',],[63202809600,63216115200,63202824000,63216129600,14400,0,'AZT',],[63216115200,63234864000,63216133200,63234882000,18000,1,'AZST',],[63234864000,63247564800,63234878400,63247579200,14400,0,'AZT',],[63247564800,63266313600,63247582800,63266331600,18000,1,'AZST',],[63266313600,63279014400,63266328000,63279028800,14400,0,'AZT',],[63279014400,63297763200,63279032400,63297781200,18000,1,'AZST',],[63297763200,63310464000,63297777600,63310478400,14400,0,'AZT',],[63310464000,63329212800,63310482000,63329230800,18000,1,'AZST',],[63329212800,63342518400,63329227200,63342532800,14400,0,'AZT',],[63342518400,63360662400,63342536400,63360680400,18000,1,'AZST',],[63360662400,63373968000,63360676800,63373982400,14400,0,'AZT',],[63373968000,63392112000,63373986000,63392130000,18000,1,'AZST',],[63392112000,63405417600,63392126400,63405432000,14400,0,'AZT',],[63405417600,63424166400,63405435600,63424184400,18000,1,'AZST',],[63424166400,63436867200,63424180800,63436881600,14400,0,'AZT',],[63436867200,63455616000,63436885200,63455634000,18000,1,'AZST',],[63455616000,63468316800,63455630400,63468331200,14400,0,'AZT',],[63468316800,63487065600,63468334800,63487083600,18000,1,'AZST',],[63487065600,63500371200,63487080000,63500385600,14400,0,'AZT',],[63500371200,63518515200,63500389200,63518533200,18000,1,'AZST',],[63518515200,63531820800,63518529600,63531835200,14400,0,'AZT',],[63531820800,63549964800,63531838800,63549982800,18000,1,'AZST',],[63549964800,63563270400,63549979200,63563284800,14400,0,'AZT',],[63563270400,63581414400,63563288400,63581432400,18000,1,'AZST',],[63581414400,63594720000,63581428800,63594734400,14400,0,'AZT',],[63594720000,63613468800,63594738000,63613486800,18000,1,'AZST',],[63613468800,63626169600,63613483200,63626184000,14400,0,'AZT',],[63626169600,63644918400,63626187600,63644936400,18000,1,'AZST',],[63644918400,63657619200,63644932800,63657633600,14400,0,'AZT',],[63657619200,63676368000,63657637200,63676386000,18000,1,'AZST',],[63676368000,63689673600,63676382400,63689688000,14400,0,'AZT',],[63689673600,63707817600,63689691600,63707835600,18000,1,'AZST',],[63707817600,63721123200,63707832000,63721137600,14400,0,'AZT',],[63721123200,63739267200,63721141200,63739285200,18000,1,'AZST',],[63739267200,63752572800,63739281600,63752587200,14400,0,'AZT',],[63752572800,63771321600,63752590800,63771339600,18000,1,'AZST',],[63771321600,63784022400,63771336000,63784036800,14400,0,'AZT',],[63784022400,63802771200,63784040400,63802789200,18000,1,'AZST',],[63802771200,63815472000,63802785600,63815486400,14400,0,'AZT',],[63815472000,63834220800,63815490000,63834238800,18000,1,'AZST',],[63834220800,63847526400,63834235200,63847540800,14400,0,'AZT',],[63847526400,63865670400,63847544400,63865688400,18000,1,'AZST',],[63865670400,63878976000,63865684800,63878990400,14400,0,'AZT',],[63878976000,63897120000,63878994000,63897138000,18000,1,'AZST',],[63897120000,63910425600,63897134400,63910440000,14400,0,'AZT',],[63910425600,63928569600,63910443600,63928587600,18000,1,'AZST',],[63928569600,63941875200,63928584000,63941889600,14400,0,'AZT',],[63941875200,63960624000,63941893200,63960642000,18000,1,'AZST',],];sub olson_version {'2016a'}sub has_dst_changes {45}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {14400}my$last_observance=bless({'format'=>'AZ%sT','gmtoff'=>'4:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>729025,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>729025,'utc_rd_secs'=>0,'utc_year'=>1998 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>14400,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>729024,'local_rd_secs'=>72000,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>729024,'utc_rd_secs'=>72000,'utc_year'=>1997 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'5:00','from'=>'1997','in'=>'Oct','letter'=>'','name'=>'Azer','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'4:00','from'=>'1997','in'=>'Mar','letter'=>'S','name'=>'Azer','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_ASIA_BAKU

$fatpacked{"DateTime/TimeZone/Asia/Bangkok.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_BANGKOK';
  package DateTime::TimeZone::Asia::Bangkok;$DateTime::TimeZone::Asia::Bangkok::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Bangkok::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59295518276,DateTime::TimeZone::NEG_INFINITY,59295542400,24124,0,'LMT',],[59295518276,60565598276,59295542400,60565622400,24124,0,'BMT',],[60565598276,DateTime::TimeZone::INFINITY,60565623476,DateTime::TimeZone::INFINITY,25200,0,'ICT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_BANGKOK

$fatpacked{"DateTime/TimeZone/Asia/Beirut.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_BEIRUT';
  package DateTime::TimeZone::Asia::Beirut;$DateTime::TimeZone::Asia::Beirut::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Beirut::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59295533880,DateTime::TimeZone::NEG_INFINITY,59295542400,8520,0,'LMT',],[59295533880,60565269600,59295541080,60565276800,7200,0,'EET',],[60565269600,60583496400,60565280400,60583507200,10800,1,'EEST',],[60583496400,60597324000,60583503600,60597331200,7200,0,'EET',],[60597324000,60613131600,60597334800,60613142400,10800,1,'EEST',],[60613131600,60628168800,60613138800,60628176000,7200,0,'EET',],[60628168800,60645099600,60628179600,60645110400,10800,1,'EEST',],[60645099600,60662037600,60645106800,60662044800,7200,0,'EET',],[60662037600,60674734800,60662048400,60674745600,10800,1,'EEST',],[60674734800,61735816800,60674742000,61735824000,7200,0,'EET',],[61735816800,61749032400,61735827600,61749043200,10800,1,'EEST',],[61749032400,61767352800,61749039600,61767360000,7200,0,'EET',],[61767352800,61780568400,61767363600,61780579200,10800,1,'EEST',],[61780568400,61798888800,61780575600,61798896000,7200,0,'EET',],[61798888800,61812104400,61798899600,61812115200,10800,1,'EEST',],[61812104400,61830511200,61812111600,61830518400,7200,0,'EET',],[61830511200,61843726800,61830522000,61843737600,10800,1,'EEST',],[61843726800,61862047200,61843734000,61862054400,7200,0,'EET',],[61862047200,61875262800,61862058000,61875273600,10800,1,'EEST',],[61875262800,62213695200,61875270000,62213702400,7200,0,'EET',],[62213695200,62222418000,62213706000,62222428800,10800,1,'EEST',],[62222418000,62240738400,62222425200,62240745600,7200,0,'EET',],[62240738400,62253954000,62240749200,62253964800,10800,1,'EEST',],[62253954000,62272274400,62253961200,62272281600,7200,0,'EET',],[62272274400,62285490000,62272285200,62285500800,10800,1,'EEST',],[62285490000,62303810400,62285497200,62303817600,7200,0,'EET',],[62303810400,62317026000,62303821200,62317036800,10800,1,'EEST',],[62317026000,62335432800,62317033200,62335440000,7200,0,'EET',],[62335432800,62348648400,62335443600,62348659200,10800,1,'EEST',],[62348648400,62366968800,62348655600,62366976000,7200,0,'EET',],[62366968800,62380184400,62366979600,62380195200,10800,1,'EEST',],[62380184400,62398418400,62380191600,62398425600,7200,0,'EET',],[62398418400,62411634000,62398429200,62411644800,10800,1,'EEST',],[62411634000,62587893600,62411641200,62587900800,7200,0,'EET',],[62587893600,62602405200,62587904400,62602416000,10800,1,'EEST',],[62602405200,62619429600,62602412400,62619436800,7200,0,'EET',],[62619429600,62633941200,62619440400,62633952000,10800,1,'EEST',],[62633941200,62650965600,62633948400,62650972800,7200,0,'EET',],[62650965600,62665477200,62650976400,62665488000,10800,1,'EEST',],[62665477200,62682501600,62665484400,62682508800,7200,0,'EET',],[62682501600,62697013200,62682512400,62697024000,10800,1,'EEST',],[62697013200,62716802400,62697020400,62716809600,7200,0,'EET',],[62716802400,62728635600,62716813200,62728646400,10800,1,'EEST',],[62728635600,62746437600,62728642800,62746444800,7200,0,'EET',],[62746437600,62760171600,62746448400,62760182400,10800,1,'EEST',],[62760171600,62777196000,62760178800,62777203200,7200,0,'EET',],[62777196000,62791707600,62777206800,62791718400,10800,1,'EEST',],[62791707600,62808732000,62791714800,62808739200,7200,0,'EET',],[62808732000,62823243600,62808742800,62823254400,10800,1,'EEST',],[62823243600,62840354400,62823250800,62840361600,7200,0,'EET',],[62840354400,62853829200,62840365200,62853840000,10800,1,'EEST',],[62853829200,62868952800,62853836400,62868960000,7200,0,'EET',],[62868952800,62884674000,62868963600,62884684800,10800,1,'EEST',],[62884674000,62900402400,62884681200,62900409600,7200,0,'EET',],[62900402400,62916123600,62900413200,62916134400,10800,1,'EEST',],[62916123600,62931852000,62916130800,62931859200,7200,0,'EET',],[62931852000,62947573200,62931862800,62947584000,10800,1,'EEST',],[62947573200,62963906400,62947580400,62963913600,7200,0,'EET',],[62963906400,62979627600,62963917200,62979638400,10800,1,'EEST',],[62979627600,62995356000,62979634800,62995363200,7200,0,'EET',],[62995356000,63011077200,62995366800,63011088000,10800,1,'EEST',],[63011077200,63026805600,63011084400,63026812800,7200,0,'EET',],[63026805600,63042526800,63026816400,63042537600,10800,1,'EEST',],[63042526800,63058255200,63042534000,63058262400,7200,0,'EET',],[63058255200,63077000400,63058266000,63077011200,10800,1,'EEST',],[63077000400,63089704800,63077007600,63089712000,7200,0,'EET',],[63089704800,63108450000,63089715600,63108460800,10800,1,'EEST',],[63108450000,63121154400,63108457200,63121161600,7200,0,'EET',],[63121154400,63139899600,63121165200,63139910400,10800,1,'EEST',],[63139899600,63153208800,63139906800,63153216000,7200,0,'EET',],[63153208800,63171349200,63153219600,63171360000,10800,1,'EEST',],[63171349200,63184658400,63171356400,63184665600,7200,0,'EET',],[63184658400,63202798800,63184669200,63202809600,10800,1,'EEST',],[63202798800,63216108000,63202806000,63216115200,7200,0,'EET',],[63216108000,63234853200,63216118800,63234864000,10800,1,'EEST',],[63234853200,63247557600,63234860400,63247564800,7200,0,'EET',],[63247557600,63266302800,63247568400,63266313600,10800,1,'EEST',],[63266302800,63279007200,63266310000,63279014400,7200,0,'EET',],[63279007200,63297752400,63279018000,63297763200,10800,1,'EEST',],[63297752400,63310456800,63297759600,63310464000,7200,0,'EET',],[63310456800,63329202000,63310467600,63329212800,10800,1,'EEST',],[63329202000,63342511200,63329209200,63342518400,7200,0,'EET',],[63342511200,63360651600,63342522000,63360662400,10800,1,'EEST',],[63360651600,63373960800,63360658800,63373968000,7200,0,'EET',],[63373960800,63392101200,63373971600,63392112000,10800,1,'EEST',],[63392101200,63405410400,63392108400,63405417600,7200,0,'EET',],[63405410400,63424155600,63405421200,63424166400,10800,1,'EEST',],[63424155600,63436860000,63424162800,63436867200,7200,0,'EET',],[63436860000,63455605200,63436870800,63455616000,10800,1,'EEST',],[63455605200,63468309600,63455612400,63468316800,7200,0,'EET',],[63468309600,63487054800,63468320400,63487065600,10800,1,'EEST',],[63487054800,63500364000,63487062000,63500371200,7200,0,'EET',],[63500364000,63518504400,63500374800,63518515200,10800,1,'EEST',],[63518504400,63531813600,63518511600,63531820800,7200,0,'EET',],[63531813600,63549954000,63531824400,63549964800,10800,1,'EEST',],[63549954000,63563263200,63549961200,63563270400,7200,0,'EET',],[63563263200,63581403600,63563274000,63581414400,10800,1,'EEST',],[63581403600,63594712800,63581410800,63594720000,7200,0,'EET',],[63594712800,63613458000,63594723600,63613468800,10800,1,'EEST',],[63613458000,63626162400,63613465200,63626169600,7200,0,'EET',],[63626162400,63644907600,63626173200,63644918400,10800,1,'EEST',],[63644907600,63657612000,63644914800,63657619200,7200,0,'EET',],[63657612000,63676357200,63657622800,63676368000,10800,1,'EEST',],[63676357200,63689666400,63676364400,63689673600,7200,0,'EET',],[63689666400,63707806800,63689677200,63707817600,10800,1,'EEST',],[63707806800,63721116000,63707814000,63721123200,7200,0,'EET',],[63721116000,63739256400,63721126800,63739267200,10800,1,'EEST',],[63739256400,63752565600,63739263600,63752572800,7200,0,'EET',],[63752565600,63771310800,63752576400,63771321600,10800,1,'EEST',],[63771310800,63784015200,63771318000,63784022400,7200,0,'EET',],[63784015200,63802760400,63784026000,63802771200,10800,1,'EEST',],[63802760400,63815464800,63802767600,63815472000,7200,0,'EET',],[63815464800,63834210000,63815475600,63834220800,10800,1,'EEST',],[63834210000,63847519200,63834217200,63847526400,7200,0,'EET',],[63847519200,63865659600,63847530000,63865670400,10800,1,'EEST',],[63865659600,63878968800,63865666800,63878976000,7200,0,'EET',],[63878968800,63897109200,63878979600,63897120000,10800,1,'EEST',],[63897109200,63910418400,63897116400,63910425600,7200,0,'EET',],[63910418400,63928558800,63910429200,63928569600,10800,1,'EEST',],[63928558800,63941868000,63928566000,63941875200,7200,0,'EET',],[63941868000,63960613200,63941878800,63960624000,10800,1,'EEST',],];sub olson_version {'2016a'}sub has_dst_changes {60}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {7200}my$last_observance=bless({'format'=>'EE%sT','gmtoff'=>'2:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>686290,'local_rd_secs'=>85080,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>686290,'utc_rd_secs'=>85080,'utc_year'=>1880 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>7200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>686290,'local_rd_secs'=>77880,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>686290,'utc_rd_secs'=>77880,'utc_year'=>1880 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'0:00','from'=>'1993','in'=>'Mar','letter'=>'S','name'=>'Lebanon','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'0:00','from'=>'1999','in'=>'Oct','letter'=>'','name'=>'Lebanon','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_ASIA_BEIRUT

$fatpacked{"DateTime/TimeZone/Asia/Bishkek.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_BISHKEK';
  package DateTime::TimeZone::Asia::Bishkek;$DateTime::TimeZone::Asia::Bishkek::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Bishkek::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60694513296,DateTime::TimeZone::NEG_INFINITY,60694531200,17904,0,'LMT',],[60694513296,60888135600,60694531296,60888153600,18000,0,'FRUT',],[60888135600,62490592800,60888157200,62490614400,21600,0,'FRUT',],[62490592800,62506400400,62490618000,62506425600,25200,1,'FRUST',],[62506400400,62522128800,62506422000,62522150400,21600,0,'FRUT',],[62522128800,62537936400,62522154000,62537961600,25200,1,'FRUST',],[62537936400,62553664800,62537958000,62553686400,21600,0,'FRUT',],[62553664800,62569472400,62553690000,62569497600,25200,1,'FRUST',],[62569472400,62585287200,62569494000,62585308800,21600,0,'FRUT',],[62585287200,62601019200,62585312400,62601044400,25200,1,'FRUST',],[62601019200,62616744000,62601040800,62616765600,21600,0,'FRUT',],[62616744000,62632468800,62616769200,62632494000,25200,1,'FRUST',],[62632468800,62648193600,62632490400,62648215200,21600,0,'FRUT',],[62648193600,62663918400,62648218800,62663943600,25200,1,'FRUST',],[62663918400,62679643200,62663940000,62679664800,21600,0,'FRUT',],[62679643200,62695368000,62679668400,62695393200,25200,1,'FRUST',],[62695368000,62711092800,62695389600,62711114400,21600,0,'FRUT',],[62711092800,62726817600,62711118000,62726842800,25200,1,'FRUST',],[62726817600,62742542400,62726839200,62742564000,21600,0,'FRUT',],[62742542400,62758267200,62742567600,62758292400,25200,1,'FRUST',],[62758267200,62773992000,62758288800,62774013600,21600,0,'FRUT',],[62773992000,62790321600,62774017200,62790346800,25200,1,'FRUST',],[62790321600,62806046400,62790343200,62806068000,21600,0,'FRUT',],[62806046400,62819265600,62806068000,62819287200,21600,1,'FRUST',],[62819265600,62838702000,62819283600,62838720000,18000,0,'KGT',],[62838702000,62853213600,62838723600,62853235200,21600,1,'KGST',],[62853213600,62870151600,62853231600,62870169600,18000,0,'KGT',],[62870151600,62884663200,62870173200,62884684800,21600,1,'KGST',],[62884663200,62901601200,62884681200,62901619200,18000,0,'KGT',],[62901601200,62916112800,62901622800,62916134400,21600,1,'KGST',],[62916112800,62933050800,62916130800,62933068800,18000,0,'KGT',],[62933050800,62947562400,62933072400,62947584000,21600,1,'KGST',],[62947562400,62964500400,62947580400,62964518400,18000,0,'KGT',],[62964500400,62979616800,62964522000,62979638400,21600,1,'KGST',],[62979616800,62995354200,62979634800,62995372200,18000,0,'KGT',],[62995354200,63013494600,62995375800,63013516200,21600,1,'KGST',],[63013494600,63026803800,63013512600,63026821800,18000,0,'KGT',],[63026803800,63044944200,63026825400,63044965800,21600,1,'KGST',],[63044944200,63058253400,63044962200,63058271400,18000,0,'KGT',],[63058253400,63076998600,63058275000,63077020200,21600,1,'KGST',],[63076998600,63089703000,63077016600,63089721000,18000,0,'KGT',],[63089703000,63108448200,63089724600,63108469800,21600,1,'KGST',],[63108448200,63121152600,63108466200,63121170600,18000,0,'KGT',],[63121152600,63139897800,63121174200,63139919400,21600,1,'KGST',],[63139897800,63153207000,63139915800,63153225000,18000,0,'KGT',],[63153207000,63171347400,63153228600,63171369000,21600,1,'KGST',],[63171347400,63184656600,63171365400,63184674600,18000,0,'KGT',],[63184656600,63202797000,63184678200,63202818600,21600,1,'KGST',],[63202797000,63216106200,63202815000,63216124200,18000,0,'KGT',],[63216106200,63234851400,63216127800,63234873000,21600,1,'KGST',],[63234851400,63247555800,63234869400,63247573800,18000,0,'KGT',],[63247555800,63259466400,63247577400,63259488000,21600,1,'KGST',],[63259466400,DateTime::TimeZone::INFINITY,63259488000,DateTime::TimeZone::INFINITY,21600,0,'KGT',],];sub olson_version {'2016a'}sub has_dst_changes {25}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_BISHKEK

$fatpacked{"DateTime/TimeZone/Asia/Brunei.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_BRUNEI';
  package DateTime::TimeZone::Asia::Brunei;$DateTime::TimeZone::Asia::Brunei::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Brunei::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60752218820,DateTime::TimeZone::NEG_INFINITY,60752246400,27580,0,'LMT',],[60752218820,60968046600,60752245820,60968073600,27000,0,'BNT',],[60968046600,DateTime::TimeZone::INFINITY,60968075400,DateTime::TimeZone::INFINITY,28800,0,'BNT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_BRUNEI

$fatpacked{"DateTime/TimeZone/Asia/Chita.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_CHITA';
  package DateTime::TimeZone::Asia::Chita;$DateTime::TimeZone::Asia::Chita::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Chita::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60556263968,DateTime::TimeZone::NEG_INFINITY,60556291200,27232,0,'LMT',],[60556263968,60888124800,60556292768,60888153600,28800,0,'YAKT',],[60888124800,62490582000,60888157200,62490614400,32400,0,'YAKT',],[62490582000,62506389600,62490618000,62506425600,36000,1,'YAKST',],[62506389600,62522118000,62506422000,62522150400,32400,0,'YAKT',],[62522118000,62537925600,62522154000,62537961600,36000,1,'YAKST',],[62537925600,62553654000,62537958000,62553686400,32400,0,'YAKT',],[62553654000,62569461600,62553690000,62569497600,36000,1,'YAKST',],[62569461600,62585276400,62569494000,62585308800,32400,0,'YAKT',],[62585276400,62601008400,62585312400,62601044400,36000,1,'YAKST',],[62601008400,62616733200,62601040800,62616765600,32400,0,'YAKT',],[62616733200,62632458000,62616769200,62632494000,36000,1,'YAKST',],[62632458000,62648182800,62632490400,62648215200,32400,0,'YAKT',],[62648182800,62663907600,62648218800,62663943600,36000,1,'YAKST',],[62663907600,62679632400,62663940000,62679664800,32400,0,'YAKT',],[62679632400,62695357200,62679668400,62695393200,36000,1,'YAKST',],[62695357200,62711082000,62695389600,62711114400,32400,0,'YAKT',],[62711082000,62726806800,62711118000,62726842800,36000,1,'YAKST',],[62726806800,62742531600,62726839200,62742564000,32400,0,'YAKT',],[62742531600,62758256400,62742567600,62758292400,36000,1,'YAKST',],[62758256400,62773981200,62758288800,62774013600,32400,0,'YAKT',],[62773981200,62790310800,62774017200,62790346800,36000,1,'YAKST',],[62790310800,62806035600,62790343200,62806068000,32400,0,'YAKT',],[62806035600,62821764000,62806068000,62821796400,32400,1,'YAKST',],[62821764000,62831440800,62821792800,62831469600,28800,0,'YAKT',],[62831440800,62837474400,62831473200,62837506800,32400,0,'YAKT',],[62837474400,62853195600,62837510400,62853231600,36000,1,'YAKST',],[62853195600,62868934800,62853228000,62868967200,32400,0,'YAKT',],[62868934800,62884659600,62868970800,62884695600,36000,1,'YAKST',],[62884659600,62900384400,62884692000,62900416800,32400,0,'YAKT',],[62900384400,62916109200,62900420400,62916145200,36000,1,'YAKST',],[62916109200,62931834000,62916141600,62931866400,32400,0,'YAKT',],[62931834000,62947558800,62931870000,62947594800,36000,1,'YAKST',],[62947558800,62963888400,62947591200,62963920800,32400,0,'YAKT',],[62963888400,62982032400,62963924400,62982068400,36000,1,'YAKST',],[62982032400,62995338000,62982064800,62995370400,32400,0,'YAKT',],[62995338000,63013482000,62995374000,63013518000,36000,1,'YAKST',],[63013482000,63026787600,63013514400,63026820000,32400,0,'YAKT',],[63026787600,63044931600,63026823600,63044967600,36000,1,'YAKST',],[63044931600,63058237200,63044964000,63058269600,32400,0,'YAKT',],[63058237200,63076986000,63058273200,63077022000,36000,1,'YAKST',],[63076986000,63089686800,63077018400,63089719200,32400,0,'YAKT',],[63089686800,63108435600,63089722800,63108471600,36000,1,'YAKST',],[63108435600,63121136400,63108468000,63121168800,32400,0,'YAKT',],[63121136400,63139885200,63121172400,63139921200,36000,1,'YAKST',],[63139885200,63153190800,63139917600,63153223200,32400,0,'YAKT',],[63153190800,63171334800,63153226800,63171370800,36000,1,'YAKST',],[63171334800,63184640400,63171367200,63184672800,32400,0,'YAKT',],[63184640400,63202784400,63184676400,63202820400,36000,1,'YAKST',],[63202784400,63216090000,63202816800,63216122400,32400,0,'YAKT',],[63216090000,63234838800,63216126000,63234874800,36000,1,'YAKST',],[63234838800,63247539600,63234871200,63247572000,32400,0,'YAKT',],[63247539600,63266288400,63247575600,63266324400,36000,1,'YAKST',],[63266288400,63278989200,63266320800,63279021600,32400,0,'YAKT',],[63278989200,63297738000,63279025200,63297774000,36000,1,'YAKST',],[63297738000,63310438800,63297770400,63310471200,32400,0,'YAKT',],[63310438800,63329187600,63310474800,63329223600,36000,1,'YAKST',],[63329187600,63342493200,63329220000,63342525600,32400,0,'YAKT',],[63342493200,63360637200,63342529200,63360673200,36000,1,'YAKST',],[63360637200,63373942800,63360669600,63373975200,32400,0,'YAKT',],[63373942800,63392086800,63373978800,63392122800,36000,1,'YAKST',],[63392086800,63405392400,63392119200,63405424800,32400,0,'YAKT',],[63405392400,63424141200,63405428400,63424177200,36000,1,'YAKST',],[63424141200,63436842000,63424173600,63436874400,32400,0,'YAKT',],[63436842000,63549936000,63436878000,63549972000,36000,0,'YAKT',],[63549936000,63594698400,63549964800,63594727200,28800,0,'IRKT',],[63594698400,DateTime::TimeZone::INFINITY,63594730800,DateTime::TimeZone::INFINITY,32400,0,'YAKT',],];sub olson_version {'2016a'}sub has_dst_changes {30}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_CHITA

$fatpacked{"DateTime/TimeZone/Asia/Choibalsan.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_CHOIBALSAN';
  package DateTime::TimeZone::Asia::Choibalsan;$DateTime::TimeZone::Asia::Choibalsan::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Choibalsan::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60102750120,DateTime::TimeZone::NEG_INFINITY,60102777600,27480,0,'LMT',],[60102750120,62388118800,60102775320,62388144000,25200,0,'ULAT',],[62388118800,62553657600,62388147600,62553686400,28800,0,'ULAT',],[62553657600,62569461600,62553693600,62569497600,36000,1,'CHOST',],[62569461600,62585276400,62569494000,62585308800,32400,0,'CHOT',],[62585276400,62600997600,62585312400,62601033600,36000,1,'CHOST',],[62600997600,62616726000,62601030000,62616758400,32400,0,'CHOT',],[62616726000,62632447200,62616762000,62632483200,36000,1,'CHOST',],[62632447200,62648175600,62632479600,62648208000,32400,0,'CHOT',],[62648175600,62663896800,62648211600,62663932800,36000,1,'CHOST',],[62663896800,62679625200,62663929200,62679657600,32400,0,'CHOT',],[62679625200,62695346400,62679661200,62695382400,36000,1,'CHOST',],[62695346400,62711074800,62695378800,62711107200,32400,0,'CHOT',],[62711074800,62726796000,62711110800,62726832000,36000,1,'CHOST',],[62726796000,62742524400,62726828400,62742556800,32400,0,'CHOT',],[62742524400,62758245600,62742560400,62758281600,36000,1,'CHOST',],[62758245600,62773974000,62758278000,62774006400,32400,0,'CHOT',],[62773974000,62790300000,62774010000,62790336000,36000,1,'CHOST',],[62790300000,62806028400,62790332400,62806060800,32400,0,'CHOT',],[62806028400,62821749600,62806064400,62821785600,36000,1,'CHOST',],[62821749600,62837478000,62821782000,62837510400,32400,0,'CHOT',],[62837478000,62853199200,62837514000,62853235200,36000,1,'CHOST',],[62853199200,62868927600,62853231600,62868960000,32400,0,'CHOT',],[62868927600,62884648800,62868963600,62884684800,36000,1,'CHOST',],[62884648800,62900377200,62884681200,62900409600,32400,0,'CHOT',],[62900377200,62916098400,62900413200,62916134400,36000,1,'CHOST',],[62916098400,62931826800,62916130800,62931859200,32400,0,'CHOT',],[62931826800,62947548000,62931862800,62947584000,36000,1,'CHOST',],[62947548000,62963881200,62947580400,62963913600,32400,0,'CHOT',],[62963881200,62979602400,62963917200,62979638400,36000,1,'CHOST',],[62979602400,62995330800,62979634800,62995363200,32400,0,'CHOT',],[62995330800,63011052000,62995366800,63011088000,36000,1,'CHOST',],[63011052000,63026780400,63011084400,63026812800,32400,0,'CHOT',],[63026780400,63042501600,63026816400,63042537600,36000,1,'CHOST',],[63042501600,63124074000,63042534000,63124106400,32400,0,'CHOT',],[63124074000,63137376000,63124110000,63137412000,36000,1,'CHOST',],[63137376000,63153104400,63137408400,63153136800,32400,0,'CHOT',],[63153104400,63168825600,63153140400,63168861600,36000,1,'CHOST',],[63168825600,63184554000,63168858000,63184586400,32400,0,'CHOT',],[63184554000,63200275200,63184590000,63200311200,36000,1,'CHOST',],[63200275200,63216003600,63200307600,63216036000,32400,0,'CHOT',],[63216003600,63231724800,63216039600,63231760800,36000,1,'CHOST',],[63231724800,63247453200,63231757200,63247485600,32400,0,'CHOT',],[63247453200,63263174400,63247489200,63263210400,36000,1,'CHOST',],[63263174400,63278902800,63263206800,63278935200,32400,0,'CHOT',],[63278902800,63295228800,63278938800,63295264800,36000,1,'CHOST',],[63295228800,63342572400,63295261200,63342604800,32400,0,'CHOT',],[63342572400,63563162400,63342601200,63563191200,28800,0,'CHOT',],[63563162400,63578876400,63563194800,63578908800,32400,1,'CHOST',],[63578876400,63594612000,63578905200,63594640800,28800,0,'CHOT',],[63594612000,63610326000,63594644400,63610358400,32400,1,'CHOST',],[63610326000,63626061600,63610354800,63626090400,28800,0,'CHOT',],[63626061600,63642380400,63626094000,63642412800,32400,1,'CHOST',],[63642380400,63658116000,63642409200,63658144800,28800,0,'CHOT',],[63658116000,63673830000,63658148400,63673862400,32400,1,'CHOST',],[63673830000,63689565600,63673858800,63689594400,28800,0,'CHOT',],[63689565600,63705279600,63689598000,63705312000,32400,1,'CHOST',],[63705279600,63721015200,63705308400,63721044000,28800,0,'CHOT',],[63721015200,63736729200,63721047600,63736761600,32400,1,'CHOST',],[63736729200,63752464800,63736758000,63752493600,28800,0,'CHOT',],[63752464800,63768178800,63752497200,63768211200,32400,1,'CHOST',],[63768178800,63783914400,63768207600,63783943200,28800,0,'CHOT',],[63783914400,63799628400,63783946800,63799660800,32400,1,'CHOST',],[63799628400,63815364000,63799657200,63815392800,28800,0,'CHOT',],[63815364000,63831682800,63815396400,63831715200,32400,1,'CHOST',],[63831682800,63847418400,63831711600,63847447200,28800,0,'CHOT',],[63847418400,63863132400,63847450800,63863164800,32400,1,'CHOST',],[63863132400,63878868000,63863161200,63878896800,28800,0,'CHOT',],[63878868000,63894582000,63878900400,63894614400,32400,1,'CHOST',],[63894582000,63910317600,63894610800,63910346400,28800,0,'CHOT',],[63910317600,63926031600,63910350000,63926064000,32400,1,'CHOST',],[63926031600,63941767200,63926060400,63941796000,28800,0,'CHOT',],[63941767200,63957481200,63941799600,63957513600,32400,1,'CHOST',],];sub olson_version {'2016a'}sub has_dst_changes {35}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {28800}my$last_observance=bless({'format'=>'CHO%sT','gmtoff'=>'8:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>733131,'local_rd_secs'=>82800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>733131,'utc_rd_secs'=>82800,'utc_year'=>2009 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>28800,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>733131,'local_rd_secs'=>54000,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>733131,'utc_rd_secs'=>54000,'utc_year'=>2009 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2015','in'=>'Mar','letter'=>'S','name'=>'Mongol','offset_from_std'=>3600,'on'=>'lastSat','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'0:00','from'=>'2015','in'=>'Sep','letter'=>'','name'=>'Mongol','offset_from_std'=>0,'on'=>'lastSat','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_ASIA_CHOIBALSAN

$fatpacked{"DateTime/TimeZone/Asia/Colombo.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_COLOMBO';
  package DateTime::TimeZone::Asia::Colombo;$DateTime::TimeZone::Asia::Colombo::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Colombo::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59295523236,DateTime::TimeZone::NEG_INFINITY,59295542400,19164,0,'LMT',],[59295523236,60115977628,59295542408,60115996800,19172,0,'MMT',],[60115977628,61252396200,60115997428,61252416000,19800,0,'IST',],[61252396200,61273044000,61252417800,61273065600,21600,1,'IHST',],[61273044000,61371631800,61273067400,61371655200,23400,1,'IST',],[61371631800,62968645800,61371651600,62968665600,19800,0,'IST',],[62968645800,62981949600,62968669200,62981973000,23400,0,'LKT',],[62981949600,63280722600,62981971200,63280744200,21600,0,'LKT',],[63280722600,DateTime::TimeZone::INFINITY,63280742400,DateTime::TimeZone::INFINITY,19800,0,'IST',],];sub olson_version {'2016a'}sub has_dst_changes {2}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_COLOMBO

$fatpacked{"DateTime/TimeZone/Asia/Damascus.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_DAMASCUS';
  package DateTime::TimeZone::Asia::Damascus;$DateTime::TimeZone::Asia::Damascus::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Damascus::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60557751288,DateTime::TimeZone::NEG_INFINITY,60557760000,8712,0,'LMT',],[60557751288,60567091200,60557758488,60567098400,7200,0,'EET',],[60567091200,60581602800,60567102000,60581613600,10800,1,'EEST',],[60581602800,60598540800,60581610000,60598548000,7200,0,'EET',],[60598540800,60613052400,60598551600,60613063200,10800,1,'EEST',],[60613052400,60629990400,60613059600,60629997600,7200,0,'EET',],[60629990400,60644502000,60630001200,60644512800,10800,1,'EEST',],[60644502000,60661440000,60644509200,60661447200,7200,0,'EET',],[60661440000,60676556400,60661450800,60676567200,10800,1,'EEST',],[60676556400,61893417600,60676563600,61893424800,7200,0,'EET',],[61893417600,61906806000,61893428400,61906816800,10800,1,'EEST',],[61906806000,61925126400,61906813200,61925133600,7200,0,'EET',],[61925126400,61938255600,61925137200,61938266400,10800,1,'EEST',],[61938255600,61956748800,61938262800,61956756000,7200,0,'EET',],[61956748800,61969964400,61956759600,61969975200,10800,1,'EEST',],[61969964400,61988284800,61969971600,61988292000,7200,0,'EET',],[61988284800,62001414000,61988295600,62001424800,10800,1,'EEST',],[62001414000,62019216000,62001421200,62019223200,7200,0,'EET',],[62019216000,62033036400,62019226800,62033047200,10800,1,'EEST',],[62033036400,62051356800,62033043600,62051364000,7200,0,'EET',],[62051356800,62064572400,62051367600,62064583200,10800,1,'EEST',],[62064572400,62082979200,62064579600,62082986400,7200,0,'EET',],[62082979200,62096194800,62082990000,62096205600,10800,1,'EEST',],[62096194800,62114515200,62096202000,62114522400,7200,0,'EET',],[62114515200,62127730800,62114526000,62127741600,10800,1,'EEST',],[62127730800,62146051200,62127738000,62146058400,7200,0,'EET',],[62146051200,62159266800,62146062000,62159277600,10800,1,'EEST',],[62159266800,62177587200,62159274000,62177594400,7200,0,'EET',],[62177587200,62190802800,62177598000,62190813600,10800,1,'EEST',],[62190802800,62209209600,62190810000,62209216800,7200,0,'EET',],[62209209600,62222425200,62209220400,62222436000,10800,1,'EEST',],[62222425200,62240745600,62222432400,62240752800,7200,0,'EET',],[62240745600,62253961200,62240756400,62253972000,10800,1,'EEST',],[62253961200,62272281600,62253968400,62272288800,7200,0,'EET',],[62272281600,62285497200,62272292400,62285508000,10800,1,'EEST',],[62285497200,62303817600,62285504400,62303824800,7200,0,'EET',],[62303817600,62317033200,62303828400,62317044000,10800,1,'EEST',],[62317033200,62335440000,62317040400,62335447200,7200,0,'EET',],[62335440000,62348655600,62335450800,62348666400,10800,1,'EEST',],[62348655600,62366976000,62348662800,62366983200,7200,0,'EET',],[62366976000,62377599600,62366986800,62377610400,10800,1,'EEST',],[62377599600,62398512000,62377606800,62398519200,7200,0,'EET',],[62398512000,62409135600,62398522800,62409146400,10800,1,'EEST',],[62409135600,62554377600,62409142800,62554384800,7200,0,'EET',],[62554377600,62569494000,62554388400,62569504800,10800,1,'EEST',],[62569494000,62586000000,62569501200,62586007200,7200,0,'EET',],[62586000000,62601116400,62586010800,62601127200,10800,1,'EEST',],[62601116400,62644579200,62601123600,62644586400,7200,0,'EET',],[62644579200,62664879600,62644590000,62664890400,10800,1,'EEST',],[62664879600,62677238400,62664886800,62677245600,7200,0,'EET',],[62677238400,62698316400,62677249200,62698327200,10800,1,'EEST',],[62698316400,62710070400,62698323600,62710077600,7200,0,'EET',],[62710070400,62729938800,62710081200,62729949600,10800,1,'EEST',],[62729938800,62742988800,62729946000,62742996000,7200,0,'EET',],[62742988800,62758882800,62742999600,62758893600,10800,1,'EEST',],[62758882800,62774611200,62758890000,62774618400,7200,0,'EET',],[62774611200,62790332400,62774622000,62790343200,10800,1,'EEST',],[62790332400,62806140000,62790339600,62806147200,7200,0,'EET',],[62806140000,62821947600,62806150800,62821958400,10800,1,'EEST',],[62821947600,62838367200,62821954800,62838374400,7200,0,'EET',],[62838367200,62853570000,62838378000,62853580800,10800,1,'EEST',],[62853570000,62868780000,62853577200,62868787200,7200,0,'EET',],[62868780000,62884587600,62868790800,62884598400,10800,1,'EEST',],[62884587600,62900834400,62884594800,62900841600,7200,0,'EET',],[62900834400,62916642000,62900845200,62916652800,10800,1,'EEST',],[62916642000,62932370400,62916649200,62932377600,7200,0,'EET',],[62932370400,62948178000,62932381200,62948188800,10800,1,'EEST',],[62948178000,62963992800,62948185200,62964000000,7200,0,'EET',],[62963992800,62979800400,62964003600,62979811200,10800,1,'EEST',],[62979800400,62995442400,62979807600,62995449600,7200,0,'EET',],[62995442400,63011336400,62995453200,63011347200,10800,1,'EEST',],[63011336400,63026892000,63011343600,63026899200,7200,0,'EET',],[63026892000,63042872400,63026902800,63042883200,10800,1,'EEST',],[63042872400,63058600800,63042879600,63058608000,7200,0,'EET',],[63058600800,63074408400,63058611600,63074419200,10800,1,'EEST',],[63074408400,63090223200,63074415600,63090230400,7200,0,'EET',],[63090223200,63106030800,63090234000,63106041600,10800,1,'EEST',],[63106030800,63121759200,63106038000,63121766400,7200,0,'EET',],[63121759200,63137566800,63121770000,63137577600,10800,1,'EEST',],[63137566800,63153295200,63137574000,63153302400,7200,0,'EET',],[63153295200,63169102800,63153306000,63169113600,10800,1,'EEST',],[63169102800,63184831200,63169110000,63184838400,7200,0,'EET',],[63184831200,63200638800,63184842000,63200649600,10800,1,'EEST',],[63200638800,63216453600,63200646000,63216460800,7200,0,'EET',],[63216453600,63232261200,63216464400,63232272000,10800,1,'EEST',],[63232261200,63247989600,63232268400,63247996800,7200,0,'EET',],[63247989600,63263797200,63248000400,63263808000,10800,1,'EEST',],[63263797200,63279525600,63263804400,63279532800,7200,0,'EET',],[63279525600,63294555600,63279536400,63294566400,10800,1,'EEST',],[63294555600,63310888800,63294562800,63310896000,7200,0,'EET',],[63310888800,63329634000,63310899600,63329644800,10800,1,'EEST',],[63329634000,63342943200,63329641200,63342950400,7200,0,'EET',],[63342943200,63361170000,63342954000,63361180800,10800,1,'EEST',],[63361170000,63373788000,63361177200,63373795200,7200,0,'EET',],[63373788000,63392533200,63373798800,63392544000,10800,1,'EEST',],[63392533200,63405842400,63392540400,63405849600,7200,0,'EET',],[63405842400,63423982800,63405853200,63423993600,10800,1,'EEST',],[63423982800,63437292000,63423990000,63437299200,7200,0,'EET',],[63437292000,63455432400,63437302800,63455443200,10800,1,'EEST',],[63455432400,63468741600,63455439600,63468748800,7200,0,'EET',],[63468741600,63486882000,63468752400,63486892800,10800,1,'EEST',],[63486882000,63500191200,63486889200,63500198400,7200,0,'EET',],[63500191200,63518331600,63500202000,63518342400,10800,1,'EEST',],[63518331600,63531640800,63518338800,63531648000,7200,0,'EET',],[63531640800,63550386000,63531651600,63550396800,10800,1,'EEST',],[63550386000,63563090400,63550393200,63563097600,7200,0,'EET',],[63563090400,63581835600,63563101200,63581846400,10800,1,'EEST',],[63581835600,63594540000,63581842800,63594547200,7200,0,'EET',],[63594540000,63613285200,63594550800,63613296000,10800,1,'EEST',],[63613285200,63626594400,63613292400,63626601600,7200,0,'EET',],[63626594400,63644734800,63626605200,63644745600,10800,1,'EEST',],[63644734800,63658044000,63644742000,63658051200,7200,0,'EET',],[63658044000,63676184400,63658054800,63676195200,10800,1,'EEST',],[63676184400,63689493600,63676191600,63689500800,7200,0,'EET',],[63689493600,63707634000,63689504400,63707644800,10800,1,'EEST',],[63707634000,63720943200,63707641200,63720950400,7200,0,'EET',],[63720943200,63739688400,63720954000,63739699200,10800,1,'EEST',],[63739688400,63752392800,63739695600,63752400000,7200,0,'EET',],[63752392800,63771138000,63752403600,63771148800,10800,1,'EEST',],[63771138000,63783842400,63771145200,63783849600,7200,0,'EET',],[63783842400,63802587600,63783853200,63802598400,10800,1,'EEST',],[63802587600,63815896800,63802594800,63815904000,7200,0,'EET',],[63815896800,63834037200,63815907600,63834048000,10800,1,'EEST',],[63834037200,63847346400,63834044400,63847353600,7200,0,'EET',],[63847346400,63865486800,63847357200,63865497600,10800,1,'EEST',],[63865486800,63878796000,63865494000,63878803200,7200,0,'EET',],[63878796000,63897541200,63878806800,63897552000,10800,1,'EEST',],[63897541200,63910245600,63897548400,63910252800,7200,0,'EET',],[63910245600,63928990800,63910256400,63929001600,10800,1,'EEST',],[63928990800,63941695200,63928998000,63941702400,7200,0,'EET',],[63941695200,63960440400,63941706000,63960451200,10800,1,'EEST',],];sub olson_version {'2016a'}sub has_dst_changes {65}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {7200}my$last_observance=bless({'format'=>'EE%sT','gmtoff'=>'2:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>700899,'local_rd_secs'=>84888,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>700899,'utc_rd_secs'=>84888,'utc_year'=>1920 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>7200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>700899,'local_rd_secs'=>77688,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>700899,'utc_rd_secs'=>77688,'utc_year'=>1920 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'0:00','from'=>'2012','in'=>'Mar','letter'=>'S','name'=>'Syria','offset_from_std'=>3600,'on'=>'lastFri','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'0:00','from'=>'2009','in'=>'Oct','letter'=>'','name'=>'Syria','offset_from_std'=>0,'on'=>'lastFri','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_ASIA_DAMASCUS

$fatpacked{"DateTime/TimeZone/Asia/Dhaka.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_DHAKA';
  package DateTime::TimeZone::Asia::Dhaka;$DateTime::TimeZone::Asia::Dhaka::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Dhaka::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59611139900,DateTime::TimeZone::NEG_INFINITY,59611161600,21700,0,'LMT',],[59611139900,61244100400,59611161100,61244121600,21200,0,'HMT',],[61244100400,61263624600,61244123800,61263648000,23400,0,'BURT',],[61263624600,61273045800,61263644400,61273065600,19800,0,'IST',],[61273045800,61559544600,61273069200,61559568000,23400,0,'BURT',],[61559544600,62174455200,61559566200,62174476800,21600,0,'DACT',],[62174455200,63366429600,62174476800,63366451200,21600,0,'BDT',],[63366429600,63381114000,63366451200,63381135600,21600,0,'BDT',],[63381114000,63397962000,63381139200,63397987200,25200,1,'BDST',],[63397962000,DateTime::TimeZone::INFINITY,63397983600,DateTime::TimeZone::INFINITY,21600,0,'BDT',],];sub olson_version {'2016a'}sub has_dst_changes {1}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_DHAKA

$fatpacked{"DateTime/TimeZone/Asia/Dili.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_DILI';
  package DateTime::TimeZone::Asia::Dili;$DateTime::TimeZone::Asia::Dili::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Dili::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60305269060,DateTime::TimeZone::NEG_INFINITY,60305299200,30140,0,'LMT',],[60305269060,61256530800,60305297860,61256559600,28800,0,'TLT',],[61256530800,61369628400,61256563200,61369660800,32400,0,'JST',],[61369628400,62335580400,61369660800,62335612800,32400,0,'TLT',],[62335580400,63104803200,62335609200,63104832000,28800,0,'WITA',],[63104803200,DateTime::TimeZone::INFINITY,63104835600,DateTime::TimeZone::INFINITY,32400,0,'TLT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_DILI

$fatpacked{"DateTime/TimeZone/Asia/Dubai.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_DUBAI';
  package DateTime::TimeZone::Asia::Dubai;$DateTime::TimeZone::Asia::Dubai::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Dubai::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60557746728,DateTime::TimeZone::NEG_INFINITY,60557760000,13272,0,'LMT',],[60557746728,DateTime::TimeZone::INFINITY,60557761128,DateTime::TimeZone::INFINITY,14400,0,'GST',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_DUBAI

$fatpacked{"DateTime/TimeZone/Asia/Dushanbe.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_DUSHANBE';
  package DateTime::TimeZone::Asia::Dushanbe;$DateTime::TimeZone::Asia::Dushanbe::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Dushanbe::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60694514688,DateTime::TimeZone::NEG_INFINITY,60694531200,16512,0,'LMT',],[60694514688,60888135600,60694532688,60888153600,18000,0,'DUST',],[60888135600,62490592800,60888157200,62490614400,21600,0,'DUST',],[62490592800,62506400400,62490618000,62506425600,25200,1,'DUSST',],[62506400400,62522128800,62506422000,62522150400,21600,0,'DUST',],[62522128800,62537936400,62522154000,62537961600,25200,1,'DUSST',],[62537936400,62553664800,62537958000,62553686400,21600,0,'DUST',],[62553664800,62569472400,62553690000,62569497600,25200,1,'DUSST',],[62569472400,62585287200,62569494000,62585308800,21600,0,'DUST',],[62585287200,62601019200,62585312400,62601044400,25200,1,'DUSST',],[62601019200,62616744000,62601040800,62616765600,21600,0,'DUST',],[62616744000,62632468800,62616769200,62632494000,25200,1,'DUSST',],[62632468800,62648193600,62632490400,62648215200,21600,0,'DUST',],[62648193600,62663918400,62648218800,62663943600,25200,1,'DUSST',],[62663918400,62679643200,62663940000,62679664800,21600,0,'DUST',],[62679643200,62695368000,62679668400,62695393200,25200,1,'DUSST',],[62695368000,62711092800,62695389600,62711114400,21600,0,'DUST',],[62711092800,62726817600,62711118000,62726842800,25200,1,'DUSST',],[62726817600,62742542400,62726839200,62742564000,21600,0,'DUST',],[62742542400,62758267200,62742567600,62758292400,25200,1,'DUSST',],[62758267200,62773992000,62758288800,62774013600,21600,0,'DUST',],[62773992000,62790321600,62774017200,62790346800,25200,1,'DUSST',],[62790321600,62806046400,62790343200,62806068000,21600,0,'DUST',],[62806046400,62820046800,62806068000,62820068400,21600,1,'DUSST',],[62820046800,DateTime::TimeZone::INFINITY,62820064800,DateTime::TimeZone::INFINITY,18000,0,'TJT',],];sub olson_version {'2016a'}sub has_dst_changes {11}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_DUSHANBE

$fatpacked{"DateTime/TimeZone/Asia/Gaza.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_GAZA';
  package DateTime::TimeZone::Asia::Gaza;$DateTime::TimeZone::Asia::Gaza::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Gaza::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59950273328,DateTime::TimeZone::NEG_INFINITY,59950281600,8272,0,'LMT',],[59950273328,61202037600,59950280528,61202044800,7200,0,'EET',],[61202037600,61278325200,61202048400,61278336000,10800,1,'EET',],[61278325200,61291382400,61278332400,61291389600,7200,0,'EET',],[61291382400,61309861200,61291393200,61309872000,10800,1,'EET',],[61309861200,61322997600,61309868400,61323004800,7200,0,'EET',],[61322997600,61341483600,61323008400,61341494400,10800,1,'EET',],[61341483600,61355829600,61341490800,61355836800,7200,0,'EET',],[61355829600,61373026800,61355840400,61373037600,10800,1,'EET',],[61373026800,61387372800,61373034000,61387380000,7200,0,'EET',],[61387372800,61404555600,61387383600,61404566400,10800,1,'EET',],[61404555600,61453029600,61404562800,61453036800,7200,0,'EET',],[61453029600,61736594400,61453036800,61736601600,7200,0,'EET',],[61736594400,61749032400,61736605200,61749043200,10800,1,'EEST',],[61749032400,61767352800,61749039600,61767360000,7200,0,'EET',],[61767352800,61780568400,61767363600,61780579200,10800,1,'EEST',],[61780568400,61798892400,61780575600,61798899600,7200,0,'EET',],[61798892400,61812028800,61798903200,61812039600,10800,1,'EEST',],[61812028800,61830514800,61812036000,61830522000,7200,0,'EET',],[61830514800,61843651200,61830525600,61843662000,10800,1,'EEST',],[61843651200,61862050800,61843658400,61862058000,7200,0,'EET',],[61862050800,61875187200,61862061600,61875198000,10800,1,'EEST',],[61875187200,61893586800,61875194400,61893594000,7200,0,'EET',],[61893586800,61906723200,61893597600,61906734000,10800,1,'EEST',],[61906723200,61925122800,61906730400,61925130000,7200,0,'EET',],[61925122800,61938259200,61925133600,61938270000,10800,1,'EEST',],[61938259200,61956745200,61938266400,61956752400,7200,0,'EET',],[61956745200,61969881600,61956756000,61969892400,10800,1,'EEST',],[61969881600,61988281200,61969888800,61988288400,7200,0,'EET',],[61988281200,62001417600,61988292000,62001428400,10800,1,'EEST',],[62001417600,62019817200,62001424800,62019824400,7200,0,'EET',],[62019817200,62033040000,62019828000,62033050800,10800,1,'EEST',],[62033040000,62051353200,62033047200,62051360400,7200,0,'EET',],[62051353200,62054370000,62051364000,62054380800,10800,1,'EEST',],[62054370000,62278063200,62054377200,62278070400,7200,0,'IST',],[62278063200,62286526800,62278074000,62286537600,10800,1,'IDT',],[62286526800,62302860000,62286534000,62302867200,7200,0,'IST',],[62302860000,62314347600,62302870800,62314358400,10800,1,'IDT',],[62314347600,62617960800,62314354800,62617968000,7200,0,'IST',],[62617960800,62631262800,62617971600,62631273600,10800,1,'IDT',],[62631262800,62652434400,62631270000,62652441600,7200,0,'IST',],[62652434400,62662107600,62652445200,62662118400,10800,1,'IDT',],[62662107600,62681119200,62662114800,62681126400,7200,0,'IST',],[62681119200,62694162000,62681130000,62694172800,10800,1,'IDT',],[62694162000,62712309600,62694169200,62712316800,7200,0,'IST',],[62712309600,62725006800,62712320400,62725017600,10800,1,'IDT',],[62725006800,62745573600,62725014000,62745580800,7200,0,'IST',],[62745573600,62756456400,62745584400,62756467200,10800,1,'IDT',],[62756456400,62773999200,62756463600,62774006400,7200,0,'IST',],[62773999200,62787301200,62774010000,62787312000,10800,1,'IDT',],[62787301200,62805448800,62787308400,62805456000,7200,0,'IST',],[62805448800,62819355600,62805459600,62819366400,10800,1,'IDT',],[62819355600,62837503200,62819362800,62837510400,7200,0,'IST',],[62837503200,62851410000,62837514000,62851420800,10800,1,'IDT',],[62851410000,62869384800,62851417200,62869392000,7200,0,'IST',],[62869384800,62882859600,62869395600,62882870400,10800,1,'IDT',],[62882859600,62900834400,62882866800,62900841600,7200,0,'IST',],[62900834400,62913704400,62900845200,62913715200,10800,1,'IDT',],[62913704400,62932284000,62913711600,62932291200,7200,0,'IST',],[62932284000,62945758800,62932294800,62945769600,10800,1,'IDT',],[62945758800,62956130400,62945766000,62956137600,7200,0,'IST',],[62956130400,62964338400,62956137600,62964345600,7200,0,'EET',],[62964338400,62978853600,62964349200,62978864400,10800,1,'EEST',],[62978853600,62995788000,62978860800,62995795200,7200,0,'EET',],[62995788000,63010303200,62995798800,63010314000,10800,1,'EEST',],[63010303200,63027237600,63010310400,63027244800,7200,0,'EET',],[63027237600,63041752800,63027248400,63041763600,10800,1,'EEST',],[63041752800,63050824800,63041760000,63050832000,7200,0,'EET',],[63050824800,63059896800,63050832000,63059904000,7200,0,'EET',],[63059896800,63075618000,63059907600,63075628800,10800,1,'EEST',],[63075618000,63091951200,63075625200,63091958400,7200,0,'EET',],[63091951200,63107672400,63091962000,63107683200,10800,1,'EEST',],[63107672400,63123400800,63107679600,63123408000,7200,0,'EET',],[63123400800,63139122000,63123411600,63139132800,10800,1,'EEST',],[63139122000,63154850400,63139129200,63154857600,7200,0,'EET',],[63154850400,63170571600,63154861200,63170582400,10800,1,'EEST',],[63170571600,63186300000,63170578800,63186307200,7200,0,'EET',],[63186300000,63202021200,63186310800,63202032000,10800,1,'EEST',],[63202021200,63217749600,63202028400,63217756800,7200,0,'EET',],[63217749600,63232264800,63217760400,63232275600,10800,1,'EEST',],[63232264800,63249199200,63232272000,63249206400,7200,0,'EET',],[63249199200,63264063600,63249210000,63264074400,10800,1,'EEST',],[63264063600,63279525600,63264070800,63279532800,7200,0,'EET',],[63279525600,63294555600,63279536400,63294566400,10800,1,'EEST',],[63294555600,63311061600,63294562800,63311068800,7200,0,'EET',],[63311061600,63325321200,63311072400,63325332000,10800,1,'EEST',],[63325321200,63342338400,63325328400,63342345600,7200,0,'EET',],[63342338400,63355640400,63342349200,63355651200,10800,1,'EEST',],[63355640400,63355903200,63355647600,63355910400,7200,0,'EET',],[63355903200,63373788000,63355910400,63373795200,7200,0,'EET',],[63373788000,63387698400,63373798800,63387709200,10800,1,'EEST',],[63387698400,63397980000,63387705600,63397987200,7200,0,'EET',],[63397980000,63405324060,63397987200,63405331260,7200,0,'EET',],[63405324060,63417157200,63405334860,63417168000,10800,1,'EEST',],[63417157200,63437292060,63417164400,63437299260,7200,0,'EET',],[63437292060,63447829200,63437302860,63447840000,10800,1,'EEST',],[63447829200,63461052000,63447836400,63461059200,7200,0,'EET',],[63461052000,63468741600,63461059200,63468748800,7200,0,'EET',],[63468741600,63483861600,63468752400,63483872400,10800,1,'EEST',],[63483861600,63500191200,63483868800,63500198400,7200,0,'EET',],[63500191200,63515912400,63500202000,63515923200,10800,1,'EEST',],[63515912400,63531640800,63515919600,63531648000,7200,0,'EET',],[63531640800,63549781200,63531651600,63549792000,10800,1,'EEST',],[63549781200,63563176800,63549788400,63563184000,7200,0,'EET',],[63563176800,63581230800,63563187600,63581241600,10800,1,'EEST',],[63581230800,63594626400,63581238000,63594633600,7200,0,'EET',],[63594626400,63612680400,63594637200,63612691200,10800,1,'EEST',],[63612680400,63626680800,63612687600,63626688000,7200,0,'EET',],[63626680800,63644734800,63626691600,63644745600,10800,1,'EEST',],[63644734800,63658130400,63644742000,63658137600,7200,0,'EET',],[63658130400,63676184400,63658141200,63676195200,10800,1,'EEST',],[63676184400,63689580000,63676191600,63689587200,7200,0,'EET',],[63689580000,63707634000,63689590800,63707644800,10800,1,'EEST',],[63707634000,63721029600,63707641200,63721036800,7200,0,'EET',],[63721029600,63739083600,63721040400,63739094400,10800,1,'EEST',],[63739083600,63752479200,63739090800,63752486400,7200,0,'EET',],[63752479200,63770533200,63752490000,63770544000,10800,1,'EEST',],[63770533200,63783928800,63770540400,63783936000,7200,0,'EET',],[63783928800,63801982800,63783939600,63801993600,10800,1,'EEST',],[63801982800,63815983200,63801990000,63815990400,7200,0,'EET',],[63815983200,63834037200,63815994000,63834048000,10800,1,'EEST',],[63834037200,63847432800,63834044400,63847440000,7200,0,'EET',],[63847432800,63865486800,63847443600,63865497600,10800,1,'EEST',],[63865486800,63878882400,63865494000,63878889600,7200,0,'EET',],[63878882400,63896936400,63878893200,63896947200,10800,1,'EEST',],[63896936400,63910332000,63896943600,63910339200,7200,0,'EET',],[63910332000,63928386000,63910342800,63928396800,10800,1,'EEST',],[63928386000,63941781600,63928393200,63941788800,7200,0,'EET',],[63941781600,63959835600,63941792400,63959846400,10800,1,'EEST',],];sub olson_version {'2016a'}sub has_dst_changes {61}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {7200}my$last_observance=bless({'format'=>'EE%sT','gmtoff'=>'2:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>734503,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>734503,'utc_rd_secs'=>0,'utc_year'=>2013 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>7200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>734502,'local_rd_secs'=>79200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>734502,'utc_rd_secs'=>79200,'utc_year'=>2012 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'0:00','from'=>'2014','in'=>'Oct','letter'=>'','name'=>'Palestine','offset_from_std'=>0,'on'=>'Fri>=21','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'24:00','from'=>'2015','in'=>'Mar','letter'=>'S','name'=>'Palestine','offset_from_std'=>3600,'on'=>'lastFri','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_ASIA_GAZA

$fatpacked{"DateTime/TimeZone/Asia/Hebron.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_HEBRON';
  package DateTime::TimeZone::Asia::Hebron;$DateTime::TimeZone::Asia::Hebron::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Hebron::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59950273177,DateTime::TimeZone::NEG_INFINITY,59950281600,8423,0,'LMT',],[59950273177,61202037600,59950280377,61202044800,7200,0,'EET',],[61202037600,61278325200,61202048400,61278336000,10800,1,'EET',],[61278325200,61291382400,61278332400,61291389600,7200,0,'EET',],[61291382400,61309861200,61291393200,61309872000,10800,1,'EET',],[61309861200,61322997600,61309868400,61323004800,7200,0,'EET',],[61322997600,61341483600,61323008400,61341494400,10800,1,'EET',],[61341483600,61355829600,61341490800,61355836800,7200,0,'EET',],[61355829600,61373026800,61355840400,61373037600,10800,1,'EET',],[61373026800,61387372800,61373034000,61387380000,7200,0,'EET',],[61387372800,61404555600,61387383600,61404566400,10800,1,'EET',],[61404555600,61453029600,61404562800,61453036800,7200,0,'EET',],[61453029600,61736594400,61453036800,61736601600,7200,0,'EET',],[61736594400,61749032400,61736605200,61749043200,10800,1,'EEST',],[61749032400,61767352800,61749039600,61767360000,7200,0,'EET',],[61767352800,61780568400,61767363600,61780579200,10800,1,'EEST',],[61780568400,61798892400,61780575600,61798899600,7200,0,'EET',],[61798892400,61812028800,61798903200,61812039600,10800,1,'EEST',],[61812028800,61830514800,61812036000,61830522000,7200,0,'EET',],[61830514800,61843651200,61830525600,61843662000,10800,1,'EEST',],[61843651200,61862050800,61843658400,61862058000,7200,0,'EET',],[61862050800,61875187200,61862061600,61875198000,10800,1,'EEST',],[61875187200,61893586800,61875194400,61893594000,7200,0,'EET',],[61893586800,61906723200,61893597600,61906734000,10800,1,'EEST',],[61906723200,61925122800,61906730400,61925130000,7200,0,'EET',],[61925122800,61938259200,61925133600,61938270000,10800,1,'EEST',],[61938259200,61956745200,61938266400,61956752400,7200,0,'EET',],[61956745200,61969881600,61956756000,61969892400,10800,1,'EEST',],[61969881600,61988281200,61969888800,61988288400,7200,0,'EET',],[61988281200,62001417600,61988292000,62001428400,10800,1,'EEST',],[62001417600,62019817200,62001424800,62019824400,7200,0,'EET',],[62019817200,62033040000,62019828000,62033050800,10800,1,'EEST',],[62033040000,62051353200,62033047200,62051360400,7200,0,'EET',],[62051353200,62054370000,62051364000,62054380800,10800,1,'EEST',],[62054370000,62278063200,62054377200,62278070400,7200,0,'IST',],[62278063200,62286526800,62278074000,62286537600,10800,1,'IDT',],[62286526800,62302860000,62286534000,62302867200,7200,0,'IST',],[62302860000,62314347600,62302870800,62314358400,10800,1,'IDT',],[62314347600,62617960800,62314354800,62617968000,7200,0,'IST',],[62617960800,62631262800,62617971600,62631273600,10800,1,'IDT',],[62631262800,62652434400,62631270000,62652441600,7200,0,'IST',],[62652434400,62662107600,62652445200,62662118400,10800,1,'IDT',],[62662107600,62681119200,62662114800,62681126400,7200,0,'IST',],[62681119200,62694162000,62681130000,62694172800,10800,1,'IDT',],[62694162000,62712309600,62694169200,62712316800,7200,0,'IST',],[62712309600,62725006800,62712320400,62725017600,10800,1,'IDT',],[62725006800,62745573600,62725014000,62745580800,7200,0,'IST',],[62745573600,62756456400,62745584400,62756467200,10800,1,'IDT',],[62756456400,62773999200,62756463600,62774006400,7200,0,'IST',],[62773999200,62787301200,62774010000,62787312000,10800,1,'IDT',],[62787301200,62805448800,62787308400,62805456000,7200,0,'IST',],[62805448800,62819355600,62805459600,62819366400,10800,1,'IDT',],[62819355600,62837503200,62819362800,62837510400,7200,0,'IST',],[62837503200,62851410000,62837514000,62851420800,10800,1,'IDT',],[62851410000,62869384800,62851417200,62869392000,7200,0,'IST',],[62869384800,62882859600,62869395600,62882870400,10800,1,'IDT',],[62882859600,62900834400,62882866800,62900841600,7200,0,'IST',],[62900834400,62913704400,62900845200,62913715200,10800,1,'IDT',],[62913704400,62932284000,62913711600,62932291200,7200,0,'IST',],[62932284000,62945758800,62932294800,62945769600,10800,1,'IDT',],[62945758800,62956130400,62945766000,62956137600,7200,0,'IST',],[62956130400,62964338400,62956137600,62964345600,7200,0,'EET',],[62964338400,62978853600,62964349200,62978864400,10800,1,'EEST',],[62978853600,62995788000,62978860800,62995795200,7200,0,'EET',],[62995788000,63010303200,62995798800,63010314000,10800,1,'EEST',],[63010303200,63027237600,63010310400,63027244800,7200,0,'EET',],[63027237600,63041752800,63027248400,63041763600,10800,1,'EEST',],[63041752800,63050824800,63041760000,63050832000,7200,0,'EET',],[63050824800,63059896800,63050832000,63059904000,7200,0,'EET',],[63059896800,63075618000,63059907600,63075628800,10800,1,'EEST',],[63075618000,63091951200,63075625200,63091958400,7200,0,'EET',],[63091951200,63107672400,63091962000,63107683200,10800,1,'EEST',],[63107672400,63123400800,63107679600,63123408000,7200,0,'EET',],[63123400800,63139122000,63123411600,63139132800,10800,1,'EEST',],[63139122000,63154850400,63139129200,63154857600,7200,0,'EET',],[63154850400,63170571600,63154861200,63170582400,10800,1,'EEST',],[63170571600,63186300000,63170578800,63186307200,7200,0,'EET',],[63186300000,63202021200,63186310800,63202032000,10800,1,'EEST',],[63202021200,63217749600,63202028400,63217756800,7200,0,'EET',],[63217749600,63232264800,63217760400,63232275600,10800,1,'EEST',],[63232264800,63249199200,63232272000,63249206400,7200,0,'EET',],[63249199200,63264063600,63249210000,63264074400,10800,1,'EEST',],[63264063600,63279525600,63264070800,63279532800,7200,0,'EET',],[63279525600,63294555600,63279536400,63294566400,10800,1,'EEST',],[63294555600,63311061600,63294562800,63311068800,7200,0,'EET',],[63311061600,63325321200,63311072400,63325332000,10800,1,'EEST',],[63325321200,63342338400,63325328400,63342345600,7200,0,'EET',],[63342338400,63355899600,63342349200,63355910400,10800,1,'EEST',],[63355899600,63373788000,63355906800,63373795200,7200,0,'EET',],[63373788000,63387698400,63373798800,63387709200,10800,1,'EEST',],[63387698400,63405237600,63387705600,63405244800,7200,0,'EET',],[63405237600,63417157200,63405248400,63417168000,10800,1,'EEST',],[63417157200,63437292060,63417164400,63437299260,7200,0,'EET',],[63437292060,63447829200,63437302860,63447840000,10800,1,'EEST',],[63447829200,63450338400,63447836400,63450345600,7200,0,'EET',],[63450338400,63453013200,63450349200,63453024000,10800,1,'EEST',],[63453013200,63468741600,63453020400,63468748800,7200,0,'EET',],[63468741600,63483861600,63468752400,63483872400,10800,1,'EEST',],[63483861600,63500191200,63483868800,63500198400,7200,0,'EET',],[63500191200,63515912400,63500202000,63515923200,10800,1,'EEST',],[63515912400,63531640800,63515919600,63531648000,7200,0,'EET',],[63531640800,63549781200,63531651600,63549792000,10800,1,'EEST',],[63549781200,63563176800,63549788400,63563184000,7200,0,'EET',],[63563176800,63581230800,63563187600,63581241600,10800,1,'EEST',],[63581230800,63594626400,63581238000,63594633600,7200,0,'EET',],[63594626400,63612680400,63594637200,63612691200,10800,1,'EEST',],[63612680400,63626680800,63612687600,63626688000,7200,0,'EET',],[63626680800,63644734800,63626691600,63644745600,10800,1,'EEST',],[63644734800,63658130400,63644742000,63658137600,7200,0,'EET',],[63658130400,63676184400,63658141200,63676195200,10800,1,'EEST',],[63676184400,63689580000,63676191600,63689587200,7200,0,'EET',],[63689580000,63707634000,63689590800,63707644800,10800,1,'EEST',],[63707634000,63721029600,63707641200,63721036800,7200,0,'EET',],[63721029600,63739083600,63721040400,63739094400,10800,1,'EEST',],[63739083600,63752479200,63739090800,63752486400,7200,0,'EET',],[63752479200,63770533200,63752490000,63770544000,10800,1,'EEST',],[63770533200,63783928800,63770540400,63783936000,7200,0,'EET',],[63783928800,63801982800,63783939600,63801993600,10800,1,'EEST',],[63801982800,63815983200,63801990000,63815990400,7200,0,'EET',],[63815983200,63834037200,63815994000,63834048000,10800,1,'EEST',],[63834037200,63847432800,63834044400,63847440000,7200,0,'EET',],[63847432800,63865486800,63847443600,63865497600,10800,1,'EEST',],[63865486800,63878882400,63865494000,63878889600,7200,0,'EET',],[63878882400,63896936400,63878893200,63896947200,10800,1,'EEST',],[63896936400,63910332000,63896943600,63910339200,7200,0,'EET',],[63910332000,63928386000,63910342800,63928396800,10800,1,'EEST',],[63928386000,63941781600,63928393200,63941788800,7200,0,'EET',],[63941781600,63959835600,63941792400,63959846400,10800,1,'EEST',],];sub olson_version {'2016a'}sub has_dst_changes {62}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {7200}my$last_observance=bless({'format'=>'EE%sT','gmtoff'=>'2:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>729755,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>729755,'utc_rd_secs'=>0,'utc_year'=>2000 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>7200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>729754,'local_rd_secs'=>79200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>729754,'utc_rd_secs'=>79200,'utc_year'=>1999 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'24:00','from'=>'2015','in'=>'Mar','letter'=>'S','name'=>'Palestine','offset_from_std'=>3600,'on'=>'lastFri','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'0:00','from'=>'2014','in'=>'Oct','letter'=>'','name'=>'Palestine','offset_from_std'=>0,'on'=>'Fri>=21','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_ASIA_HEBRON

$fatpacked{"DateTime/TimeZone/Asia/Ho_Chi_Minh.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_HO_CHI_MINH';
  package DateTime::TimeZone::Asia::Ho_Chi_Minh;$DateTime::TimeZone::Asia::Ho_Chi_Minh::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Ho_Chi_Minh::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60131609600,DateTime::TimeZone::NEG_INFINITY,60131635200,25600,0,'LMT',],[60131609600,60284105610,60131635190,60284131200,25590,0,'PLMT',],[60284105610,61283577600,60284130810,61283602800,25200,0,'ICT',],[61283577600,61353039600,61283606400,61353068400,28800,0,'IDT',],[61353039600,61367814000,61353072000,61367846400,32400,0,'JST',],[61367814000,61417587600,61367839200,61417612800,25200,0,'ICT',],[61417587600,61677907200,61417616400,61677936000,28800,0,'IDT',],[61677907200,61820035200,61677932400,61820060400,25200,0,'ICT',],[61820035200,62307504000,61820064000,62307532800,28800,0,'IDT',],[62307504000,DateTime::TimeZone::INFINITY,62307529200,DateTime::TimeZone::INFINITY,25200,0,'ICT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_HO_CHI_MINH

$fatpacked{"DateTime/TimeZone/Asia/Hong_Kong.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_HONG_KONG';
  package DateTime::TimeZone::Asia::Hong_Kong;$DateTime::TimeZone::Asia::Hong_Kong::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Hong_Kong::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60078990198,DateTime::TimeZone::NEG_INFINITY,60079017600,27402,0,'LMT',],[60078990198,61228294200,60079018998,61228323000,28800,0,'HKT',],[61228294200,61244015400,61228326600,61244047800,32400,1,'HKST',],[61244015400,61251436800,61244044200,61251465600,28800,0,'HKT',],[61251436800,61368937200,61251469200,61368969600,32400,0,'JST',],[61368937200,61387702200,61368966000,61387731000,28800,0,'HKT',],[61387702200,61407138600,61387734600,61407171000,32400,1,'HKST',],[61407138600,61418633400,61407167400,61418662200,28800,0,'HKT',],[61418633400,61441180200,61418665800,61441212600,32400,1,'HKST',],[61441180200,61451897400,61441209000,61451926200,28800,0,'HKT',],[61451897400,61467618600,61451929800,61467651000,32400,1,'HKST',],[61467618600,61480927800,61467647400,61480956600,28800,0,'HKT',],[61480927800,61499068200,61480960200,61499100600,32400,1,'HKST',],[61499068200,61512377400,61499097000,61512406200,28800,0,'HKT',],[61512377400,61530517800,61512409800,61530550200,32400,1,'HKST',],[61530517800,61543827000,61530546600,61543855800,28800,0,'HKT',],[61543827000,61561967400,61543859400,61561999800,32400,1,'HKST',],[61561967400,61575881400,61561996200,61575910200,28800,0,'HKT',],[61575881400,61593330600,61575913800,61593363000,32400,1,'HKST',],[61593330600,61607331000,61593359400,61607359800,28800,0,'HKT',],[61607331000,61625471400,61607363400,61625503800,32400,1,'HKST',],[61625471400,61637571000,61625500200,61637599800,28800,0,'HKT',],[61637571000,61656921000,61637603400,61656953400,32400,1,'HKST',],[61656921000,61669020600,61656949800,61669049400,28800,0,'HKT',],[61669020600,61688975400,61669053000,61689007800,32400,1,'HKST',],[61688975400,61700470200,61689004200,61700499000,28800,0,'HKT',],[61700470200,61720425000,61700502600,61720457400,32400,1,'HKST',],[61720425000,61732524600,61720453800,61732553400,28800,0,'HKT',],[61732524600,61751874600,61732557000,61751907000,32400,1,'HKST',],[61751874600,61763974200,61751903400,61764003000,28800,0,'HKT',],[61763974200,61783324200,61764006600,61783356600,32400,1,'HKST',],[61783324200,61795423800,61783353000,61795452600,28800,0,'HKT',],[61795423800,61814773800,61795456200,61814806200,32400,1,'HKST',],[61814773800,61826873400,61814802600,61826902200,28800,0,'HKT',],[61826873400,61846828200,61826905800,61846860600,32400,1,'HKST',],[61846828200,61858323000,61846857000,61858351800,28800,0,'HKT',],[61858323000,61878277800,61858355400,61878310200,32400,1,'HKST',],[61878277800,61889772600,61878306600,61889801400,28800,0,'HKT',],[61889772600,61909727400,61889805000,61909759800,32400,1,'HKST',],[61909727400,61921827000,61909756200,61921855800,28800,0,'HKT',],[61921827000,61941177000,61921859400,61941209400,32400,1,'HKST',],[61941177000,61953276600,61941205800,61953305400,28800,0,'HKT',],[61953276600,61972626600,61953309000,61972659000,32400,1,'HKST',],[61972626600,61987145400,61972655400,61987174200,28800,0,'HKT',],[61987145400,62002866600,61987177800,62002899000,32400,1,'HKST',],[62002866600,62018595000,62002895400,62018623800,28800,0,'HKT',],[62018595000,62034316200,62018627400,62034348600,32400,1,'HKST',],[62034316200,62050044600,62034345000,62050073400,28800,0,'HKT',],[62050044600,62066370600,62050077000,62066403000,32400,1,'HKST',],[62066370600,62082099000,62066399400,62082127800,28800,0,'HKT',],[62082099000,62097820200,62082131400,62097852600,32400,1,'HKST',],[62097820200,62113548600,62097849000,62113577400,28800,0,'HKT',],[62113548600,62129269800,62113581000,62129302200,32400,1,'HKST',],[62129269800,62144998200,62129298600,62145027000,28800,0,'HKT',],[62144998200,62160719400,62145030600,62160751800,32400,1,'HKST',],[62160719400,62176447800,62160748200,62176476600,28800,0,'HKT',],[62176447800,62192169000,62176480200,62192201400,32400,1,'HKST',],[62192169000,62207897400,62192197800,62207926200,28800,0,'HKT',],[62207897400,62224223400,62207929800,62224255800,32400,1,'HKST',],[62224223400,62239951800,62224252200,62239980600,28800,0,'HKT',],[62239951800,62255673000,62239984200,62255705400,32400,1,'HKST',],[62255673000,62261724600,62255701800,62261753400,28800,0,'HKT',],[62261724600,62271397800,62261757000,62271430200,32400,1,'HKST',],[62271397800,62287122600,62271430200,62287155000,32400,1,'HKST',],[62287122600,62302851000,62287151400,62302879800,28800,0,'HKT',],[62302851000,62318572200,62302883400,62318604600,32400,1,'HKST',],[62318572200,62334300600,62318601000,62334329400,28800,0,'HKT',],[62334300600,62350021800,62334333000,62350054200,32400,1,'HKST',],[62350021800,62431068600,62350050600,62431097400,28800,0,'HKT',],[62431068600,62444975400,62431101000,62445007800,32400,1,'HKST',],[62444975400,DateTime::TimeZone::INFINITY,62445004200,DateTime::TimeZone::INFINITY,28800,0,'HKT',],];sub olson_version {'2016a'}sub has_dst_changes {34}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_HONG_KONG

$fatpacked{"DateTime/TimeZone/Asia/Hovd.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_HOVD';
  package DateTime::TimeZone::Asia::Hovd;$DateTime::TimeZone::Asia::Hovd::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Hovd::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60102755604,DateTime::TimeZone::NEG_INFINITY,60102777600,21996,0,'LMT',],[60102755604,62388122400,60102777204,62388144000,21600,0,'HOVT',],[62388122400,62553661200,62388147600,62553686400,25200,0,'HOVT',],[62553661200,62569468800,62553690000,62569497600,28800,1,'HOVST',],[62569468800,62585283600,62569494000,62585308800,25200,0,'HOVT',],[62585283600,62601004800,62585312400,62601033600,28800,1,'HOVST',],[62601004800,62616733200,62601030000,62616758400,25200,0,'HOVT',],[62616733200,62632454400,62616762000,62632483200,28800,1,'HOVST',],[62632454400,62648182800,62632479600,62648208000,25200,0,'HOVT',],[62648182800,62663904000,62648211600,62663932800,28800,1,'HOVST',],[62663904000,62679632400,62663929200,62679657600,25200,0,'HOVT',],[62679632400,62695353600,62679661200,62695382400,28800,1,'HOVST',],[62695353600,62711082000,62695378800,62711107200,25200,0,'HOVT',],[62711082000,62726803200,62711110800,62726832000,28800,1,'HOVST',],[62726803200,62742531600,62726828400,62742556800,25200,0,'HOVT',],[62742531600,62758252800,62742560400,62758281600,28800,1,'HOVST',],[62758252800,62773981200,62758278000,62774006400,25200,0,'HOVT',],[62773981200,62790307200,62774010000,62790336000,28800,1,'HOVST',],[62790307200,62806035600,62790332400,62806060800,25200,0,'HOVT',],[62806035600,62821756800,62806064400,62821785600,28800,1,'HOVST',],[62821756800,62837485200,62821782000,62837510400,25200,0,'HOVT',],[62837485200,62853206400,62837514000,62853235200,28800,1,'HOVST',],[62853206400,62868934800,62853231600,62868960000,25200,0,'HOVT',],[62868934800,62884656000,62868963600,62884684800,28800,1,'HOVST',],[62884656000,62900384400,62884681200,62900409600,25200,0,'HOVT',],[62900384400,62916105600,62900413200,62916134400,28800,1,'HOVST',],[62916105600,62931834000,62916130800,62931859200,25200,0,'HOVT',],[62931834000,62947555200,62931862800,62947584000,28800,1,'HOVST',],[62947555200,62963888400,62947580400,62963913600,25200,0,'HOVT',],[62963888400,62979609600,62963917200,62979638400,28800,1,'HOVST',],[62979609600,62995338000,62979634800,62995363200,25200,0,'HOVT',],[62995338000,63011059200,62995366800,63011088000,28800,1,'HOVST',],[63011059200,63026787600,63011084400,63026812800,25200,0,'HOVT',],[63026787600,63042508800,63026816400,63042537600,28800,1,'HOVST',],[63042508800,63124081200,63042534000,63124106400,25200,0,'HOVT',],[63124081200,63137383200,63124110000,63137412000,28800,1,'HOVST',],[63137383200,63153111600,63137408400,63153136800,25200,0,'HOVT',],[63153111600,63168832800,63153140400,63168861600,28800,1,'HOVST',],[63168832800,63184561200,63168858000,63184586400,25200,0,'HOVT',],[63184561200,63200282400,63184590000,63200311200,28800,1,'HOVST',],[63200282400,63216010800,63200307600,63216036000,25200,0,'HOVT',],[63216010800,63231732000,63216039600,63231760800,28800,1,'HOVST',],[63231732000,63247460400,63231757200,63247485600,25200,0,'HOVT',],[63247460400,63263181600,63247489200,63263210400,28800,1,'HOVST',],[63263181600,63278910000,63263206800,63278935200,25200,0,'HOVT',],[63278910000,63295236000,63278938800,63295264800,28800,1,'HOVST',],[63295236000,63563166000,63295261200,63563191200,25200,0,'HOVT',],[63563166000,63578880000,63563194800,63578908800,28800,1,'HOVST',],[63578880000,63594615600,63578905200,63594640800,25200,0,'HOVT',],[63594615600,63610329600,63594644400,63610358400,28800,1,'HOVST',],[63610329600,63626065200,63610354800,63626090400,25200,0,'HOVT',],[63626065200,63642384000,63626094000,63642412800,28800,1,'HOVST',],[63642384000,63658119600,63642409200,63658144800,25200,0,'HOVT',],[63658119600,63673833600,63658148400,63673862400,28800,1,'HOVST',],[63673833600,63689569200,63673858800,63689594400,25200,0,'HOVT',],[63689569200,63705283200,63689598000,63705312000,28800,1,'HOVST',],[63705283200,63721018800,63705308400,63721044000,25200,0,'HOVT',],[63721018800,63736732800,63721047600,63736761600,28800,1,'HOVST',],[63736732800,63752468400,63736758000,63752493600,25200,0,'HOVT',],[63752468400,63768182400,63752497200,63768211200,28800,1,'HOVST',],[63768182400,63783918000,63768207600,63783943200,25200,0,'HOVT',],[63783918000,63799632000,63783946800,63799660800,28800,1,'HOVST',],[63799632000,63815367600,63799657200,63815392800,25200,0,'HOVT',],[63815367600,63831686400,63815396400,63831715200,28800,1,'HOVST',],[63831686400,63847422000,63831711600,63847447200,25200,0,'HOVT',],[63847422000,63863136000,63847450800,63863164800,28800,1,'HOVST',],[63863136000,63878871600,63863161200,63878896800,25200,0,'HOVT',],[63878871600,63894585600,63878900400,63894614400,28800,1,'HOVST',],[63894585600,63910321200,63894610800,63910346400,25200,0,'HOVT',],[63910321200,63926035200,63910350000,63926064000,28800,1,'HOVST',],[63926035200,63941770800,63926060400,63941796000,25200,0,'HOVT',],[63941770800,63957484800,63941799600,63957513600,28800,1,'HOVST',],];sub olson_version {'2016a'}sub has_dst_changes {35}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {25200}my$last_observance=bless({'format'=>'HOV%sT','gmtoff'=>'7:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>722085,'local_rd_secs'=>3600,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>722085,'utc_rd_secs'=>3600,'utc_year'=>1979 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>25200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>722084,'local_rd_secs'=>64800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>722084,'utc_rd_secs'=>64800,'utc_year'=>1978 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2015','in'=>'Mar','letter'=>'S','name'=>'Mongol','offset_from_std'=>3600,'on'=>'lastSat','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'0:00','from'=>'2015','in'=>'Sep','letter'=>'','name'=>'Mongol','offset_from_std'=>0,'on'=>'lastSat','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_ASIA_HOVD

$fatpacked{"DateTime/TimeZone/Asia/Irkutsk.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_IRKUTSK';
  package DateTime::TimeZone::Asia::Irkutsk;$DateTime::TimeZone::Asia::Irkutsk::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Irkutsk::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59295517375,DateTime::TimeZone::NEG_INFINITY,59295542400,25025,0,'LMT',],[59295517375,60559808575,59295542400,60559833600,25025,0,'IMT',],[60559808575,60888128400,60559833775,60888153600,25200,0,'IRKT',],[60888128400,62490585600,60888157200,62490614400,28800,0,'IRKT',],[62490585600,62506393200,62490618000,62506425600,32400,1,'IRKST',],[62506393200,62522121600,62506422000,62522150400,28800,0,'IRKT',],[62522121600,62537929200,62522154000,62537961600,32400,1,'IRKST',],[62537929200,62553657600,62537958000,62553686400,28800,0,'IRKT',],[62553657600,62569465200,62553690000,62569497600,32400,1,'IRKST',],[62569465200,62585280000,62569494000,62585308800,28800,0,'IRKT',],[62585280000,62601012000,62585312400,62601044400,32400,1,'IRKST',],[62601012000,62616736800,62601040800,62616765600,28800,0,'IRKT',],[62616736800,62632461600,62616769200,62632494000,32400,1,'IRKST',],[62632461600,62648186400,62632490400,62648215200,28800,0,'IRKT',],[62648186400,62663911200,62648218800,62663943600,32400,1,'IRKST',],[62663911200,62679636000,62663940000,62679664800,28800,0,'IRKT',],[62679636000,62695360800,62679668400,62695393200,32400,1,'IRKST',],[62695360800,62711085600,62695389600,62711114400,28800,0,'IRKT',],[62711085600,62726810400,62711118000,62726842800,32400,1,'IRKST',],[62726810400,62742535200,62726839200,62742564000,28800,0,'IRKT',],[62742535200,62758260000,62742567600,62758292400,32400,1,'IRKST',],[62758260000,62773984800,62758288800,62774013600,28800,0,'IRKT',],[62773984800,62790314400,62774017200,62790346800,32400,1,'IRKST',],[62790314400,62806039200,62790343200,62806068000,28800,0,'IRKT',],[62806039200,62821767600,62806068000,62821796400,28800,1,'IRKST',],[62821767600,62831444400,62821792800,62831469600,25200,0,'IRKT',],[62831444400,62837478000,62831473200,62837506800,28800,0,'IRKT',],[62837478000,62853199200,62837510400,62853231600,32400,1,'IRKST',],[62853199200,62868938400,62853228000,62868967200,28800,0,'IRKT',],[62868938400,62884663200,62868970800,62884695600,32400,1,'IRKST',],[62884663200,62900388000,62884692000,62900416800,28800,0,'IRKT',],[62900388000,62916112800,62900420400,62916145200,32400,1,'IRKST',],[62916112800,62931837600,62916141600,62931866400,28800,0,'IRKT',],[62931837600,62947562400,62931870000,62947594800,32400,1,'IRKST',],[62947562400,62963892000,62947591200,62963920800,28800,0,'IRKT',],[62963892000,62982036000,62963924400,62982068400,32400,1,'IRKST',],[62982036000,62995341600,62982064800,62995370400,28800,0,'IRKT',],[62995341600,63013485600,62995374000,63013518000,32400,1,'IRKST',],[63013485600,63026791200,63013514400,63026820000,28800,0,'IRKT',],[63026791200,63044935200,63026823600,63044967600,32400,1,'IRKST',],[63044935200,63058240800,63044964000,63058269600,28800,0,'IRKT',],[63058240800,63076989600,63058273200,63077022000,32400,1,'IRKST',],[63076989600,63089690400,63077018400,63089719200,28800,0,'IRKT',],[63089690400,63108439200,63089722800,63108471600,32400,1,'IRKST',],[63108439200,63121140000,63108468000,63121168800,28800,0,'IRKT',],[63121140000,63139888800,63121172400,63139921200,32400,1,'IRKST',],[63139888800,63153194400,63139917600,63153223200,28800,0,'IRKT',],[63153194400,63171338400,63153226800,63171370800,32400,1,'IRKST',],[63171338400,63184644000,63171367200,63184672800,28800,0,'IRKT',],[63184644000,63202788000,63184676400,63202820400,32400,1,'IRKST',],[63202788000,63216093600,63202816800,63216122400,28800,0,'IRKT',],[63216093600,63234842400,63216126000,63234874800,32400,1,'IRKST',],[63234842400,63247543200,63234871200,63247572000,28800,0,'IRKT',],[63247543200,63266292000,63247575600,63266324400,32400,1,'IRKST',],[63266292000,63278992800,63266320800,63279021600,28800,0,'IRKT',],[63278992800,63297741600,63279025200,63297774000,32400,1,'IRKST',],[63297741600,63310442400,63297770400,63310471200,28800,0,'IRKT',],[63310442400,63329191200,63310474800,63329223600,32400,1,'IRKST',],[63329191200,63342496800,63329220000,63342525600,28800,0,'IRKT',],[63342496800,63360640800,63342529200,63360673200,32400,1,'IRKST',],[63360640800,63373946400,63360669600,63373975200,28800,0,'IRKT',],[63373946400,63392090400,63373978800,63392122800,32400,1,'IRKST',],[63392090400,63405396000,63392119200,63405424800,28800,0,'IRKT',],[63405396000,63424144800,63405428400,63424177200,32400,1,'IRKST',],[63424144800,63436845600,63424173600,63436874400,28800,0,'IRKT',],[63436845600,63549939600,63436878000,63549972000,32400,0,'IRKT',],[63549939600,DateTime::TimeZone::INFINITY,63549968400,DateTime::TimeZone::INFINITY,28800,0,'IRKT',],];sub olson_version {'2016a'}sub has_dst_changes {30}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_IRKUTSK

$fatpacked{"DateTime/TimeZone/Asia/Jakarta.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_JAKARTA';
  package DateTime::TimeZone::Asia::Jakarta;$DateTime::TimeZone::Asia::Jakarta::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Jakarta::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,58904383968,DateTime::TimeZone::NEG_INFINITY,58904409600,25632,0,'LMT',],[58904383968,60683964000,58904409600,60683989632,25632,0,'BMT',],[60683964000,60962776800,60683990400,60962803200,26400,0,'JAVT',],[60962776800,61259041800,60962803800,61259068800,27000,0,'WIB',],[61259041800,61369628400,61259074200,61369660800,32400,0,'JST',],[61369628400,61451800200,61369655400,61451827200,27000,0,'WIB',],[61451800200,61514870400,61451829000,61514899200,28800,0,'WIB',],[61514870400,61946267400,61514897400,61946294400,27000,0,'WIB',],[61946267400,DateTime::TimeZone::INFINITY,61946292600,DateTime::TimeZone::INFINITY,25200,0,'WIB',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_JAKARTA

$fatpacked{"DateTime/TimeZone/Asia/Jayapura.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_JAYAPURA';
  package DateTime::TimeZone::Asia::Jayapura;$DateTime::TimeZone::Asia::Jayapura::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Jayapura::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60962769432,DateTime::TimeZone::NEG_INFINITY,60962803200,33768,0,'LMT',],[60962769432,61336191600,60962801832,61336224000,32400,0,'WIT',],[61336191600,61946260200,61336225800,61946294400,34200,0,'ACST',],[61946260200,DateTime::TimeZone::INFINITY,61946292600,DateTime::TimeZone::INFINITY,32400,0,'WIT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_JAYAPURA

$fatpacked{"DateTime/TimeZone/Asia/Jerusalem.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_JERUSALEM';
  package DateTime::TimeZone::Asia::Jerusalem;$DateTime::TimeZone::Asia::Jerusalem::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Jerusalem::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59295533946,DateTime::TimeZone::NEG_INFINITY,59295542400,8454,0,'LMT',],[59295533946,60494679560,59295542386,60494688000,8440,0,'JMT',],[60494679560,61202037600,60494686760,61202044800,7200,0,'IST',],[61202037600,61278325200,61202048400,61278336000,10800,1,'IDT',],[61278325200,61291382400,61278332400,61291389600,7200,0,'IST',],[61291382400,61309861200,61291393200,61309872000,10800,1,'IDT',],[61309861200,61322997600,61309868400,61323004800,7200,0,'IST',],[61322997600,61341483600,61323008400,61341494400,10800,1,'IDT',],[61341483600,61355829600,61341490800,61355836800,7200,0,'IST',],[61355829600,61373026800,61355840400,61373037600,10800,1,'IDT',],[61373026800,61387372800,61373034000,61387380000,7200,0,'IST',],[61387372800,61404555600,61387383600,61404566400,10800,1,'IDT',],[61404555600,61453720800,61404562800,61453728000,7200,0,'IST',],[61453720800,61462440000,61453735200,61462454400,14400,1,'IDDT',],[61462440000,61467721200,61462450800,61467732000,10800,1,'IDT',],[61467721200,61483356000,61467728400,61483363200,7200,0,'IST',],[61483356000,61499257200,61483366800,61499268000,10800,1,'IDT',],[61499257200,61513596000,61499264400,61513603200,7200,0,'IST',],[61513596000,61526736000,61513606800,61526746800,10800,1,'IDT',],[61526736000,61543836000,61526743200,61543843200,7200,0,'IST',],[61543836000,61563196800,61543846800,61563207600,10800,1,'IDT',],[61563196800,61577107200,61563204000,61577114400,7200,0,'IST',],[61577107200,61592832000,61577118000,61592842800,10800,1,'IDT',],[61592832000,61607952000,61592839200,61607959200,7200,0,'IST',],[61607952000,61621257600,61607962800,61621268400,10800,1,'IDT',],[61621257600,61644837600,61621264800,61644844800,7200,0,'IST',],[61644837600,61652696400,61644848400,61652707200,10800,1,'IDT',],[61652696400,61676208000,61652703600,61676215200,7200,0,'IST',],[61676208000,61684146000,61676218800,61684156800,10800,1,'IDT',],[61684146000,61707132000,61684153200,61707139200,7200,0,'IST',],[61707132000,61717420800,61707142800,61717431600,10800,1,'IDT',],[61717420800,61735651200,61717428000,61735658400,7200,0,'IST',],[61735651200,61748254800,61735662000,61748265600,10800,1,'IDT',],[61748254800,62278063200,61748262000,62278070400,7200,0,'IST',],[62278063200,62286526800,62278074000,62286537600,10800,1,'IDT',],[62286526800,62302860000,62286534000,62302867200,7200,0,'IST',],[62302860000,62314347600,62302870800,62314358400,10800,1,'IDT',],[62314347600,62617960800,62314354800,62617968000,7200,0,'IST',],[62617960800,62631262800,62617971600,62631273600,10800,1,'IDT',],[62631262800,62652434400,62631270000,62652441600,7200,0,'IST',],[62652434400,62662107600,62652445200,62662118400,10800,1,'IDT',],[62662107600,62681119200,62662114800,62681126400,7200,0,'IST',],[62681119200,62694162000,62681130000,62694172800,10800,1,'IDT',],[62694162000,62712309600,62694169200,62712316800,7200,0,'IST',],[62712309600,62725006800,62712320400,62725017600,10800,1,'IDT',],[62725006800,62745573600,62725014000,62745580800,7200,0,'IST',],[62745573600,62756456400,62745584400,62756467200,10800,1,'IDT',],[62756456400,62773999200,62756463600,62774006400,7200,0,'IST',],[62773999200,62787301200,62774010000,62787312000,10800,1,'IDT',],[62787301200,62805448800,62787308400,62805456000,7200,0,'IST',],[62805448800,62819355600,62805459600,62819366400,10800,1,'IDT',],[62819355600,62837503200,62819362800,62837510400,7200,0,'IST',],[62837503200,62851410000,62837514000,62851420800,10800,1,'IDT',],[62851410000,62869384800,62851417200,62869392000,7200,0,'IST',],[62869384800,62882859600,62869395600,62882870400,10800,1,'IDT',],[62882859600,62900834400,62882866800,62900841600,7200,0,'IST',],[62900834400,62913704400,62900845200,62913715200,10800,1,'IDT',],[62913704400,62932284000,62913711600,62932291200,7200,0,'IST',],[62932284000,62945758800,62932294800,62945769600,10800,1,'IDT',],[62945758800,62962524000,62945766000,62962531200,7200,0,'IST',],[62962524000,62978504400,62962534800,62978515200,10800,1,'IDT',],[62978504400,62994578400,62978511600,62994585600,7200,0,'IST',],[62994578400,63009867600,62994589200,63009878400,10800,1,'IDT',],[63009867600,63026028000,63009874800,63026035200,7200,0,'IST',],[63026028000,63040712400,63026038800,63040723200,10800,1,'IDT',],[63040712400,63058694400,63040719600,63058701600,7200,0,'IST',],[63058694400,63071996400,63058705200,63072007200,10800,1,'IDT',],[63071996400,63091353600,63072003600,63091360800,7200,0,'IST',],[63091353600,63106466400,63091364400,63106477200,10800,1,'IDT',],[63106466400,63122454000,63106473600,63122461200,7200,0,'IST',],[63122454000,63136965600,63122464800,63136976400,10800,1,'IDT',],[63136965600,63153039600,63136972800,63153046800,7200,0,'IST',],[63153039600,63169624800,63153050400,63169635600,10800,1,'IDT',],[63169624800,63184489200,63169632000,63184496400,7200,0,'IST',],[63184489200,63200815200,63184500000,63200826000,10800,1,'IDT',],[63200815200,63216975600,63200822400,63216982800,7200,0,'IST',],[63216975600,63231487200,63216986400,63231498000,10800,1,'IDT',],[63231487200,63247996800,63231494400,63248004000,7200,0,'IST',],[63247996800,63264495600,63248007600,63264506400,10800,1,'IDT',],[63264495600,63279446400,63264502800,63279453600,7200,0,'IST',],[63279446400,63295340400,63279457200,63295351200,10800,1,'IDT',],[63295340400,63310896000,63295347600,63310903200,7200,0,'IST',],[63310896000,63325580400,63310906800,63325591200,10800,1,'IDT',],[63325580400,63342345600,63325587600,63342352800,7200,0,'IST',],[63342345600,63358844400,63342356400,63358855200,10800,1,'IDT',],[63358844400,63373795200,63358851600,63373802400,7200,0,'IST',],[63373795200,63389689200,63373806000,63389700000,10800,1,'IDT',],[63389689200,63405244800,63389696400,63405252000,7200,0,'IST',],[63405244800,63419929200,63405255600,63419940000,10800,1,'IDT',],[63419929200,63437299200,63419936400,63437306400,7200,0,'IST',],[63437299200,63453193200,63437310000,63453204000,10800,1,'IDT',],[63453193200,63468748800,63453200400,63468756000,7200,0,'IST',],[63468748800,63484038000,63468759600,63484048800,10800,1,'IDT',],[63484038000,63500198400,63484045200,63500205600,7200,0,'IST',],[63500198400,63518511600,63500209200,63518522400,10800,1,'IDT',],[63518511600,63531648000,63518518800,63531655200,7200,0,'IST',],[63531648000,63549961200,63531658800,63549972000,10800,1,'IDT',],[63549961200,63563097600,63549968400,63563104800,7200,0,'IST',],[63563097600,63581410800,63563108400,63581421600,10800,1,'IDT',],[63581410800,63594547200,63581418000,63594554400,7200,0,'IST',],[63594547200,63613465200,63594558000,63613476000,10800,1,'IDT',],[63613465200,63625996800,63613472400,63626004000,7200,0,'IST',],[63625996800,63644914800,63626007600,63644925600,10800,1,'IDT',],[63644914800,63657446400,63644922000,63657453600,7200,0,'IST',],[63657446400,63676364400,63657457200,63676375200,10800,1,'IDT',],[63676364400,63689500800,63676371600,63689508000,7200,0,'IST',],[63689500800,63707814000,63689511600,63707824800,10800,1,'IDT',],[63707814000,63720950400,63707821200,63720957600,7200,0,'IST',],[63720950400,63739263600,63720961200,63739274400,10800,1,'IDT',],[63739263600,63752400000,63739270800,63752407200,7200,0,'IST',],[63752400000,63771318000,63752410800,63771328800,10800,1,'IDT',],[63771318000,63783849600,63771325200,63783856800,7200,0,'IST',],[63783849600,63802767600,63783860400,63802778400,10800,1,'IDT',],[63802767600,63815299200,63802774800,63815306400,7200,0,'IST',],[63815299200,63834217200,63815310000,63834228000,10800,1,'IDT',],[63834217200,63847353600,63834224400,63847360800,7200,0,'IST',],[63847353600,63865666800,63847364400,63865677600,10800,1,'IDT',],[63865666800,63878803200,63865674000,63878810400,7200,0,'IST',],[63878803200,63897116400,63878814000,63897127200,10800,1,'IDT',],[63897116400,63910252800,63897123600,63910260000,7200,0,'IST',],[63910252800,63928566000,63910263600,63928576800,10800,1,'IDT',],[63928566000,63941702400,63928573200,63941709600,7200,0,'IST',],[63941702400,63960620400,63941713200,63960631200,10800,1,'IDT',],];sub olson_version {'2016a'}sub has_dst_changes {61}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {7200}my$last_observance=bless({'format'=>'I%sT','gmtoff'=>'2:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>700169,'local_rd_secs'=>85160,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>700169,'utc_rd_secs'=>85160,'utc_year'=>1918 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>7200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>700169,'local_rd_secs'=>77960,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>700169,'utc_rd_secs'=>77960,'utc_year'=>1918 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2013','in'=>'Oct','letter'=>'S','name'=>'Zion','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2013','in'=>'Mar','letter'=>'D','name'=>'Zion','offset_from_std'=>3600,'on'=>'Fri>=23','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_ASIA_JERUSALEM

$fatpacked{"DateTime/TimeZone/Asia/Kabul.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_KABUL';
  package DateTime::TimeZone::Asia::Kabul;$DateTime::TimeZone::Asia::Kabul::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Kabul::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59611144992,DateTime::TimeZone::NEG_INFINITY,59611161600,16608,0,'LMT',],[59611144992,61346750400,59611159392,61346764800,14400,0,'AFT',],[61346750400,DateTime::TimeZone::INFINITY,61346766600,DateTime::TimeZone::INFINITY,16200,0,'AFT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_KABUL

$fatpacked{"DateTime/TimeZone/Asia/Kamchatka.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_KAMCHATKA';
  package DateTime::TimeZone::Asia::Kamchatka;$DateTime::TimeZone::Asia::Kamchatka::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Kamchatka::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60647923524,DateTime::TimeZone::NEG_INFINITY,60647961600,38076,0,'LMT',],[60647923524,60888114000,60647963124,60888153600,39600,0,'PETT',],[60888114000,62490571200,60888157200,62490614400,43200,0,'PETT',],[62490571200,62506378800,62490618000,62506425600,46800,1,'PETST',],[62506378800,62522107200,62506422000,62522150400,43200,0,'PETT',],[62522107200,62537914800,62522154000,62537961600,46800,1,'PETST',],[62537914800,62553643200,62537958000,62553686400,43200,0,'PETT',],[62553643200,62569450800,62553690000,62569497600,46800,1,'PETST',],[62569450800,62585265600,62569494000,62585308800,43200,0,'PETT',],[62585265600,62600997600,62585312400,62601044400,46800,1,'PETST',],[62600997600,62616722400,62601040800,62616765600,43200,0,'PETT',],[62616722400,62632447200,62616769200,62632494000,46800,1,'PETST',],[62632447200,62648172000,62632490400,62648215200,43200,0,'PETT',],[62648172000,62663896800,62648218800,62663943600,46800,1,'PETST',],[62663896800,62679621600,62663940000,62679664800,43200,0,'PETT',],[62679621600,62695346400,62679668400,62695393200,46800,1,'PETST',],[62695346400,62711071200,62695389600,62711114400,43200,0,'PETT',],[62711071200,62726796000,62711118000,62726842800,46800,1,'PETST',],[62726796000,62742520800,62726839200,62742564000,43200,0,'PETT',],[62742520800,62758245600,62742567600,62758292400,46800,1,'PETST',],[62758245600,62773970400,62758288800,62774013600,43200,0,'PETT',],[62773970400,62790300000,62774017200,62790346800,46800,1,'PETST',],[62790300000,62806024800,62790343200,62806068000,43200,0,'PETT',],[62806024800,62821753200,62806068000,62821796400,43200,1,'PETST',],[62821753200,62831430000,62821792800,62831469600,39600,0,'PETT',],[62831430000,62837463600,62831473200,62837506800,43200,0,'PETT',],[62837463600,62853184800,62837510400,62853231600,46800,1,'PETST',],[62853184800,62868924000,62853228000,62868967200,43200,0,'PETT',],[62868924000,62884648800,62868970800,62884695600,46800,1,'PETST',],[62884648800,62900373600,62884692000,62900416800,43200,0,'PETT',],[62900373600,62916098400,62900420400,62916145200,46800,1,'PETST',],[62916098400,62931823200,62916141600,62931866400,43200,0,'PETT',],[62931823200,62947548000,62931870000,62947594800,46800,1,'PETST',],[62947548000,62963877600,62947591200,62963920800,43200,0,'PETT',],[62963877600,62982021600,62963924400,62982068400,46800,1,'PETST',],[62982021600,62995327200,62982064800,62995370400,43200,0,'PETT',],[62995327200,63013471200,62995374000,63013518000,46800,1,'PETST',],[63013471200,63026776800,63013514400,63026820000,43200,0,'PETT',],[63026776800,63044920800,63026823600,63044967600,46800,1,'PETST',],[63044920800,63058226400,63044964000,63058269600,43200,0,'PETT',],[63058226400,63076975200,63058273200,63077022000,46800,1,'PETST',],[63076975200,63089676000,63077018400,63089719200,43200,0,'PETT',],[63089676000,63108424800,63089722800,63108471600,46800,1,'PETST',],[63108424800,63121125600,63108468000,63121168800,43200,0,'PETT',],[63121125600,63139874400,63121172400,63139921200,46800,1,'PETST',],[63139874400,63153180000,63139917600,63153223200,43200,0,'PETT',],[63153180000,63171324000,63153226800,63171370800,46800,1,'PETST',],[63171324000,63184629600,63171367200,63184672800,43200,0,'PETT',],[63184629600,63202773600,63184676400,63202820400,46800,1,'PETST',],[63202773600,63216079200,63202816800,63216122400,43200,0,'PETT',],[63216079200,63234828000,63216126000,63234874800,46800,1,'PETST',],[63234828000,63247528800,63234871200,63247572000,43200,0,'PETT',],[63247528800,63266277600,63247575600,63266324400,46800,1,'PETST',],[63266277600,63278978400,63266320800,63279021600,43200,0,'PETT',],[63278978400,63297727200,63279025200,63297774000,46800,1,'PETST',],[63297727200,63310428000,63297770400,63310471200,43200,0,'PETT',],[63310428000,63329176800,63310474800,63329223600,46800,1,'PETST',],[63329176800,63342482400,63329220000,63342525600,43200,0,'PETT',],[63342482400,63360626400,63342529200,63360673200,46800,1,'PETST',],[63360626400,63373932000,63360669600,63373975200,43200,0,'PETT',],[63373932000,63392076000,63373978800,63392122800,46800,1,'PETST',],[63392076000,63405381600,63392119200,63405424800,43200,0,'PETT',],[63405381600,63424134000,63405424800,63424177200,43200,1,'PETST',],[63424134000,63436834800,63424173600,63436874400,39600,0,'PETT',],[63436834800,DateTime::TimeZone::INFINITY,63436878000,DateTime::TimeZone::INFINITY,43200,0,'PETT',],];sub olson_version {'2016a'}sub has_dst_changes {30}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_KAMCHATKA

$fatpacked{"DateTime/TimeZone/Asia/Karachi.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_KARACHI';
  package DateTime::TimeZone::Asia::Karachi;$DateTime::TimeZone::Asia::Karachi::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Karachi::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60147516708,DateTime::TimeZone::NEG_INFINITY,60147532800,16092,0,'LMT',],[60147516708,61273045800,60147536508,61273065600,19800,0,'IST',],[61273045800,61371538200,61273069200,61371561600,23400,1,'IST',],[61371538200,61559548200,61371558000,61559568000,19800,0,'IST',],[61559548200,62174458800,61559566200,62174476800,18000,0,'KART',],[62174458800,63153802800,62174476800,63153820800,18000,0,'PKT',],[63153802800,63169524000,63153824400,63169545600,21600,1,'PKST',],[63169524000,63347943600,63169542000,63347961600,18000,0,'PKT',],[63347943600,63361159200,63347965200,63361180800,21600,1,'PKST',],[63361159200,63375418800,63361177200,63375436800,18000,0,'PKT',],[63375418800,63392695200,63375440400,63392716800,21600,1,'PKST',],[63392695200,DateTime::TimeZone::INFINITY,63392713200,DateTime::TimeZone::INFINITY,18000,0,'PKT',],];sub olson_version {'2016a'}sub has_dst_changes {4}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_KARACHI

$fatpacked{"DateTime/TimeZone/Asia/Kathmandu.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_KATHMANDU';
  package DateTime::TimeZone::Asia::Kathmandu;$DateTime::TimeZone::Asia::Kathmandu::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Kathmandu::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60557739524,DateTime::TimeZone::NEG_INFINITY,60557760000,20476,0,'LMT',],[60557739524,62640585000,60557759324,62640604800,19800,0,'IST',],[62640585000,DateTime::TimeZone::INFINITY,62640605700,DateTime::TimeZone::INFINITY,20700,0,'NPT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_KATHMANDU

$fatpacked{"DateTime/TimeZone/Asia/Khandyga.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_KHANDYGA';
  package DateTime::TimeZone::Asia::Khandyga;$DateTime::TimeZone::Asia::Khandyga::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Khandyga::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60556258667,DateTime::TimeZone::NEG_INFINITY,60556291200,32533,0,'LMT',],[60556258667,60888124800,60556287467,60888153600,28800,0,'YAKT',],[60888124800,62490582000,60888157200,62490614400,32400,0,'YAKT',],[62490582000,62506389600,62490618000,62506425600,36000,1,'YAKST',],[62506389600,62522118000,62506422000,62522150400,32400,0,'YAKT',],[62522118000,62537925600,62522154000,62537961600,36000,1,'YAKST',],[62537925600,62553654000,62537958000,62553686400,32400,0,'YAKT',],[62553654000,62569461600,62553690000,62569497600,36000,1,'YAKST',],[62569461600,62585276400,62569494000,62585308800,32400,0,'YAKT',],[62585276400,62601008400,62585312400,62601044400,36000,1,'YAKST',],[62601008400,62616733200,62601040800,62616765600,32400,0,'YAKT',],[62616733200,62632458000,62616769200,62632494000,36000,1,'YAKST',],[62632458000,62648182800,62632490400,62648215200,32400,0,'YAKT',],[62648182800,62663907600,62648218800,62663943600,36000,1,'YAKST',],[62663907600,62679632400,62663940000,62679664800,32400,0,'YAKT',],[62679632400,62695357200,62679668400,62695393200,36000,1,'YAKST',],[62695357200,62711082000,62695389600,62711114400,32400,0,'YAKT',],[62711082000,62726806800,62711118000,62726842800,36000,1,'YAKST',],[62726806800,62742531600,62726839200,62742564000,32400,0,'YAKT',],[62742531600,62758256400,62742567600,62758292400,36000,1,'YAKST',],[62758256400,62773981200,62758288800,62774013600,32400,0,'YAKT',],[62773981200,62790310800,62774017200,62790346800,36000,1,'YAKST',],[62790310800,62806035600,62790343200,62806068000,32400,0,'YAKT',],[62806035600,62821764000,62806068000,62821796400,32400,1,'YAKST',],[62821764000,62831440800,62821792800,62831469600,28800,0,'YAKT',],[62831440800,62837474400,62831473200,62837506800,32400,0,'YAKT',],[62837474400,62853195600,62837510400,62853231600,36000,1,'YAKST',],[62853195600,62868934800,62853228000,62868967200,32400,0,'YAKT',],[62868934800,62884659600,62868970800,62884695600,36000,1,'YAKST',],[62884659600,62900384400,62884692000,62900416800,32400,0,'YAKT',],[62900384400,62916109200,62900420400,62916145200,36000,1,'YAKST',],[62916109200,62931834000,62916141600,62931866400,32400,0,'YAKT',],[62931834000,62947558800,62931870000,62947594800,36000,1,'YAKST',],[62947558800,62963888400,62947591200,62963920800,32400,0,'YAKT',],[62963888400,62982032400,62963924400,62982068400,36000,1,'YAKST',],[62982032400,62995338000,62982064800,62995370400,32400,0,'YAKT',],[62995338000,63013482000,62995374000,63013518000,36000,1,'YAKST',],[63013482000,63026787600,63013514400,63026820000,32400,0,'YAKT',],[63026787600,63044931600,63026823600,63044967600,36000,1,'YAKST',],[63044931600,63058237200,63044964000,63058269600,32400,0,'YAKT',],[63058237200,63076986000,63058273200,63077022000,36000,1,'YAKST',],[63076986000,63089686800,63077018400,63089719200,32400,0,'YAKT',],[63089686800,63108435600,63089722800,63108471600,36000,1,'YAKST',],[63108435600,63121136400,63108468000,63121168800,32400,0,'YAKT',],[63121136400,63139885200,63121172400,63139921200,36000,1,'YAKST',],[63139885200,63153190800,63139917600,63153223200,32400,0,'YAKT',],[63153190800,63171334800,63153226800,63171370800,36000,1,'YAKST',],[63171334800,63184640400,63171367200,63184672800,32400,0,'YAKT',],[63184640400,63202784400,63184676400,63202820400,36000,1,'YAKST',],[63202784400,63208566000,63202816800,63208598400,32400,0,'YAKT',],[63208566000,63216086400,63208602000,63216122400,36000,0,'VLAT',],[63216086400,63234835200,63216126000,63234874800,39600,1,'VLAST',],[63234835200,63247536000,63234871200,63247572000,36000,0,'VLAT',],[63247536000,63266284800,63247575600,63266324400,39600,1,'VLAST',],[63266284800,63278985600,63266320800,63279021600,36000,0,'VLAT',],[63278985600,63297734400,63279025200,63297774000,39600,1,'VLAST',],[63297734400,63310435200,63297770400,63310471200,36000,0,'VLAT',],[63310435200,63329184000,63310474800,63329223600,39600,1,'VLAST',],[63329184000,63342489600,63329220000,63342525600,36000,0,'VLAT',],[63342489600,63360633600,63342529200,63360673200,39600,1,'VLAST',],[63360633600,63373939200,63360669600,63373975200,36000,0,'VLAT',],[63373939200,63392083200,63373978800,63392122800,39600,1,'VLAST',],[63392083200,63405388800,63392119200,63405424800,36000,0,'VLAT',],[63405388800,63424137600,63405428400,63424177200,39600,1,'VLAST',],[63424137600,63436838400,63424173600,63436874400,36000,0,'VLAT',],[63436838400,63451515600,63436878000,63451555200,39600,0,'VLAT',],[63451515600,63549936000,63451551600,63549972000,36000,0,'YAKT',],[63549936000,DateTime::TimeZone::INFINITY,63549968400,DateTime::TimeZone::INFINITY,32400,0,'YAKT',],];sub olson_version {'2016a'}sub has_dst_changes {30}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_KHANDYGA

$fatpacked{"DateTime/TimeZone/Asia/Kolkata.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_KOLKATA';
  package DateTime::TimeZone::Asia::Kolkata;$DateTime::TimeZone::Asia::Kolkata::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Kolkata::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59295521192,DateTime::TimeZone::NEG_INFINITY,59295542400,21208,0,'LMT',],[59295521192,61244100400,59295542392,61244121600,21200,0,'HMT',],[61244100400,61263624600,61244123800,61263648000,23400,0,'BURT',],[61263624600,61273045800,61263644400,61273065600,19800,0,'IST',],[61273045800,61371538200,61273069200,61371561600,23400,1,'IST',],[61371538200,DateTime::TimeZone::INFINITY,61371558000,DateTime::TimeZone::INFINITY,19800,0,'IST',],];sub olson_version {'2016a'}sub has_dst_changes {1}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_KOLKATA

$fatpacked{"DateTime/TimeZone/Asia/Krasnoyarsk.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_KRASNOYARSK';
  package DateTime::TimeZone::Asia::Krasnoyarsk;$DateTime::TimeZone::Asia::Krasnoyarsk::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Krasnoyarsk::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60558169714,DateTime::TimeZone::NEG_INFINITY,60558192000,22286,0,'LMT',],[60558169714,60888132000,60558191314,60888153600,21600,0,'KRAT',],[60888132000,62490589200,60888157200,62490614400,25200,0,'KRAT',],[62490589200,62506396800,62490618000,62506425600,28800,1,'KRAST',],[62506396800,62522125200,62506422000,62522150400,25200,0,'KRAT',],[62522125200,62537932800,62522154000,62537961600,28800,1,'KRAST',],[62537932800,62553661200,62537958000,62553686400,25200,0,'KRAT',],[62553661200,62569468800,62553690000,62569497600,28800,1,'KRAST',],[62569468800,62585283600,62569494000,62585308800,25200,0,'KRAT',],[62585283600,62601015600,62585312400,62601044400,28800,1,'KRAST',],[62601015600,62616740400,62601040800,62616765600,25200,0,'KRAT',],[62616740400,62632465200,62616769200,62632494000,28800,1,'KRAST',],[62632465200,62648190000,62632490400,62648215200,25200,0,'KRAT',],[62648190000,62663914800,62648218800,62663943600,28800,1,'KRAST',],[62663914800,62679639600,62663940000,62679664800,25200,0,'KRAT',],[62679639600,62695364400,62679668400,62695393200,28800,1,'KRAST',],[62695364400,62711089200,62695389600,62711114400,25200,0,'KRAT',],[62711089200,62726814000,62711118000,62726842800,28800,1,'KRAST',],[62726814000,62742538800,62726839200,62742564000,25200,0,'KRAT',],[62742538800,62758263600,62742567600,62758292400,28800,1,'KRAST',],[62758263600,62773988400,62758288800,62774013600,25200,0,'KRAT',],[62773988400,62790318000,62774017200,62790346800,28800,1,'KRAST',],[62790318000,62806042800,62790343200,62806068000,25200,0,'KRAT',],[62806042800,62821771200,62806068000,62821796400,25200,1,'KRAST',],[62821771200,62831448000,62821792800,62831469600,21600,0,'KRAT',],[62831448000,62837481600,62831473200,62837506800,25200,0,'KRAT',],[62837481600,62853202800,62837510400,62853231600,28800,1,'KRAST',],[62853202800,62868942000,62853228000,62868967200,25200,0,'KRAT',],[62868942000,62884666800,62868970800,62884695600,28800,1,'KRAST',],[62884666800,62900391600,62884692000,62900416800,25200,0,'KRAT',],[62900391600,62916116400,62900420400,62916145200,28800,1,'KRAST',],[62916116400,62931841200,62916141600,62931866400,25200,0,'KRAT',],[62931841200,62947566000,62931870000,62947594800,28800,1,'KRAST',],[62947566000,62963895600,62947591200,62963920800,25200,0,'KRAT',],[62963895600,62982039600,62963924400,62982068400,28800,1,'KRAST',],[62982039600,62995345200,62982064800,62995370400,25200,0,'KRAT',],[62995345200,63013489200,62995374000,63013518000,28800,1,'KRAST',],[63013489200,63026794800,63013514400,63026820000,25200,0,'KRAT',],[63026794800,63044938800,63026823600,63044967600,28800,1,'KRAST',],[63044938800,63058244400,63044964000,63058269600,25200,0,'KRAT',],[63058244400,63076993200,63058273200,63077022000,28800,1,'KRAST',],[63076993200,63089694000,63077018400,63089719200,25200,0,'KRAT',],[63089694000,63108442800,63089722800,63108471600,28800,1,'KRAST',],[63108442800,63121143600,63108468000,63121168800,25200,0,'KRAT',],[63121143600,63139892400,63121172400,63139921200,28800,1,'KRAST',],[63139892400,63153198000,63139917600,63153223200,25200,0,'KRAT',],[63153198000,63171342000,63153226800,63171370800,28800,1,'KRAST',],[63171342000,63184647600,63171367200,63184672800,25200,0,'KRAT',],[63184647600,63202791600,63184676400,63202820400,28800,1,'KRAST',],[63202791600,63216097200,63202816800,63216122400,25200,0,'KRAT',],[63216097200,63234846000,63216126000,63234874800,28800,1,'KRAST',],[63234846000,63247546800,63234871200,63247572000,25200,0,'KRAT',],[63247546800,63266295600,63247575600,63266324400,28800,1,'KRAST',],[63266295600,63278996400,63266320800,63279021600,25200,0,'KRAT',],[63278996400,63297745200,63279025200,63297774000,28800,1,'KRAST',],[63297745200,63310446000,63297770400,63310471200,25200,0,'KRAT',],[63310446000,63329194800,63310474800,63329223600,28800,1,'KRAST',],[63329194800,63342500400,63329220000,63342525600,25200,0,'KRAT',],[63342500400,63360644400,63342529200,63360673200,28800,1,'KRAST',],[63360644400,63373950000,63360669600,63373975200,25200,0,'KRAT',],[63373950000,63392094000,63373978800,63392122800,28800,1,'KRAST',],[63392094000,63405399600,63392119200,63405424800,25200,0,'KRAT',],[63405399600,63424148400,63405428400,63424177200,28800,1,'KRAST',],[63424148400,63436849200,63424173600,63436874400,25200,0,'KRAT',],[63436849200,63549943200,63436878000,63549972000,28800,0,'KRAT',],[63549943200,DateTime::TimeZone::INFINITY,63549968400,DateTime::TimeZone::INFINITY,25200,0,'KRAT',],];sub olson_version {'2016a'}sub has_dst_changes {30}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_KRASNOYARSK

$fatpacked{"DateTime/TimeZone/Asia/Kuala_Lumpur.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_KUALA_LUMPUR';
  package DateTime::TimeZone::Asia::Kuala_Lumpur;$DateTime::TimeZone::Asia::Kuala_Lumpur::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Kuala_Lumpur::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59958205994,DateTime::TimeZone::NEG_INFINITY,59958230400,24406,0,'LMT',],[59958205994,60097482275,59958230919,60097507200,24925,0,'SMT',],[60097482275,60968048400,60097507475,60968073600,25200,0,'MALT',],[60968048400,61062655200,60968074800,61062681600,26400,1,'MALST',],[61062655200,61241503200,61062681600,61241529600,26400,0,'MALT',],[61241503200,61256017800,61241530200,61256044800,27000,0,'MALT',],[61256017800,61368678000,61256050200,61368710400,32400,0,'JST',],[61368678000,62514347400,61368705000,62514374400,27000,0,'MALT',],[62514347400,DateTime::TimeZone::INFINITY,62514376200,DateTime::TimeZone::INFINITY,28800,0,'MYT',],];sub olson_version {'2016a'}sub has_dst_changes {1}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_KUALA_LUMPUR

$fatpacked{"DateTime/TimeZone/Asia/Kuching.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_KUCHING';
  package DateTime::TimeZone::Asia::Kuching;$DateTime::TimeZone::Asia::Kuching::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Kuching::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60752219920,DateTime::TimeZone::NEG_INFINITY,60752246400,26480,0,'LMT',],[60752219920,60968046600,60752246920,60968073600,27000,0,'BORT',],[60968046600,61053235200,60968075400,61053264000,28800,0,'BORT',],[61053235200,61061096400,61053265200,61061126400,30000,1,'BORTST',],[61061096400,61084857600,61061125200,61084886400,28800,0,'BORT',],[61084857600,61092718800,61084887600,61092748800,30000,1,'BORTST',],[61092718800,61116393600,61092747600,61116422400,28800,0,'BORT',],[61116393600,61124254800,61116423600,61124284800,30000,1,'BORTST',],[61124254800,61147929600,61124283600,61147958400,28800,0,'BORT',],[61147929600,61155790800,61147959600,61155820800,30000,1,'BORTST',],[61155790800,61179465600,61155819600,61179494400,28800,0,'BORT',],[61179465600,61187326800,61179495600,61187356800,30000,1,'BORTST',],[61187326800,61211088000,61187355600,61211116800,28800,0,'BORT',],[61211088000,61218949200,61211118000,61218979200,30000,1,'BORTST',],[61218949200,61242624000,61218978000,61242652800,28800,0,'BORT',],[61242624000,61250485200,61242654000,61250515200,30000,1,'BORTST',],[61250485200,61256016000,61250514000,61256044800,28800,0,'BORT',],[61256016000,61368678000,61256048400,61368710400,32400,0,'JST',],[61368678000,62514345600,61368706800,62514374400,28800,0,'BORT',],[62514345600,DateTime::TimeZone::INFINITY,62514374400,DateTime::TimeZone::INFINITY,28800,0,'MYT',],];sub olson_version {'2016a'}sub has_dst_changes {7}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_KUCHING

$fatpacked{"DateTime/TimeZone/Asia/Macau.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_MACAU';
  package DateTime::TimeZone::Asia::Macau;$DateTime::TimeZone::Asia::Macau::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Macau::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60305271940,DateTime::TimeZone::NEG_INFINITY,60305299200,27260,0,'LMT',],[60305271940,61858323000,60305300740,61858351800,28800,0,'MOT',],[61858323000,61878277800,61858355400,61878310200,32400,1,'MOST',],[61878277800,61889772600,61878306600,61889801400,28800,0,'MOT',],[61889772600,61909727400,61889805000,61909759800,32400,1,'MOST',],[61909727400,61921209600,61909756200,61921238400,28800,0,'MOT',],[61921209600,61941177000,61921242000,61941209400,32400,1,'MOST',],[61941177000,61953276600,61941205800,61953305400,28800,0,'MOT',],[61953276600,61972626600,61953309000,61972659000,32400,1,'MOST',],[61972626600,61984713600,61972655400,61984742400,28800,0,'MOT',],[61984713600,62004063600,61984746000,62004096000,32400,1,'MOST',],[62004063600,62018595000,62004092400,62018623800,28800,0,'MOT',],[62018595000,62034316200,62018627400,62034348600,32400,1,'MOST',],[62034316200,62050044600,62034345000,62050073400,28800,0,'MOT',],[62050044600,62066370600,62050077000,62066403000,32400,1,'MOST',],[62066370600,62082099000,62066399400,62082127800,28800,0,'MOT',],[62082099000,62097820200,62082131400,62097852600,32400,1,'MOST',],[62097820200,62113548600,62097849000,62113577400,28800,0,'MOT',],[62113548600,62129269800,62113581000,62129302200,32400,1,'MOST',],[62129269800,62144998200,62129298600,62145027000,28800,0,'MOT',],[62144998200,62160719400,62145030600,62160751800,32400,1,'MOST',],[62160719400,62176447800,62160748200,62176476600,28800,0,'MOT',],[62176447800,62192169000,62176480200,62192201400,32400,1,'MOST',],[62192169000,62207884800,62192197800,62207913600,28800,0,'MOT',],[62207884800,62223606000,62207917200,62223638400,32400,1,'MOST',],[62223606000,62239334400,62223634800,62239363200,28800,0,'MOT',],[62239334400,62255660400,62239366800,62255692800,32400,1,'MOST',],[62255660400,62271388800,62255689200,62271417600,28800,0,'MOT',],[62271388800,62287122600,62271421200,62287155000,32400,1,'MOST',],[62287122600,62302851000,62287151400,62302879800,28800,0,'MOT',],[62302851000,62318572200,62302883400,62318604600,32400,1,'MOST',],[62318572200,62334300600,62318601000,62334329400,28800,0,'MOT',],[62334300600,62350021800,62334333000,62350054200,32400,1,'MOST',],[62350021800,62365750200,62350050600,62365779000,28800,0,'MOT',],[62365750200,62381471400,62365782600,62381503800,32400,1,'MOST',],[62381471400,62397187200,62381500200,62397216000,28800,0,'MOT',],[62397187200,62412908400,62397219600,62412940800,32400,1,'MOST',],[62412908400,62428636800,62412937200,62428665600,28800,0,'MOT',],[62428636800,62444962800,62428669200,62444995200,32400,1,'MOST',],[62444962800,62460691200,62444991600,62460720000,28800,0,'MOT',],[62460691200,62476412400,62460723600,62476444800,32400,1,'MOST',],[62476412400,63081302400,62476441200,63081331200,28800,0,'MOT',],[63081302400,DateTime::TimeZone::INFINITY,63081331200,DateTime::TimeZone::INFINITY,28800,0,'CST',],];sub olson_version {'2016a'}sub has_dst_changes {20}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_MACAU

$fatpacked{"DateTime/TimeZone/Asia/Magadan.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_MAGADAN';
  package DateTime::TimeZone::Asia::Magadan;$DateTime::TimeZone::Asia::Magadan::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Magadan::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60694495008,DateTime::TimeZone::NEG_INFINITY,60694531200,36192,0,'LMT',],[60694495008,60888117600,60694531008,60888153600,36000,0,'MAGT',],[60888117600,62490574800,60888157200,62490614400,39600,0,'MAGT',],[62490574800,62506382400,62490618000,62506425600,43200,1,'MAGST',],[62506382400,62522110800,62506422000,62522150400,39600,0,'MAGT',],[62522110800,62537918400,62522154000,62537961600,43200,1,'MAGST',],[62537918400,62553646800,62537958000,62553686400,39600,0,'MAGT',],[62553646800,62569454400,62553690000,62569497600,43200,1,'MAGST',],[62569454400,62585269200,62569494000,62585308800,39600,0,'MAGT',],[62585269200,62601001200,62585312400,62601044400,43200,1,'MAGST',],[62601001200,62616726000,62601040800,62616765600,39600,0,'MAGT',],[62616726000,62632450800,62616769200,62632494000,43200,1,'MAGST',],[62632450800,62648175600,62632490400,62648215200,39600,0,'MAGT',],[62648175600,62663900400,62648218800,62663943600,43200,1,'MAGST',],[62663900400,62679625200,62663940000,62679664800,39600,0,'MAGT',],[62679625200,62695350000,62679668400,62695393200,43200,1,'MAGST',],[62695350000,62711074800,62695389600,62711114400,39600,0,'MAGT',],[62711074800,62726799600,62711118000,62726842800,43200,1,'MAGST',],[62726799600,62742524400,62726839200,62742564000,39600,0,'MAGT',],[62742524400,62758249200,62742567600,62758292400,43200,1,'MAGST',],[62758249200,62773974000,62758288800,62774013600,39600,0,'MAGT',],[62773974000,62790303600,62774017200,62790346800,43200,1,'MAGST',],[62790303600,62806028400,62790343200,62806068000,39600,0,'MAGT',],[62806028400,62821756800,62806068000,62821796400,39600,1,'MAGST',],[62821756800,62831433600,62821792800,62831469600,36000,0,'MAGT',],[62831433600,62837467200,62831473200,62837506800,39600,0,'MAGT',],[62837467200,62853188400,62837510400,62853231600,43200,1,'MAGST',],[62853188400,62868927600,62853228000,62868967200,39600,0,'MAGT',],[62868927600,62884652400,62868970800,62884695600,43200,1,'MAGST',],[62884652400,62900377200,62884692000,62900416800,39600,0,'MAGT',],[62900377200,62916102000,62900420400,62916145200,43200,1,'MAGST',],[62916102000,62931826800,62916141600,62931866400,39600,0,'MAGT',],[62931826800,62947551600,62931870000,62947594800,43200,1,'MAGST',],[62947551600,62963881200,62947591200,62963920800,39600,0,'MAGT',],[62963881200,62982025200,62963924400,62982068400,43200,1,'MAGST',],[62982025200,62995330800,62982064800,62995370400,39600,0,'MAGT',],[62995330800,63013474800,62995374000,63013518000,43200,1,'MAGST',],[63013474800,63026780400,63013514400,63026820000,39600,0,'MAGT',],[63026780400,63044924400,63026823600,63044967600,43200,1,'MAGST',],[63044924400,63058230000,63044964000,63058269600,39600,0,'MAGT',],[63058230000,63076978800,63058273200,63077022000,43200,1,'MAGST',],[63076978800,63089679600,63077018400,63089719200,39600,0,'MAGT',],[63089679600,63108428400,63089722800,63108471600,43200,1,'MAGST',],[63108428400,63121129200,63108468000,63121168800,39600,0,'MAGT',],[63121129200,63139878000,63121172400,63139921200,43200,1,'MAGST',],[63139878000,63153183600,63139917600,63153223200,39600,0,'MAGT',],[63153183600,63171327600,63153226800,63171370800,43200,1,'MAGST',],[63171327600,63184633200,63171367200,63184672800,39600,0,'MAGT',],[63184633200,63202777200,63184676400,63202820400,43200,1,'MAGST',],[63202777200,63216082800,63202816800,63216122400,39600,0,'MAGT',],[63216082800,63234831600,63216126000,63234874800,43200,1,'MAGST',],[63234831600,63247532400,63234871200,63247572000,39600,0,'MAGT',],[63247532400,63266281200,63247575600,63266324400,43200,1,'MAGST',],[63266281200,63278982000,63266320800,63279021600,39600,0,'MAGT',],[63278982000,63297730800,63279025200,63297774000,43200,1,'MAGST',],[63297730800,63310431600,63297770400,63310471200,39600,0,'MAGT',],[63310431600,63329180400,63310474800,63329223600,43200,1,'MAGST',],[63329180400,63342486000,63329220000,63342525600,39600,0,'MAGT',],[63342486000,63360630000,63342529200,63360673200,43200,1,'MAGST',],[63360630000,63373935600,63360669600,63373975200,39600,0,'MAGT',],[63373935600,63392079600,63373978800,63392122800,43200,1,'MAGST',],[63392079600,63405385200,63392119200,63405424800,39600,0,'MAGT',],[63405385200,63424134000,63405428400,63424177200,43200,1,'MAGST',],[63424134000,63436834800,63424173600,63436874400,39600,0,'MAGT',],[63436834800,63549928800,63436878000,63549972000,43200,0,'MAGT',],[63549928800,DateTime::TimeZone::INFINITY,63549964800,DateTime::TimeZone::INFINITY,36000,0,'MAGT',],];sub olson_version {'2016a'}sub has_dst_changes {30}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_MAGADAN

$fatpacked{"DateTime/TimeZone/Asia/Makassar.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_MAKASSAR';
  package DateTime::TimeZone::Asia::Makassar;$DateTime::TimeZone::Asia::Makassar::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Makassar::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60557731344,DateTime::TimeZone::NEG_INFINITY,60557760000,28656,0,'LMT',],[60557731344,60962774544,60557760000,60962803200,28656,0,'MMT',],[60962774544,61255411200,60962803344,61255440000,28800,0,'WITA',],[61255411200,61369628400,61255443600,61369660800,32400,0,'JST',],[61369628400,DateTime::TimeZone::INFINITY,61369657200,DateTime::TimeZone::INFINITY,28800,0,'WITA',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_MAKASSAR

$fatpacked{"DateTime/TimeZone/Asia/Manila.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_MANILA';
  package DateTime::TimeZone::Asia::Manila;$DateTime::TimeZone::Asia::Manila::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Manila::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,58191062160,DateTime::TimeZone::NEG_INFINITY,58191004800,-57360,0,'LMT',],[58191062160,59906361360,58191091200,59906390400,29040,0,'LMT',],[59906361360,61089004800,59906390160,61089033600,28800,0,'PHT',],[61089004800,61096950000,61089037200,61096982400,32400,1,'PHST',],[61096950000,61262409600,61096978800,61262438400,28800,0,'PHT',],[61262409600,61341462000,61262442000,61341494400,32400,0,'JST',],[61341462000,61639459200,61341490800,61639488000,28800,0,'PHT',],[61639459200,61646367600,61639491600,61646400000,32400,1,'PHST',],[61646367600,62395027200,61646396400,62395056000,28800,0,'PHT',],[62395027200,62410834800,62395059600,62410867200,32400,1,'PHST',],[62410834800,DateTime::TimeZone::INFINITY,62410863600,DateTime::TimeZone::INFINITY,28800,0,'PHT',],];sub olson_version {'2016a'}sub has_dst_changes {3}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_MANILA

$fatpacked{"DateTime/TimeZone/Asia/Nicosia.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_NICOSIA';
  package DateTime::TimeZone::Asia::Nicosia;$DateTime::TimeZone::Asia::Nicosia::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Nicosia::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60616763192,DateTime::TimeZone::NEG_INFINITY,60616771200,8008,0,'LMT',],[60616763192,62302255200,60616770392,62302262400,7200,0,'EET',],[62302255200,62317976400,62302266000,62317987200,10800,1,'EEST',],[62317976400,62336642400,62317983600,62336649600,7200,0,'EET',],[62336642400,62349512400,62336653200,62349523200,10800,1,'EEST',],[62349512400,62364549600,62349519600,62364556800,7200,0,'EET',],[62364549600,62379666000,62364560400,62379676800,10800,1,'EEST',],[62379666000,62395999200,62379673200,62396006400,7200,0,'EET',],[62395999200,62411806800,62396010000,62411817600,10800,1,'EEST',],[62411806800,62427448800,62411814000,62427456000,7200,0,'EET',],[62427448800,62443170000,62427459600,62443180800,10800,1,'EEST',],[62443170000,62459503200,62443177200,62459510400,7200,0,'EET',],[62459503200,62474619600,62459514000,62474630400,10800,1,'EEST',],[62474619600,62490348000,62474626800,62490355200,7200,0,'EET',],[62490348000,62506069200,62490358800,62506080000,10800,1,'EEST',],[62506069200,62521797600,62506076400,62521804800,7200,0,'EET',],[62521797600,62537518800,62521808400,62537529600,10800,1,'EEST',],[62537518800,62553247200,62537526000,62553254400,7200,0,'EET',],[62553247200,62568968400,62553258000,62568979200,10800,1,'EEST',],[62568968400,62584696800,62568975600,62584704000,7200,0,'EET',],[62584696800,62601022800,62584707600,62601033600,10800,1,'EEST',],[62601022800,62616751200,62601030000,62616758400,7200,0,'EET',],[62616751200,62632472400,62616762000,62632483200,10800,1,'EEST',],[62632472400,62648200800,62632479600,62648208000,7200,0,'EET',],[62648200800,62663922000,62648211600,62663932800,10800,1,'EEST',],[62663922000,62679650400,62663929200,62679657600,7200,0,'EET',],[62679650400,62695371600,62679661200,62695382400,10800,1,'EEST',],[62695371600,62711100000,62695378800,62711107200,7200,0,'EET',],[62711100000,62726821200,62711110800,62726832000,10800,1,'EEST',],[62726821200,62742549600,62726828400,62742556800,7200,0,'EET',],[62742549600,62758270800,62742560400,62758281600,10800,1,'EEST',],[62758270800,62773999200,62758278000,62774006400,7200,0,'EET',],[62773999200,62790325200,62774010000,62790336000,10800,1,'EEST',],[62790325200,62806053600,62790332400,62806060800,7200,0,'EET',],[62806053600,62821774800,62806064400,62821785600,10800,1,'EEST',],[62821774800,62837503200,62821782000,62837510400,7200,0,'EET',],[62837503200,62853224400,62837514000,62853235200,10800,1,'EEST',],[62853224400,62868952800,62853231600,62868960000,7200,0,'EET',],[62868952800,62884674000,62868963600,62884684800,10800,1,'EEST',],[62884674000,62900402400,62884681200,62900409600,7200,0,'EET',],[62900402400,62916123600,62900413200,62916134400,10800,1,'EEST',],[62916123600,62931852000,62916130800,62931859200,7200,0,'EET',],[62931852000,62947573200,62931862800,62947584000,10800,1,'EEST',],[62947573200,62963906400,62947580400,62963913600,7200,0,'EET',],[62963906400,62979627600,62963917200,62979638400,10800,1,'EEST',],[62979627600,62995356000,62979634800,62995363200,7200,0,'EET',],[62995356000,63011077200,62995366800,63011088000,10800,1,'EEST',],[63011077200,63026805600,63011084400,63026812800,7200,0,'EET',],[63026805600,63040280400,63026816400,63040291200,10800,1,'EEST',],[63040280400,63044960400,63040291200,63044971200,10800,1,'EEST',],[63044960400,63058266000,63044967600,63058273200,7200,0,'EET',],[63058266000,63077014800,63058276800,63077025600,10800,1,'EEST',],[63077014800,63089715600,63077022000,63089722800,7200,0,'EET',],[63089715600,63108464400,63089726400,63108475200,10800,1,'EEST',],[63108464400,63121165200,63108471600,63121172400,7200,0,'EET',],[63121165200,63139914000,63121176000,63139924800,10800,1,'EEST',],[63139914000,63153219600,63139921200,63153226800,7200,0,'EET',],[63153219600,63171363600,63153230400,63171374400,10800,1,'EEST',],[63171363600,63184669200,63171370800,63184676400,7200,0,'EET',],[63184669200,63202813200,63184680000,63202824000,10800,1,'EEST',],[63202813200,63216118800,63202820400,63216126000,7200,0,'EET',],[63216118800,63234867600,63216129600,63234878400,10800,1,'EEST',],[63234867600,63247568400,63234874800,63247575600,7200,0,'EET',],[63247568400,63266317200,63247579200,63266328000,10800,1,'EEST',],[63266317200,63279018000,63266324400,63279025200,7200,0,'EET',],[63279018000,63297766800,63279028800,63297777600,10800,1,'EEST',],[63297766800,63310467600,63297774000,63310474800,7200,0,'EET',],[63310467600,63329216400,63310478400,63329227200,10800,1,'EEST',],[63329216400,63342522000,63329223600,63342529200,7200,0,'EET',],[63342522000,63360666000,63342532800,63360676800,10800,1,'EEST',],[63360666000,63373971600,63360673200,63373978800,7200,0,'EET',],[63373971600,63392115600,63373982400,63392126400,10800,1,'EEST',],[63392115600,63405421200,63392122800,63405428400,7200,0,'EET',],[63405421200,63424170000,63405432000,63424180800,10800,1,'EEST',],[63424170000,63436870800,63424177200,63436878000,7200,0,'EET',],[63436870800,63455619600,63436881600,63455630400,10800,1,'EEST',],[63455619600,63468320400,63455626800,63468327600,7200,0,'EET',],[63468320400,63487069200,63468331200,63487080000,10800,1,'EEST',],[63487069200,63500374800,63487076400,63500382000,7200,0,'EET',],[63500374800,63518518800,63500385600,63518529600,10800,1,'EEST',],[63518518800,63531824400,63518526000,63531831600,7200,0,'EET',],[63531824400,63549968400,63531835200,63549979200,10800,1,'EEST',],[63549968400,63563274000,63549975600,63563281200,7200,0,'EET',],[63563274000,63581418000,63563284800,63581428800,10800,1,'EEST',],[63581418000,63594723600,63581425200,63594730800,7200,0,'EET',],[63594723600,63613472400,63594734400,63613483200,10800,1,'EEST',],[63613472400,63626173200,63613479600,63626180400,7200,0,'EET',],[63626173200,63644922000,63626184000,63644932800,10800,1,'EEST',],[63644922000,63657622800,63644929200,63657630000,7200,0,'EET',],[63657622800,63676371600,63657633600,63676382400,10800,1,'EEST',],[63676371600,63689677200,63676378800,63689684400,7200,0,'EET',],[63689677200,63707821200,63689688000,63707832000,10800,1,'EEST',],[63707821200,63721126800,63707828400,63721134000,7200,0,'EET',],[63721126800,63739270800,63721137600,63739281600,10800,1,'EEST',],[63739270800,63752576400,63739278000,63752583600,7200,0,'EET',],[63752576400,63771325200,63752587200,63771336000,10800,1,'EEST',],[63771325200,63784026000,63771332400,63784033200,7200,0,'EET',],[63784026000,63802774800,63784036800,63802785600,10800,1,'EEST',],[63802774800,63815475600,63802782000,63815482800,7200,0,'EET',],[63815475600,63834224400,63815486400,63834235200,10800,1,'EEST',],[63834224400,63847530000,63834231600,63847537200,7200,0,'EET',],[63847530000,63865674000,63847540800,63865684800,10800,1,'EEST',],[63865674000,63878979600,63865681200,63878986800,7200,0,'EET',],[63878979600,63897123600,63878990400,63897134400,10800,1,'EEST',],[63897123600,63910429200,63897130800,63910436400,7200,0,'EET',],[63910429200,63928573200,63910440000,63928584000,10800,1,'EEST',],[63928573200,63941878800,63928580400,63941886000,7200,0,'EET',],[63941878800,63960627600,63941889600,63960638400,10800,1,'EEST',],];sub olson_version {'2016a'}sub has_dst_changes {54}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {7200}my$last_observance=bless({'format'=>'EE%sT','gmtoff'=>'2:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>729633,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>729633,'utc_rd_secs'=>0,'utc_year'=>1999 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>7200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>729632,'local_rd_secs'=>75600,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>729632,'utc_rd_secs'=>75600,'utc_year'=>1999 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EUAsia','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EUAsia','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_ASIA_NICOSIA

$fatpacked{"DateTime/TimeZone/Asia/Novokuznetsk.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_NOVOKUZNETSK';
  package DateTime::TimeZone::Asia::Novokuznetsk;$DateTime::TimeZone::Asia::Novokuznetsk::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Novokuznetsk::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60694423872,DateTime::TimeZone::NEG_INFINITY,60694444800,20928,0,'LMT',],[60694423872,60888132000,60694445472,60888153600,21600,0,'KRAT',],[60888132000,62490589200,60888157200,62490614400,25200,0,'KRAT',],[62490589200,62506396800,62490618000,62506425600,28800,1,'KRAST',],[62506396800,62522125200,62506422000,62522150400,25200,0,'KRAT',],[62522125200,62537932800,62522154000,62537961600,28800,1,'KRAST',],[62537932800,62553661200,62537958000,62553686400,25200,0,'KRAT',],[62553661200,62569468800,62553690000,62569497600,28800,1,'KRAST',],[62569468800,62585283600,62569494000,62585308800,25200,0,'KRAT',],[62585283600,62601015600,62585312400,62601044400,28800,1,'KRAST',],[62601015600,62616740400,62601040800,62616765600,25200,0,'KRAT',],[62616740400,62632465200,62616769200,62632494000,28800,1,'KRAST',],[62632465200,62648190000,62632490400,62648215200,25200,0,'KRAT',],[62648190000,62663914800,62648218800,62663943600,28800,1,'KRAST',],[62663914800,62679639600,62663940000,62679664800,25200,0,'KRAT',],[62679639600,62695364400,62679668400,62695393200,28800,1,'KRAST',],[62695364400,62711089200,62695389600,62711114400,25200,0,'KRAT',],[62711089200,62726814000,62711118000,62726842800,28800,1,'KRAST',],[62726814000,62742538800,62726839200,62742564000,25200,0,'KRAT',],[62742538800,62758263600,62742567600,62758292400,28800,1,'KRAST',],[62758263600,62773988400,62758288800,62774013600,25200,0,'KRAT',],[62773988400,62790318000,62774017200,62790346800,28800,1,'KRAST',],[62790318000,62806042800,62790343200,62806068000,25200,0,'KRAT',],[62806042800,62821771200,62806068000,62821796400,25200,1,'KRAST',],[62821771200,62831448000,62821792800,62831469600,21600,0,'KRAT',],[62831448000,62837481600,62831473200,62837506800,25200,0,'KRAT',],[62837481600,62853202800,62837510400,62853231600,28800,1,'KRAST',],[62853202800,62868942000,62853228000,62868967200,25200,0,'KRAT',],[62868942000,62884666800,62868970800,62884695600,28800,1,'KRAST',],[62884666800,62900391600,62884692000,62900416800,25200,0,'KRAT',],[62900391600,62916116400,62900420400,62916145200,28800,1,'KRAST',],[62916116400,62931841200,62916141600,62931866400,25200,0,'KRAT',],[62931841200,62947566000,62931870000,62947594800,28800,1,'KRAST',],[62947566000,62963895600,62947591200,62963920800,25200,0,'KRAT',],[62963895600,62982039600,62963924400,62982068400,28800,1,'KRAST',],[62982039600,62995345200,62982064800,62995370400,25200,0,'KRAT',],[62995345200,63013489200,62995374000,63013518000,28800,1,'KRAST',],[63013489200,63026794800,63013514400,63026820000,25200,0,'KRAT',],[63026794800,63044938800,63026823600,63044967600,28800,1,'KRAST',],[63044938800,63058244400,63044964000,63058269600,25200,0,'KRAT',],[63058244400,63076993200,63058273200,63077022000,28800,1,'KRAST',],[63076993200,63089694000,63077018400,63089719200,25200,0,'KRAT',],[63089694000,63108442800,63089722800,63108471600,28800,1,'KRAST',],[63108442800,63121143600,63108468000,63121168800,25200,0,'KRAT',],[63121143600,63139892400,63121172400,63139921200,28800,1,'KRAST',],[63139892400,63153198000,63139917600,63153223200,25200,0,'KRAT',],[63153198000,63171342000,63153226800,63171370800,28800,1,'KRAST',],[63171342000,63184647600,63171367200,63184672800,25200,0,'KRAT',],[63184647600,63202791600,63184676400,63202820400,28800,1,'KRAST',],[63202791600,63216097200,63202816800,63216122400,25200,0,'KRAT',],[63216097200,63234846000,63216126000,63234874800,28800,1,'KRAST',],[63234846000,63247546800,63234871200,63247572000,25200,0,'KRAT',],[63247546800,63266295600,63247575600,63266324400,28800,1,'KRAST',],[63266295600,63278996400,63266320800,63279021600,25200,0,'KRAT',],[63278996400,63297745200,63279025200,63297774000,28800,1,'KRAST',],[63297745200,63310446000,63297770400,63310471200,25200,0,'KRAT',],[63310446000,63329194800,63310474800,63329223600,28800,1,'KRAST',],[63329194800,63342500400,63329220000,63342525600,25200,0,'KRAT',],[63342500400,63360644400,63342529200,63360673200,28800,1,'KRAST',],[63360644400,63373950000,63360669600,63373975200,25200,0,'KRAT',],[63373950000,63392094000,63373978800,63392122800,28800,1,'KRAST',],[63392094000,63405399600,63392119200,63405424800,25200,0,'KRAT',],[63405399600,63424152000,63405424800,63424177200,25200,1,'NOVST',],[63424152000,63436852800,63424173600,63436874400,21600,0,'NOVT',],[63436852800,63549946800,63436878000,63549972000,25200,0,'NOVT',],[63549946800,DateTime::TimeZone::INFINITY,63549972000,DateTime::TimeZone::INFINITY,25200,0,'KRAT',],];sub olson_version {'2016a'}sub has_dst_changes {30}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_NOVOKUZNETSK

$fatpacked{"DateTime/TimeZone/Asia/Novosibirsk.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_NOVOSIBIRSK';
  package DateTime::TimeZone::Asia::Novosibirsk;$DateTime::TimeZone::Asia::Novosibirsk::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Novosibirsk::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60556206500,DateTime::TimeZone::NEG_INFINITY,60556226400,19900,0,'LMT',],[60556206500,60888132000,60556228100,60888153600,21600,0,'NOVT',],[60888132000,62490589200,60888157200,62490614400,25200,0,'NOVT',],[62490589200,62506396800,62490618000,62506425600,28800,1,'NOVST',],[62506396800,62522125200,62506422000,62522150400,25200,0,'NOVT',],[62522125200,62537932800,62522154000,62537961600,28800,1,'NOVST',],[62537932800,62553661200,62537958000,62553686400,25200,0,'NOVT',],[62553661200,62569468800,62553690000,62569497600,28800,1,'NOVST',],[62569468800,62585283600,62569494000,62585308800,25200,0,'NOVT',],[62585283600,62601015600,62585312400,62601044400,28800,1,'NOVST',],[62601015600,62616740400,62601040800,62616765600,25200,0,'NOVT',],[62616740400,62632465200,62616769200,62632494000,28800,1,'NOVST',],[62632465200,62648190000,62632490400,62648215200,25200,0,'NOVT',],[62648190000,62663914800,62648218800,62663943600,28800,1,'NOVST',],[62663914800,62679639600,62663940000,62679664800,25200,0,'NOVT',],[62679639600,62695364400,62679668400,62695393200,28800,1,'NOVST',],[62695364400,62711089200,62695389600,62711114400,25200,0,'NOVT',],[62711089200,62726814000,62711118000,62726842800,28800,1,'NOVST',],[62726814000,62742538800,62726839200,62742564000,25200,0,'NOVT',],[62742538800,62758263600,62742567600,62758292400,28800,1,'NOVST',],[62758263600,62773988400,62758288800,62774013600,25200,0,'NOVT',],[62773988400,62790318000,62774017200,62790346800,28800,1,'NOVST',],[62790318000,62806042800,62790343200,62806068000,25200,0,'NOVT',],[62806042800,62821771200,62806068000,62821796400,25200,1,'NOVST',],[62821771200,62831448000,62821792800,62831469600,21600,0,'NOVT',],[62831448000,62837481600,62831473200,62837506800,25200,0,'NOVT',],[62837481600,62853202800,62837510400,62853231600,28800,1,'NOVST',],[62853202800,62868942000,62853228000,62868967200,25200,0,'NOVT',],[62868942000,62873769600,62868970800,62873798400,28800,1,'NOVST',],[62873769600,62884670400,62873794800,62884695600,25200,1,'NOVST',],[62884670400,62900395200,62884692000,62900416800,21600,0,'NOVT',],[62900395200,62916120000,62900420400,62916145200,25200,1,'NOVST',],[62916120000,62931844800,62916141600,62931866400,21600,0,'NOVT',],[62931844800,62947569600,62931870000,62947594800,25200,1,'NOVST',],[62947569600,62963899200,62947591200,62963920800,21600,0,'NOVT',],[62963899200,62982043200,62963924400,62982068400,25200,1,'NOVST',],[62982043200,62995348800,62982064800,62995370400,21600,0,'NOVT',],[62995348800,63013492800,62995374000,63013518000,25200,1,'NOVST',],[63013492800,63026798400,63013514400,63026820000,21600,0,'NOVT',],[63026798400,63044942400,63026823600,63044967600,25200,1,'NOVST',],[63044942400,63058248000,63044964000,63058269600,21600,0,'NOVT',],[63058248000,63076996800,63058273200,63077022000,25200,1,'NOVST',],[63076996800,63089697600,63077018400,63089719200,21600,0,'NOVT',],[63089697600,63108446400,63089722800,63108471600,25200,1,'NOVST',],[63108446400,63121147200,63108468000,63121168800,21600,0,'NOVT',],[63121147200,63139896000,63121172400,63139921200,25200,1,'NOVST',],[63139896000,63153201600,63139917600,63153223200,21600,0,'NOVT',],[63153201600,63171345600,63153226800,63171370800,25200,1,'NOVST',],[63171345600,63184651200,63171367200,63184672800,21600,0,'NOVT',],[63184651200,63202795200,63184676400,63202820400,25200,1,'NOVST',],[63202795200,63216100800,63202816800,63216122400,21600,0,'NOVT',],[63216100800,63234849600,63216126000,63234874800,25200,1,'NOVST',],[63234849600,63247550400,63234871200,63247572000,21600,0,'NOVT',],[63247550400,63266299200,63247575600,63266324400,25200,1,'NOVST',],[63266299200,63279000000,63266320800,63279021600,21600,0,'NOVT',],[63279000000,63297748800,63279025200,63297774000,25200,1,'NOVST',],[63297748800,63310449600,63297770400,63310471200,21600,0,'NOVT',],[63310449600,63329198400,63310474800,63329223600,25200,1,'NOVST',],[63329198400,63342504000,63329220000,63342525600,21600,0,'NOVT',],[63342504000,63360648000,63342529200,63360673200,25200,1,'NOVST',],[63360648000,63373953600,63360669600,63373975200,21600,0,'NOVT',],[63373953600,63392097600,63373978800,63392122800,25200,1,'NOVST',],[63392097600,63405403200,63392119200,63405424800,21600,0,'NOVT',],[63405403200,63424152000,63405428400,63424177200,25200,1,'NOVST',],[63424152000,63436852800,63424173600,63436874400,21600,0,'NOVT',],[63436852800,63549946800,63436878000,63549972000,25200,0,'NOVT',],[63549946800,DateTime::TimeZone::INFINITY,63549968400,DateTime::TimeZone::INFINITY,21600,0,'NOVT',],];sub olson_version {'2016a'}sub has_dst_changes {31}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_NOVOSIBIRSK

$fatpacked{"DateTime/TimeZone/Asia/Omsk.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_OMSK';
  package DateTime::TimeZone::Asia::Omsk;$DateTime::TimeZone::Asia::Omsk::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Omsk::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60553595190,DateTime::TimeZone::NEG_INFINITY,60553612800,17610,0,'LMT',],[60553595190,60888135600,60553613190,60888153600,18000,0,'OMST',],[60888135600,62490592800,60888157200,62490614400,21600,0,'OMST',],[62490592800,62506400400,62490618000,62506425600,25200,1,'OMSST',],[62506400400,62522128800,62506422000,62522150400,21600,0,'OMST',],[62522128800,62537936400,62522154000,62537961600,25200,1,'OMSST',],[62537936400,62553664800,62537958000,62553686400,21600,0,'OMST',],[62553664800,62569472400,62553690000,62569497600,25200,1,'OMSST',],[62569472400,62585287200,62569494000,62585308800,21600,0,'OMST',],[62585287200,62601019200,62585312400,62601044400,25200,1,'OMSST',],[62601019200,62616744000,62601040800,62616765600,21600,0,'OMST',],[62616744000,62632468800,62616769200,62632494000,25200,1,'OMSST',],[62632468800,62648193600,62632490400,62648215200,21600,0,'OMST',],[62648193600,62663918400,62648218800,62663943600,25200,1,'OMSST',],[62663918400,62679643200,62663940000,62679664800,21600,0,'OMST',],[62679643200,62695368000,62679668400,62695393200,25200,1,'OMSST',],[62695368000,62711092800,62695389600,62711114400,21600,0,'OMST',],[62711092800,62726817600,62711118000,62726842800,25200,1,'OMSST',],[62726817600,62742542400,62726839200,62742564000,21600,0,'OMST',],[62742542400,62758267200,62742567600,62758292400,25200,1,'OMSST',],[62758267200,62773992000,62758288800,62774013600,21600,0,'OMST',],[62773992000,62790321600,62774017200,62790346800,25200,1,'OMSST',],[62790321600,62806046400,62790343200,62806068000,21600,0,'OMST',],[62806046400,62821774800,62806068000,62821796400,21600,1,'OMSST',],[62821774800,62831451600,62821792800,62831469600,18000,0,'OMST',],[62831451600,62837485200,62831473200,62837506800,21600,0,'OMST',],[62837485200,62853206400,62837510400,62853231600,25200,1,'OMSST',],[62853206400,62868945600,62853228000,62868967200,21600,0,'OMST',],[62868945600,62884670400,62868970800,62884695600,25200,1,'OMSST',],[62884670400,62900395200,62884692000,62900416800,21600,0,'OMST',],[62900395200,62916120000,62900420400,62916145200,25200,1,'OMSST',],[62916120000,62931844800,62916141600,62931866400,21600,0,'OMST',],[62931844800,62947569600,62931870000,62947594800,25200,1,'OMSST',],[62947569600,62963899200,62947591200,62963920800,21600,0,'OMST',],[62963899200,62982043200,62963924400,62982068400,25200,1,'OMSST',],[62982043200,62995348800,62982064800,62995370400,21600,0,'OMST',],[62995348800,63013492800,62995374000,63013518000,25200,1,'OMSST',],[63013492800,63026798400,63013514400,63026820000,21600,0,'OMST',],[63026798400,63044942400,63026823600,63044967600,25200,1,'OMSST',],[63044942400,63058248000,63044964000,63058269600,21600,0,'OMST',],[63058248000,63076996800,63058273200,63077022000,25200,1,'OMSST',],[63076996800,63089697600,63077018400,63089719200,21600,0,'OMST',],[63089697600,63108446400,63089722800,63108471600,25200,1,'OMSST',],[63108446400,63121147200,63108468000,63121168800,21600,0,'OMST',],[63121147200,63139896000,63121172400,63139921200,25200,1,'OMSST',],[63139896000,63153201600,63139917600,63153223200,21600,0,'OMST',],[63153201600,63171345600,63153226800,63171370800,25200,1,'OMSST',],[63171345600,63184651200,63171367200,63184672800,21600,0,'OMST',],[63184651200,63202795200,63184676400,63202820400,25200,1,'OMSST',],[63202795200,63216100800,63202816800,63216122400,21600,0,'OMST',],[63216100800,63234849600,63216126000,63234874800,25200,1,'OMSST',],[63234849600,63247550400,63234871200,63247572000,21600,0,'OMST',],[63247550400,63266299200,63247575600,63266324400,25200,1,'OMSST',],[63266299200,63279000000,63266320800,63279021600,21600,0,'OMST',],[63279000000,63297748800,63279025200,63297774000,25200,1,'OMSST',],[63297748800,63310449600,63297770400,63310471200,21600,0,'OMST',],[63310449600,63329198400,63310474800,63329223600,25200,1,'OMSST',],[63329198400,63342504000,63329220000,63342525600,21600,0,'OMST',],[63342504000,63360648000,63342529200,63360673200,25200,1,'OMSST',],[63360648000,63373953600,63360669600,63373975200,21600,0,'OMST',],[63373953600,63392097600,63373978800,63392122800,25200,1,'OMSST',],[63392097600,63405403200,63392119200,63405424800,21600,0,'OMST',],[63405403200,63424152000,63405428400,63424177200,25200,1,'OMSST',],[63424152000,63436852800,63424173600,63436874400,21600,0,'OMST',],[63436852800,63549946800,63436878000,63549972000,25200,0,'OMST',],[63549946800,DateTime::TimeZone::INFINITY,63549968400,DateTime::TimeZone::INFINITY,21600,0,'OMST',],];sub olson_version {'2016a'}sub has_dst_changes {30}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_OMSK

$fatpacked{"DateTime/TimeZone/Asia/Oral.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_ORAL';
  package DateTime::TimeZone::Asia::Oral;$DateTime::TimeZone::Asia::Oral::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Oral::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60694518876,DateTime::TimeZone::NEG_INFINITY,60694531200,12324,0,'LMT',],[60694518876,60888139200,60694533276,60888153600,14400,0,'URAT',],[60888139200,62490596400,60888157200,62490614400,18000,0,'URAT',],[62490596400,62506404000,62490618000,62506425600,21600,1,'URAST',],[62506404000,62522128800,62506425600,62522150400,21600,0,'URAT',],[62522128800,62537940000,62522150400,62537961600,21600,1,'URAST',],[62537940000,62553668400,62537958000,62553686400,18000,0,'URAT',],[62553668400,62569476000,62553690000,62569497600,21600,1,'URAST',],[62569476000,62585290800,62569494000,62585308800,18000,0,'URAT',],[62585290800,62601022800,62585312400,62601044400,21600,1,'URAST',],[62601022800,62616747600,62601040800,62616765600,18000,0,'URAT',],[62616747600,62632472400,62616769200,62632494000,21600,1,'URAST',],[62632472400,62648197200,62632490400,62648215200,18000,0,'URAT',],[62648197200,62663922000,62648218800,62663943600,21600,1,'URAST',],[62663922000,62679646800,62663940000,62679664800,18000,0,'URAT',],[62679646800,62695371600,62679668400,62695393200,21600,1,'URAST',],[62695371600,62711096400,62695389600,62711114400,18000,0,'URAT',],[62711096400,62726821200,62711118000,62726842800,21600,1,'URAST',],[62726821200,62742546000,62726839200,62742564000,18000,0,'URAT',],[62742546000,62758274400,62742564000,62758292400,18000,1,'URAST',],[62758274400,62773999200,62758288800,62774013600,14400,0,'URAT',],[62773999200,62790328800,62774017200,62790346800,18000,1,'URAST',],[62790328800,62798356800,62790343200,62798371200,14400,0,'URAT',],[62798356800,62828510400,62798371200,62828524800,14400,0,'URAT',],[62828510400,62837492400,62828524800,62837506800,14400,0,'ORAT',],[62837492400,62853213600,62837510400,62853231600,18000,1,'ORAST',],[62853213600,62868952800,62853228000,62868967200,14400,0,'ORAT',],[62868952800,62884677600,62868970800,62884695600,18000,1,'ORAST',],[62884677600,62900402400,62884692000,62900416800,14400,0,'ORAT',],[62900402400,62916127200,62900420400,62916145200,18000,1,'ORAST',],[62916127200,62931852000,62916141600,62931866400,14400,0,'ORAT',],[62931852000,62947576800,62931870000,62947594800,18000,1,'ORAST',],[62947576800,62963906400,62947591200,62963920800,14400,0,'ORAT',],[62963906400,62982050400,62963924400,62982068400,18000,1,'ORAST',],[62982050400,62995356000,62982064800,62995370400,14400,0,'ORAT',],[62995356000,63013500000,62995374000,63013518000,18000,1,'ORAST',],[63013500000,63026805600,63013514400,63026820000,14400,0,'ORAT',],[63026805600,63044949600,63026823600,63044967600,18000,1,'ORAST',],[63044949600,63058255200,63044964000,63058269600,14400,0,'ORAT',],[63058255200,63077004000,63058273200,63077022000,18000,1,'ORAST',],[63077004000,63089704800,63077018400,63089719200,14400,0,'ORAT',],[63089704800,63108453600,63089722800,63108471600,18000,1,'ORAST',],[63108453600,63121154400,63108468000,63121168800,14400,0,'ORAT',],[63121154400,63139903200,63121172400,63139921200,18000,1,'ORAST',],[63139903200,63153208800,63139917600,63153223200,14400,0,'ORAT',],[63153208800,63171352800,63153226800,63171370800,18000,1,'ORAST',],[63171352800,63184658400,63171367200,63184672800,14400,0,'ORAT',],[63184658400,63202802400,63184676400,63202820400,18000,1,'ORAST',],[63202802400,63216108000,63202816800,63216122400,14400,0,'ORAT',],[63216108000,63234856800,63216126000,63234874800,18000,1,'ORAST',],[63234856800,63246513600,63234871200,63246528000,14400,0,'ORAT',],[63246513600,DateTime::TimeZone::INFINITY,63246531600,DateTime::TimeZone::INFINITY,18000,0,'ORAT',],];sub olson_version {'2016a'}sub has_dst_changes {23}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_ORAL

$fatpacked{"DateTime/TimeZone/Asia/Pontianak.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_PONTIANAK';
  package DateTime::TimeZone::Asia::Pontianak;$DateTime::TimeZone::Asia::Pontianak::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Pontianak::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60189496960,DateTime::TimeZone::NEG_INFINITY,60189523200,26240,0,'LMT',],[60189496960,60962776960,60189523200,60962803200,26240,0,'PMT',],[60962776960,61254462600,60962803960,61254489600,27000,0,'WIB',],[61254462600,61369628400,61254495000,61369660800,32400,0,'JST',],[61369628400,61451800200,61369655400,61451827200,27000,0,'WIB',],[61451800200,61514870400,61451829000,61514899200,28800,0,'WIB',],[61514870400,61946267400,61514897400,61946294400,27000,0,'WIB',],[61946267400,62703648000,61946296200,62703676800,28800,0,'WITA',],[62703648000,DateTime::TimeZone::INFINITY,62703673200,DateTime::TimeZone::INFINITY,25200,0,'WIB',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_PONTIANAK

$fatpacked{"DateTime/TimeZone/Asia/Pyongyang.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_PYONGYANG';
  package DateTime::TimeZone::Asia::Pyongyang;$DateTime::TimeZone::Asia::Pyongyang::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Pyongyang::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60186901020,DateTime::TimeZone::NEG_INFINITY,60186931200,30180,0,'LMT',],[60186901020,60305268600,60186931620,60305299200,30600,0,'KST',],[60305268600,61117858800,60305301000,61117891200,32400,0,'JCST',],[61117858800,61367036400,61117891200,61367068800,32400,0,'JST',],[61367036400,63575247600,61367068800,63575280000,32400,0,'KST',],[63575247600,DateTime::TimeZone::INFINITY,63575278200,DateTime::TimeZone::INFINITY,30600,0,'KST',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_PYONGYANG

$fatpacked{"DateTime/TimeZone/Asia/Qatar.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_QATAR';
  package DateTime::TimeZone::Asia::Qatar;$DateTime::TimeZone::Asia::Qatar::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Qatar::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60557747632,DateTime::TimeZone::NEG_INFINITY,60557760000,12368,0,'LMT',],[60557747632,62211873600,60557762032,62211888000,14400,0,'GST',],[62211873600,DateTime::TimeZone::INFINITY,62211884400,DateTime::TimeZone::INFINITY,10800,0,'AST',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_QATAR

$fatpacked{"DateTime/TimeZone/Asia/Qyzylorda.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_QYZYLORDA';
  package DateTime::TimeZone::Asia::Qyzylorda;$DateTime::TimeZone::Asia::Qyzylorda::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Qyzylorda::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60694515488,DateTime::TimeZone::NEG_INFINITY,60694531200,15712,0,'LMT',],[60694515488,60888139200,60694529888,60888153600,14400,0,'KIZT',],[60888139200,62490596400,60888157200,62490614400,18000,0,'KIZT',],[62490596400,62506404000,62490618000,62506425600,21600,1,'KIZST',],[62506404000,62522128800,62506425600,62522150400,21600,0,'KIZT',],[62522128800,62537940000,62522150400,62537961600,21600,1,'KIZST',],[62537940000,62553668400,62537958000,62553686400,18000,0,'KIZT',],[62553668400,62569476000,62553690000,62569497600,21600,1,'KIZST',],[62569476000,62585290800,62569494000,62585308800,18000,0,'KIZT',],[62585290800,62601022800,62585312400,62601044400,21600,1,'KIZST',],[62601022800,62616747600,62601040800,62616765600,18000,0,'KIZT',],[62616747600,62632472400,62616769200,62632494000,21600,1,'KIZST',],[62632472400,62648197200,62632490400,62648215200,18000,0,'KIZT',],[62648197200,62663922000,62648218800,62663943600,21600,1,'KIZST',],[62663922000,62679646800,62663940000,62679664800,18000,0,'KIZT',],[62679646800,62695371600,62679668400,62695393200,21600,1,'KIZST',],[62695371600,62711096400,62695389600,62711114400,18000,0,'KIZT',],[62711096400,62726821200,62711118000,62726842800,21600,1,'KIZST',],[62726821200,62742546000,62726839200,62742564000,18000,0,'KIZT',],[62742546000,62758270800,62742567600,62758292400,21600,1,'KIZST',],[62758270800,62773995600,62758288800,62774013600,18000,0,'KIZT',],[62773995600,62790325200,62774017200,62790346800,21600,1,'KIZST',],[62790325200,62798353200,62790343200,62798371200,18000,0,'KIZT',],[62798353200,62828506800,62798371200,62828524800,18000,0,'KIZT',],[62828506800,62831451600,62828524800,62831469600,18000,0,'QYZT',],[62831451600,62837485200,62831473200,62837506800,21600,0,'QYZT',],[62837485200,62853206400,62837510400,62853231600,25200,1,'QYZST',],[62853206400,62868945600,62853228000,62868967200,21600,0,'QYZT',],[62868945600,62884670400,62868970800,62884695600,25200,1,'QYZST',],[62884670400,62900395200,62884692000,62900416800,21600,0,'QYZT',],[62900395200,62916120000,62900420400,62916145200,25200,1,'QYZST',],[62916120000,62931844800,62916141600,62931866400,21600,0,'QYZT',],[62931844800,62947569600,62931870000,62947594800,25200,1,'QYZST',],[62947569600,62963899200,62947591200,62963920800,21600,0,'QYZT',],[62963899200,62982043200,62963924400,62982068400,25200,1,'QYZST',],[62982043200,62995348800,62982064800,62995370400,21600,0,'QYZT',],[62995348800,63013492800,62995374000,63013518000,25200,1,'QYZST',],[63013492800,63026798400,63013514400,63026820000,21600,0,'QYZT',],[63026798400,63044942400,63026823600,63044967600,25200,1,'QYZST',],[63044942400,63058248000,63044964000,63058269600,21600,0,'QYZT',],[63058248000,63076996800,63058273200,63077022000,25200,1,'QYZST',],[63076996800,63089697600,63077018400,63089719200,21600,0,'QYZT',],[63089697600,63108446400,63089722800,63108471600,25200,1,'QYZST',],[63108446400,63121147200,63108468000,63121168800,21600,0,'QYZT',],[63121147200,63139896000,63121172400,63139921200,25200,1,'QYZST',],[63139896000,63153201600,63139917600,63153223200,21600,0,'QYZT',],[63153201600,63171345600,63153226800,63171370800,25200,1,'QYZST',],[63171345600,63184651200,63171367200,63184672800,21600,0,'QYZT',],[63184651200,63202795200,63184676400,63202820400,25200,1,'QYZST',],[63202795200,63216100800,63202816800,63216122400,21600,0,'QYZT',],[63216100800,63234849600,63216126000,63234874800,25200,1,'QYZST',],[63234849600,63246506400,63234871200,63246528000,21600,0,'QYZT',],[63246506400,DateTime::TimeZone::INFINITY,63246528000,DateTime::TimeZone::INFINITY,21600,0,'QYZT',],];sub olson_version {'2016a'}sub has_dst_changes {23}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_QYZYLORDA

$fatpacked{"DateTime/TimeZone/Asia/Rangoon.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_RANGOON';
  package DateTime::TimeZone::Asia::Rangoon;$DateTime::TimeZone::Asia::Rangoon::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Rangoon::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59295519320,DateTime::TimeZone::NEG_INFINITY,59295542400,23080,0,'LMT',],[59295519320,60557736920,59295542400,60557760000,23080,0,'RMT',],[60557736920,61262415000,60557760320,61262438400,23400,0,'BURT',],[61262415000,61357273200,61262447400,61357305600,32400,0,'JST',],[61357273200,DateTime::TimeZone::INFINITY,61357296600,DateTime::TimeZone::INFINITY,23400,0,'MMT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_RANGOON

$fatpacked{"DateTime/TimeZone/Asia/Riyadh.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_RIYADH';
  package DateTime::TimeZone::Asia::Riyadh;$DateTime::TimeZone::Asia::Riyadh::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Riyadh::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,61416046388,DateTime::TimeZone::NEG_INFINITY,61416057600,11212,0,'LMT',],[61416046388,DateTime::TimeZone::INFINITY,61416057188,DateTime::TimeZone::INFINITY,10800,0,'AST',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_RIYADH

$fatpacked{"DateTime/TimeZone/Asia/Sakhalin.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_SAKHALIN';
  package DateTime::TimeZone::Asia::Sakhalin;$DateTime::TimeZone::Asia::Sakhalin::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Sakhalin::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60104644152,DateTime::TimeZone::NEG_INFINITY,60104678400,34248,0,'LMT',],[60104644152,61117858800,60104676552,61117891200,32400,0,'JCST',],[61117858800,61367122800,61117891200,61367155200,32400,0,'JST',],[61367122800,62490574800,61367162400,62490614400,39600,0,'SAKT',],[62490574800,62506382400,62490618000,62506425600,43200,1,'SAKST',],[62506382400,62522110800,62506422000,62522150400,39600,0,'SAKT',],[62522110800,62537918400,62522154000,62537961600,43200,1,'SAKST',],[62537918400,62553646800,62537958000,62553686400,39600,0,'SAKT',],[62553646800,62569454400,62553690000,62569497600,43200,1,'SAKST',],[62569454400,62585269200,62569494000,62585308800,39600,0,'SAKT',],[62585269200,62601001200,62585312400,62601044400,43200,1,'SAKST',],[62601001200,62616726000,62601040800,62616765600,39600,0,'SAKT',],[62616726000,62632450800,62616769200,62632494000,43200,1,'SAKST',],[62632450800,62648175600,62632490400,62648215200,39600,0,'SAKT',],[62648175600,62663900400,62648218800,62663943600,43200,1,'SAKST',],[62663900400,62679625200,62663940000,62679664800,39600,0,'SAKT',],[62679625200,62695350000,62679668400,62695393200,43200,1,'SAKST',],[62695350000,62711074800,62695389600,62711114400,39600,0,'SAKT',],[62711074800,62726799600,62711118000,62726842800,43200,1,'SAKST',],[62726799600,62742524400,62726839200,62742564000,39600,0,'SAKT',],[62742524400,62758249200,62742567600,62758292400,43200,1,'SAKST',],[62758249200,62773974000,62758288800,62774013600,39600,0,'SAKT',],[62773974000,62790303600,62774017200,62790346800,43200,1,'SAKST',],[62790303600,62806028400,62790343200,62806068000,39600,0,'SAKT',],[62806028400,62821756800,62806068000,62821796400,39600,1,'SAKST',],[62821756800,62831433600,62821792800,62831469600,36000,0,'SAKT',],[62831433600,62837467200,62831473200,62837506800,39600,0,'SAKT',],[62837467200,62853188400,62837510400,62853231600,43200,1,'SAKST',],[62853188400,62868927600,62853228000,62868967200,39600,0,'SAKT',],[62868927600,62884652400,62868970800,62884695600,43200,1,'SAKST',],[62884652400,62900377200,62884692000,62900416800,39600,0,'SAKT',],[62900377200,62916102000,62900420400,62916145200,43200,1,'SAKST',],[62916102000,62931826800,62916141600,62931866400,39600,0,'SAKT',],[62931826800,62947551600,62931870000,62947594800,43200,1,'SAKST',],[62947551600,62963881200,62947591200,62963920800,39600,0,'SAKT',],[62963881200,62982025200,62963924400,62982068400,43200,1,'SAKST',],[62982025200,62995330800,62982064800,62995370400,39600,0,'SAKT',],[62995330800,63013478400,62995370400,63013518000,39600,1,'SAKST',],[63013478400,63026784000,63013514400,63026820000,36000,0,'SAKT',],[63026784000,63044928000,63026823600,63044967600,39600,1,'SAKST',],[63044928000,63058233600,63044964000,63058269600,36000,0,'SAKT',],[63058233600,63076982400,63058273200,63077022000,39600,1,'SAKST',],[63076982400,63089683200,63077018400,63089719200,36000,0,'SAKT',],[63089683200,63108432000,63089722800,63108471600,39600,1,'SAKST',],[63108432000,63121132800,63108468000,63121168800,36000,0,'SAKT',],[63121132800,63139881600,63121172400,63139921200,39600,1,'SAKST',],[63139881600,63153187200,63139917600,63153223200,36000,0,'SAKT',],[63153187200,63171331200,63153226800,63171370800,39600,1,'SAKST',],[63171331200,63184636800,63171367200,63184672800,36000,0,'SAKT',],[63184636800,63202780800,63184676400,63202820400,39600,1,'SAKST',],[63202780800,63216086400,63202816800,63216122400,36000,0,'SAKT',],[63216086400,63234835200,63216126000,63234874800,39600,1,'SAKST',],[63234835200,63247536000,63234871200,63247572000,36000,0,'SAKT',],[63247536000,63266284800,63247575600,63266324400,39600,1,'SAKST',],[63266284800,63278985600,63266320800,63279021600,36000,0,'SAKT',],[63278985600,63297734400,63279025200,63297774000,39600,1,'SAKST',],[63297734400,63310435200,63297770400,63310471200,36000,0,'SAKT',],[63310435200,63329184000,63310474800,63329223600,39600,1,'SAKST',],[63329184000,63342489600,63329220000,63342525600,36000,0,'SAKT',],[63342489600,63360633600,63342529200,63360673200,39600,1,'SAKST',],[63360633600,63373939200,63360669600,63373975200,36000,0,'SAKT',],[63373939200,63392083200,63373978800,63392122800,39600,1,'SAKST',],[63392083200,63405388800,63392119200,63405424800,36000,0,'SAKT',],[63405388800,63424137600,63405428400,63424177200,39600,1,'SAKST',],[63424137600,63436838400,63424173600,63436874400,36000,0,'SAKT',],[63436838400,63549932400,63436878000,63549972000,39600,0,'SAKT',],[63549932400,DateTime::TimeZone::INFINITY,63549968400,DateTime::TimeZone::INFINITY,36000,0,'SAKT',],];sub olson_version {'2016a'}sub has_dst_changes {30}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_SAKHALIN

$fatpacked{"DateTime/TimeZone/Asia/Samarkand.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_SAMARKAND';
  package DateTime::TimeZone::Asia::Samarkand;$DateTime::TimeZone::Asia::Samarkand::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Samarkand::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60694515127,DateTime::TimeZone::NEG_INFINITY,60694531200,16073,0,'LMT',],[60694515127,60888139200,60694529527,60888153600,14400,0,'SAMT',],[60888139200,62490596400,60888157200,62490614400,18000,0,'SAMT',],[62490596400,62506404000,62490618000,62506425600,21600,1,'SAMST',],[62506404000,62522128800,62506425600,62522150400,21600,0,'TAST',],[62522128800,62537940000,62522150400,62537961600,21600,1,'SAMST',],[62537940000,62553668400,62537958000,62553686400,18000,0,'SAMT',],[62553668400,62569476000,62553690000,62569497600,21600,1,'SAMST',],[62569476000,62585290800,62569494000,62585308800,18000,0,'SAMT',],[62585290800,62601022800,62585312400,62601044400,21600,1,'SAMST',],[62601022800,62616747600,62601040800,62616765600,18000,0,'SAMT',],[62616747600,62632472400,62616769200,62632494000,21600,1,'SAMST',],[62632472400,62648197200,62632490400,62648215200,18000,0,'SAMT',],[62648197200,62663922000,62648218800,62663943600,21600,1,'SAMST',],[62663922000,62679646800,62663940000,62679664800,18000,0,'SAMT',],[62679646800,62695371600,62679668400,62695393200,21600,1,'SAMST',],[62695371600,62711096400,62695389600,62711114400,18000,0,'SAMT',],[62711096400,62726821200,62711118000,62726842800,21600,1,'SAMST',],[62726821200,62742546000,62726839200,62742564000,18000,0,'SAMT',],[62742546000,62758270800,62742567600,62758292400,21600,1,'SAMST',],[62758270800,62773995600,62758288800,62774013600,18000,0,'SAMT',],[62773995600,62790325200,62774017200,62790346800,21600,1,'SAMST',],[62790325200,62806050000,62790343200,62806068000,18000,0,'SAMT',],[62806050000,62819344800,62806071600,62819366400,21600,1,'SAMST',],[62819344800,62821774800,62819366400,62821796400,21600,1,'UZST',],[62821774800,62829889200,62821792800,62829907200,18000,0,'UZT',],[62829889200,DateTime::TimeZone::INFINITY,62829907200,DateTime::TimeZone::INFINITY,18000,0,'UZT',],];sub olson_version {'2016a'}sub has_dst_changes {12}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_SAMARKAND

$fatpacked{"DateTime/TimeZone/Asia/Seoul.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_SEOUL';
  package DateTime::TimeZone::Asia::Seoul;$DateTime::TimeZone::Asia::Seoul::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Seoul::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60186900728,DateTime::TimeZone::NEG_INFINITY,60186931200,30472,0,'LMT',],[60186900728,60305268600,60186931328,60305299200,30600,0,'KST',],[60305268600,61117858800,60305301000,61117891200,32400,0,'JCST',],[61117858800,61368332400,61117891200,61368364800,32400,0,'JST',],[61368332400,61637554800,61368364800,61637587200,32400,0,'KST',],[61637554800,61672980600,61637585400,61673011200,30600,0,'KST',],[61672980600,61683949800,61673014800,61683984000,34200,1,'KDT',],[61683949800,61705899000,61683980400,61705929600,30600,0,'KST',],[61705899000,61717386600,61705933200,61717420800,34200,1,'KDT',],[61717386600,61736139000,61717417200,61736169600,30600,0,'KST',],[61736139000,61748231400,61736173200,61748265600,34200,1,'KDT',],[61748231400,61767588600,61748262000,61767619200,30600,0,'KST',],[61767588600,61779681000,61767622800,61779715200,34200,1,'KDT',],[61779681000,61799038200,61779711600,61799068800,30600,0,'KST',],[61799038200,61811130600,61799072400,61811164800,34200,1,'KDT',],[61811130600,61830487800,61811161200,61830518400,30600,0,'KST',],[61830487800,61842580200,61830522000,61842614400,34200,1,'KDT',],[61842580200,61870750200,61842610800,61870780800,30600,0,'KST',],[61870750200,62683261200,61870782600,62683293600,32400,0,'KST',],[62683261200,62696566800,62683297200,62696602800,36000,1,'KDT',],[62696566800,62714710800,62696599200,62714743200,32400,0,'KST',],[62714710800,62728016400,62714746800,62728052400,36000,1,'KDT',],[62728016400,DateTime::TimeZone::INFINITY,62728048800,DateTime::TimeZone::INFINITY,32400,0,'KST',],];sub olson_version {'2016a'}sub has_dst_changes {8}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_SEOUL

$fatpacked{"DateTime/TimeZone/Asia/Shanghai.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_SHANGHAI';
  package DateTime::TimeZone::Asia::Shanghai;$DateTime::TimeZone::Asia::Shanghai::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Shanghai::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59958201257,DateTime::TimeZone::NEG_INFINITY,59958230400,29143,0,'LMT',],[59958201257,61202188800,59958230057,61202217600,28800,0,'CST',],[61202188800,61212553200,61202221200,61212585600,32400,1,'CDT',],[61212553200,61226899200,61212582000,61226928000,28800,0,'CST',],[61226899200,61244089200,61226931600,61244121600,32400,1,'CDT',],[61244089200,61472966400,61244118000,61472995200,28800,0,'CST',],[61472966400,62651203200,61472995200,62651232000,28800,0,'CST',],[62651203200,62662690800,62651235600,62662723200,32400,1,'CDT',],[62662690800,62680838400,62662719600,62680867200,28800,0,'CST',],[62680838400,62694140400,62680870800,62694172800,32400,1,'CDT',],[62694140400,62712288000,62694169200,62712316800,28800,0,'CST',],[62712288000,62725590000,62712320400,62725622400,32400,1,'CDT',],[62725590000,62744342400,62725618800,62744371200,28800,0,'CST',],[62744342400,62757644400,62744374800,62757676800,32400,1,'CDT',],[62757644400,62775792000,62757673200,62775820800,28800,0,'CST',],[62775792000,62789094000,62775824400,62789126400,32400,1,'CDT',],[62789094000,62807241600,62789122800,62807270400,28800,0,'CST',],[62807241600,62820543600,62807274000,62820576000,32400,1,'CDT',],[62820543600,DateTime::TimeZone::INFINITY,62820572400,DateTime::TimeZone::INFINITY,28800,0,'CST',],];sub olson_version {'2016a'}sub has_dst_changes {8}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_SHANGHAI

$fatpacked{"DateTime/TimeZone/Asia/Singapore.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_SINGAPORE';
  package DateTime::TimeZone::Asia::Singapore;$DateTime::TimeZone::Asia::Singapore::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Singapore::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59958205475,DateTime::TimeZone::NEG_INFINITY,59958230400,24925,0,'LMT',],[59958205475,60097482275,59958230400,60097507200,24925,0,'SMT',],[60097482275,60968048400,60097507475,60968073600,25200,0,'MALT',],[60968048400,61062655200,60968074800,61062681600,26400,1,'MALST',],[61062655200,61241503200,61062681600,61241529600,26400,0,'MALT',],[61241503200,61256017800,61241530200,61256044800,27000,0,'MALT',],[61256017800,61368678000,61256050200,61368710400,32400,0,'JST',],[61368678000,61996897800,61368705000,61996924800,27000,0,'MALT',],[61996897800,62514347400,61996924800,62514374400,27000,0,'SGT',],[62514347400,DateTime::TimeZone::INFINITY,62514376200,DateTime::TimeZone::INFINITY,28800,0,'SGT',],];sub olson_version {'2016a'}sub has_dst_changes {1}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_SINGAPORE

$fatpacked{"DateTime/TimeZone/Asia/Srednekolymsk.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_SREDNEKOLYMSK';
  package DateTime::TimeZone::Asia::Srednekolymsk;$DateTime::TimeZone::Asia::Srednekolymsk::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Srednekolymsk::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60694494308,DateTime::TimeZone::NEG_INFINITY,60694531200,36892,0,'LMT',],[60694494308,60888117600,60694530308,60888153600,36000,0,'MAGT',],[60888117600,62490574800,60888157200,62490614400,39600,0,'MAGT',],[62490574800,62506382400,62490618000,62506425600,43200,1,'MAGST',],[62506382400,62522110800,62506422000,62522150400,39600,0,'MAGT',],[62522110800,62537918400,62522154000,62537961600,43200,1,'MAGST',],[62537918400,62553646800,62537958000,62553686400,39600,0,'MAGT',],[62553646800,62569454400,62553690000,62569497600,43200,1,'MAGST',],[62569454400,62585269200,62569494000,62585308800,39600,0,'MAGT',],[62585269200,62601001200,62585312400,62601044400,43200,1,'MAGST',],[62601001200,62616726000,62601040800,62616765600,39600,0,'MAGT',],[62616726000,62632450800,62616769200,62632494000,43200,1,'MAGST',],[62632450800,62648175600,62632490400,62648215200,39600,0,'MAGT',],[62648175600,62663900400,62648218800,62663943600,43200,1,'MAGST',],[62663900400,62679625200,62663940000,62679664800,39600,0,'MAGT',],[62679625200,62695350000,62679668400,62695393200,43200,1,'MAGST',],[62695350000,62711074800,62695389600,62711114400,39600,0,'MAGT',],[62711074800,62726799600,62711118000,62726842800,43200,1,'MAGST',],[62726799600,62742524400,62726839200,62742564000,39600,0,'MAGT',],[62742524400,62758249200,62742567600,62758292400,43200,1,'MAGST',],[62758249200,62773974000,62758288800,62774013600,39600,0,'MAGT',],[62773974000,62790303600,62774017200,62790346800,43200,1,'MAGST',],[62790303600,62806028400,62790343200,62806068000,39600,0,'MAGT',],[62806028400,62821756800,62806068000,62821796400,39600,1,'MAGST',],[62821756800,62831433600,62821792800,62831469600,36000,0,'MAGT',],[62831433600,62837467200,62831473200,62837506800,39600,0,'MAGT',],[62837467200,62853188400,62837510400,62853231600,43200,1,'MAGST',],[62853188400,62868927600,62853228000,62868967200,39600,0,'MAGT',],[62868927600,62884652400,62868970800,62884695600,43200,1,'MAGST',],[62884652400,62900377200,62884692000,62900416800,39600,0,'MAGT',],[62900377200,62916102000,62900420400,62916145200,43200,1,'MAGST',],[62916102000,62931826800,62916141600,62931866400,39600,0,'MAGT',],[62931826800,62947551600,62931870000,62947594800,43200,1,'MAGST',],[62947551600,62963881200,62947591200,62963920800,39600,0,'MAGT',],[62963881200,62982025200,62963924400,62982068400,43200,1,'MAGST',],[62982025200,62995330800,62982064800,62995370400,39600,0,'MAGT',],[62995330800,63013474800,62995374000,63013518000,43200,1,'MAGST',],[63013474800,63026780400,63013514400,63026820000,39600,0,'MAGT',],[63026780400,63044924400,63026823600,63044967600,43200,1,'MAGST',],[63044924400,63058230000,63044964000,63058269600,39600,0,'MAGT',],[63058230000,63076978800,63058273200,63077022000,43200,1,'MAGST',],[63076978800,63089679600,63077018400,63089719200,39600,0,'MAGT',],[63089679600,63108428400,63089722800,63108471600,43200,1,'MAGST',],[63108428400,63121129200,63108468000,63121168800,39600,0,'MAGT',],[63121129200,63139878000,63121172400,63139921200,43200,1,'MAGST',],[63139878000,63153183600,63139917600,63153223200,39600,0,'MAGT',],[63153183600,63171327600,63153226800,63171370800,43200,1,'MAGST',],[63171327600,63184633200,63171367200,63184672800,39600,0,'MAGT',],[63184633200,63202777200,63184676400,63202820400,43200,1,'MAGST',],[63202777200,63216082800,63202816800,63216122400,39600,0,'MAGT',],[63216082800,63234831600,63216126000,63234874800,43200,1,'MAGST',],[63234831600,63247532400,63234871200,63247572000,39600,0,'MAGT',],[63247532400,63266281200,63247575600,63266324400,43200,1,'MAGST',],[63266281200,63278982000,63266320800,63279021600,39600,0,'MAGT',],[63278982000,63297730800,63279025200,63297774000,43200,1,'MAGST',],[63297730800,63310431600,63297770400,63310471200,39600,0,'MAGT',],[63310431600,63329180400,63310474800,63329223600,43200,1,'MAGST',],[63329180400,63342486000,63329220000,63342525600,39600,0,'MAGT',],[63342486000,63360630000,63342529200,63360673200,43200,1,'MAGST',],[63360630000,63373935600,63360669600,63373975200,39600,0,'MAGT',],[63373935600,63392079600,63373978800,63392122800,43200,1,'MAGST',],[63392079600,63405385200,63392119200,63405424800,39600,0,'MAGT',],[63405385200,63424134000,63405428400,63424177200,43200,1,'MAGST',],[63424134000,63436834800,63424173600,63436874400,39600,0,'MAGT',],[63436834800,63549928800,63436878000,63549972000,43200,0,'MAGT',],[63549928800,DateTime::TimeZone::INFINITY,63549968400,DateTime::TimeZone::INFINITY,39600,0,'SRET',],];sub olson_version {'2016a'}sub has_dst_changes {30}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_SREDNEKOLYMSK

$fatpacked{"DateTime/TimeZone/Asia/Taipei.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_TAIPEI';
  package DateTime::TimeZone::Asia::Taipei;$DateTime::TimeZone::Asia::Taipei::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Taipei::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59800434840,DateTime::TimeZone::NEG_INFINITY,59800464000,29160,0,'LMT',],[59800434840,61117862400,59800463640,61117891200,28800,0,'JWST',],[61117862400,61369459200,61117894800,61369491600,32400,0,'JST',],[61369459200,61389849600,61369488000,61389878400,28800,0,'CST',],[61389849600,61401855600,61389882000,61401888000,32400,1,'CDT',],[61401855600,61418793600,61401884400,61418822400,28800,0,'CST',],[61418793600,61436070000,61418826000,61436102400,32400,1,'CDT',],[61436070000,61451798400,61436098800,61451827200,28800,0,'CST',],[61451798400,61465014000,61451830800,61465046400,32400,1,'CDT',],[61465014000,61483334400,61465042800,61483363200,28800,0,'CST',],[61483334400,61496550000,61483366800,61496582400,32400,1,'CDT',],[61496550000,61514870400,61496578800,61514899200,28800,0,'CST',],[61514870400,61528086000,61514902800,61528118400,32400,1,'CDT',],[61528086000,61546406400,61528114800,61546435200,28800,0,'CST',],[61546406400,61559622000,61546438800,61559654400,32400,1,'CDT',],[61559622000,61572758400,61559650800,61572787200,28800,0,'CST',],[61572758400,61593922800,61572790800,61593955200,32400,1,'CDT',],[61593922800,61606972800,61593951600,61607001600,28800,0,'CST',],[61606972800,61625458800,61607005200,61625491200,32400,1,'CDT',],[61625458800,61638508800,61625487600,61638537600,28800,0,'CST',],[61638508800,61656994800,61638541200,61657027200,32400,1,'CDT',],[61656994800,61670044800,61657023600,61670073600,28800,0,'CST',],[61670044800,61685852400,61670077200,61685884800,32400,1,'CDT',],[61685852400,61701667200,61685881200,61701696000,28800,0,'CST',],[61701667200,61717474800,61701699600,61717507200,32400,1,'CDT',],[61717474800,61733203200,61717503600,61733232000,28800,0,'CST',],[61733203200,61749010800,61733235600,61749043200,32400,1,'CDT',],[61749010800,61764739200,61749039600,61764768000,28800,0,'CST',],[61764739200,61780546800,61764771600,61780579200,32400,1,'CDT',],[61780546800,61796275200,61780575600,61796304000,28800,0,'CST',],[61796275200,61812082800,61796307600,61812115200,32400,1,'CDT',],[61812082800,61833168000,61812111600,61833196800,28800,0,'CST',],[61833168000,61843705200,61833200400,61843737600,32400,1,'CDT',],[61843705200,61864704000,61843734000,61864732800,28800,0,'CST',],[61864704000,61875241200,61864736400,61875273600,32400,1,'CDT',],[61875241200,62269660800,61875270000,62269689600,28800,0,'CST',],[62269660800,62285468400,62269693200,62285500800,32400,1,'CDT',],[62285468400,62301196800,62285497200,62301225600,28800,0,'CST',],[62301196800,62317004400,62301229200,62317036800,32400,1,'CDT',],[62317004400,62435289600,62317033200,62435318400,28800,0,'CST',],[62435289600,62443234800,62435322000,62443267200,32400,1,'CDT',],[62443234800,DateTime::TimeZone::INFINITY,62443263600,DateTime::TimeZone::INFINITY,28800,0,'CST',],];sub olson_version {'2016a'}sub has_dst_changes {19}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_TAIPEI

$fatpacked{"DateTime/TimeZone/Asia/Tashkent.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_TASHKENT';
  package DateTime::TimeZone::Asia::Tashkent;$DateTime::TimeZone::Asia::Tashkent::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Tashkent::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60694514569,DateTime::TimeZone::NEG_INFINITY,60694531200,16631,0,'LMT',],[60694514569,60888135600,60694532569,60888153600,18000,0,'TAST',],[60888135600,62490592800,60888157200,62490614400,21600,0,'TAST',],[62490592800,62506400400,62490618000,62506425600,25200,1,'TASST',],[62506400400,62522128800,62506422000,62522150400,21600,0,'TAST',],[62522128800,62537936400,62522154000,62537961600,25200,1,'TASST',],[62537936400,62553664800,62537958000,62553686400,21600,0,'TAST',],[62553664800,62569472400,62553690000,62569497600,25200,1,'TASST',],[62569472400,62585287200,62569494000,62585308800,21600,0,'TAST',],[62585287200,62601019200,62585312400,62601044400,25200,1,'TASST',],[62601019200,62616744000,62601040800,62616765600,21600,0,'TAST',],[62616744000,62632468800,62616769200,62632494000,25200,1,'TASST',],[62632468800,62648193600,62632490400,62648215200,21600,0,'TAST',],[62648193600,62663918400,62648218800,62663943600,25200,1,'TASST',],[62663918400,62679643200,62663940000,62679664800,21600,0,'TAST',],[62679643200,62695368000,62679668400,62695393200,25200,1,'TASST',],[62695368000,62711092800,62695389600,62711114400,21600,0,'TAST',],[62711092800,62726817600,62711118000,62726842800,25200,1,'TASST',],[62726817600,62742542400,62726839200,62742564000,21600,0,'TAST',],[62742542400,62758267200,62742567600,62758292400,25200,1,'TASST',],[62758267200,62773992000,62758288800,62774013600,21600,0,'TAST',],[62773992000,62790321600,62774017200,62790346800,25200,1,'TASST',],[62790321600,62806046400,62790343200,62806068000,21600,0,'TAST',],[62806046400,62819344800,62806068000,62819366400,21600,1,'TASST',],[62819344800,62821774800,62819366400,62821796400,21600,1,'UZST',],[62821774800,62829889200,62821792800,62829907200,18000,0,'UZT',],[62829889200,DateTime::TimeZone::INFINITY,62829907200,DateTime::TimeZone::INFINITY,18000,0,'UZT',],];sub olson_version {'2016a'}sub has_dst_changes {12}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_TASHKENT

$fatpacked{"DateTime/TimeZone/Asia/Tbilisi.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_TBILISI';
  package DateTime::TimeZone::Asia::Tbilisi;$DateTime::TimeZone::Asia::Tbilisi::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Tbilisi::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59295531649,DateTime::TimeZone::NEG_INFINITY,59295542400,10751,0,'LMT',],[59295531649,60694520449,59295542400,60694531200,10751,0,'TBMT',],[60694520449,61730542800,60694531249,61730553600,10800,0,'TBIT',],[61730542800,62490600000,61730557200,62490614400,14400,0,'TBIT',],[62490600000,62506407600,62490618000,62506425600,18000,1,'TBIST',],[62506407600,62522136000,62506422000,62522150400,14400,0,'TBIT',],[62522136000,62537943600,62522154000,62537961600,18000,1,'TBIST',],[62537943600,62553672000,62537958000,62553686400,14400,0,'TBIT',],[62553672000,62569479600,62553690000,62569497600,18000,1,'TBIST',],[62569479600,62585294400,62569494000,62585308800,14400,0,'TBIT',],[62585294400,62601026400,62585312400,62601044400,18000,1,'TBIST',],[62601026400,62616751200,62601040800,62616765600,14400,0,'TBIT',],[62616751200,62632476000,62616769200,62632494000,18000,1,'TBIST',],[62632476000,62648200800,62632490400,62648215200,14400,0,'TBIT',],[62648200800,62663925600,62648218800,62663943600,18000,1,'TBIST',],[62663925600,62679650400,62663940000,62679664800,14400,0,'TBIT',],[62679650400,62695375200,62679668400,62695393200,18000,1,'TBIST',],[62695375200,62711100000,62695389600,62711114400,14400,0,'TBIT',],[62711100000,62726824800,62711118000,62726842800,18000,1,'TBIST',],[62726824800,62742549600,62726839200,62742564000,14400,0,'TBIT',],[62742549600,62758274400,62742567600,62758292400,18000,1,'TBIST',],[62758274400,62773999200,62758288800,62774013600,14400,0,'TBIT',],[62773999200,62790328800,62774017200,62790346800,18000,1,'TBIST',],[62790328800,62806053600,62790343200,62806068000,14400,0,'TBIT',],[62806053600,62806824000,62806068000,62806838400,14400,1,'TBIST',],[62806824000,62821782000,62806838400,62821796400,14400,1,'GEST',],[62821782000,62829896400,62821792800,62829907200,10800,0,'GET',],[62829896400,62837499600,62829907200,62837510400,10800,0,'GET',],[62837499600,62853220800,62837514000,62853235200,14400,1,'GEST',],[62853220800,62868949200,62853231600,62868960000,10800,0,'GET',],[62868949200,62884670400,62868963600,62884684800,14400,1,'GEST',],[62884670400,62900398800,62884681200,62900409600,10800,0,'GET',],[62900398800,62916120000,62900413200,62916134400,14400,1,'GEST',],[62916120000,62931844800,62916134400,62931859200,14400,0,'GET',],[62931844800,62947566000,62931862800,62947584000,18000,1,'GEST',],[62947566000,62963899200,62947580400,62963913600,14400,0,'GET',],[62963899200,62982039600,62963917200,62982057600,18000,1,'GEST',],[62982039600,62995345200,62982057600,62995363200,18000,1,'GEST',],[62995345200,63013489200,62995363200,63013507200,18000,1,'GEST',],[63013489200,63026798400,63013503600,63026812800,14400,0,'GET',],[63026798400,63044938800,63026816400,63044956800,18000,1,'GEST',],[63044938800,63058248000,63044953200,63058262400,14400,0,'GET',],[63058248000,63076993200,63058266000,63077011200,18000,1,'GEST',],[63076993200,63089697600,63077007600,63089712000,14400,0,'GET',],[63089697600,63108442800,63089715600,63108460800,18000,1,'GEST',],[63108442800,63121147200,63108457200,63121161600,14400,0,'GET',],[63121147200,63139892400,63121165200,63139910400,18000,1,'GEST',],[63139892400,63153201600,63139906800,63153216000,14400,0,'GET',],[63153201600,63171342000,63153219600,63171360000,18000,1,'GEST',],[63171342000,63184651200,63171356400,63184665600,14400,0,'GET',],[63184651200,63202791600,63184669200,63202809600,18000,1,'GEST',],[63202791600,63216100800,63202806000,63216115200,14400,0,'GET',],[63216100800,63223959600,63216118800,63223977600,18000,1,'GEST',],[63223959600,63234860400,63223974000,63234874800,14400,1,'GEST',],[63234860400,63247561200,63234871200,63247572000,10800,0,'GET',],[63247561200,DateTime::TimeZone::INFINITY,63247575600,DateTime::TimeZone::INFINITY,14400,0,'GET',],];sub olson_version {'2016a'}sub has_dst_changes {27}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_TBILISI

$fatpacked{"DateTime/TimeZone/Asia/Tehran.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_TEHRAN';
  package DateTime::TimeZone::Asia::Tehran;$DateTime::TimeZone::Asia::Tehran::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Tehran::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60431517256,DateTime::TimeZone::NEG_INFINITY,60431529600,12344,0,'LMT',],[60431517256,61378288456,60431529600,61378300800,12344,0,'TMT',],[61378288456,62382861000,61378301056,62382873600,12600,0,'IRST',],[62382861000,62394955200,62382875400,62394969600,14400,0,'IRST',],[62394955200,62413441200,62394973200,62413459200,18000,1,'IRDT',],[62413441200,62419665600,62413455600,62419680000,14400,0,'IRST',],[62419665600,62426493000,62419678200,62426505600,12600,0,'IRST',],[62426493000,62442214200,62426509200,62442230400,16200,1,'IRDT',],[62442214200,62458115400,62442226800,62458128000,12600,0,'IRST',],[62458115400,62474182200,62458131600,62474198400,16200,1,'IRDT',],[62474182200,62808899400,62474194800,62808912000,12600,0,'IRST',],[62808899400,62821164600,62808915600,62821180800,16200,1,'IRDT',],[62821164600,62836893000,62821177200,62836905600,12600,0,'IRST',],[62836893000,62852787000,62836909200,62852803200,16200,1,'IRDT',],[62852787000,62868429000,62852799600,62868441600,12600,0,'IRST',],[62868429000,62884323000,62868445200,62884339200,16200,1,'IRDT',],[62884323000,62899965000,62884335600,62899977600,12600,0,'IRST',],[62899965000,62915859000,62899981200,62915875200,16200,1,'IRDT',],[62915859000,62931501000,62915871600,62931513600,12600,0,'IRST',],[62931501000,62947395000,62931517200,62947411200,16200,1,'IRDT',],[62947395000,62963037000,62947407600,62963049600,12600,0,'IRST',],[62963037000,62978931000,62963053200,62978947200,16200,1,'IRDT',],[62978931000,62994659400,62978943600,62994672000,12600,0,'IRST',],[62994659400,63010553400,62994675600,63010569600,16200,1,'IRDT',],[63010553400,63026195400,63010566000,63026208000,12600,0,'IRST',],[63026195400,63042089400,63026211600,63042105600,16200,1,'IRDT',],[63042089400,63057731400,63042102000,63057744000,12600,0,'IRST',],[63057731400,63073625400,63057747600,63073641600,16200,1,'IRDT',],[63073625400,63089267400,63073638000,63089280000,12600,0,'IRST',],[63089267400,63105161400,63089283600,63105177600,16200,1,'IRDT',],[63105161400,63120889800,63105174000,63120902400,12600,0,'IRST',],[63120889800,63136783800,63120906000,63136800000,16200,1,'IRDT',],[63136783800,63152425800,63136796400,63152438400,12600,0,'IRST',],[63152425800,63168319800,63152442000,63168336000,16200,1,'IRDT',],[63168319800,63183961800,63168332400,63183974400,12600,0,'IRST',],[63183961800,63199855800,63183978000,63199872000,16200,1,'IRDT',],[63199855800,63215497800,63199868400,63215510400,12600,0,'IRST',],[63215497800,63231391800,63215514000,63231408000,16200,1,'IRDT',],[63231391800,63247120200,63231404400,63247132800,12600,0,'IRST',],[63247120200,63263014200,63247136400,63263030400,16200,1,'IRDT',],[63263014200,63341728200,63263026800,63341740800,12600,0,'IRST',],[63341728200,63357622200,63341744400,63357638400,16200,1,'IRDT',],[63357622200,63373350600,63357634800,63373363200,12600,0,'IRST',],[63373350600,63389244600,63373366800,63389260800,16200,1,'IRDT',],[63389244600,63404886600,63389257200,63404899200,12600,0,'IRST',],[63404886600,63420780600,63404902800,63420796800,16200,1,'IRDT',],[63420780600,63436422600,63420793200,63436435200,12600,0,'IRST',],[63436422600,63452316600,63436438800,63452332800,16200,1,'IRDT',],[63452316600,63467958600,63452329200,63467971200,12600,0,'IRST',],[63467958600,63483852600,63467974800,63483868800,16200,1,'IRDT',],[63483852600,63499581000,63483865200,63499593600,12600,0,'IRST',],[63499581000,63515475000,63499597200,63515491200,16200,1,'IRDT',],[63515475000,63531117000,63515487600,63531129600,12600,0,'IRST',],[63531117000,63547011000,63531133200,63547027200,16200,1,'IRDT',],[63547011000,63562653000,63547023600,63562665600,12600,0,'IRST',],[63562653000,63578547000,63562669200,63578563200,16200,1,'IRDT',],[63578547000,63594189000,63578559600,63594201600,12600,0,'IRST',],[63594189000,63610083000,63594205200,63610099200,16200,1,'IRDT',],[63610083000,63625811400,63610095600,63625824000,12600,0,'IRST',],[63625811400,63641705400,63625827600,63641721600,16200,1,'IRDT',],[63641705400,63657347400,63641718000,63657360000,12600,0,'IRST',],[63657347400,63673241400,63657363600,63673257600,16200,1,'IRDT',],[63673241400,63688883400,63673254000,63688896000,12600,0,'IRST',],[63688883400,63704777400,63688899600,63704793600,16200,1,'IRDT',],[63704777400,63720419400,63704790000,63720432000,12600,0,'IRST',],[63720419400,63736313400,63720435600,63736329600,16200,1,'IRDT',],[63736313400,63752041800,63736326000,63752054400,12600,0,'IRST',],[63752041800,63767935800,63752058000,63767952000,16200,1,'IRDT',],[63767935800,63783577800,63767948400,63783590400,12600,0,'IRST',],[63783577800,63799471800,63783594000,63799488000,16200,1,'IRDT',],[63799471800,63815113800,63799484400,63815126400,12600,0,'IRST',],[63815113800,63831007800,63815130000,63831024000,16200,1,'IRDT',],[63831007800,63846649800,63831020400,63846662400,12600,0,'IRST',],[63846649800,63862543800,63846666000,63862560000,16200,1,'IRDT',],[63862543800,63878272200,63862556400,63878284800,12600,0,'IRST',],[63878272200,63894166200,63878288400,63894182400,16200,1,'IRDT',],[63894166200,63909808200,63894178800,63909820800,12600,0,'IRST',],[63909808200,63925702200,63909824400,63925718400,16200,1,'IRDT',],[63925702200,63941344200,63925714800,63941356800,12600,0,'IRST',],[63941344200,63957238200,63941360400,63957254400,16200,1,'IRDT',],[63957238200,63972880200,63957250800,63972892800,12600,0,'IRST',],[63972880200,63988774200,63972896400,63988790400,16200,1,'IRDT',],[63988774200,64004416200,63988786800,64004428800,12600,0,'IRST',],[64004416200,64020310200,64004432400,64020326400,16200,1,'IRDT',],[64020310200,64036038600,64020322800,64036051200,12600,0,'IRST',],[64036038600,64051932600,64036054800,64051948800,16200,1,'IRDT',],[64051932600,64067574600,64051945200,64067587200,12600,0,'IRST',],[64067574600,64083468600,64067590800,64083484800,16200,1,'IRDT',],[64083468600,64099110600,64083481200,64099123200,12600,0,'IRST',],[64099110600,64115004600,64099126800,64115020800,16200,1,'IRDT',],[64115004600,64130646600,64115017200,64130659200,12600,0,'IRST',],[64130646600,64146540600,64130662800,64146556800,16200,1,'IRDT',],[64146540600,64162269000,64146553200,64162281600,12600,0,'IRST',],[64162269000,64178163000,64162285200,64178179200,16200,1,'IRDT',],[64178163000,64193805000,64178175600,64193817600,12600,0,'IRST',],[64193805000,64209699000,64193821200,64209715200,16200,1,'IRDT',],[64209699000,64225341000,64209711600,64225353600,12600,0,'IRST',],[64225341000,64241235000,64225357200,64241251200,16200,1,'IRDT',],[64241235000,64256877000,64241247600,64256889600,12600,0,'IRST',],[64256877000,64272771000,64256893200,64272787200,16200,1,'IRDT',],];sub olson_version {'2016a'}sub has_dst_changes {48}sub _max_year {2036}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {12600}my$last_observance=bless({'format'=>'IR%sT','gmtoff'=>'3:30','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>722449,'local_rd_secs'=>84600,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>722449,'utc_rd_secs'=>84600,'utc_year'=>1979 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>12600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>722449,'local_rd_secs'=>72000,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>722449,'utc_rd_secs'=>72000,'utc_year'=>1979 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'0:00','from'=>'2036','in'=>'Mar','letter'=>'D','name'=>'Iran','offset_from_std'=>3600,'on'=>'21','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'0:00','from'=>'2036','in'=>'Sep','letter'=>'S','name'=>'Iran','offset_from_std'=>0,'on'=>'21','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_ASIA_TEHRAN

$fatpacked{"DateTime/TimeZone/Asia/Thimphu.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_THIMPHU';
  package DateTime::TimeZone::Asia::Thimphu;$DateTime::TimeZone::Asia::Thimphu::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Thimphu::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,61429341684,DateTime::TimeZone::NEG_INFINITY,61429363200,21516,0,'LMT',],[61429341684,62695708200,61429361484,62695728000,19800,0,'IST',],[62695708200,DateTime::TimeZone::INFINITY,62695729800,DateTime::TimeZone::INFINITY,21600,0,'BTT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_THIMPHU

$fatpacked{"DateTime/TimeZone/Asia/Tokyo.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_TOKYO';
  package DateTime::TimeZone::Asia::Tokyo;$DateTime::TimeZone::Asia::Tokyo::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Tokyo::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59547970800,DateTime::TimeZone::NEG_INFINITY,59548004339,33539,0,'LMT',],[59547970800,59800431600,59548003200,59800464000,32400,0,'JST',],[59800431600,61117858800,59800464000,61117891200,32400,0,'JCST',],[61117858800,61451888400,61117891200,61451920800,32400,0,'JST',],[61451888400,61463289600,61451924400,61463325600,36000,1,'JDT',],[61463289600,61480918800,61463322000,61480951200,32400,0,'JST',],[61480918800,61494739200,61480954800,61494775200,36000,1,'JDT',],[61494739200,61515392400,61494771600,61515424800,32400,0,'JST',],[61515392400,61526188800,61515428400,61526224800,36000,1,'JDT',],[61526188800,61546842000,61526221200,61546874400,32400,0,'JST',],[61546842000,61557638400,61546878000,61557674400,36000,1,'JDT',],[61557638400,DateTime::TimeZone::INFINITY,61557670800,DateTime::TimeZone::INFINITY,32400,0,'JST',],];sub olson_version {'2016a'}sub has_dst_changes {4}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_TOKYO

$fatpacked{"DateTime/TimeZone/Asia/Ulaanbaatar.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_ULAANBAATAR';
  package DateTime::TimeZone::Asia::Ulaanbaatar;$DateTime::TimeZone::Asia::Ulaanbaatar::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Ulaanbaatar::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60102751948,DateTime::TimeZone::NEG_INFINITY,60102777600,25652,0,'LMT',],[60102751948,62388118800,60102777148,62388144000,25200,0,'ULAT',],[62388118800,62553657600,62388147600,62553686400,28800,0,'ULAT',],[62553657600,62569465200,62553690000,62569497600,32400,1,'ULAST',],[62569465200,62585280000,62569494000,62585308800,28800,0,'ULAT',],[62585280000,62601001200,62585312400,62601033600,32400,1,'ULAST',],[62601001200,62616729600,62601030000,62616758400,28800,0,'ULAT',],[62616729600,62632450800,62616762000,62632483200,32400,1,'ULAST',],[62632450800,62648179200,62632479600,62648208000,28800,0,'ULAT',],[62648179200,62663900400,62648211600,62663932800,32400,1,'ULAST',],[62663900400,62679628800,62663929200,62679657600,28800,0,'ULAT',],[62679628800,62695350000,62679661200,62695382400,32400,1,'ULAST',],[62695350000,62711078400,62695378800,62711107200,28800,0,'ULAT',],[62711078400,62726799600,62711110800,62726832000,32400,1,'ULAST',],[62726799600,62742528000,62726828400,62742556800,28800,0,'ULAT',],[62742528000,62758249200,62742560400,62758281600,32400,1,'ULAST',],[62758249200,62773977600,62758278000,62774006400,28800,0,'ULAT',],[62773977600,62790303600,62774010000,62790336000,32400,1,'ULAST',],[62790303600,62806032000,62790332400,62806060800,28800,0,'ULAT',],[62806032000,62821753200,62806064400,62821785600,32400,1,'ULAST',],[62821753200,62837481600,62821782000,62837510400,28800,0,'ULAT',],[62837481600,62853202800,62837514000,62853235200,32400,1,'ULAST',],[62853202800,62868931200,62853231600,62868960000,28800,0,'ULAT',],[62868931200,62884652400,62868963600,62884684800,32400,1,'ULAST',],[62884652400,62900380800,62884681200,62900409600,28800,0,'ULAT',],[62900380800,62916102000,62900413200,62916134400,32400,1,'ULAST',],[62916102000,62931830400,62916130800,62931859200,28800,0,'ULAT',],[62931830400,62947551600,62931862800,62947584000,32400,1,'ULAST',],[62947551600,62963884800,62947580400,62963913600,28800,0,'ULAT',],[62963884800,62979606000,62963917200,62979638400,32400,1,'ULAST',],[62979606000,62995334400,62979634800,62995363200,28800,0,'ULAT',],[62995334400,63011055600,62995366800,63011088000,32400,1,'ULAST',],[63011055600,63026784000,63011084400,63026812800,28800,0,'ULAT',],[63026784000,63042505200,63026816400,63042537600,32400,1,'ULAST',],[63042505200,63124077600,63042534000,63124106400,28800,0,'ULAT',],[63124077600,63137379600,63124110000,63137412000,32400,1,'ULAST',],[63137379600,63153108000,63137408400,63153136800,28800,0,'ULAT',],[63153108000,63168829200,63153140400,63168861600,32400,1,'ULAST',],[63168829200,63184557600,63168858000,63184586400,28800,0,'ULAT',],[63184557600,63200278800,63184590000,63200311200,32400,1,'ULAST',],[63200278800,63216007200,63200307600,63216036000,28800,0,'ULAT',],[63216007200,63231728400,63216039600,63231760800,32400,1,'ULAST',],[63231728400,63247456800,63231757200,63247485600,28800,0,'ULAT',],[63247456800,63263178000,63247489200,63263210400,32400,1,'ULAST',],[63263178000,63278906400,63263206800,63278935200,28800,0,'ULAT',],[63278906400,63295232400,63278938800,63295264800,32400,1,'ULAST',],[63295232400,63563162400,63295261200,63563191200,28800,0,'ULAT',],[63563162400,63578876400,63563194800,63578908800,32400,1,'ULAST',],[63578876400,63594612000,63578905200,63594640800,28800,0,'ULAT',],[63594612000,63610326000,63594644400,63610358400,32400,1,'ULAST',],[63610326000,63626061600,63610354800,63626090400,28800,0,'ULAT',],[63626061600,63642380400,63626094000,63642412800,32400,1,'ULAST',],[63642380400,63658116000,63642409200,63658144800,28800,0,'ULAT',],[63658116000,63673830000,63658148400,63673862400,32400,1,'ULAST',],[63673830000,63689565600,63673858800,63689594400,28800,0,'ULAT',],[63689565600,63705279600,63689598000,63705312000,32400,1,'ULAST',],[63705279600,63721015200,63705308400,63721044000,28800,0,'ULAT',],[63721015200,63736729200,63721047600,63736761600,32400,1,'ULAST',],[63736729200,63752464800,63736758000,63752493600,28800,0,'ULAT',],[63752464800,63768178800,63752497200,63768211200,32400,1,'ULAST',],[63768178800,63783914400,63768207600,63783943200,28800,0,'ULAT',],[63783914400,63799628400,63783946800,63799660800,32400,1,'ULAST',],[63799628400,63815364000,63799657200,63815392800,28800,0,'ULAT',],[63815364000,63831682800,63815396400,63831715200,32400,1,'ULAST',],[63831682800,63847418400,63831711600,63847447200,28800,0,'ULAT',],[63847418400,63863132400,63847450800,63863164800,32400,1,'ULAST',],[63863132400,63878868000,63863161200,63878896800,28800,0,'ULAT',],[63878868000,63894582000,63878900400,63894614400,32400,1,'ULAST',],[63894582000,63910317600,63894610800,63910346400,28800,0,'ULAT',],[63910317600,63926031600,63910350000,63926064000,32400,1,'ULAST',],[63926031600,63941767200,63926060400,63941796000,28800,0,'ULAT',],[63941767200,63957481200,63941799600,63957513600,32400,1,'ULAST',],];sub olson_version {'2016a'}sub has_dst_changes {35}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {28800}my$last_observance=bless({'format'=>'ULA%sT','gmtoff'=>'8:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>722085,'local_rd_secs'=>3600,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>722085,'utc_rd_secs'=>3600,'utc_year'=>1979 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>28800,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>722084,'local_rd_secs'=>61200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>722084,'utc_rd_secs'=>61200,'utc_year'=>1978 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2015','in'=>'Mar','letter'=>'S','name'=>'Mongol','offset_from_std'=>3600,'on'=>'lastSat','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'0:00','from'=>'2015','in'=>'Sep','letter'=>'','name'=>'Mongol','offset_from_std'=>0,'on'=>'lastSat','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_ASIA_ULAANBAATAR

$fatpacked{"DateTime/TimeZone/Asia/Urumqi.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_URUMQI';
  package DateTime::TimeZone::Asia::Urumqi;$DateTime::TimeZone::Asia::Urumqi::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Urumqi::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60810199780,DateTime::TimeZone::NEG_INFINITY,60810220800,21020,0,'LMT',],[60810199780,DateTime::TimeZone::INFINITY,60810221380,DateTime::TimeZone::INFINITY,21600,0,'XJT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_URUMQI

$fatpacked{"DateTime/TimeZone/Asia/Ust_Nera.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_UST_NERA';
  package DateTime::TimeZone::Asia::Ust_Nera;$DateTime::TimeZone::Asia::Ust_Nera::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Ust_Nera::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60556256826,DateTime::TimeZone::NEG_INFINITY,60556291200,34374,0,'LMT',],[60556256826,60888124800,60556285626,60888153600,28800,0,'YAKT',],[60888124800,62490582000,60888157200,62490614400,32400,0,'YAKT',],[62490582000,62506382400,62490625200,62506425600,43200,1,'MAGST',],[62506382400,62522110800,62506422000,62522150400,39600,0,'MAGT',],[62522110800,62537918400,62522154000,62537961600,43200,1,'MAGST',],[62537918400,62553646800,62537958000,62553686400,39600,0,'MAGT',],[62553646800,62569454400,62553690000,62569497600,43200,1,'MAGST',],[62569454400,62585269200,62569494000,62585308800,39600,0,'MAGT',],[62585269200,62601001200,62585312400,62601044400,43200,1,'MAGST',],[62601001200,62616726000,62601040800,62616765600,39600,0,'MAGT',],[62616726000,62632450800,62616769200,62632494000,43200,1,'MAGST',],[62632450800,62648175600,62632490400,62648215200,39600,0,'MAGT',],[62648175600,62663900400,62648218800,62663943600,43200,1,'MAGST',],[62663900400,62679625200,62663940000,62679664800,39600,0,'MAGT',],[62679625200,62695350000,62679668400,62695393200,43200,1,'MAGST',],[62695350000,62711074800,62695389600,62711114400,39600,0,'MAGT',],[62711074800,62726799600,62711118000,62726842800,43200,1,'MAGST',],[62726799600,62742524400,62726839200,62742564000,39600,0,'MAGT',],[62742524400,62758249200,62742567600,62758292400,43200,1,'MAGST',],[62758249200,62773974000,62758288800,62774013600,39600,0,'MAGT',],[62773974000,62790303600,62774017200,62790346800,43200,1,'MAGST',],[62790303600,62806028400,62790343200,62806068000,39600,0,'MAGT',],[62806028400,62821756800,62806068000,62821796400,39600,1,'MAGST',],[62821756800,62831433600,62821792800,62831469600,36000,0,'MAGT',],[62831433600,62837467200,62831473200,62837506800,39600,0,'MAGT',],[62837467200,62853188400,62837510400,62853231600,43200,1,'MAGST',],[62853188400,62868927600,62853228000,62868967200,39600,0,'MAGT',],[62868927600,62884652400,62868970800,62884695600,43200,1,'MAGST',],[62884652400,62900377200,62884692000,62900416800,39600,0,'MAGT',],[62900377200,62916102000,62900420400,62916145200,43200,1,'MAGST',],[62916102000,62931826800,62916141600,62931866400,39600,0,'MAGT',],[62931826800,62947551600,62931870000,62947594800,43200,1,'MAGST',],[62947551600,62963881200,62947591200,62963920800,39600,0,'MAGT',],[62963881200,62982025200,62963924400,62982068400,43200,1,'MAGST',],[62982025200,62995330800,62982064800,62995370400,39600,0,'MAGT',],[62995330800,63013474800,62995374000,63013518000,43200,1,'MAGST',],[63013474800,63026780400,63013514400,63026820000,39600,0,'MAGT',],[63026780400,63044924400,63026823600,63044967600,43200,1,'MAGST',],[63044924400,63058230000,63044964000,63058269600,39600,0,'MAGT',],[63058230000,63076978800,63058273200,63077022000,43200,1,'MAGST',],[63076978800,63089679600,63077018400,63089719200,39600,0,'MAGT',],[63089679600,63108428400,63089722800,63108471600,43200,1,'MAGST',],[63108428400,63121129200,63108468000,63121168800,39600,0,'MAGT',],[63121129200,63139878000,63121172400,63139921200,43200,1,'MAGST',],[63139878000,63153183600,63139917600,63153223200,39600,0,'MAGT',],[63153183600,63171327600,63153226800,63171370800,43200,1,'MAGST',],[63171327600,63184633200,63171367200,63184672800,39600,0,'MAGT',],[63184633200,63202777200,63184676400,63202820400,43200,1,'MAGST',],[63202777200,63216082800,63202816800,63216122400,39600,0,'MAGT',],[63216082800,63234831600,63216126000,63234874800,43200,1,'MAGST',],[63234831600,63247532400,63234871200,63247572000,39600,0,'MAGT',],[63247532400,63266281200,63247575600,63266324400,43200,1,'MAGST',],[63266281200,63278982000,63266320800,63279021600,39600,0,'MAGT',],[63278982000,63297730800,63279025200,63297774000,43200,1,'MAGST',],[63297730800,63310431600,63297770400,63310471200,39600,0,'MAGT',],[63310431600,63329180400,63310474800,63329223600,43200,1,'MAGST',],[63329180400,63342486000,63329220000,63342525600,39600,0,'MAGT',],[63342486000,63360630000,63342529200,63360673200,43200,1,'MAGST',],[63360630000,63373935600,63360669600,63373975200,39600,0,'MAGT',],[63373935600,63392079600,63373978800,63392122800,43200,1,'MAGST',],[63392079600,63405385200,63392119200,63405424800,39600,0,'MAGT',],[63405385200,63424134000,63405428400,63424177200,43200,1,'MAGST',],[63424134000,63436834800,63424173600,63436874400,39600,0,'MAGT',],[63436834800,63451512000,63436878000,63451555200,43200,0,'MAGT',],[63451512000,63549932400,63451551600,63549972000,39600,0,'VLAT',],[63549932400,DateTime::TimeZone::INFINITY,63549968400,DateTime::TimeZone::INFINITY,36000,0,'VLAT',],];sub olson_version {'2016a'}sub has_dst_changes {30}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_UST_NERA

$fatpacked{"DateTime/TimeZone/Asia/Vladivostok.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_VLADIVOSTOK';
  package DateTime::TimeZone::Asia::Vladivostok;$DateTime::TimeZone::Asia::Vladivostok::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Vladivostok::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60648361949,DateTime::TimeZone::NEG_INFINITY,60648393600,31651,0,'LMT',],[60648361949,60888121200,60648394349,60888153600,32400,0,'VLAT',],[60888121200,62490578400,60888157200,62490614400,36000,0,'VLAT',],[62490578400,62506386000,62490618000,62506425600,39600,1,'VLAST',],[62506386000,62522114400,62506422000,62522150400,36000,0,'VLAT',],[62522114400,62537922000,62522154000,62537961600,39600,1,'VLAST',],[62537922000,62553650400,62537958000,62553686400,36000,0,'VLAT',],[62553650400,62569458000,62553690000,62569497600,39600,1,'VLAST',],[62569458000,62585272800,62569494000,62585308800,36000,0,'VLAT',],[62585272800,62601004800,62585312400,62601044400,39600,1,'VLAST',],[62601004800,62616729600,62601040800,62616765600,36000,0,'VLAT',],[62616729600,62632454400,62616769200,62632494000,39600,1,'VLAST',],[62632454400,62648179200,62632490400,62648215200,36000,0,'VLAT',],[62648179200,62663904000,62648218800,62663943600,39600,1,'VLAST',],[62663904000,62679628800,62663940000,62679664800,36000,0,'VLAT',],[62679628800,62695353600,62679668400,62695393200,39600,1,'VLAST',],[62695353600,62711078400,62695389600,62711114400,36000,0,'VLAT',],[62711078400,62726803200,62711118000,62726842800,39600,1,'VLAST',],[62726803200,62742528000,62726839200,62742564000,36000,0,'VLAT',],[62742528000,62758252800,62742567600,62758292400,39600,1,'VLAST',],[62758252800,62773977600,62758288800,62774013600,36000,0,'VLAT',],[62773977600,62790307200,62774017200,62790346800,39600,1,'VLAST',],[62790307200,62806032000,62790343200,62806068000,36000,0,'VLAT',],[62806032000,62821760400,62806068000,62821796400,36000,1,'VLAST',],[62821760400,62831437200,62821792800,62831469600,32400,0,'VLAT',],[62831437200,62837470800,62831473200,62837506800,36000,0,'VLAT',],[62837470800,62853192000,62837510400,62853231600,39600,1,'VLAST',],[62853192000,62868931200,62853228000,62868967200,36000,0,'VLAT',],[62868931200,62884656000,62868970800,62884695600,39600,1,'VLAST',],[62884656000,62900380800,62884692000,62900416800,36000,0,'VLAT',],[62900380800,62916105600,62900420400,62916145200,39600,1,'VLAST',],[62916105600,62931830400,62916141600,62931866400,36000,0,'VLAT',],[62931830400,62947555200,62931870000,62947594800,39600,1,'VLAST',],[62947555200,62963884800,62947591200,62963920800,36000,0,'VLAT',],[62963884800,62982028800,62963924400,62982068400,39600,1,'VLAST',],[62982028800,62995334400,62982064800,62995370400,36000,0,'VLAT',],[62995334400,63013478400,62995374000,63013518000,39600,1,'VLAST',],[63013478400,63026784000,63013514400,63026820000,36000,0,'VLAT',],[63026784000,63044928000,63026823600,63044967600,39600,1,'VLAST',],[63044928000,63058233600,63044964000,63058269600,36000,0,'VLAT',],[63058233600,63076982400,63058273200,63077022000,39600,1,'VLAST',],[63076982400,63089683200,63077018400,63089719200,36000,0,'VLAT',],[63089683200,63108432000,63089722800,63108471600,39600,1,'VLAST',],[63108432000,63121132800,63108468000,63121168800,36000,0,'VLAT',],[63121132800,63139881600,63121172400,63139921200,39600,1,'VLAST',],[63139881600,63153187200,63139917600,63153223200,36000,0,'VLAT',],[63153187200,63171331200,63153226800,63171370800,39600,1,'VLAST',],[63171331200,63184636800,63171367200,63184672800,36000,0,'VLAT',],[63184636800,63202780800,63184676400,63202820400,39600,1,'VLAST',],[63202780800,63216086400,63202816800,63216122400,36000,0,'VLAT',],[63216086400,63234835200,63216126000,63234874800,39600,1,'VLAST',],[63234835200,63247536000,63234871200,63247572000,36000,0,'VLAT',],[63247536000,63266284800,63247575600,63266324400,39600,1,'VLAST',],[63266284800,63278985600,63266320800,63279021600,36000,0,'VLAT',],[63278985600,63297734400,63279025200,63297774000,39600,1,'VLAST',],[63297734400,63310435200,63297770400,63310471200,36000,0,'VLAT',],[63310435200,63329184000,63310474800,63329223600,39600,1,'VLAST',],[63329184000,63342489600,63329220000,63342525600,36000,0,'VLAT',],[63342489600,63360633600,63342529200,63360673200,39600,1,'VLAST',],[63360633600,63373939200,63360669600,63373975200,36000,0,'VLAT',],[63373939200,63392083200,63373978800,63392122800,39600,1,'VLAST',],[63392083200,63405388800,63392119200,63405424800,36000,0,'VLAT',],[63405388800,63424137600,63405428400,63424177200,39600,1,'VLAST',],[63424137600,63436838400,63424173600,63436874400,36000,0,'VLAT',],[63436838400,63549932400,63436878000,63549972000,39600,0,'VLAT',],[63549932400,DateTime::TimeZone::INFINITY,63549968400,DateTime::TimeZone::INFINITY,36000,0,'VLAT',],];sub olson_version {'2016a'}sub has_dst_changes {30}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_VLADIVOSTOK

$fatpacked{"DateTime/TimeZone/Asia/Yakutsk.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_YAKUTSK';
  package DateTime::TimeZone::Asia::Yakutsk;$DateTime::TimeZone::Asia::Yakutsk::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Yakutsk::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60556260062,DateTime::TimeZone::NEG_INFINITY,60556291200,31138,0,'LMT',],[60556260062,60888124800,60556288862,60888153600,28800,0,'YAKT',],[60888124800,62490582000,60888157200,62490614400,32400,0,'YAKT',],[62490582000,62506389600,62490618000,62506425600,36000,1,'YAKST',],[62506389600,62522118000,62506422000,62522150400,32400,0,'YAKT',],[62522118000,62537925600,62522154000,62537961600,36000,1,'YAKST',],[62537925600,62553654000,62537958000,62553686400,32400,0,'YAKT',],[62553654000,62569461600,62553690000,62569497600,36000,1,'YAKST',],[62569461600,62585276400,62569494000,62585308800,32400,0,'YAKT',],[62585276400,62601008400,62585312400,62601044400,36000,1,'YAKST',],[62601008400,62616733200,62601040800,62616765600,32400,0,'YAKT',],[62616733200,62632458000,62616769200,62632494000,36000,1,'YAKST',],[62632458000,62648182800,62632490400,62648215200,32400,0,'YAKT',],[62648182800,62663907600,62648218800,62663943600,36000,1,'YAKST',],[62663907600,62679632400,62663940000,62679664800,32400,0,'YAKT',],[62679632400,62695357200,62679668400,62695393200,36000,1,'YAKST',],[62695357200,62711082000,62695389600,62711114400,32400,0,'YAKT',],[62711082000,62726806800,62711118000,62726842800,36000,1,'YAKST',],[62726806800,62742531600,62726839200,62742564000,32400,0,'YAKT',],[62742531600,62758256400,62742567600,62758292400,36000,1,'YAKST',],[62758256400,62773981200,62758288800,62774013600,32400,0,'YAKT',],[62773981200,62790310800,62774017200,62790346800,36000,1,'YAKST',],[62790310800,62806035600,62790343200,62806068000,32400,0,'YAKT',],[62806035600,62821764000,62806068000,62821796400,32400,1,'YAKST',],[62821764000,62831440800,62821792800,62831469600,28800,0,'YAKT',],[62831440800,62837474400,62831473200,62837506800,32400,0,'YAKT',],[62837474400,62853195600,62837510400,62853231600,36000,1,'YAKST',],[62853195600,62868934800,62853228000,62868967200,32400,0,'YAKT',],[62868934800,62884659600,62868970800,62884695600,36000,1,'YAKST',],[62884659600,62900384400,62884692000,62900416800,32400,0,'YAKT',],[62900384400,62916109200,62900420400,62916145200,36000,1,'YAKST',],[62916109200,62931834000,62916141600,62931866400,32400,0,'YAKT',],[62931834000,62947558800,62931870000,62947594800,36000,1,'YAKST',],[62947558800,62963888400,62947591200,62963920800,32400,0,'YAKT',],[62963888400,62982032400,62963924400,62982068400,36000,1,'YAKST',],[62982032400,62995338000,62982064800,62995370400,32400,0,'YAKT',],[62995338000,63013482000,62995374000,63013518000,36000,1,'YAKST',],[63013482000,63026787600,63013514400,63026820000,32400,0,'YAKT',],[63026787600,63044931600,63026823600,63044967600,36000,1,'YAKST',],[63044931600,63058237200,63044964000,63058269600,32400,0,'YAKT',],[63058237200,63076986000,63058273200,63077022000,36000,1,'YAKST',],[63076986000,63089686800,63077018400,63089719200,32400,0,'YAKT',],[63089686800,63108435600,63089722800,63108471600,36000,1,'YAKST',],[63108435600,63121136400,63108468000,63121168800,32400,0,'YAKT',],[63121136400,63139885200,63121172400,63139921200,36000,1,'YAKST',],[63139885200,63153190800,63139917600,63153223200,32400,0,'YAKT',],[63153190800,63171334800,63153226800,63171370800,36000,1,'YAKST',],[63171334800,63184640400,63171367200,63184672800,32400,0,'YAKT',],[63184640400,63202784400,63184676400,63202820400,36000,1,'YAKST',],[63202784400,63216090000,63202816800,63216122400,32400,0,'YAKT',],[63216090000,63234838800,63216126000,63234874800,36000,1,'YAKST',],[63234838800,63247539600,63234871200,63247572000,32400,0,'YAKT',],[63247539600,63266288400,63247575600,63266324400,36000,1,'YAKST',],[63266288400,63278989200,63266320800,63279021600,32400,0,'YAKT',],[63278989200,63297738000,63279025200,63297774000,36000,1,'YAKST',],[63297738000,63310438800,63297770400,63310471200,32400,0,'YAKT',],[63310438800,63329187600,63310474800,63329223600,36000,1,'YAKST',],[63329187600,63342493200,63329220000,63342525600,32400,0,'YAKT',],[63342493200,63360637200,63342529200,63360673200,36000,1,'YAKST',],[63360637200,63373942800,63360669600,63373975200,32400,0,'YAKT',],[63373942800,63392086800,63373978800,63392122800,36000,1,'YAKST',],[63392086800,63405392400,63392119200,63405424800,32400,0,'YAKT',],[63405392400,63424141200,63405428400,63424177200,36000,1,'YAKST',],[63424141200,63436842000,63424173600,63436874400,32400,0,'YAKT',],[63436842000,63549936000,63436878000,63549972000,36000,0,'YAKT',],[63549936000,DateTime::TimeZone::INFINITY,63549968400,DateTime::TimeZone::INFINITY,32400,0,'YAKT',],];sub olson_version {'2016a'}sub has_dst_changes {30}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_YAKUTSK

$fatpacked{"DateTime/TimeZone/Asia/Yekaterinburg.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_YEKATERINBURG';
  package DateTime::TimeZone::Asia::Yekaterinburg;$DateTime::TimeZone::Asia::Yekaterinburg::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Yekaterinburg::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60447412647,DateTime::TimeZone::NEG_INFINITY,60447427200,14553,0,'LMT',],[60447412647,60543072895,60447426152,60543086400,13505,0,'PMT',],[60543072895,60888139200,60543087295,60888153600,14400,0,'SVET',],[60888139200,62490596400,60888157200,62490614400,18000,0,'SVET',],[62490596400,62506404000,62490618000,62506425600,21600,1,'SVEST',],[62506404000,62522132400,62506422000,62522150400,18000,0,'SVET',],[62522132400,62537940000,62522154000,62537961600,21600,1,'SVEST',],[62537940000,62553668400,62537958000,62553686400,18000,0,'SVET',],[62553668400,62569476000,62553690000,62569497600,21600,1,'SVEST',],[62569476000,62585290800,62569494000,62585308800,18000,0,'SVET',],[62585290800,62601022800,62585312400,62601044400,21600,1,'SVEST',],[62601022800,62616747600,62601040800,62616765600,18000,0,'SVET',],[62616747600,62632472400,62616769200,62632494000,21600,1,'SVEST',],[62632472400,62648197200,62632490400,62648215200,18000,0,'SVET',],[62648197200,62663922000,62648218800,62663943600,21600,1,'SVEST',],[62663922000,62679646800,62663940000,62679664800,18000,0,'SVET',],[62679646800,62695371600,62679668400,62695393200,21600,1,'SVEST',],[62695371600,62711096400,62695389600,62711114400,18000,0,'SVET',],[62711096400,62726821200,62711118000,62726842800,21600,1,'SVEST',],[62726821200,62742546000,62726839200,62742564000,18000,0,'SVET',],[62742546000,62758270800,62742567600,62758292400,21600,1,'SVEST',],[62758270800,62773995600,62758288800,62774013600,18000,0,'SVET',],[62773995600,62790325200,62774017200,62790346800,21600,1,'SVEST',],[62790325200,62806050000,62790343200,62806068000,18000,0,'SVET',],[62806050000,62821778400,62806068000,62821796400,18000,1,'SVEST',],[62821778400,62831455200,62821792800,62831469600,14400,0,'SVET',],[62831455200,62837488800,62831473200,62837506800,18000,0,'YEKT',],[62837488800,62853210000,62837510400,62853231600,21600,1,'YEKST',],[62853210000,62868949200,62853228000,62868967200,18000,0,'YEKT',],[62868949200,62884674000,62868970800,62884695600,21600,1,'YEKST',],[62884674000,62900398800,62884692000,62900416800,18000,0,'YEKT',],[62900398800,62916123600,62900420400,62916145200,21600,1,'YEKST',],[62916123600,62931848400,62916141600,62931866400,18000,0,'YEKT',],[62931848400,62947573200,62931870000,62947594800,21600,1,'YEKST',],[62947573200,62963902800,62947591200,62963920800,18000,0,'YEKT',],[62963902800,62982046800,62963924400,62982068400,21600,1,'YEKST',],[62982046800,62995352400,62982064800,62995370400,18000,0,'YEKT',],[62995352400,63013496400,62995374000,63013518000,21600,1,'YEKST',],[63013496400,63026802000,63013514400,63026820000,18000,0,'YEKT',],[63026802000,63044946000,63026823600,63044967600,21600,1,'YEKST',],[63044946000,63058251600,63044964000,63058269600,18000,0,'YEKT',],[63058251600,63077000400,63058273200,63077022000,21600,1,'YEKST',],[63077000400,63089701200,63077018400,63089719200,18000,0,'YEKT',],[63089701200,63108450000,63089722800,63108471600,21600,1,'YEKST',],[63108450000,63121150800,63108468000,63121168800,18000,0,'YEKT',],[63121150800,63139899600,63121172400,63139921200,21600,1,'YEKST',],[63139899600,63153205200,63139917600,63153223200,18000,0,'YEKT',],[63153205200,63171349200,63153226800,63171370800,21600,1,'YEKST',],[63171349200,63184654800,63171367200,63184672800,18000,0,'YEKT',],[63184654800,63202798800,63184676400,63202820400,21600,1,'YEKST',],[63202798800,63216104400,63202816800,63216122400,18000,0,'YEKT',],[63216104400,63234853200,63216126000,63234874800,21600,1,'YEKST',],[63234853200,63247554000,63234871200,63247572000,18000,0,'YEKT',],[63247554000,63266302800,63247575600,63266324400,21600,1,'YEKST',],[63266302800,63279003600,63266320800,63279021600,18000,0,'YEKT',],[63279003600,63297752400,63279025200,63297774000,21600,1,'YEKST',],[63297752400,63310453200,63297770400,63310471200,18000,0,'YEKT',],[63310453200,63329202000,63310474800,63329223600,21600,1,'YEKST',],[63329202000,63342507600,63329220000,63342525600,18000,0,'YEKT',],[63342507600,63360651600,63342529200,63360673200,21600,1,'YEKST',],[63360651600,63373957200,63360669600,63373975200,18000,0,'YEKT',],[63373957200,63392101200,63373978800,63392122800,21600,1,'YEKST',],[63392101200,63405406800,63392119200,63405424800,18000,0,'YEKT',],[63405406800,63424155600,63405428400,63424177200,21600,1,'YEKST',],[63424155600,63436856400,63424173600,63436874400,18000,0,'YEKT',],[63436856400,63549950400,63436878000,63549972000,21600,0,'YEKT',],[63549950400,DateTime::TimeZone::INFINITY,63549968400,DateTime::TimeZone::INFINITY,18000,0,'YEKT',],];sub olson_version {'2016a'}sub has_dst_changes {30}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_YEKATERINBURG

$fatpacked{"DateTime/TimeZone/Asia/Yerevan.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ASIA_YEREVAN';
  package DateTime::TimeZone::Asia::Yerevan;$DateTime::TimeZone::Asia::Yerevan::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Asia::Yerevan::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60694520520,DateTime::TimeZone::NEG_INFINITY,60694531200,10680,0,'LMT',],[60694520520,61730542800,60694531320,61730553600,10800,0,'YERT',],[61730542800,62490600000,61730557200,62490614400,14400,0,'YERT',],[62490600000,62506407600,62490618000,62506425600,18000,1,'YERST',],[62506407600,62522136000,62506422000,62522150400,14400,0,'YERT',],[62522136000,62537943600,62522154000,62537961600,18000,1,'YERST',],[62537943600,62553672000,62537958000,62553686400,14400,0,'YERT',],[62553672000,62569479600,62553690000,62569497600,18000,1,'YERST',],[62569479600,62585294400,62569494000,62585308800,14400,0,'YERT',],[62585294400,62601026400,62585312400,62601044400,18000,1,'YERST',],[62601026400,62616751200,62601040800,62616765600,14400,0,'YERT',],[62616751200,62632476000,62616769200,62632494000,18000,1,'YERST',],[62632476000,62648200800,62632490400,62648215200,14400,0,'YERT',],[62648200800,62663925600,62648218800,62663943600,18000,1,'YERST',],[62663925600,62679650400,62663940000,62679664800,14400,0,'YERT',],[62679650400,62695375200,62679668400,62695393200,18000,1,'YERST',],[62695375200,62711100000,62695389600,62711114400,14400,0,'YERT',],[62711100000,62726824800,62711118000,62726842800,18000,1,'YERST',],[62726824800,62742549600,62726839200,62742564000,14400,0,'YERT',],[62742549600,62758274400,62742567600,62758292400,18000,1,'YERST',],[62758274400,62773999200,62758288800,62774013600,14400,0,'YERT',],[62773999200,62790328800,62774017200,62790346800,18000,1,'YERST',],[62790328800,62806053600,62790343200,62806068000,14400,0,'YERT',],[62806053600,62821252800,62806068000,62821267200,14400,1,'YERST',],[62821252800,62821782000,62821267200,62821796400,14400,1,'AMST',],[62821782000,62837496000,62821792800,62837506800,10800,0,'AMT',],[62837496000,62853217200,62837510400,62853231600,14400,1,'AMST',],[62853217200,62868956400,62853228000,62868967200,10800,0,'AMT',],[62868956400,62884681200,62868970800,62884695600,14400,1,'AMST',],[62884681200,62900406000,62884692000,62900416800,10800,0,'AMT',],[62900406000,62916130800,62900420400,62916145200,14400,1,'AMST',],[62916130800,62931855600,62916141600,62931866400,10800,0,'AMT',],[62931855600,62947580400,62931870000,62947594800,14400,1,'AMST',],[62947580400,62987745600,62947594800,62987760000,14400,0,'AMT',],[62987745600,62995356000,62987760000,62995370400,14400,0,'AMT',],[62995356000,63013500000,62995374000,63013518000,18000,1,'AMST',],[63013500000,63026805600,63013514400,63026820000,14400,0,'AMT',],[63026805600,63044949600,63026823600,63044967600,18000,1,'AMST',],[63044949600,63058255200,63044964000,63058269600,14400,0,'AMT',],[63058255200,63077004000,63058273200,63077022000,18000,1,'AMST',],[63077004000,63089704800,63077018400,63089719200,14400,0,'AMT',],[63089704800,63108453600,63089722800,63108471600,18000,1,'AMST',],[63108453600,63121154400,63108468000,63121168800,14400,0,'AMT',],[63121154400,63139903200,63121172400,63139921200,18000,1,'AMST',],[63139903200,63153208800,63139917600,63153223200,14400,0,'AMT',],[63153208800,63171352800,63153226800,63171370800,18000,1,'AMST',],[63171352800,63184658400,63171367200,63184672800,14400,0,'AMT',],[63184658400,63202802400,63184676400,63202820400,18000,1,'AMST',],[63202802400,63216108000,63202816800,63216122400,14400,0,'AMT',],[63216108000,63234856800,63216126000,63234874800,18000,1,'AMST',],[63234856800,63247557600,63234871200,63247572000,14400,0,'AMT',],[63247557600,63266306400,63247575600,63266324400,18000,1,'AMST',],[63266306400,63279007200,63266320800,63279021600,14400,0,'AMT',],[63279007200,63297756000,63279025200,63297774000,18000,1,'AMST',],[63297756000,63310456800,63297770400,63310471200,14400,0,'AMT',],[63310456800,63329205600,63310474800,63329223600,18000,1,'AMST',],[63329205600,63342511200,63329220000,63342525600,14400,0,'AMT',],[63342511200,63360655200,63342529200,63360673200,18000,1,'AMST',],[63360655200,63373960800,63360669600,63373975200,14400,0,'AMT',],[63373960800,63392104800,63373978800,63392122800,18000,1,'AMST',],[63392104800,63405410400,63392119200,63405424800,14400,0,'AMT',],[63405410400,63424159200,63405428400,63424177200,18000,1,'AMST',],[63424159200,63436860000,63424173600,63436874400,14400,0,'AMT',],[63436860000,63455608800,63436878000,63455626800,18000,1,'AMST',],[63455608800,63468309600,63455623200,63468324000,14400,0,'AMT',],[63468309600,DateTime::TimeZone::INFINITY,63468324000,DateTime::TimeZone::INFINITY,14400,0,'AMT',],];sub olson_version {'2016a'}sub has_dst_changes {31}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ASIA_YEREVAN

$fatpacked{"DateTime/TimeZone/Atlantic/Azores.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ATLANTIC_AZORES';
  package DateTime::TimeZone::Atlantic::Azores;$DateTime::TimeZone::Atlantic::Azores::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Atlantic::Azores::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59421778960,DateTime::TimeZone::NEG_INFINITY,59421772800,-6160,0,'LMT',],[59421778960,60305306072,59421772088,60305299200,-6872,0,'HMT',],[60305306072,60446134800,60305298872,60446127600,-7200,0,'AZOT',],[60446134800,60457888800,60446131200,60457885200,-3600,1,'AZOST',],[60457888800,60468253200,60457881600,60468246000,-7200,0,'AZOT',],[60468253200,60487952400,60468249600,60487948800,-3600,1,'AZOST',],[60487952400,60499875600,60487945200,60499868400,-7200,0,'AZOT',],[60499875600,60519488400,60499872000,60519484800,-3600,1,'AZOST',],[60519488400,60531325200,60519481200,60531318000,-7200,0,'AZOT',],[60531325200,60551024400,60531321600,60551020800,-3600,1,'AZOST',],[60551024400,60562947600,60551017200,60562940400,-7200,0,'AZOT',],[60562947600,60582646800,60562944000,60582643200,-3600,1,'AZOST',],[60582646800,60594483600,60582639600,60594476400,-7200,0,'AZOT',],[60594483600,60614182800,60594480000,60614179200,-3600,1,'AZOST',],[60614182800,60693238800,60614175600,60693231600,-7200,0,'AZOT',],[60693238800,60708877200,60693235200,60708873600,-3600,1,'AZOST',],[60708877200,60756397200,60708870000,60756390000,-7200,0,'AZOT',],[60756397200,60770912400,60756393600,60770908800,-3600,1,'AZOST',],[60770912400,60787242000,60770905200,60787234800,-7200,0,'AZOT',],[60787242000,60802362000,60787238400,60802358400,-3600,1,'AZOST',],[60802362000,60819296400,60802354800,60819289200,-7200,0,'AZOT',],[60819296400,60834416400,60819292800,60834412800,-3600,1,'AZOST',],[60834416400,60851350800,60834409200,60851343600,-7200,0,'AZOT',],[60851350800,60865866000,60851347200,60865862400,-3600,1,'AZOST',],[60865866000,60914250000,60865858800,60914242800,-7200,0,'AZOT',],[60914250000,60928765200,60914246400,60928761600,-3600,1,'AZOST',],[60928765200,60944490000,60928758000,60944482800,-7200,0,'AZOT',],[60944490000,60960214800,60944486400,60960211200,-3600,1,'AZOST',],[60960214800,61007994000,60960207600,61007986800,-7200,0,'AZOT',],[61007994000,61023718800,61007990400,61023715200,-3600,1,'AZOST',],[61023718800,61038838800,61023711600,61038831600,-7200,0,'AZOT',],[61038838800,61055168400,61038835200,61055164800,-3600,1,'AZOST',],[61055168400,61072102800,61055161200,61072095600,-7200,0,'AZOT',],[61072102800,61086618000,61072099200,61086614400,-3600,1,'AZOST',],[61086618000,61102342800,61086610800,61102335600,-7200,0,'AZOT',],[61102342800,61118067600,61102339200,61118064000,-3600,1,'AZOST',],[61118067600,61133187600,61118060400,61133180400,-7200,0,'AZOT',],[61133187600,61149517200,61133184000,61149513600,-3600,1,'AZOST',],[61149517200,61166451600,61149510000,61166444400,-7200,0,'AZOT',],[61166451600,61185200400,61166448000,61185196800,-3600,1,'AZOST',],[61185200400,61193667600,61185193200,61193660400,-7200,0,'AZOT',],[61193667600,61213021200,61193664000,61213017600,-3600,1,'AZOST',],[61213021200,61228746000,61213014000,61228738800,-7200,0,'AZOT',],[61228746000,61244557200,61228742400,61244553600,-3600,1,'AZOST',],[61244557200,61258381200,61244550000,61258374000,-7200,0,'AZOT',],[61258381200,61262006400,61258377600,61262002800,-3600,1,'AZOST',],[61262006400,61271683200,61262006400,61271683200,0,1,'AZOMT',],[61271683200,61277734800,61271679600,61277731200,-3600,1,'AZOST',],[61277734800,61289830800,61277727600,61289823600,-7200,0,'AZOT',],[61289830800,61292851200,61289827200,61292847600,-3600,1,'AZOST',],[61292851200,61304342400,61292851200,61304342400,0,1,'AZOMT',],[61304342400,61309789200,61304338800,61309785600,-3600,1,'AZOST',],[61309789200,61321280400,61309782000,61321273200,-7200,0,'AZOT',],[61321280400,61324905600,61321276800,61324902000,-3600,1,'AZOST',],[61324905600,61335792000,61324905600,61335792000,0,1,'AZOMT',],[61335792000,61341238800,61335788400,61341235200,-3600,1,'AZOST',],[61341238800,61352730000,61341231600,61352722800,-7200,0,'AZOT',],[61352730000,61356355200,61352726400,61356351600,-3600,1,'AZOST',],[61356355200,61367241600,61356355200,61367241600,0,1,'AZOMT',],[61367241600,61372688400,61367238000,61372684800,-3600,1,'AZOST',],[61372688400,61386598800,61372681200,61386591600,-7200,0,'AZOT',],[61386598800,61402323600,61386595200,61402320000,-3600,1,'AZOST',],[61402323600,61418059200,61402316400,61418052000,-7200,0,'AZOT',],[61418059200,61433784000,61418055600,61433780400,-3600,1,'AZOST',],[61433784000,61449508800,61433776800,61449501600,-7200,0,'AZOT',],[61449508800,61465233600,61449505200,61465230000,-3600,1,'AZOST',],[61465233600,61480958400,61465226400,61480951200,-7200,0,'AZOT',],[61480958400,61496683200,61480954800,61496679600,-3600,1,'AZOST',],[61496683200,61543857600,61496676000,61543850400,-7200,0,'AZOT',],[61543857600,61560187200,61543854000,61560183600,-3600,1,'AZOST',],[61560187200,61575912000,61560180000,61575904800,-7200,0,'AZOT',],[61575912000,61591636800,61575908400,61591633200,-3600,1,'AZOST',],[61591636800,61607361600,61591629600,61607354400,-7200,0,'AZOT',],[61607361600,61623086400,61607358000,61623082800,-3600,1,'AZOST',],[61623086400,61638811200,61623079200,61638804000,-7200,0,'AZOT',],[61638811200,61654536000,61638807600,61654532400,-3600,1,'AZOST',],[61654536000,61670260800,61654528800,61670253600,-7200,0,'AZOT',],[61670260800,61685985600,61670257200,61685982000,-3600,1,'AZOST',],[61685985600,61701710400,61685978400,61701703200,-7200,0,'AZOT',],[61701710400,61718040000,61701706800,61718036400,-3600,1,'AZOST',],[61718040000,61733764800,61718032800,61733757600,-7200,0,'AZOT',],[61733764800,61749489600,61733761200,61749486000,-3600,1,'AZOST',],[61749489600,61765214400,61749482400,61765207200,-7200,0,'AZOT',],[61765214400,61780939200,61765210800,61780935600,-3600,1,'AZOST',],[61780939200,61796664000,61780932000,61796656800,-7200,0,'AZOT',],[61796664000,61812388800,61796660400,61812385200,-3600,1,'AZOST',],[61812388800,61828113600,61812381600,61828106400,-7200,0,'AZOT',],[61828113600,61843838400,61828110000,61843834800,-3600,1,'AZOST',],[61843838400,61859563200,61843831200,61859556000,-7200,0,'AZOT',],[61859563200,61875288000,61859559600,61875284400,-3600,1,'AZOST',],[61875288000,61891012800,61875280800,61891005600,-7200,0,'AZOT',],[61891012800,61907342400,61891009200,61907338800,-3600,1,'AZOST',],[61907342400,61923067200,61907335200,61923060000,-7200,0,'AZOT',],[61923067200,61938792000,61923063600,61938788400,-3600,1,'AZOST',],[61938792000,61954516800,61938784800,61954509600,-7200,0,'AZOT',],[61954516800,61970241600,61954513200,61970238000,-3600,1,'AZOST',],[61970241600,61985966400,61970234400,61985959200,-7200,0,'AZOT',],[61985966400,62001691200,61985962800,62001687600,-3600,1,'AZOST',],[62001691200,62017416000,62001684000,62017408800,-7200,0,'AZOT',],[62017416000,62363955600,62017412400,62363952000,-3600,0,'AZOT',],[62363955600,62379680400,62363955600,62379680400,0,1,'AZOST',],[62379680400,62396010000,62379676800,62396006400,-3600,0,'AZOT',],[62396010000,62411734800,62396010000,62411734800,0,1,'AZOST',],[62411734800,62427459600,62411731200,62427456000,-3600,0,'AZOT',],[62427459600,62443188000,62427459600,62443188000,0,1,'AZOST',],[62443188000,62458909200,62443184400,62458905600,-3600,0,'AZOT',],[62458909200,62474637600,62458909200,62474637600,0,1,'AZOST',],[62474637600,62490362400,62474634000,62490358800,-3600,0,'AZOT',],[62490362400,62506087200,62490362400,62506087200,0,1,'AZOST',],[62506087200,62521812000,62506083600,62521808400,-3600,0,'AZOT',],[62521812000,62537536800,62521812000,62537536800,0,1,'AZOST',],[62537536800,62553265200,62537533200,62553261600,-3600,0,'AZOT',],[62553265200,62568986400,62553265200,62568986400,0,1,'AZOST',],[62568986400,62584711200,62568982800,62584707600,-3600,0,'AZOT',],[62584711200,62601040800,62584711200,62601040800,0,1,'AZOST',],[62601040800,62616765600,62601037200,62616762000,-3600,0,'AZOT',],[62616765600,62632490400,62616765600,62632490400,0,1,'AZOST',],[62632490400,62648215200,62632486800,62648211600,-3600,0,'AZOT',],[62648215200,62663940000,62648215200,62663940000,0,1,'AZOST',],[62663940000,62679664800,62663936400,62679661200,-3600,0,'AZOT',],[62679664800,62695389600,62679664800,62695389600,0,1,'AZOST',],[62695389600,62711114400,62695386000,62711110800,-3600,0,'AZOT',],[62711114400,62726839200,62711114400,62726839200,0,1,'AZOST',],[62726839200,62742564000,62726835600,62742560400,-3600,0,'AZOT',],[62742564000,62758288800,62742564000,62758288800,0,1,'AZOST',],[62758288800,62774013600,62758285200,62774010000,-3600,0,'AZOT',],[62774013600,62790343200,62774013600,62790343200,0,1,'AZOST',],[62790343200,62806068000,62790339600,62806064400,-3600,0,'AZOT',],[62806068000,62821792800,62806068000,62821792800,0,1,'AZOST',],[62821792800,62837517600,62821789200,62837514000,-3600,0,'AZOT',],[62837517600,62853242400,62837517600,62853242400,0,1,'AZOST',],[62853242400,62868963600,62853242400,62868963600,0,0,'WET',],[62868963600,62884688400,62868963600,62884688400,0,1,'AZOST',],[62884688400,62900413200,62884684800,62900409600,-3600,0,'AZOT',],[62900413200,62916138000,62900413200,62916138000,0,1,'AZOST',],[62916138000,62931862800,62916134400,62931859200,-3600,0,'AZOT',],[62931862800,62947587600,62931862800,62947587600,0,1,'AZOST',],[62947587600,62963917200,62947584000,62963913600,-3600,0,'AZOT',],[62963917200,62982061200,62963917200,62982061200,0,1,'AZOST',],[62982061200,62995366800,62982057600,62995363200,-3600,0,'AZOT',],[62995366800,63013510800,62995366800,63013510800,0,1,'AZOST',],[63013510800,63026816400,63013507200,63026812800,-3600,0,'AZOT',],[63026816400,63044960400,63026816400,63044960400,0,1,'AZOST',],[63044960400,63058266000,63044956800,63058262400,-3600,0,'AZOT',],[63058266000,63077014800,63058266000,63077014800,0,1,'AZOST',],[63077014800,63089715600,63077011200,63089712000,-3600,0,'AZOT',],[63089715600,63108464400,63089715600,63108464400,0,1,'AZOST',],[63108464400,63121165200,63108460800,63121161600,-3600,0,'AZOT',],[63121165200,63139914000,63121165200,63139914000,0,1,'AZOST',],[63139914000,63153219600,63139910400,63153216000,-3600,0,'AZOT',],[63153219600,63171363600,63153219600,63171363600,0,1,'AZOST',],[63171363600,63184669200,63171360000,63184665600,-3600,0,'AZOT',],[63184669200,63202813200,63184669200,63202813200,0,1,'AZOST',],[63202813200,63216118800,63202809600,63216115200,-3600,0,'AZOT',],[63216118800,63234867600,63216118800,63234867600,0,1,'AZOST',],[63234867600,63247568400,63234864000,63247564800,-3600,0,'AZOT',],[63247568400,63266317200,63247568400,63266317200,0,1,'AZOST',],[63266317200,63279018000,63266313600,63279014400,-3600,0,'AZOT',],[63279018000,63297766800,63279018000,63297766800,0,1,'AZOST',],[63297766800,63310467600,63297763200,63310464000,-3600,0,'AZOT',],[63310467600,63329216400,63310467600,63329216400,0,1,'AZOST',],[63329216400,63342522000,63329212800,63342518400,-3600,0,'AZOT',],[63342522000,63360666000,63342522000,63360666000,0,1,'AZOST',],[63360666000,63373971600,63360662400,63373968000,-3600,0,'AZOT',],[63373971600,63392115600,63373971600,63392115600,0,1,'AZOST',],[63392115600,63405421200,63392112000,63405417600,-3600,0,'AZOT',],[63405421200,63424170000,63405421200,63424170000,0,1,'AZOST',],[63424170000,63436870800,63424166400,63436867200,-3600,0,'AZOT',],[63436870800,63455619600,63436870800,63455619600,0,1,'AZOST',],[63455619600,63468320400,63455616000,63468316800,-3600,0,'AZOT',],[63468320400,63487069200,63468320400,63487069200,0,1,'AZOST',],[63487069200,63500374800,63487065600,63500371200,-3600,0,'AZOT',],[63500374800,63518518800,63500374800,63518518800,0,1,'AZOST',],[63518518800,63531824400,63518515200,63531820800,-3600,0,'AZOT',],[63531824400,63549968400,63531824400,63549968400,0,1,'AZOST',],[63549968400,63563274000,63549964800,63563270400,-3600,0,'AZOT',],[63563274000,63581418000,63563274000,63581418000,0,1,'AZOST',],[63581418000,63594723600,63581414400,63594720000,-3600,0,'AZOT',],[63594723600,63613472400,63594723600,63613472400,0,1,'AZOST',],[63613472400,63626173200,63613468800,63626169600,-3600,0,'AZOT',],[63626173200,63644922000,63626173200,63644922000,0,1,'AZOST',],[63644922000,63657622800,63644918400,63657619200,-3600,0,'AZOT',],[63657622800,63676371600,63657622800,63676371600,0,1,'AZOST',],[63676371600,63689677200,63676368000,63689673600,-3600,0,'AZOT',],[63689677200,63707821200,63689677200,63707821200,0,1,'AZOST',],[63707821200,63721126800,63707817600,63721123200,-3600,0,'AZOT',],[63721126800,63739270800,63721126800,63739270800,0,1,'AZOST',],[63739270800,63752576400,63739267200,63752572800,-3600,0,'AZOT',],[63752576400,63771325200,63752576400,63771325200,0,1,'AZOST',],[63771325200,63784026000,63771321600,63784022400,-3600,0,'AZOT',],[63784026000,63802774800,63784026000,63802774800,0,1,'AZOST',],[63802774800,63815475600,63802771200,63815472000,-3600,0,'AZOT',],[63815475600,63834224400,63815475600,63834224400,0,1,'AZOST',],[63834224400,63847530000,63834220800,63847526400,-3600,0,'AZOT',],[63847530000,63865674000,63847530000,63865674000,0,1,'AZOST',],[63865674000,63878979600,63865670400,63878976000,-3600,0,'AZOT',],[63878979600,63897123600,63878979600,63897123600,0,1,'AZOST',],[63897123600,63910429200,63897120000,63910425600,-3600,0,'AZOT',],[63910429200,63928573200,63910429200,63928573200,0,1,'AZOST',],[63928573200,63941878800,63928569600,63941875200,-3600,0,'AZOT',],[63941878800,63960627600,63941878800,63960627600,0,1,'AZOST',],];sub olson_version {'2016a'}sub has_dst_changes {103}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-3600}my$last_observance=bless({'format'=>'AZO%sT','gmtoff'=>'-1:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>727650,'local_rd_secs'=>3600,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>727650,'utc_rd_secs'=>3600,'utc_year'=>1994 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-3600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>727650,'local_rd_secs'=>3600,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>727650,'utc_rd_secs'=>3600,'utc_year'=>1994 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_ATLANTIC_AZORES

$fatpacked{"DateTime/TimeZone/Atlantic/Bermuda.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ATLANTIC_BERMUDA';
  package DateTime::TimeZone::Atlantic::Bermuda;$DateTime::TimeZone::Atlantic::Bermuda::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Atlantic::Bermuda::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60873401958,DateTime::TimeZone::NEG_INFINITY,60873386400,-15558,0,'LMT',],[60873401958,62272044000,60873387558,62272029600,-14400,0,'AST',],[62272044000,62287765200,62272033200,62287754400,-10800,1,'ADT',],[62287765200,62303493600,62287750800,62303479200,-14400,0,'AST',],[62303493600,62319214800,62303482800,62319204000,-10800,1,'ADT',],[62319214800,62325000000,62319200400,62324985600,-14400,0,'AST',],[62325000000,62334943200,62324985600,62334928800,-14400,0,'AST',],[62334943200,62351269200,62334932400,62351258400,-10800,1,'ADT',],[62351269200,62366392800,62351254800,62366378400,-14400,0,'AST',],[62366392800,62382718800,62366382000,62382708000,-10800,1,'ADT',],[62382718800,62398447200,62382704400,62398432800,-14400,0,'AST',],[62398447200,62414168400,62398436400,62414157600,-10800,1,'ADT',],[62414168400,62429896800,62414154000,62429882400,-14400,0,'AST',],[62429896800,62445618000,62429886000,62445607200,-10800,1,'ADT',],[62445618000,62461346400,62445603600,62461332000,-14400,0,'AST',],[62461346400,62477067600,62461335600,62477056800,-10800,1,'ADT',],[62477067600,62492796000,62477053200,62492781600,-14400,0,'AST',],[62492796000,62508517200,62492785200,62508506400,-10800,1,'ADT',],[62508517200,62524245600,62508502800,62524231200,-14400,0,'AST',],[62524245600,62540571600,62524234800,62540560800,-10800,1,'ADT',],[62540571600,62555695200,62540557200,62555680800,-14400,0,'AST',],[62555695200,62572021200,62555684400,62572010400,-10800,1,'ADT',],[62572021200,62587749600,62572006800,62587735200,-14400,0,'AST',],[62587749600,62603470800,62587738800,62603460000,-10800,1,'ADT',],[62603470800,62619199200,62603456400,62619184800,-14400,0,'AST',],[62619199200,62634920400,62619188400,62634909600,-10800,1,'ADT',],[62634920400,62650648800,62634906000,62650634400,-14400,0,'AST',],[62650648800,62666370000,62650638000,62666359200,-10800,1,'ADT',],[62666370000,62680284000,62666355600,62680269600,-14400,0,'AST',],[62680284000,62697819600,62680273200,62697808800,-10800,1,'ADT',],[62697819600,62711733600,62697805200,62711719200,-14400,0,'AST',],[62711733600,62729874000,62711722800,62729863200,-10800,1,'ADT',],[62729874000,62743183200,62729859600,62743168800,-14400,0,'AST',],[62743183200,62761323600,62743172400,62761312800,-10800,1,'ADT',],[62761323600,62774632800,62761309200,62774618400,-14400,0,'AST',],[62774632800,62792773200,62774622000,62792762400,-10800,1,'ADT',],[62792773200,62806687200,62792758800,62806672800,-14400,0,'AST',],[62806687200,62824222800,62806676400,62824212000,-10800,1,'ADT',],[62824222800,62838136800,62824208400,62838122400,-14400,0,'AST',],[62838136800,62855672400,62838126000,62855661600,-10800,1,'ADT',],[62855672400,62869586400,62855658000,62869572000,-14400,0,'AST',],[62869586400,62887726800,62869575600,62887716000,-10800,1,'ADT',],[62887726800,62901036000,62887712400,62901021600,-14400,0,'AST',],[62901036000,62919176400,62901025200,62919165600,-10800,1,'ADT',],[62919176400,62932485600,62919162000,62932471200,-14400,0,'AST',],[62932485600,62950626000,62932474800,62950615200,-10800,1,'ADT',],[62950626000,62964540000,62950611600,62964525600,-14400,0,'AST',],[62964540000,62982075600,62964529200,62982064800,-10800,1,'ADT',],[62982075600,62995989600,62982061200,62995975200,-14400,0,'AST',],[62995989600,63013525200,62995978800,63013514400,-10800,1,'ADT',],[63013525200,63027439200,63013510800,63027424800,-14400,0,'AST',],[63027439200,63044974800,63027428400,63044964000,-10800,1,'ADT',],[63044974800,63058888800,63044960400,63058874400,-14400,0,'AST',],[63058888800,63077029200,63058878000,63077018400,-10800,1,'ADT',],[63077029200,63090338400,63077014800,63090324000,-14400,0,'AST',],[63090338400,63108478800,63090327600,63108468000,-10800,1,'ADT',],[63108478800,63121788000,63108464400,63121773600,-14400,0,'AST',],[63121788000,63139928400,63121777200,63139917600,-10800,1,'ADT',],[63139928400,63153842400,63139914000,63153828000,-14400,0,'AST',],[63153842400,63171378000,63153831600,63171367200,-10800,1,'ADT',],[63171378000,63185292000,63171363600,63185277600,-14400,0,'AST',],[63185292000,63202827600,63185281200,63202816800,-10800,1,'ADT',],[63202827600,63216741600,63202813200,63216727200,-14400,0,'AST',],[63216741600,63234882000,63216730800,63234871200,-10800,1,'ADT',],[63234882000,63248191200,63234867600,63248176800,-14400,0,'AST',],[63248191200,63266331600,63248180400,63266320800,-10800,1,'ADT',],[63266331600,63279640800,63266317200,63279626400,-14400,0,'AST',],[63279640800,63297781200,63279630000,63297770400,-10800,1,'ADT',],[63297781200,63309276000,63297766800,63309261600,-14400,0,'AST',],[63309276000,63329835600,63309265200,63329824800,-10800,1,'ADT',],[63329835600,63340725600,63329821200,63340711200,-14400,0,'AST',],[63340725600,63361285200,63340714800,63361274400,-10800,1,'ADT',],[63361285200,63372175200,63361270800,63372160800,-14400,0,'AST',],[63372175200,63392734800,63372164400,63392724000,-10800,1,'ADT',],[63392734800,63404229600,63392720400,63404215200,-14400,0,'AST',],[63404229600,63424789200,63404218800,63424778400,-10800,1,'ADT',],[63424789200,63435679200,63424774800,63435664800,-14400,0,'AST',],[63435679200,63456238800,63435668400,63456228000,-10800,1,'ADT',],[63456238800,63467128800,63456224400,63467114400,-14400,0,'AST',],[63467128800,63487688400,63467118000,63487677600,-10800,1,'ADT',],[63487688400,63498578400,63487674000,63498564000,-14400,0,'AST',],[63498578400,63519138000,63498567600,63519127200,-10800,1,'ADT',],[63519138000,63530028000,63519123600,63530013600,-14400,0,'AST',],[63530028000,63550587600,63530017200,63550576800,-10800,1,'ADT',],[63550587600,63561477600,63550573200,63561463200,-14400,0,'AST',],[63561477600,63582037200,63561466800,63582026400,-10800,1,'ADT',],[63582037200,63593532000,63582022800,63593517600,-14400,0,'AST',],[63593532000,63614091600,63593521200,63614080800,-10800,1,'ADT',],[63614091600,63624981600,63614077200,63624967200,-14400,0,'AST',],[63624981600,63645541200,63624970800,63645530400,-10800,1,'ADT',],[63645541200,63656431200,63645526800,63656416800,-14400,0,'AST',],[63656431200,63676990800,63656420400,63676980000,-10800,1,'ADT',],[63676990800,63687880800,63676976400,63687866400,-14400,0,'AST',],[63687880800,63708440400,63687870000,63708429600,-10800,1,'ADT',],[63708440400,63719330400,63708426000,63719316000,-14400,0,'AST',],[63719330400,63739890000,63719319600,63739879200,-10800,1,'ADT',],[63739890000,63751384800,63739875600,63751370400,-14400,0,'AST',],[63751384800,63771944400,63751374000,63771933600,-10800,1,'ADT',],[63771944400,63782834400,63771930000,63782820000,-14400,0,'AST',],[63782834400,63803394000,63782823600,63803383200,-10800,1,'ADT',],[63803394000,63814284000,63803379600,63814269600,-14400,0,'AST',],[63814284000,63834843600,63814273200,63834832800,-10800,1,'ADT',],[63834843600,63845733600,63834829200,63845719200,-14400,0,'AST',],[63845733600,63866293200,63845722800,63866282400,-10800,1,'ADT',],[63866293200,63877183200,63866278800,63877168800,-14400,0,'AST',],[63877183200,63897742800,63877172400,63897732000,-10800,1,'ADT',],[63897742800,63908632800,63897728400,63908618400,-14400,0,'AST',],[63908632800,63929192400,63908622000,63929181600,-10800,1,'ADT',],[63929192400,63940687200,63929178000,63940672800,-14400,0,'AST',],[63940687200,63961246800,63940676400,63961236000,-10800,1,'ADT',],];sub olson_version {'2016a'}sub has_dst_changes {54}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-14400}my$last_observance=bless({'format'=>'A%sT','gmtoff'=>'-4:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>721354,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>721354,'utc_rd_secs'=>0,'utc_year'=>1977 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>-14400,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>721354,'local_rd_secs'=>14400,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>721354,'utc_rd_secs'=>14400,'utc_year'=>1977 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_ATLANTIC_BERMUDA

$fatpacked{"DateTime/TimeZone/Atlantic/Canary.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ATLANTIC_CANARY';
  package DateTime::TimeZone::Atlantic::Canary;$DateTime::TimeZone::Atlantic::Canary::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Atlantic::Canary::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60626019696,DateTime::TimeZone::NEG_INFINITY,60626016000,-3696,0,'LMT',],[60626019696,61401808800,60626016096,61401805200,-3600,0,'CANT',],[61401808800,62459510400,61401808800,62459510400,0,0,'WET',],[62459510400,62474634000,62459514000,62474637600,3600,1,'WEST',],[62474634000,62490358800,62474634000,62490358800,0,0,'WET',],[62490358800,62506083600,62490362400,62506087200,3600,1,'WEST',],[62506083600,62521808400,62506083600,62521808400,0,0,'WET',],[62521808400,62537533200,62521812000,62537536800,3600,1,'WEST',],[62537533200,62553258000,62537533200,62553258000,0,0,'WET',],[62553258000,62568982800,62553261600,62568986400,3600,1,'WEST',],[62568982800,62584707600,62568982800,62584707600,0,0,'WET',],[62584707600,62601037200,62584711200,62601040800,3600,1,'WEST',],[62601037200,62616762000,62601037200,62616762000,0,0,'WET',],[62616762000,62632486800,62616765600,62632490400,3600,1,'WEST',],[62632486800,62648211600,62632486800,62648211600,0,0,'WET',],[62648211600,62663936400,62648215200,62663940000,3600,1,'WEST',],[62663936400,62679661200,62663936400,62679661200,0,0,'WET',],[62679661200,62695386000,62679664800,62695389600,3600,1,'WEST',],[62695386000,62711110800,62695386000,62711110800,0,0,'WET',],[62711110800,62726835600,62711114400,62726839200,3600,1,'WEST',],[62726835600,62742560400,62726835600,62742560400,0,0,'WET',],[62742560400,62758285200,62742564000,62758288800,3600,1,'WEST',],[62758285200,62774010000,62758285200,62774010000,0,0,'WET',],[62774010000,62790339600,62774013600,62790343200,3600,1,'WEST',],[62790339600,62806064400,62790339600,62806064400,0,0,'WET',],[62806064400,62821789200,62806068000,62821792800,3600,1,'WEST',],[62821789200,62837514000,62821789200,62837514000,0,0,'WET',],[62837514000,62853238800,62837517600,62853242400,3600,1,'WEST',],[62853238800,62868963600,62853238800,62868963600,0,0,'WET',],[62868963600,62884688400,62868967200,62884692000,3600,1,'WEST',],[62884688400,62900413200,62884688400,62900413200,0,0,'WET',],[62900413200,62916138000,62900416800,62916141600,3600,1,'WEST',],[62916138000,62931862800,62916138000,62931862800,0,0,'WET',],[62931862800,62947587600,62931866400,62947591200,3600,1,'WEST',],[62947587600,62963917200,62947587600,62963917200,0,0,'WET',],[62963917200,62982061200,62963920800,62982064800,3600,1,'WEST',],[62982061200,62995366800,62982061200,62995366800,0,0,'WET',],[62995366800,63013510800,62995370400,63013514400,3600,1,'WEST',],[63013510800,63026816400,63013510800,63026816400,0,0,'WET',],[63026816400,63044960400,63026820000,63044964000,3600,1,'WEST',],[63044960400,63058266000,63044960400,63058266000,0,0,'WET',],[63058266000,63077014800,63058269600,63077018400,3600,1,'WEST',],[63077014800,63089715600,63077014800,63089715600,0,0,'WET',],[63089715600,63108464400,63089719200,63108468000,3600,1,'WEST',],[63108464400,63121165200,63108464400,63121165200,0,0,'WET',],[63121165200,63139914000,63121168800,63139917600,3600,1,'WEST',],[63139914000,63153219600,63139914000,63153219600,0,0,'WET',],[63153219600,63171363600,63153223200,63171367200,3600,1,'WEST',],[63171363600,63184669200,63171363600,63184669200,0,0,'WET',],[63184669200,63202813200,63184672800,63202816800,3600,1,'WEST',],[63202813200,63216118800,63202813200,63216118800,0,0,'WET',],[63216118800,63234867600,63216122400,63234871200,3600,1,'WEST',],[63234867600,63247568400,63234867600,63247568400,0,0,'WET',],[63247568400,63266317200,63247572000,63266320800,3600,1,'WEST',],[63266317200,63279018000,63266317200,63279018000,0,0,'WET',],[63279018000,63297766800,63279021600,63297770400,3600,1,'WEST',],[63297766800,63310467600,63297766800,63310467600,0,0,'WET',],[63310467600,63329216400,63310471200,63329220000,3600,1,'WEST',],[63329216400,63342522000,63329216400,63342522000,0,0,'WET',],[63342522000,63360666000,63342525600,63360669600,3600,1,'WEST',],[63360666000,63373971600,63360666000,63373971600,0,0,'WET',],[63373971600,63392115600,63373975200,63392119200,3600,1,'WEST',],[63392115600,63405421200,63392115600,63405421200,0,0,'WET',],[63405421200,63424170000,63405424800,63424173600,3600,1,'WEST',],[63424170000,63436870800,63424170000,63436870800,0,0,'WET',],[63436870800,63455619600,63436874400,63455623200,3600,1,'WEST',],[63455619600,63468320400,63455619600,63468320400,0,0,'WET',],[63468320400,63487069200,63468324000,63487072800,3600,1,'WEST',],[63487069200,63500374800,63487069200,63500374800,0,0,'WET',],[63500374800,63518518800,63500378400,63518522400,3600,1,'WEST',],[63518518800,63531824400,63518518800,63531824400,0,0,'WET',],[63531824400,63549968400,63531828000,63549972000,3600,1,'WEST',],[63549968400,63563274000,63549968400,63563274000,0,0,'WET',],[63563274000,63581418000,63563277600,63581421600,3600,1,'WEST',],[63581418000,63594723600,63581418000,63594723600,0,0,'WET',],[63594723600,63613472400,63594727200,63613476000,3600,1,'WEST',],[63613472400,63626173200,63613472400,63626173200,0,0,'WET',],[63626173200,63644922000,63626176800,63644925600,3600,1,'WEST',],[63644922000,63657622800,63644922000,63657622800,0,0,'WET',],[63657622800,63676371600,63657626400,63676375200,3600,1,'WEST',],[63676371600,63689677200,63676371600,63689677200,0,0,'WET',],[63689677200,63707821200,63689680800,63707824800,3600,1,'WEST',],[63707821200,63721126800,63707821200,63721126800,0,0,'WET',],[63721126800,63739270800,63721130400,63739274400,3600,1,'WEST',],[63739270800,63752576400,63739270800,63752576400,0,0,'WET',],[63752576400,63771325200,63752580000,63771328800,3600,1,'WEST',],[63771325200,63784026000,63771325200,63784026000,0,0,'WET',],[63784026000,63802774800,63784029600,63802778400,3600,1,'WEST',],[63802774800,63815475600,63802774800,63815475600,0,0,'WET',],[63815475600,63834224400,63815479200,63834228000,3600,1,'WEST',],[63834224400,63847530000,63834224400,63847530000,0,0,'WET',],[63847530000,63865674000,63847533600,63865677600,3600,1,'WEST',],[63865674000,63878979600,63865674000,63878979600,0,0,'WET',],[63878979600,63897123600,63878983200,63897127200,3600,1,'WEST',],[63897123600,63910429200,63897123600,63910429200,0,0,'WET',],[63910429200,63928573200,63910432800,63928576800,3600,1,'WEST',],[63928573200,63941878800,63928573200,63941878800,0,0,'WET',],[63941878800,63960627600,63941882400,63960631200,3600,1,'WEST',],];sub olson_version {'2016a'}sub has_dst_changes {48}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {0}my$last_observance=bless({'format'=>'WE%sT','gmtoff'=>'0:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>723086,'local_rd_secs'=>3600,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>723086,'utc_rd_secs'=>3600,'utc_year'=>1981 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>0,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>723086,'local_rd_secs'=>3600,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>723086,'utc_rd_secs'=>3600,'utc_year'=>1981 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_ATLANTIC_CANARY

$fatpacked{"DateTime/TimeZone/Atlantic/Cape_Verde.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ATLANTIC_CAPE_VERDE';
  package DateTime::TimeZone::Atlantic::Cape_Verde;$DateTime::TimeZone::Atlantic::Cape_Verde::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Atlantic::Cape_Verde::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60147538444,DateTime::TimeZone::NEG_INFINITY,60147532800,-5644,0,'LMT',],[60147538444,61273072800,60147531244,61273065600,-7200,0,'CVT',],[61273072800,61371565200,61273069200,61371561600,-3600,1,'CVST',],[61371565200,62321803200,61371558000,62321796000,-7200,0,'CVT',],[62321803200,DateTime::TimeZone::INFINITY,62321799600,DateTime::TimeZone::INFINITY,-3600,0,'CVT',],];sub olson_version {'2016a'}sub has_dst_changes {1}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ATLANTIC_CAPE_VERDE

$fatpacked{"DateTime/TimeZone/Atlantic/Faroe.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ATLANTIC_FAROE';
  package DateTime::TimeZone::Atlantic::Faroe;$DateTime::TimeZone::Atlantic::Faroe::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Atlantic::Faroe::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60179934424,DateTime::TimeZone::NEG_INFINITY,60179932800,-1624,0,'LMT',],[60179934424,62482838400,60179934424,62482838400,0,0,'WET',],[62482838400,62490358800,62482838400,62490358800,0,0,'WET',],[62490358800,62506083600,62490362400,62506087200,3600,1,'WEST',],[62506083600,62521808400,62506083600,62521808400,0,0,'WET',],[62521808400,62537533200,62521812000,62537536800,3600,1,'WEST',],[62537533200,62553258000,62537533200,62553258000,0,0,'WET',],[62553258000,62568982800,62553261600,62568986400,3600,1,'WEST',],[62568982800,62584707600,62568982800,62584707600,0,0,'WET',],[62584707600,62601037200,62584711200,62601040800,3600,1,'WEST',],[62601037200,62616762000,62601037200,62616762000,0,0,'WET',],[62616762000,62632486800,62616765600,62632490400,3600,1,'WEST',],[62632486800,62648211600,62632486800,62648211600,0,0,'WET',],[62648211600,62663936400,62648215200,62663940000,3600,1,'WEST',],[62663936400,62679661200,62663936400,62679661200,0,0,'WET',],[62679661200,62695386000,62679664800,62695389600,3600,1,'WEST',],[62695386000,62711110800,62695386000,62711110800,0,0,'WET',],[62711110800,62726835600,62711114400,62726839200,3600,1,'WEST',],[62726835600,62742560400,62726835600,62742560400,0,0,'WET',],[62742560400,62758285200,62742564000,62758288800,3600,1,'WEST',],[62758285200,62774010000,62758285200,62774010000,0,0,'WET',],[62774010000,62790339600,62774013600,62790343200,3600,1,'WEST',],[62790339600,62806064400,62790339600,62806064400,0,0,'WET',],[62806064400,62821789200,62806068000,62821792800,3600,1,'WEST',],[62821789200,62837514000,62821789200,62837514000,0,0,'WET',],[62837514000,62853238800,62837517600,62853242400,3600,1,'WEST',],[62853238800,62868963600,62853238800,62868963600,0,0,'WET',],[62868963600,62884688400,62868967200,62884692000,3600,1,'WEST',],[62884688400,62900413200,62884688400,62900413200,0,0,'WET',],[62900413200,62916138000,62900416800,62916141600,3600,1,'WEST',],[62916138000,62931862800,62916138000,62931862800,0,0,'WET',],[62931862800,62947587600,62931866400,62947591200,3600,1,'WEST',],[62947587600,62963917200,62947587600,62963917200,0,0,'WET',],[62963917200,62982061200,62963920800,62982064800,3600,1,'WEST',],[62982061200,62995366800,62982061200,62995366800,0,0,'WET',],[62995366800,63013510800,62995370400,63013514400,3600,1,'WEST',],[63013510800,63026816400,63013510800,63026816400,0,0,'WET',],[63026816400,63044960400,63026820000,63044964000,3600,1,'WEST',],[63044960400,63058266000,63044960400,63058266000,0,0,'WET',],[63058266000,63077014800,63058269600,63077018400,3600,1,'WEST',],[63077014800,63089715600,63077014800,63089715600,0,0,'WET',],[63089715600,63108464400,63089719200,63108468000,3600,1,'WEST',],[63108464400,63121165200,63108464400,63121165200,0,0,'WET',],[63121165200,63139914000,63121168800,63139917600,3600,1,'WEST',],[63139914000,63153219600,63139914000,63153219600,0,0,'WET',],[63153219600,63171363600,63153223200,63171367200,3600,1,'WEST',],[63171363600,63184669200,63171363600,63184669200,0,0,'WET',],[63184669200,63202813200,63184672800,63202816800,3600,1,'WEST',],[63202813200,63216118800,63202813200,63216118800,0,0,'WET',],[63216118800,63234867600,63216122400,63234871200,3600,1,'WEST',],[63234867600,63247568400,63234867600,63247568400,0,0,'WET',],[63247568400,63266317200,63247572000,63266320800,3600,1,'WEST',],[63266317200,63279018000,63266317200,63279018000,0,0,'WET',],[63279018000,63297766800,63279021600,63297770400,3600,1,'WEST',],[63297766800,63310467600,63297766800,63310467600,0,0,'WET',],[63310467600,63329216400,63310471200,63329220000,3600,1,'WEST',],[63329216400,63342522000,63329216400,63342522000,0,0,'WET',],[63342522000,63360666000,63342525600,63360669600,3600,1,'WEST',],[63360666000,63373971600,63360666000,63373971600,0,0,'WET',],[63373971600,63392115600,63373975200,63392119200,3600,1,'WEST',],[63392115600,63405421200,63392115600,63405421200,0,0,'WET',],[63405421200,63424170000,63405424800,63424173600,3600,1,'WEST',],[63424170000,63436870800,63424170000,63436870800,0,0,'WET',],[63436870800,63455619600,63436874400,63455623200,3600,1,'WEST',],[63455619600,63468320400,63455619600,63468320400,0,0,'WET',],[63468320400,63487069200,63468324000,63487072800,3600,1,'WEST',],[63487069200,63500374800,63487069200,63500374800,0,0,'WET',],[63500374800,63518518800,63500378400,63518522400,3600,1,'WEST',],[63518518800,63531824400,63518518800,63531824400,0,0,'WET',],[63531824400,63549968400,63531828000,63549972000,3600,1,'WEST',],[63549968400,63563274000,63549968400,63563274000,0,0,'WET',],[63563274000,63581418000,63563277600,63581421600,3600,1,'WEST',],[63581418000,63594723600,63581418000,63594723600,0,0,'WET',],[63594723600,63613472400,63594727200,63613476000,3600,1,'WEST',],[63613472400,63626173200,63613472400,63626173200,0,0,'WET',],[63626173200,63644922000,63626176800,63644925600,3600,1,'WEST',],[63644922000,63657622800,63644922000,63657622800,0,0,'WET',],[63657622800,63676371600,63657626400,63676375200,3600,1,'WEST',],[63676371600,63689677200,63676371600,63689677200,0,0,'WET',],[63689677200,63707821200,63689680800,63707824800,3600,1,'WEST',],[63707821200,63721126800,63707821200,63721126800,0,0,'WET',],[63721126800,63739270800,63721130400,63739274400,3600,1,'WEST',],[63739270800,63752576400,63739270800,63752576400,0,0,'WET',],[63752576400,63771325200,63752580000,63771328800,3600,1,'WEST',],[63771325200,63784026000,63771325200,63784026000,0,0,'WET',],[63784026000,63802774800,63784029600,63802778400,3600,1,'WEST',],[63802774800,63815475600,63802774800,63815475600,0,0,'WET',],[63815475600,63834224400,63815479200,63834228000,3600,1,'WEST',],[63834224400,63847530000,63834224400,63847530000,0,0,'WET',],[63847530000,63865674000,63847533600,63865677600,3600,1,'WEST',],[63865674000,63878979600,63865674000,63878979600,0,0,'WET',],[63878979600,63897123600,63878983200,63897127200,3600,1,'WEST',],[63897123600,63910429200,63897123600,63910429200,0,0,'WET',],[63910429200,63928573200,63910432800,63928576800,3600,1,'WEST',],[63928573200,63941878800,63928573200,63941878800,0,0,'WET',],[63941878800,63960627600,63941882400,63960631200,3600,1,'WEST',],];sub olson_version {'2016a'}sub has_dst_changes {47}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {0}my$last_observance=bless({'format'=>'WE%sT','gmtoff'=>'0:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>723181,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>723181,'utc_rd_secs'=>0,'utc_year'=>1982 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>0,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>723181,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>723181,'utc_rd_secs'=>0,'utc_year'=>1982 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_ATLANTIC_FAROE

$fatpacked{"DateTime/TimeZone/Atlantic/Madeira.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ATLANTIC_MADEIRA';
  package DateTime::TimeZone::Atlantic::Madeira;$DateTime::TimeZone::Atlantic::Madeira::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Atlantic::Madeira::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59421776856,DateTime::TimeZone::NEG_INFINITY,59421772800,-4056,0,'LMT',],[59421776856,60305303256,59421772800,60305299200,-4056,0,'FMT',],[60305303256,60446131200,60305299656,60446127600,-3600,0,'MADT',],[60446131200,60457885200,60446131200,60457885200,0,1,'MADST',],[60457885200,60468249600,60457881600,60468246000,-3600,0,'MADT',],[60468249600,60487948800,60468249600,60487948800,0,1,'MADST',],[60487948800,60499872000,60487945200,60499868400,-3600,0,'MADT',],[60499872000,60519484800,60499872000,60519484800,0,1,'MADST',],[60519484800,60531321600,60519481200,60531318000,-3600,0,'MADT',],[60531321600,60551020800,60531321600,60551020800,0,1,'MADST',],[60551020800,60562944000,60551017200,60562940400,-3600,0,'MADT',],[60562944000,60582643200,60562944000,60582643200,0,1,'MADST',],[60582643200,60594480000,60582639600,60594476400,-3600,0,'MADT',],[60594480000,60614179200,60594480000,60614179200,0,1,'MADST',],[60614179200,60693235200,60614175600,60693231600,-3600,0,'MADT',],[60693235200,60708873600,60693235200,60708873600,0,1,'MADST',],[60708873600,60756393600,60708870000,60756390000,-3600,0,'MADT',],[60756393600,60770908800,60756393600,60770908800,0,1,'MADST',],[60770908800,60787238400,60770905200,60787234800,-3600,0,'MADT',],[60787238400,60802358400,60787238400,60802358400,0,1,'MADST',],[60802358400,60819292800,60802354800,60819289200,-3600,0,'MADT',],[60819292800,60834412800,60819292800,60834412800,0,1,'MADST',],[60834412800,60851347200,60834409200,60851343600,-3600,0,'MADT',],[60851347200,60865862400,60851347200,60865862400,0,1,'MADST',],[60865862400,60914246400,60865858800,60914242800,-3600,0,'MADT',],[60914246400,60928761600,60914246400,60928761600,0,1,'MADST',],[60928761600,60944486400,60928758000,60944482800,-3600,0,'MADT',],[60944486400,60960211200,60944486400,60960211200,0,1,'MADST',],[60960211200,61007990400,60960207600,61007986800,-3600,0,'MADT',],[61007990400,61023715200,61007990400,61023715200,0,1,'MADST',],[61023715200,61038835200,61023711600,61038831600,-3600,0,'MADT',],[61038835200,61055164800,61038835200,61055164800,0,1,'MADST',],[61055164800,61072099200,61055161200,61072095600,-3600,0,'MADT',],[61072099200,61086614400,61072099200,61086614400,0,1,'MADST',],[61086614400,61102339200,61086610800,61102335600,-3600,0,'MADT',],[61102339200,61118064000,61102339200,61118064000,0,1,'MADST',],[61118064000,61133184000,61118060400,61133180400,-3600,0,'MADT',],[61133184000,61149513600,61133184000,61149513600,0,1,'MADST',],[61149513600,61166448000,61149510000,61166444400,-3600,0,'MADT',],[61166448000,61185196800,61166448000,61185196800,0,1,'MADST',],[61185196800,61193664000,61185193200,61193660400,-3600,0,'MADT',],[61193664000,61213017600,61193664000,61213017600,0,1,'MADST',],[61213017600,61228742400,61213014000,61228738800,-3600,0,'MADT',],[61228742400,61244553600,61228742400,61244553600,0,1,'MADST',],[61244553600,61258377600,61244550000,61258374000,-3600,0,'MADT',],[61258377600,61262002800,61258377600,61262002800,0,1,'MADST',],[61262002800,61271679600,61262006400,61271683200,3600,1,'MADMT',],[61271679600,61277731200,61271679600,61277731200,0,1,'MADST',],[61277731200,61289827200,61277727600,61289823600,-3600,0,'MADT',],[61289827200,61292847600,61289827200,61292847600,0,1,'MADST',],[61292847600,61304338800,61292851200,61304342400,3600,1,'MADMT',],[61304338800,61309785600,61304338800,61309785600,0,1,'MADST',],[61309785600,61321276800,61309782000,61321273200,-3600,0,'MADT',],[61321276800,61324902000,61321276800,61324902000,0,1,'MADST',],[61324902000,61335788400,61324905600,61335792000,3600,1,'MADMT',],[61335788400,61341235200,61335788400,61341235200,0,1,'MADST',],[61341235200,61352726400,61341231600,61352722800,-3600,0,'MADT',],[61352726400,61356351600,61352726400,61356351600,0,1,'MADST',],[61356351600,61367238000,61356355200,61367241600,3600,1,'MADMT',],[61367238000,61372684800,61367238000,61372684800,0,1,'MADST',],[61372684800,61386595200,61372681200,61386591600,-3600,0,'MADT',],[61386595200,61402320000,61386595200,61402320000,0,1,'MADST',],[61402320000,61418055600,61402316400,61418052000,-3600,0,'MADT',],[61418055600,61433780400,61418055600,61433780400,0,1,'MADST',],[61433780400,61449505200,61433776800,61449501600,-3600,0,'MADT',],[61449505200,61465230000,61449505200,61465230000,0,1,'MADST',],[61465230000,61480954800,61465226400,61480951200,-3600,0,'MADT',],[61480954800,61496679600,61480954800,61496679600,0,1,'MADST',],[61496679600,61543854000,61496676000,61543850400,-3600,0,'MADT',],[61543854000,61560183600,61543854000,61560183600,0,1,'MADST',],[61560183600,61575908400,61560180000,61575904800,-3600,0,'MADT',],[61575908400,61591633200,61575908400,61591633200,0,1,'MADST',],[61591633200,61607358000,61591629600,61607354400,-3600,0,'MADT',],[61607358000,61623082800,61607358000,61623082800,0,1,'MADST',],[61623082800,61638807600,61623079200,61638804000,-3600,0,'MADT',],[61638807600,61654532400,61638807600,61654532400,0,1,'MADST',],[61654532400,61670257200,61654528800,61670253600,-3600,0,'MADT',],[61670257200,61685982000,61670257200,61685982000,0,1,'MADST',],[61685982000,61701706800,61685978400,61701703200,-3600,0,'MADT',],[61701706800,61718036400,61701706800,61718036400,0,1,'MADST',],[61718036400,61733761200,61718032800,61733757600,-3600,0,'MADT',],[61733761200,61749486000,61733761200,61749486000,0,1,'MADST',],[61749486000,61765210800,61749482400,61765207200,-3600,0,'MADT',],[61765210800,61780935600,61765210800,61780935600,0,1,'MADST',],[61780935600,61796660400,61780932000,61796656800,-3600,0,'MADT',],[61796660400,61812385200,61796660400,61812385200,0,1,'MADST',],[61812385200,61828110000,61812381600,61828106400,-3600,0,'MADT',],[61828110000,61843834800,61828110000,61843834800,0,1,'MADST',],[61843834800,61859559600,61843831200,61859556000,-3600,0,'MADT',],[61859559600,61875284400,61859559600,61875284400,0,1,'MADST',],[61875284400,61891009200,61875280800,61891005600,-3600,0,'MADT',],[61891009200,61907338800,61891009200,61907338800,0,1,'MADST',],[61907338800,61923063600,61907335200,61923060000,-3600,0,'MADT',],[61923063600,61938788400,61923063600,61938788400,0,1,'MADST',],[61938788400,61954513200,61938784800,61954509600,-3600,0,'MADT',],[61954513200,61970238000,61954513200,61970238000,0,1,'MADST',],[61970238000,61985962800,61970234400,61985959200,-3600,0,'MADT',],[61985962800,62001687600,61985962800,62001687600,0,1,'MADST',],[62001687600,62017412400,62001684000,62017408800,-3600,0,'MADT',],[62017412400,62363952000,62017412400,62363952000,0,0,'WET',],[62363952000,62379676800,62363955600,62379680400,3600,1,'WEST',],[62379676800,62396006400,62379676800,62396006400,0,0,'WET',],[62396006400,62411731200,62396010000,62411734800,3600,1,'WEST',],[62411731200,62427456000,62411731200,62427456000,0,0,'WET',],[62427456000,62443184400,62427459600,62443188000,3600,1,'WEST',],[62443184400,62458905600,62443184400,62458905600,0,0,'WET',],[62458905600,62474634000,62458909200,62474637600,3600,1,'WEST',],[62474634000,62490358800,62474634000,62490358800,0,0,'WET',],[62490358800,62506083600,62490362400,62506087200,3600,1,'WEST',],[62506083600,62521808400,62506083600,62521808400,0,0,'WET',],[62521808400,62537533200,62521812000,62537536800,3600,1,'WEST',],[62537533200,62553261600,62537533200,62553261600,0,0,'WET',],[62553261600,62568982800,62553265200,62568986400,3600,1,'WEST',],[62568982800,62584707600,62568982800,62584707600,0,0,'WET',],[62584707600,62601037200,62584711200,62601040800,3600,1,'WEST',],[62601037200,62616762000,62601037200,62616762000,0,0,'WET',],[62616762000,62632486800,62616765600,62632490400,3600,1,'WEST',],[62632486800,62648211600,62632486800,62648211600,0,0,'WET',],[62648211600,62663936400,62648215200,62663940000,3600,1,'WEST',],[62663936400,62679661200,62663936400,62679661200,0,0,'WET',],[62679661200,62695386000,62679664800,62695389600,3600,1,'WEST',],[62695386000,62711110800,62695386000,62711110800,0,0,'WET',],[62711110800,62726835600,62711114400,62726839200,3600,1,'WEST',],[62726835600,62742560400,62726835600,62742560400,0,0,'WET',],[62742560400,62758285200,62742564000,62758288800,3600,1,'WEST',],[62758285200,62774010000,62758285200,62774010000,0,0,'WET',],[62774010000,62790339600,62774013600,62790343200,3600,1,'WEST',],[62790339600,62806064400,62790339600,62806064400,0,0,'WET',],[62806064400,62821789200,62806068000,62821792800,3600,1,'WEST',],[62821789200,62837514000,62821789200,62837514000,0,0,'WET',],[62837514000,62853238800,62837517600,62853242400,3600,1,'WEST',],[62853238800,62868963600,62853238800,62868963600,0,0,'WET',],[62868963600,62884688400,62868967200,62884692000,3600,1,'WEST',],[62884688400,62900413200,62884688400,62900413200,0,0,'WET',],[62900413200,62916138000,62900416800,62916141600,3600,1,'WEST',],[62916138000,62931862800,62916138000,62931862800,0,0,'WET',],[62931862800,62947587600,62931866400,62947591200,3600,1,'WEST',],[62947587600,62963917200,62947587600,62963917200,0,0,'WET',],[62963917200,62982061200,62963920800,62982064800,3600,1,'WEST',],[62982061200,62995366800,62982061200,62995366800,0,0,'WET',],[62995366800,63013510800,62995370400,63013514400,3600,1,'WEST',],[63013510800,63026816400,63013510800,63026816400,0,0,'WET',],[63026816400,63044960400,63026820000,63044964000,3600,1,'WEST',],[63044960400,63058266000,63044960400,63058266000,0,0,'WET',],[63058266000,63077014800,63058269600,63077018400,3600,1,'WEST',],[63077014800,63089715600,63077014800,63089715600,0,0,'WET',],[63089715600,63108464400,63089719200,63108468000,3600,1,'WEST',],[63108464400,63121165200,63108464400,63121165200,0,0,'WET',],[63121165200,63139914000,63121168800,63139917600,3600,1,'WEST',],[63139914000,63153219600,63139914000,63153219600,0,0,'WET',],[63153219600,63171363600,63153223200,63171367200,3600,1,'WEST',],[63171363600,63184669200,63171363600,63184669200,0,0,'WET',],[63184669200,63202813200,63184672800,63202816800,3600,1,'WEST',],[63202813200,63216118800,63202813200,63216118800,0,0,'WET',],[63216118800,63234867600,63216122400,63234871200,3600,1,'WEST',],[63234867600,63247568400,63234867600,63247568400,0,0,'WET',],[63247568400,63266317200,63247572000,63266320800,3600,1,'WEST',],[63266317200,63279018000,63266317200,63279018000,0,0,'WET',],[63279018000,63297766800,63279021600,63297770400,3600,1,'WEST',],[63297766800,63310467600,63297766800,63310467600,0,0,'WET',],[63310467600,63329216400,63310471200,63329220000,3600,1,'WEST',],[63329216400,63342522000,63329216400,63342522000,0,0,'WET',],[63342522000,63360666000,63342525600,63360669600,3600,1,'WEST',],[63360666000,63373971600,63360666000,63373971600,0,0,'WET',],[63373971600,63392115600,63373975200,63392119200,3600,1,'WEST',],[63392115600,63405421200,63392115600,63405421200,0,0,'WET',],[63405421200,63424170000,63405424800,63424173600,3600,1,'WEST',],[63424170000,63436870800,63424170000,63436870800,0,0,'WET',],[63436870800,63455619600,63436874400,63455623200,3600,1,'WEST',],[63455619600,63468320400,63455619600,63468320400,0,0,'WET',],[63468320400,63487069200,63468324000,63487072800,3600,1,'WEST',],[63487069200,63500374800,63487069200,63500374800,0,0,'WET',],[63500374800,63518518800,63500378400,63518522400,3600,1,'WEST',],[63518518800,63531824400,63518518800,63531824400,0,0,'WET',],[63531824400,63549968400,63531828000,63549972000,3600,1,'WEST',],[63549968400,63563274000,63549968400,63563274000,0,0,'WET',],[63563274000,63581418000,63563277600,63581421600,3600,1,'WEST',],[63581418000,63594723600,63581418000,63594723600,0,0,'WET',],[63594723600,63613472400,63594727200,63613476000,3600,1,'WEST',],[63613472400,63626173200,63613472400,63626173200,0,0,'WET',],[63626173200,63644922000,63626176800,63644925600,3600,1,'WEST',],[63644922000,63657622800,63644922000,63657622800,0,0,'WET',],[63657622800,63676371600,63657626400,63676375200,3600,1,'WEST',],[63676371600,63689677200,63676371600,63689677200,0,0,'WET',],[63689677200,63707821200,63689680800,63707824800,3600,1,'WEST',],[63707821200,63721126800,63707821200,63721126800,0,0,'WET',],[63721126800,63739270800,63721130400,63739274400,3600,1,'WEST',],[63739270800,63752576400,63739270800,63752576400,0,0,'WET',],[63752576400,63771325200,63752580000,63771328800,3600,1,'WEST',],[63771325200,63784026000,63771325200,63784026000,0,0,'WET',],[63784026000,63802774800,63784029600,63802778400,3600,1,'WEST',],[63802774800,63815475600,63802774800,63815475600,0,0,'WET',],[63815475600,63834224400,63815479200,63834228000,3600,1,'WEST',],[63834224400,63847530000,63834224400,63847530000,0,0,'WET',],[63847530000,63865674000,63847533600,63865677600,3600,1,'WEST',],[63865674000,63878979600,63865674000,63878979600,0,0,'WET',],[63878979600,63897123600,63878983200,63897127200,3600,1,'WEST',],[63897123600,63910429200,63897123600,63910429200,0,0,'WET',],[63910429200,63928573200,63910432800,63928576800,3600,1,'WEST',],[63928573200,63941878800,63928573200,63941878800,0,0,'WET',],[63941878800,63960627600,63941882400,63960631200,3600,1,'WEST',],];sub olson_version {'2016a'}sub has_dst_changes {103}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {0}my$last_observance=bless({'format'=>'WE%sT','gmtoff'=>'0:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>724178,'local_rd_secs'=>3600,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>724178,'utc_rd_secs'=>3600,'utc_year'=>1984 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>0,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>724178,'local_rd_secs'=>3600,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>724178,'utc_rd_secs'=>3600,'utc_year'=>1984 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_ATLANTIC_MADEIRA

$fatpacked{"DateTime/TimeZone/Atlantic/Reykjavik.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ATLANTIC_REYKJAVIK';
  package DateTime::TimeZone::Atlantic::Reykjavik;$DateTime::TimeZone::Atlantic::Reykjavik::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Atlantic::Reykjavik::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60179074080,DateTime::TimeZone::NEG_INFINITY,60179068800,-5280,0,'LMT',],[60179074080,60467472000,60179070480,60467468400,-3600,0,'IST',],[60467472000,60488470800,60467472000,60488470800,0,1,'ISST',],[60488470800,60499008000,60488467200,60499004400,-3600,0,'IST',],[60499008000,60522253200,60499008000,60522253200,0,1,'ISST',],[60522253200,60530544000,60522249600,60530540400,-3600,0,'IST',],[60530544000,60553789200,60530544000,60553789200,0,1,'ISST',],[60553789200,60596121600,60553785600,60596118000,-3600,0,'IST',],[60596121600,60604333200,60596121600,60604333200,0,1,'ISST',],[60604333200,61167657600,60604329600,61167654000,-3600,0,'IST',],[61167657600,61183389600,61167657600,61183389600,0,1,'ISST',],[61183389600,61193674800,61183386000,61193671200,-3600,0,'IST',],[61193674800,61215444000,61193674800,61215444000,0,1,'ISST',],[61215444000,61225725600,61215440400,61225722000,-3600,0,'IST',],[61225725600,61246893600,61225725600,61246893600,0,1,'ISST',],[61246893600,61257780000,61246890000,61257776400,-3600,0,'IST',],[61257780000,61277738400,61257780000,61277738400,0,1,'ISST',],[61277738400,61289229600,61277734800,61289226000,-3600,0,'IST',],[61289229600,61309188000,61289229600,61309188000,0,1,'ISST',],[61309188000,61320679200,61309184400,61320675600,-3600,0,'IST',],[61320679200,61340637600,61320679200,61340637600,0,1,'ISST',],[61340637600,61352128800,61340634000,61352125200,-3600,0,'IST',],[61352128800,61372692000,61352128800,61372692000,0,1,'ISST',],[61372692000,61383578400,61372688400,61383574800,-3600,0,'IST',],[61383578400,61404141600,61383578400,61404141600,0,1,'ISST',],[61404141600,61418052000,61404138000,61418048400,-3600,0,'IST',],[61418052000,61435591200,61418052000,61435591200,0,1,'ISST',],[61435591200,61449501600,61435587600,61449498000,-3600,0,'IST',],[61449501600,61467040800,61449501600,61467040800,0,1,'ISST',],[61467040800,61480951200,61467037200,61480947600,-3600,0,'IST',],[61480951200,61499095200,61480951200,61499095200,0,1,'ISST',],[61499095200,61512400800,61499091600,61512397200,-3600,0,'IST',],[61512400800,61529940000,61512400800,61529940000,0,1,'ISST',],[61529940000,61543850400,61529936400,61543846800,-3600,0,'IST',],[61543850400,61561994400,61543850400,61561994400,0,1,'ISST',],[61561994400,61575904800,61561990800,61575901200,-3600,0,'IST',],[61575904800,61593444000,61575904800,61593444000,0,1,'ISST',],[61593444000,61607354400,61593440400,61607350800,-3600,0,'IST',],[61607354400,61624893600,61607354400,61624893600,0,1,'ISST',],[61624893600,61638804000,61624890000,61638800400,-3600,0,'IST',],[61638804000,61656343200,61638804000,61656343200,0,1,'ISST',],[61656343200,61670253600,61656339600,61670250000,-3600,0,'IST',],[61670253600,61687792800,61670253600,61687792800,0,1,'ISST',],[61687792800,61701703200,61687789200,61701699600,-3600,0,'IST',],[61701703200,61719847200,61701703200,61719847200,0,1,'ISST',],[61719847200,61733757600,61719843600,61733754000,-3600,0,'IST',],[61733757600,61751296800,61733757600,61751296800,0,1,'ISST',],[61751296800,61765207200,61751293200,61765203600,-3600,0,'IST',],[61765207200,61782746400,61765207200,61782746400,0,1,'ISST',],[61782746400,61796656800,61782742800,61796653200,-3600,0,'IST',],[61796656800,61814196000,61796656800,61814196000,0,1,'ISST',],[61814196000,61828106400,61814192400,61828102800,-3600,0,'IST',],[61828106400,61845645600,61828106400,61845645600,0,1,'ISST',],[61845645600,61859556000,61845642000,61859552400,-3600,0,'IST',],[61859556000,61877095200,61859556000,61877095200,0,1,'ISST',],[61877095200,61891005600,61877091600,61891002000,-3600,0,'IST',],[61891005600,61909149600,61891005600,61909149600,0,1,'ISST',],[61909149600,61923060000,61909146000,61923056400,-3600,0,'IST',],[61923060000,61940599200,61923060000,61940599200,0,1,'ISST',],[61940599200,61954509600,61940595600,61954506000,-3600,0,'IST',],[61954509600,61972048800,61954509600,61972048800,0,1,'ISST',],[61972048800,61985959200,61972045200,61985955600,-3600,0,'IST',],[61985959200,62003498400,61985959200,62003498400,0,1,'ISST',],[62003498400,62017408800,62003494800,62017405200,-3600,0,'IST',],[62017408800,62034948000,62017408800,62034948000,0,1,'ISST',],[62034948000,62048858400,62034944400,62048854800,-3600,0,'IST',],[62048858400,62067002400,62048858400,62067002400,0,1,'ISST',],[62067002400,62080912800,62066998800,62080909200,-3600,0,'IST',],[62080912800,DateTime::TimeZone::INFINITY,62080912800,DateTime::TimeZone::INFINITY,0,0,'GMT',],];sub olson_version {'2016a'}sub has_dst_changes {33}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ATLANTIC_REYKJAVIK

$fatpacked{"DateTime/TimeZone/Atlantic/South_Georgia.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ATLANTIC_SOUTH_GEORGIA';
  package DateTime::TimeZone::Atlantic::South_Georgia;$DateTime::TimeZone::Atlantic::South_Georgia::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Atlantic::South_Georgia::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59611170368,DateTime::TimeZone::NEG_INFINITY,59611161600,-8768,0,'LMT',],[59611170368,DateTime::TimeZone::INFINITY,59611163168,DateTime::TimeZone::INFINITY,-7200,0,'GST',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ATLANTIC_SOUTH_GEORGIA

$fatpacked{"DateTime/TimeZone/Atlantic/Stanley.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_ATLANTIC_STANLEY';
  package DateTime::TimeZone::Atlantic::Stanley;$DateTime::TimeZone::Atlantic::Stanley::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Atlantic::Stanley::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59611175484,DateTime::TimeZone::NEG_INFINITY,59611161600,-13884,0,'LMT',],[59611175484,60311447484,59611161600,60311433600,-13884,0,'SMT',],[60311447484,61117473600,60311433084,61117459200,-14400,0,'FKT',],[61117473600,61132590000,61117462800,61132579200,-10800,1,'FKST',],[61132590000,61148923200,61132575600,61148908800,-14400,0,'FKT',],[61148923200,61164039600,61148912400,61164028800,-10800,1,'FKST',],[61164039600,61180977600,61164025200,61180963200,-14400,0,'FKT',],[61180977600,61196094000,61180966800,61196083200,-10800,1,'FKST',],[61196094000,61212427200,61196079600,61212412800,-14400,0,'FKT',],[61212427200,61227543600,61212416400,61227532800,-10800,1,'FKST',],[61227543600,61243876800,61227529200,61243862400,-14400,0,'FKT',],[61243876800,61258993200,61243866000,61258982400,-10800,1,'FKST',],[61258993200,61275326400,61258978800,61275312000,-14400,0,'FKT',],[61275326400,61283617200,61275315600,61283606400,-10800,1,'FKST',],[61283617200,62556292800,61283602800,62556278400,-14400,0,'FKT',],[62556292800,62568990000,62556282000,62568979200,-10800,0,'FKT',],[62568990000,62587735200,62568982800,62587728000,-7200,1,'FKST',],[62587735200,62599834800,62587724400,62599824000,-10800,0,'FKT',],[62599834800,62619184800,62599827600,62619177600,-7200,1,'FKST',],[62619184800,62631284400,62619174000,62631273600,-10800,0,'FKT',],[62631284400,62650033200,62631273600,62650022400,-10800,1,'FKST',],[62650033200,62662737600,62650018800,62662723200,-14400,0,'FKT',],[62662737600,62681482800,62662726800,62681472000,-10800,1,'FKST',],[62681482800,62694187200,62681468400,62694172800,-14400,0,'FKT',],[62694187200,62712932400,62694176400,62712921600,-10800,1,'FKST',],[62712932400,62725636800,62712918000,62725622400,-14400,0,'FKT',],[62725636800,62744382000,62725626000,62744371200,-10800,1,'FKST',],[62744382000,62757086400,62744367600,62757072000,-14400,0,'FKT',],[62757086400,62776436400,62757075600,62776425600,-10800,1,'FKST',],[62776436400,62788536000,62776422000,62788521600,-14400,0,'FKT',],[62788536000,62807886000,62788525200,62807875200,-10800,1,'FKST',],[62807886000,62820590400,62807871600,62820576000,-14400,0,'FKT',],[62820590400,62839335600,62820579600,62839324800,-10800,1,'FKST',],[62839335600,62852040000,62839321200,62852025600,-14400,0,'FKT',],[62852040000,62870785200,62852029200,62870774400,-10800,1,'FKST',],[62870785200,62883489600,62870770800,62883475200,-14400,0,'FKT',],[62883489600,62902234800,62883478800,62902224000,-10800,1,'FKST',],[62902234800,62914939200,62902220400,62914924800,-14400,0,'FKT',],[62914939200,62933684400,62914928400,62933673600,-10800,1,'FKST',],[62933684400,62946388800,62933670000,62946374400,-14400,0,'FKT',],[62946388800,62965738800,62946378000,62965728000,-10800,1,'FKST',],[62965738800,62978443200,62965724400,62978428800,-14400,0,'FKT',],[62978443200,62997188400,62978432400,62997177600,-10800,1,'FKST',],[62997188400,63009892800,62997174000,63009878400,-14400,0,'FKT',],[63009892800,63028638000,63009882000,63028627200,-10800,1,'FKST',],[63028638000,63041342400,63028623600,63041328000,-14400,0,'FKT',],[63041342400,63060087600,63041331600,63060076800,-10800,1,'FKST',],[63060087600,63072792000,63060073200,63072777600,-14400,0,'FKT',],[63072792000,63091537200,63072781200,63091526400,-10800,1,'FKST',],[63091537200,63104241600,63091522800,63104227200,-14400,0,'FKT',],[63104241600,63122994000,63104230800,63122983200,-10800,1,'FKST',],[63122994000,63135093600,63122979600,63135079200,-14400,0,'FKT',],[63135093600,63155048400,63135082800,63155037600,-10800,1,'FKST',],[63155048400,63166543200,63155034000,63166528800,-14400,0,'FKT',],[63166543200,63186498000,63166532400,63186487200,-10800,1,'FKST',],[63186498000,63198597600,63186483600,63198583200,-14400,0,'FKT',],[63198597600,63217947600,63198586800,63217936800,-10800,1,'FKST',],[63217947600,63230047200,63217933200,63230032800,-14400,0,'FKT',],[63230047200,63249397200,63230036400,63249386400,-10800,1,'FKST',],[63249397200,63261496800,63249382800,63261482400,-14400,0,'FKT',],[63261496800,63280846800,63261486000,63280836000,-10800,1,'FKST',],[63280846800,63292946400,63280832400,63292932000,-14400,0,'FKT',],[63292946400,63312296400,63292935600,63312285600,-10800,1,'FKST',],[63312296400,63324396000,63312282000,63324381600,-14400,0,'FKT',],[63324396000,63344350800,63324385200,63344340000,-10800,1,'FKST',],[63344350800,63356450400,63344336400,63356436000,-14400,0,'FKT',],[63356450400,63375800400,63356439600,63375789600,-10800,1,'FKST',],[63375800400,63387900000,63375786000,63387885600,-14400,0,'FKT',],[63387900000,63407250000,63387889200,63407239200,-10800,1,'FKST',],[63407250000,63419349600,63407235600,63419335200,-14400,0,'FKT',],[63419349600,DateTime::TimeZone::INFINITY,63419338800,DateTime::TimeZone::INFINITY,-10800,0,'FKST',],];sub olson_version {'2016a'}sub has_dst_changes {33}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_ATLANTIC_STANLEY

$fatpacked{"DateTime/TimeZone/Australia/Adelaide.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AUSTRALIA_ADELAIDE';
  package DateTime::TimeZone::Australia::Adelaide;$DateTime::TimeZone::Australia::Adelaide::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Australia::Adelaide::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59771573140,DateTime::TimeZone::NEG_INFINITY,59771606400,33260,0,'LMT',],[59771573140,59905494000,59771605540,59905526400,32400,0,'ACST',],[59905494000,60463117860,59905528200,60463152060,34200,0,'ACST',],[60463117860,60470292600,60463155660,60470330400,37800,1,'ACDT',],[60470292600,61252043400,60470326800,61252077600,34200,0,'ACST',],[61252043400,61259556600,61252081200,61259594400,37800,1,'ACDT',],[61259556600,61275285000,61259590800,61275319200,34200,0,'ACST',],[61275285000,61291006200,61275322800,61291044000,37800,1,'ACDT',],[61291006200,61307339400,61291040400,61307373600,34200,0,'ACST',],[61307339400,61322455800,61307377200,61322493600,37800,1,'ACDT',],[61322455800,62167185000,61322490000,62167219200,34200,0,'ACST',],[62167185000,62193371400,62167219200,62193405600,34200,0,'ACST',],[62193371400,62203653000,62193409200,62203690800,37800,1,'ACDT',],[62203653000,62224821000,62203687200,62224855200,34200,0,'ACST',],[62224821000,62235707400,62224858800,62235745200,37800,1,'ACDT',],[62235707400,62256270600,62235741600,62256304800,34200,0,'ACST',],[62256270600,62267157000,62256308400,62267194800,37800,1,'ACDT',],[62267157000,62287720200,62267191200,62287754400,34200,0,'ACST',],[62287720200,62298606600,62287758000,62298644400,37800,1,'ACDT',],[62298606600,62319169800,62298640800,62319204000,34200,0,'ACST',],[62319169800,62330661000,62319207600,62330698800,37800,1,'ACDT',],[62330661000,62351224200,62330695200,62351258400,34200,0,'ACST',],[62351224200,62362110600,62351262000,62362148400,37800,1,'ACDT',],[62362110600,62382673800,62362144800,62382708000,34200,0,'ACST',],[62382673800,62393560200,62382711600,62393598000,37800,1,'ACDT',],[62393560200,62414123400,62393594400,62414157600,34200,0,'ACST',],[62414123400,62425009800,62414161200,62425047600,37800,1,'ACDT',],[62425009800,62445573000,62425044000,62445607200,34200,0,'ACST',],[62445573000,62456459400,62445610800,62456497200,37800,1,'ACDT',],[62456459400,62477022600,62456493600,62477056800,34200,0,'ACST',],[62477022600,62487909000,62477060400,62487946800,37800,1,'ACDT',],[62487909000,62508472200,62487943200,62508506400,34200,0,'ACST',],[62508472200,62519963400,62508510000,62520001200,37800,1,'ACDT',],[62519963400,62540526600,62519997600,62540560800,34200,0,'ACST',],[62540526600,62551413000,62540564400,62551450800,37800,1,'ACDT',],[62551413000,62571976200,62551447200,62572010400,34200,0,'ACST',],[62571976200,62582862600,62572014000,62582900400,37800,1,'ACDT',],[62582862600,62603425800,62582896800,62603460000,34200,0,'ACST',],[62603425800,62614312200,62603463600,62614350000,37800,1,'ACDT',],[62614312200,62634875400,62614346400,62634909600,34200,0,'ACST',],[62634875400,62646971400,62634913200,62647009200,37800,1,'ACDT',],[62646971400,62665720200,62647005600,62665754400,34200,0,'ACST',],[62665720200,62678421000,62665758000,62678458800,37800,1,'ACDT',],[62678421000,62697774600,62678455200,62697808800,34200,0,'ACST',],[62697774600,62710475400,62697812400,62710513200,37800,1,'ACDT',],[62710475400,62729829000,62710509600,62729863200,34200,0,'ACST',],[62729829000,62741925000,62729866800,62741962800,37800,1,'ACDT',],[62741925000,62761278600,62741959200,62761312800,34200,0,'ACST',],[62761278600,62773374600,62761316400,62773412400,37800,1,'ACDT',],[62773374600,62792728200,62773408800,62792762400,34200,0,'ACST',],[62792728200,62803614600,62792766000,62803652400,37800,1,'ACDT',],[62803614600,62824177800,62803648800,62824212000,34200,0,'ACST',],[62824177800,62836878600,62824215600,62836916400,37800,1,'ACDT',],[62836878600,62855627400,62836912800,62855661600,34200,0,'ACST',],[62855627400,62867118600,62855665200,62867156400,37800,1,'ACDT',],[62867118600,62887681800,62867152800,62887716000,34200,0,'ACST',],[62887681800,62899777800,62887719600,62899815600,37800,1,'ACDT',],[62899777800,62919131400,62899812000,62919165600,34200,0,'ACST',],[62919131400,62931832200,62919169200,62931870000,37800,1,'ACDT',],[62931832200,62950581000,62931866400,62950615200,34200,0,'ACST',],[62950581000,62963886600,62950618800,62963924400,37800,1,'ACDT',],[62963886600,62982030600,62963920800,62982064800,34200,0,'ACST',],[62982030600,62995336200,62982068400,62995374000,37800,1,'ACDT',],[62995336200,63013480200,62995370400,63013514400,34200,0,'ACST',],[63013480200,63026785800,63013518000,63026823600,37800,1,'ACDT',],[63026785800,63044929800,63026820000,63044964000,34200,0,'ACST',],[63044929800,63058235400,63044967600,63058273200,37800,1,'ACDT',],[63058235400,63076984200,63058269600,63077018400,34200,0,'ACST',],[63076984200,63089685000,63077022000,63089722800,37800,1,'ACDT',],[63089685000,63108433800,63089719200,63108468000,34200,0,'ACST',],[63108433800,63121134600,63108471600,63121172400,37800,1,'ACDT',],[63121134600,63139883400,63121168800,63139917600,34200,0,'ACST',],[63139883400,63153189000,63139921200,63153226800,37800,1,'ACDT',],[63153189000,63171333000,63153223200,63171367200,34200,0,'ACST',],[63171333000,63184638600,63171370800,63184676400,37800,1,'ACDT',],[63184638600,63202782600,63184672800,63202816800,34200,0,'ACST',],[63202782600,63216088200,63202820400,63216126000,37800,1,'ACDT',],[63216088200,63234837000,63216122400,63234871200,34200,0,'ACST',],[63234837000,63247537800,63234874800,63247575600,37800,1,'ACDT',],[63247537800,63266286600,63247572000,63266320800,34200,0,'ACST',],[63266286600,63279592200,63266324400,63279630000,37800,1,'ACDT',],[63279592200,63297736200,63279626400,63297770400,34200,0,'ACST',],[63297736200,63310437000,63297774000,63310474800,37800,1,'ACDT',],[63310437000,63329185800,63310471200,63329220000,34200,0,'ACST',],[63329185800,63343096200,63329223600,63343134000,37800,1,'ACDT',],[63343096200,63358821000,63343130400,63358855200,34200,0,'ACST',],[63358821000,63374545800,63358858800,63374583600,37800,1,'ACDT',],[63374545800,63390270600,63374580000,63390304800,34200,0,'ACST',],[63390270600,63405995400,63390308400,63406033200,37800,1,'ACDT',],[63405995400,63421720200,63406029600,63421754400,34200,0,'ACST',],[63421720200,63437445000,63421758000,63437482800,37800,1,'ACDT',],[63437445000,63453169800,63437479200,63453204000,34200,0,'ACST',],[63453169800,63468894600,63453207600,63468932400,37800,1,'ACDT',],[63468894600,63485224200,63468928800,63485258400,34200,0,'ACST',],[63485224200,63500949000,63485262000,63500986800,37800,1,'ACDT',],[63500949000,63516673800,63500983200,63516708000,34200,0,'ACST',],[63516673800,63532398600,63516711600,63532436400,37800,1,'ACDT',],[63532398600,63548123400,63532432800,63548157600,34200,0,'ACST',],[63548123400,63563848200,63548161200,63563886000,37800,1,'ACDT',],[63563848200,63579573000,63563882400,63579607200,34200,0,'ACST',],[63579573000,63595297800,63579610800,63595335600,37800,1,'ACDT',],[63595297800,63611022600,63595332000,63611056800,34200,0,'ACST',],[63611022600,63626747400,63611060400,63626785200,37800,1,'ACDT',],[63626747400,63642472200,63626781600,63642506400,34200,0,'ACST',],[63642472200,63658197000,63642510000,63658234800,37800,1,'ACDT',],[63658197000,63674526600,63658231200,63674560800,34200,0,'ACST',],[63674526600,63690251400,63674564400,63690289200,37800,1,'ACDT',],[63690251400,63705976200,63690285600,63706010400,34200,0,'ACST',],[63705976200,63721701000,63706014000,63721738800,37800,1,'ACDT',],[63721701000,63737425800,63721735200,63737460000,34200,0,'ACST',],[63737425800,63753150600,63737463600,63753188400,37800,1,'ACDT',],[63753150600,63768875400,63753184800,63768909600,34200,0,'ACST',],[63768875400,63784600200,63768913200,63784638000,37800,1,'ACDT',],[63784600200,63800325000,63784634400,63800359200,34200,0,'ACST',],[63800325000,63816049800,63800362800,63816087600,37800,1,'ACDT',],[63816049800,63831774600,63816084000,63831808800,34200,0,'ACST',],[63831774600,63848104200,63831812400,63848142000,37800,1,'ACDT',],[63848104200,63863829000,63848138400,63863863200,34200,0,'ACST',],[63863829000,63879553800,63863866800,63879591600,37800,1,'ACDT',],[63879553800,63895278600,63879588000,63895312800,34200,0,'ACST',],[63895278600,63911003400,63895316400,63911041200,37800,1,'ACDT',],[63911003400,63926728200,63911037600,63926762400,34200,0,'ACST',],[63926728200,63942453000,63926766000,63942490800,37800,1,'ACDT',],[63942453000,63958177800,63942487200,63958212000,34200,0,'ACST',],];sub olson_version {'2016a'}sub has_dst_changes {61}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {34200}my$last_observance=bless({'format'=>'AC%sT','gmtoff'=>'9:30','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>719528,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>719528,'utc_rd_secs'=>0,'utc_year'=>1972 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>34200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>719527,'local_rd_secs'=>52200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>719527,'utc_rd_secs'=>52200,'utc_year'=>1971 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00s','from'=>'2008','in'=>'Apr','letter'=>'S','name'=>'AS','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00s','from'=>'2008','in'=>'Oct','letter'=>'D','name'=>'AS','offset_from_std'=>3600,'on'=>'Sun>=1','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AUSTRALIA_ADELAIDE

$fatpacked{"DateTime/TimeZone/Australia/Brisbane.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AUSTRALIA_BRISBANE';
  package DateTime::TimeZone::Australia::Brisbane;$DateTime::TimeZone::Australia::Brisbane::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Australia::Brisbane::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59768891272,DateTime::TimeZone::NEG_INFINITY,59768928000,36728,0,'LMT',],[59768891272,60463116060,59768927272,60463152060,36000,0,'AEST',],[60463116060,60470290800,60463155660,60470330400,39600,1,'AEDT',],[60470290800,61252041600,60470326800,61252077600,36000,0,'AEST',],[61252041600,61259554800,61252081200,61259594400,39600,1,'AEDT',],[61259554800,61275283200,61259590800,61275319200,36000,0,'AEST',],[61275283200,61291004400,61275322800,61291044000,39600,1,'AEDT',],[61291004400,61307337600,61291040400,61307373600,36000,0,'AEST',],[61307337600,61322454000,61307377200,61322493600,39600,1,'AEDT',],[61322454000,62167183200,61322490000,62167219200,36000,0,'AEST',],[62167183200,62193369600,62167219200,62193405600,36000,0,'AEST',],[62193369600,62203651200,62193409200,62203690800,39600,1,'AEDT',],[62203651200,62761276800,62203687200,62761312800,36000,0,'AEST',],[62761276800,62772163200,62761316400,62772202800,39600,1,'AEDT',],[62772163200,62792726400,62772199200,62792762400,36000,0,'AEST',],[62792726400,62803612800,62792766000,62803652400,39600,1,'AEDT',],[62803612800,62824176000,62803648800,62824212000,36000,0,'AEST',],[62824176000,62835062400,62824215600,62835102000,39600,1,'AEDT',],[62835062400,DateTime::TimeZone::INFINITY,62835098400,DateTime::TimeZone::INFINITY,36000,0,'AEST',],];sub olson_version {'2016a'}sub has_dst_changes {8}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AUSTRALIA_BRISBANE

$fatpacked{"DateTime/TimeZone/Australia/Broken_Hill.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AUSTRALIA_BROKEN_HILL';
  package DateTime::TimeZone::Australia::Broken_Hill;$DateTime::TimeZone::Australia::Broken_Hill::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Australia::Broken_Hill::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59771572452,DateTime::TimeZone::NEG_INFINITY,59771606400,33948,0,'LMT',],[59771572452,59820732000,59771608452,59820768000,36000,0,'AEST',],[59820732000,59905494000,59820764400,59905526400,32400,0,'ACST',],[59905494000,60463117860,59905528200,60463152060,34200,0,'ACST',],[60463117860,60470292600,60463155660,60470330400,37800,1,'ACDT',],[60470292600,61252043400,60470326800,61252077600,34200,0,'ACST',],[61252043400,61259556600,61252081200,61259594400,37800,1,'ACDT',],[61259556600,61275285000,61259590800,61275319200,34200,0,'ACST',],[61275285000,61291006200,61275322800,61291044000,37800,1,'ACDT',],[61291006200,61307339400,61291040400,61307373600,34200,0,'ACST',],[61307339400,61322455800,61307377200,61322493600,37800,1,'ACDT',],[61322455800,62167185000,61322490000,62167219200,34200,0,'ACST',],[62167185000,62193371400,62167219200,62193405600,34200,0,'ACST',],[62193371400,62203653000,62193409200,62203690800,37800,1,'ACDT',],[62203653000,62224821000,62203687200,62224855200,34200,0,'ACST',],[62224821000,62235707400,62224858800,62235745200,37800,1,'ACDT',],[62235707400,62256270600,62235741600,62256304800,34200,0,'ACST',],[62256270600,62267157000,62256308400,62267194800,37800,1,'ACDT',],[62267157000,62287720200,62267191200,62287754400,34200,0,'ACST',],[62287720200,62298606600,62287758000,62298644400,37800,1,'ACDT',],[62298606600,62319169800,62298640800,62319204000,34200,0,'ACST',],[62319169800,62330661000,62319207600,62330698800,37800,1,'ACDT',],[62330661000,62351224200,62330695200,62351258400,34200,0,'ACST',],[62351224200,62362110600,62351262000,62362148400,37800,1,'ACDT',],[62362110600,62382673800,62362144800,62382708000,34200,0,'ACST',],[62382673800,62393560200,62382711600,62393598000,37800,1,'ACDT',],[62393560200,62414123400,62393594400,62414157600,34200,0,'ACST',],[62414123400,62425009800,62414161200,62425047600,37800,1,'ACDT',],[62425009800,62445573000,62425044000,62445607200,34200,0,'ACST',],[62445573000,62456459400,62445610800,62456497200,37800,1,'ACDT',],[62456459400,62477022600,62456493600,62477056800,34200,0,'ACST',],[62477022600,62487909000,62477060400,62487946800,37800,1,'ACDT',],[62487909000,62508472200,62487943200,62508506400,34200,0,'ACST',],[62508472200,62522382600,62508510000,62522420400,37800,1,'ACDT',],[62522382600,62540526600,62522416800,62540560800,34200,0,'ACST',],[62540526600,62551413000,62540564400,62551450800,37800,1,'ACDT',],[62551413000,62571976200,62551447200,62572010400,34200,0,'ACST',],[62571976200,62582862600,62572014000,62582900400,37800,1,'ACDT',],[62582862600,62603425800,62582896800,62603460000,34200,0,'ACST',],[62603425800,62614312200,62603463600,62614350000,37800,1,'ACDT',],[62614312200,62634875400,62614346400,62634909600,34200,0,'ACST',],[62634875400,62646971400,62634913200,62647009200,37800,1,'ACDT',],[62646971400,62665720200,62647005600,62665754400,34200,0,'ACST',],[62665720200,62678421000,62665758000,62678458800,37800,1,'ACDT',],[62678421000,62697774600,62678455200,62697808800,34200,0,'ACST',],[62697774600,62710475400,62697812400,62710513200,37800,1,'ACDT',],[62710475400,62729829000,62710509600,62729863200,34200,0,'ACST',],[62729829000,62741925000,62729866800,62741962800,37800,1,'ACDT',],[62741925000,62761278600,62741959200,62761312800,34200,0,'ACST',],[62761278600,62772165000,62761316400,62772202800,37800,1,'ACDT',],[62772165000,62792728200,62772199200,62792762400,34200,0,'ACST',],[62792728200,62803614600,62792766000,62803652400,37800,1,'ACDT',],[62803614600,62824177800,62803648800,62824212000,34200,0,'ACST',],[62824177800,62835064200,62824215600,62835102000,37800,1,'ACDT',],[62835064200,62855627400,62835098400,62855661600,34200,0,'ACST',],[62855627400,62867118600,62855665200,62867156400,37800,1,'ACDT',],[62867118600,62887681800,62867152800,62887716000,34200,0,'ACST',],[62887681800,62898568200,62887719600,62898606000,37800,1,'ACDT',],[62898568200,62919131400,62898602400,62919165600,34200,0,'ACST',],[62919131400,62930017800,62919169200,62930055600,37800,1,'ACDT',],[62930017800,62950581000,62930052000,62950615200,34200,0,'ACST',],[62950581000,62963886600,62950618800,62963924400,37800,1,'ACDT',],[62963886600,62982030600,62963920800,62982064800,34200,0,'ACST',],[62982030600,62995336200,62982068400,62995374000,37800,1,'ACDT',],[62995336200,63013480200,62995370400,63013514400,34200,0,'ACST',],[63013480200,63026785800,63013518000,63026823600,37800,1,'ACDT',],[63026785800,63044929800,63026820000,63044964000,34200,0,'ACST',],[63044929800,63058235400,63044967600,63058273200,37800,1,'ACDT',],[63058235400,63076984200,63058269600,63077018400,34200,0,'ACST',],[63076984200,63082330200,63077022000,63082368000,37800,1,'ACDT',],[63082330200,63089685000,63082368000,63089722800,37800,1,'ACDT',],[63089685000,63108433800,63089719200,63108468000,34200,0,'ACST',],[63108433800,63121134600,63108471600,63121172400,37800,1,'ACDT',],[63121134600,63139883400,63121168800,63139917600,34200,0,'ACST',],[63139883400,63153189000,63139921200,63153226800,37800,1,'ACDT',],[63153189000,63171333000,63153223200,63171367200,34200,0,'ACST',],[63171333000,63184638600,63171370800,63184676400,37800,1,'ACDT',],[63184638600,63202782600,63184672800,63202816800,34200,0,'ACST',],[63202782600,63216088200,63202820400,63216126000,37800,1,'ACDT',],[63216088200,63234837000,63216122400,63234871200,34200,0,'ACST',],[63234837000,63247537800,63234874800,63247575600,37800,1,'ACDT',],[63247537800,63266286600,63247572000,63266320800,34200,0,'ACST',],[63266286600,63279592200,63266324400,63279630000,37800,1,'ACDT',],[63279592200,63297736200,63279626400,63297770400,34200,0,'ACST',],[63297736200,63310437000,63297774000,63310474800,37800,1,'ACDT',],[63310437000,63329185800,63310471200,63329220000,34200,0,'ACST',],[63329185800,63343096200,63329223600,63343134000,37800,1,'ACDT',],[63343096200,63358821000,63343130400,63358855200,34200,0,'ACST',],[63358821000,63374545800,63358858800,63374583600,37800,1,'ACDT',],[63374545800,63390270600,63374580000,63390304800,34200,0,'ACST',],[63390270600,63405995400,63390308400,63406033200,37800,1,'ACDT',],[63405995400,63421720200,63406029600,63421754400,34200,0,'ACST',],[63421720200,63437445000,63421758000,63437482800,37800,1,'ACDT',],[63437445000,63453169800,63437479200,63453204000,34200,0,'ACST',],[63453169800,63468894600,63453207600,63468932400,37800,1,'ACDT',],[63468894600,63485224200,63468928800,63485258400,34200,0,'ACST',],[63485224200,63500949000,63485262000,63500986800,37800,1,'ACDT',],[63500949000,63516673800,63500983200,63516708000,34200,0,'ACST',],[63516673800,63532398600,63516711600,63532436400,37800,1,'ACDT',],[63532398600,63548123400,63532432800,63548157600,34200,0,'ACST',],[63548123400,63563848200,63548161200,63563886000,37800,1,'ACDT',],[63563848200,63579573000,63563882400,63579607200,34200,0,'ACST',],[63579573000,63595297800,63579610800,63595335600,37800,1,'ACDT',],[63595297800,63611022600,63595332000,63611056800,34200,0,'ACST',],[63611022600,63626747400,63611060400,63626785200,37800,1,'ACDT',],[63626747400,63642472200,63626781600,63642506400,34200,0,'ACST',],[63642472200,63658197000,63642510000,63658234800,37800,1,'ACDT',],[63658197000,63674526600,63658231200,63674560800,34200,0,'ACST',],[63674526600,63690251400,63674564400,63690289200,37800,1,'ACDT',],[63690251400,63705976200,63690285600,63706010400,34200,0,'ACST',],[63705976200,63721701000,63706014000,63721738800,37800,1,'ACDT',],[63721701000,63737425800,63721735200,63737460000,34200,0,'ACST',],[63737425800,63753150600,63737463600,63753188400,37800,1,'ACDT',],[63753150600,63768875400,63753184800,63768909600,34200,0,'ACST',],[63768875400,63784600200,63768913200,63784638000,37800,1,'ACDT',],[63784600200,63800325000,63784634400,63800359200,34200,0,'ACST',],[63800325000,63816049800,63800362800,63816087600,37800,1,'ACDT',],[63816049800,63831774600,63816084000,63831808800,34200,0,'ACST',],[63831774600,63848104200,63831812400,63848142000,37800,1,'ACDT',],[63848104200,63863829000,63848138400,63863863200,34200,0,'ACST',],[63863829000,63879553800,63863866800,63879591600,37800,1,'ACDT',],[63879553800,63895278600,63879588000,63895312800,34200,0,'ACST',],[63895278600,63911003400,63895316400,63911041200,37800,1,'ACDT',],[63911003400,63926728200,63911037600,63926762400,34200,0,'ACST',],[63926728200,63942453000,63926766000,63942490800,37800,1,'ACDT',],[63942453000,63958177800,63942487200,63958212000,34200,0,'ACST',],];sub olson_version {'2016a'}sub has_dst_changes {62}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {34200}my$last_observance=bless({'format'=>'AC%sT','gmtoff'=>'9:30','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>730120,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>730120,'utc_rd_secs'=>0,'utc_year'=>2001 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>34200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>730119,'local_rd_secs'=>48600,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>730119,'utc_rd_secs'=>48600,'utc_year'=>2000 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00s','from'=>'2008','in'=>'Apr','letter'=>'S','name'=>'AS','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00s','from'=>'2008','in'=>'Oct','letter'=>'D','name'=>'AS','offset_from_std'=>3600,'on'=>'Sun>=1','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AUSTRALIA_BROKEN_HILL

$fatpacked{"DateTime/TimeZone/Australia/Currie.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AUSTRALIA_CURRIE';
  package DateTime::TimeZone::Australia::Currie;$DateTime::TimeZone::Australia::Currie::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Australia::Currie::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59789888672,DateTime::TimeZone::NEG_INFINITY,59789923200,34528,0,'LMT',],[59789888672,60455174400,59789924672,60455210400,36000,0,'AEST',],[60455174400,60465790800,60455214000,60465830400,39600,1,'AEDT',],[60465790800,60470290800,60465830400,60470330400,39600,1,'AEDT',],[60470290800,61252041600,60470326800,61252077600,36000,0,'AEST',],[61252041600,61259554800,61252081200,61259594400,39600,1,'AEDT',],[61259554800,61275283200,61259590800,61275319200,36000,0,'AEST',],[61275283200,61291004400,61275322800,61291044000,39600,1,'AEDT',],[61291004400,61307337600,61291040400,61307373600,36000,0,'AEST',],[61307337600,61322454000,61307377200,61322493600,39600,1,'AEDT',],[61322454000,62182821600,61322490000,62182857600,36000,0,'AEST',],[62182821600,62193369600,62182857600,62193405600,36000,0,'AEST',],[62193369600,62203651200,62193409200,62203690800,39600,1,'AEDT',],[62203651200,62224819200,62203687200,62224855200,36000,0,'AEST',],[62224819200,62235705600,62224858800,62235745200,39600,1,'AEDT',],[62235705600,62256268800,62235741600,62256304800,36000,0,'AEST',],[62256268800,62267155200,62256308400,62267194800,39600,1,'AEDT',],[62267155200,62287718400,62267191200,62287754400,36000,0,'AEST',],[62287718400,62298604800,62287758000,62298644400,39600,1,'AEDT',],[62298604800,62319168000,62298640800,62319204000,36000,0,'AEST',],[62319168000,62330659200,62319207600,62330698800,39600,1,'AEDT',],[62330659200,62351222400,62330695200,62351258400,36000,0,'AEST',],[62351222400,62362108800,62351262000,62362148400,39600,1,'AEDT',],[62362108800,62382672000,62362144800,62382708000,36000,0,'AEST',],[62382672000,62393558400,62382711600,62393598000,39600,1,'AEDT',],[62393558400,62414121600,62393594400,62414157600,36000,0,'AEST',],[62414121600,62425008000,62414161200,62425047600,39600,1,'AEDT',],[62425008000,62445571200,62425044000,62445607200,36000,0,'AEST',],[62445571200,62456457600,62445610800,62456497200,39600,1,'AEDT',],[62456457600,62477020800,62456493600,62477056800,36000,0,'AEST',],[62477020800,62487907200,62477060400,62487946800,39600,1,'AEDT',],[62487907200,62508470400,62487943200,62508506400,36000,0,'AEST',],[62508470400,62521776000,62508510000,62521815600,39600,1,'AEDT',],[62521776000,62540524800,62521812000,62540560800,36000,0,'AEST',],[62540524800,62553225600,62540564400,62553265200,39600,1,'AEDT',],[62553225600,62571974400,62553261600,62572010400,36000,0,'AEST',],[62571974400,62582860800,62572014000,62582900400,39600,1,'AEDT',],[62582860800,62603424000,62582896800,62603460000,36000,0,'AEST',],[62603424000,62614310400,62603463600,62614350000,39600,1,'AEDT',],[62614310400,62634873600,62614346400,62634909600,36000,0,'AEST',],[62634873600,62645760000,62634913200,62645799600,39600,1,'AEDT',],[62645760000,62665718400,62645796000,62665754400,36000,0,'AEST',],[62665718400,62678419200,62665758000,62678458800,39600,1,'AEDT',],[62678419200,62697772800,62678455200,62697808800,36000,0,'AEST',],[62697772800,62710473600,62697812400,62710513200,39600,1,'AEDT',],[62710473600,62729827200,62710509600,62729863200,36000,0,'AEST',],[62729827200,62741923200,62729866800,62741962800,39600,1,'AEDT',],[62741923200,62761276800,62741959200,62761312800,36000,0,'AEST',],[62761276800,62773372800,62761316400,62773412400,39600,1,'AEDT',],[62773372800,62792726400,62773408800,62792762400,36000,0,'AEST',],[62792726400,62806032000,62792766000,62806071600,39600,1,'AEDT',],[62806032000,62822361600,62806068000,62822397600,36000,0,'AEST',],[62822361600,62837481600,62822401200,62837521200,39600,1,'AEDT',],[62837481600,62853811200,62837517600,62853847200,36000,0,'AEST',],[62853811200,62868931200,62853850800,62868970800,39600,1,'AEDT',],[62868931200,62885260800,62868967200,62885296800,36000,0,'AEST',],[62885260800,62900380800,62885300400,62900420400,39600,1,'AEDT',],[62900380800,62916710400,62900416800,62916746400,36000,0,'AEST',],[62916710400,62931830400,62916750000,62931870000,39600,1,'AEDT',],[62931830400,62948160000,62931866400,62948196000,36000,0,'AEST',],[62948160000,62963884800,62948199600,62963924400,39600,1,'AEDT',],[62963884800,62980214400,62963920800,62980250400,36000,0,'AEST',],[62980214400,62995334400,62980254000,62995374000,39600,1,'AEDT',],[62995334400,63011664000,62995370400,63011700000,36000,0,'AEST',],[63011664000,63026784000,63011703600,63026823600,39600,1,'AEDT',],[63026784000,63043113600,63026820000,63043149600,36000,0,'AEST',],[63043113600,63058233600,63043153200,63058273200,39600,1,'AEDT',],[63058233600,63074563200,63058269600,63074599200,36000,0,'AEST',],[63074563200,63089683200,63074602800,63089722800,39600,1,'AEDT',],[63089683200,63102988800,63089719200,63103024800,36000,0,'AEST',],[63102988800,63121132800,63103028400,63121172400,39600,1,'AEDT',],[63121132800,63138067200,63121168800,63138103200,36000,0,'AEST',],[63138067200,63153187200,63138106800,63153226800,39600,1,'AEDT',],[63153187200,63169516800,63153223200,63169552800,36000,0,'AEST',],[63169516800,63184636800,63169556400,63184676400,39600,1,'AEDT',],[63184636800,63200966400,63184672800,63201002400,36000,0,'AEST',],[63200966400,63216086400,63201006000,63216126000,39600,1,'AEDT',],[63216086400,63232416000,63216122400,63232452000,36000,0,'AEST',],[63232416000,63247536000,63232455600,63247575600,39600,1,'AEDT',],[63247536000,63263865600,63247572000,63263901600,36000,0,'AEST',],[63263865600,63279590400,63263905200,63279630000,39600,1,'AEDT',],[63279590400,63295315200,63279626400,63295351200,36000,0,'AEST',],[63295315200,63310435200,63295354800,63310474800,39600,1,'AEDT',],[63310435200,63327369600,63310471200,63327405600,36000,0,'AEST',],[63327369600,63343094400,63327409200,63343134000,39600,1,'AEDT',],[63343094400,63358819200,63343130400,63358855200,36000,0,'AEST',],[63358819200,63374544000,63358858800,63374583600,39600,1,'AEDT',],[63374544000,63390268800,63374580000,63390304800,36000,0,'AEST',],[63390268800,63405993600,63390308400,63406033200,39600,1,'AEDT',],[63405993600,63421718400,63406029600,63421754400,36000,0,'AEST',],[63421718400,63437443200,63421758000,63437482800,39600,1,'AEDT',],[63437443200,63453168000,63437479200,63453204000,36000,0,'AEST',],[63453168000,63468892800,63453207600,63468932400,39600,1,'AEDT',],[63468892800,63485222400,63468928800,63485258400,36000,0,'AEST',],[63485222400,63500947200,63485262000,63500986800,39600,1,'AEDT',],[63500947200,63516672000,63500983200,63516708000,36000,0,'AEST',],[63516672000,63532396800,63516711600,63532436400,39600,1,'AEDT',],[63532396800,63548121600,63532432800,63548157600,36000,0,'AEST',],[63548121600,63563846400,63548161200,63563886000,39600,1,'AEDT',],[63563846400,63579571200,63563882400,63579607200,36000,0,'AEST',],[63579571200,63595296000,63579610800,63595335600,39600,1,'AEDT',],[63595296000,63611020800,63595332000,63611056800,36000,0,'AEST',],[63611020800,63626745600,63611060400,63626785200,39600,1,'AEDT',],[63626745600,63642470400,63626781600,63642506400,36000,0,'AEST',],[63642470400,63658195200,63642510000,63658234800,39600,1,'AEDT',],[63658195200,63674524800,63658231200,63674560800,36000,0,'AEST',],[63674524800,63690249600,63674564400,63690289200,39600,1,'AEDT',],[63690249600,63705974400,63690285600,63706010400,36000,0,'AEST',],[63705974400,63721699200,63706014000,63721738800,39600,1,'AEDT',],[63721699200,63737424000,63721735200,63737460000,36000,0,'AEST',],[63737424000,63753148800,63737463600,63753188400,39600,1,'AEDT',],[63753148800,63768873600,63753184800,63768909600,36000,0,'AEST',],[63768873600,63784598400,63768913200,63784638000,39600,1,'AEDT',],[63784598400,63800323200,63784634400,63800359200,36000,0,'AEST',],[63800323200,63816048000,63800362800,63816087600,39600,1,'AEDT',],[63816048000,63831772800,63816084000,63831808800,36000,0,'AEST',],[63831772800,63848102400,63831812400,63848142000,39600,1,'AEDT',],[63848102400,63863827200,63848138400,63863863200,36000,0,'AEST',],[63863827200,63879552000,63863866800,63879591600,39600,1,'AEDT',],[63879552000,63895276800,63879588000,63895312800,36000,0,'AEST',],[63895276800,63911001600,63895316400,63911041200,39600,1,'AEDT',],[63911001600,63926726400,63911037600,63926762400,36000,0,'AEST',],[63926726400,63942451200,63926766000,63942490800,39600,1,'AEDT',],[63942451200,63958176000,63942487200,63958212000,36000,0,'AEST',],];sub olson_version {'2016a'}sub has_dst_changes {62}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {36000}my$last_observance=bless({'format'=>'AE%sT','gmtoff'=>'10:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>719709,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>719709,'utc_rd_secs'=>0,'utc_year'=>1972 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>36000,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>719708,'local_rd_secs'=>50400,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>719708,'utc_rd_secs'=>50400,'utc_year'=>1972 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00s','from'=>'2001','in'=>'Oct','letter'=>'D','name'=>'AT','offset_from_std'=>3600,'on'=>'Sun>=1','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00s','from'=>'2008','in'=>'Apr','letter'=>'S','name'=>'AT','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AUSTRALIA_CURRIE

$fatpacked{"DateTime/TimeZone/Australia/Darwin.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AUSTRALIA_DARWIN';
  package DateTime::TimeZone::Australia::Darwin;$DateTime::TimeZone::Australia::Darwin::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Australia::Darwin::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59771575000,DateTime::TimeZone::NEG_INFINITY,59771606400,31400,0,'LMT',],[59771575000,59905494000,59771607400,59905526400,32400,0,'ACST',],[59905494000,60463117860,59905528200,60463152060,34200,0,'ACST',],[60463117860,60470292600,60463155660,60470330400,37800,1,'ACDT',],[60470292600,61252043400,60470326800,61252077600,34200,0,'ACST',],[61252043400,61259556600,61252081200,61259594400,37800,1,'ACDT',],[61259556600,61275285000,61259590800,61275319200,34200,0,'ACST',],[61275285000,61291006200,61275322800,61291044000,37800,1,'ACDT',],[61291006200,61307339400,61291040400,61307373600,34200,0,'ACST',],[61307339400,61322455800,61307377200,61322493600,37800,1,'ACDT',],[61322455800,DateTime::TimeZone::INFINITY,61322490000,DateTime::TimeZone::INFINITY,34200,0,'ACST',],];sub olson_version {'2016a'}sub has_dst_changes {4}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AUSTRALIA_DARWIN

$fatpacked{"DateTime/TimeZone/Australia/Eucla.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AUSTRALIA_EUCLA';
  package DateTime::TimeZone::Australia::Eucla;$DateTime::TimeZone::Australia::Eucla::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Australia::Eucla::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59797754672,DateTime::TimeZone::NEG_INFINITY,59797785600,30928,0,'LMT',],[59797754672,60463120560,59797786172,60463152060,31500,0,'ACWST',],[60463120560,60470295300,60463155660,60470330400,35100,1,'ACWDT',],[60470295300,61252046100,60470326800,61252077600,31500,0,'ACWST',],[61252046100,61259559300,61252081200,61259594400,35100,1,'ACWDT',],[61259559300,61275287700,61259590800,61275319200,31500,0,'ACWST',],[61275287700,61291008900,61275322800,61291044000,35100,1,'ACWDT',],[61291008900,61299213300,61291040400,61299244800,31500,0,'ACWST',],[61299213300,62287722900,61299244800,62287754400,31500,0,'ACWST',],[62287722900,62298609300,62287758000,62298644400,35100,1,'ACWDT',],[62298609300,62571978900,62298640800,62572010400,31500,0,'ACWST',],[62571978900,62582865300,62572014000,62582900400,35100,1,'ACWDT',],[62582865300,62825994900,62582896800,62826026400,31500,0,'ACWST',],[62825994900,62835066900,62826030000,62835102000,35100,1,'ACWDT',],[62835066900,63300762900,62835098400,63300794400,31500,0,'ACWST',],[63300762900,63310439700,63300798000,63310474800,35100,1,'ACWDT',],[63310439700,63329188500,63310471200,63329220000,31500,0,'ACWST',],[63329188500,63342494100,63329223600,63342529200,35100,1,'ACWDT',],[63342494100,63360638100,63342525600,63360669600,31500,0,'ACWST',],[63360638100,63373943700,63360673200,63373978800,35100,1,'ACWDT',],[63373943700,DateTime::TimeZone::INFINITY,63373975200,DateTime::TimeZone::INFINITY,31500,0,'ACWST',],];sub olson_version {'2016a'}sub has_dst_changes {9}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AUSTRALIA_EUCLA

$fatpacked{"DateTime/TimeZone/Australia/Hobart.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AUSTRALIA_HOBART';
  package DateTime::TimeZone::Australia::Hobart;$DateTime::TimeZone::Australia::Hobart::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Australia::Hobart::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59789887844,DateTime::TimeZone::NEG_INFINITY,59789923200,35356,0,'LMT',],[59789887844,60455174400,59789923844,60455210400,36000,0,'AEST',],[60455174400,60465790800,60455214000,60465830400,39600,1,'AEDT',],[60465790800,60470290800,60465830400,60470330400,39600,1,'AEDT',],[60470290800,61252041600,60470326800,61252077600,36000,0,'AEST',],[61252041600,61259554800,61252081200,61259594400,39600,1,'AEDT',],[61259554800,61275283200,61259590800,61275319200,36000,0,'AEST',],[61275283200,61291004400,61275322800,61291044000,39600,1,'AEDT',],[61291004400,61307337600,61291040400,61307373600,36000,0,'AEST',],[61307337600,61322454000,61307377200,61322493600,39600,1,'AEDT',],[61322454000,62040952800,61322490000,62040988800,36000,0,'AEST',],[62040952800,62064547200,62040988800,62064583200,36000,0,'AEST',],[62064547200,62080272000,62064586800,62080311600,39600,1,'AEDT',],[62080272000,62098416000,62080308000,62098452000,36000,0,'AEST',],[62098416000,62109907200,62098455600,62109946800,39600,1,'AEDT',],[62109907200,62129865600,62109943200,62129901600,36000,0,'AEST',],[62129865600,62141356800,62129905200,62141396400,39600,1,'AEDT',],[62141356800,62161315200,62141392800,62161351200,36000,0,'AEST',],[62161315200,62173411200,62161354800,62173450800,39600,1,'AEDT',],[62173411200,62193369600,62173447200,62193405600,36000,0,'AEST',],[62193369600,62203651200,62193409200,62203690800,39600,1,'AEDT',],[62203651200,62224819200,62203687200,62224855200,36000,0,'AEST',],[62224819200,62235705600,62224858800,62235745200,39600,1,'AEDT',],[62235705600,62256268800,62235741600,62256304800,36000,0,'AEST',],[62256268800,62267155200,62256308400,62267194800,39600,1,'AEDT',],[62267155200,62287718400,62267191200,62287754400,36000,0,'AEST',],[62287718400,62298604800,62287758000,62298644400,39600,1,'AEDT',],[62298604800,62319168000,62298640800,62319204000,36000,0,'AEST',],[62319168000,62330659200,62319207600,62330698800,39600,1,'AEDT',],[62330659200,62351222400,62330695200,62351258400,36000,0,'AEST',],[62351222400,62362108800,62351262000,62362148400,39600,1,'AEDT',],[62362108800,62382672000,62362144800,62382708000,36000,0,'AEST',],[62382672000,62393558400,62382711600,62393598000,39600,1,'AEDT',],[62393558400,62414121600,62393594400,62414157600,36000,0,'AEST',],[62414121600,62425008000,62414161200,62425047600,39600,1,'AEDT',],[62425008000,62445571200,62425044000,62445607200,36000,0,'AEST',],[62445571200,62456457600,62445610800,62456497200,39600,1,'AEDT',],[62456457600,62477020800,62456493600,62477056800,36000,0,'AEST',],[62477020800,62487907200,62477060400,62487946800,39600,1,'AEDT',],[62487907200,62508470400,62487943200,62508506400,36000,0,'AEST',],[62508470400,62521776000,62508510000,62521815600,39600,1,'AEDT',],[62521776000,62540524800,62521812000,62540560800,36000,0,'AEST',],[62540524800,62553225600,62540564400,62553265200,39600,1,'AEDT',],[62553225600,62571974400,62553261600,62572010400,36000,0,'AEST',],[62571974400,62582860800,62572014000,62582900400,39600,1,'AEDT',],[62582860800,62603424000,62582896800,62603460000,36000,0,'AEST',],[62603424000,62614310400,62603463600,62614350000,39600,1,'AEDT',],[62614310400,62634873600,62614346400,62634909600,36000,0,'AEST',],[62634873600,62645760000,62634913200,62645799600,39600,1,'AEDT',],[62645760000,62665718400,62645796000,62665754400,36000,0,'AEST',],[62665718400,62678419200,62665758000,62678458800,39600,1,'AEDT',],[62678419200,62697772800,62678455200,62697808800,36000,0,'AEST',],[62697772800,62710473600,62697812400,62710513200,39600,1,'AEDT',],[62710473600,62729827200,62710509600,62729863200,36000,0,'AEST',],[62729827200,62741923200,62729866800,62741962800,39600,1,'AEDT',],[62741923200,62761276800,62741959200,62761312800,36000,0,'AEST',],[62761276800,62773372800,62761316400,62773412400,39600,1,'AEDT',],[62773372800,62792726400,62773408800,62792762400,36000,0,'AEST',],[62792726400,62806032000,62792766000,62806071600,39600,1,'AEDT',],[62806032000,62822361600,62806068000,62822397600,36000,0,'AEST',],[62822361600,62837481600,62822401200,62837521200,39600,1,'AEDT',],[62837481600,62853811200,62837517600,62853847200,36000,0,'AEST',],[62853811200,62868931200,62853850800,62868970800,39600,1,'AEDT',],[62868931200,62885260800,62868967200,62885296800,36000,0,'AEST',],[62885260800,62900380800,62885300400,62900420400,39600,1,'AEDT',],[62900380800,62916710400,62900416800,62916746400,36000,0,'AEST',],[62916710400,62931830400,62916750000,62931870000,39600,1,'AEDT',],[62931830400,62948160000,62931866400,62948196000,36000,0,'AEST',],[62948160000,62963884800,62948199600,62963924400,39600,1,'AEDT',],[62963884800,62980214400,62963920800,62980250400,36000,0,'AEST',],[62980214400,62995334400,62980254000,62995374000,39600,1,'AEDT',],[62995334400,63011664000,62995370400,63011700000,36000,0,'AEST',],[63011664000,63026784000,63011703600,63026823600,39600,1,'AEDT',],[63026784000,63043113600,63026820000,63043149600,36000,0,'AEST',],[63043113600,63058233600,63043153200,63058273200,39600,1,'AEDT',],[63058233600,63074563200,63058269600,63074599200,36000,0,'AEST',],[63074563200,63089683200,63074602800,63089722800,39600,1,'AEDT',],[63089683200,63102988800,63089719200,63103024800,36000,0,'AEST',],[63102988800,63121132800,63103028400,63121172400,39600,1,'AEDT',],[63121132800,63138067200,63121168800,63138103200,36000,0,'AEST',],[63138067200,63153187200,63138106800,63153226800,39600,1,'AEDT',],[63153187200,63169516800,63153223200,63169552800,36000,0,'AEST',],[63169516800,63184636800,63169556400,63184676400,39600,1,'AEDT',],[63184636800,63200966400,63184672800,63201002400,36000,0,'AEST',],[63200966400,63216086400,63201006000,63216126000,39600,1,'AEDT',],[63216086400,63232416000,63216122400,63232452000,36000,0,'AEST',],[63232416000,63247536000,63232455600,63247575600,39600,1,'AEDT',],[63247536000,63263865600,63247572000,63263901600,36000,0,'AEST',],[63263865600,63279590400,63263905200,63279630000,39600,1,'AEDT',],[63279590400,63295315200,63279626400,63295351200,36000,0,'AEST',],[63295315200,63310435200,63295354800,63310474800,39600,1,'AEDT',],[63310435200,63327369600,63310471200,63327405600,36000,0,'AEST',],[63327369600,63343094400,63327409200,63343134000,39600,1,'AEDT',],[63343094400,63358819200,63343130400,63358855200,36000,0,'AEST',],[63358819200,63374544000,63358858800,63374583600,39600,1,'AEDT',],[63374544000,63390268800,63374580000,63390304800,36000,0,'AEST',],[63390268800,63405993600,63390308400,63406033200,39600,1,'AEDT',],[63405993600,63421718400,63406029600,63421754400,36000,0,'AEST',],[63421718400,63437443200,63421758000,63437482800,39600,1,'AEDT',],[63437443200,63453168000,63437479200,63453204000,36000,0,'AEST',],[63453168000,63468892800,63453207600,63468932400,39600,1,'AEDT',],[63468892800,63485222400,63468928800,63485258400,36000,0,'AEST',],[63485222400,63500947200,63485262000,63500986800,39600,1,'AEDT',],[63500947200,63516672000,63500983200,63516708000,36000,0,'AEST',],[63516672000,63532396800,63516711600,63532436400,39600,1,'AEDT',],[63532396800,63548121600,63532432800,63548157600,36000,0,'AEST',],[63548121600,63563846400,63548161200,63563886000,39600,1,'AEDT',],[63563846400,63579571200,63563882400,63579607200,36000,0,'AEST',],[63579571200,63595296000,63579610800,63595335600,39600,1,'AEDT',],[63595296000,63611020800,63595332000,63611056800,36000,0,'AEST',],[63611020800,63626745600,63611060400,63626785200,39600,1,'AEDT',],[63626745600,63642470400,63626781600,63642506400,36000,0,'AEST',],[63642470400,63658195200,63642510000,63658234800,39600,1,'AEDT',],[63658195200,63674524800,63658231200,63674560800,36000,0,'AEST',],[63674524800,63690249600,63674564400,63690289200,39600,1,'AEDT',],[63690249600,63705974400,63690285600,63706010400,36000,0,'AEST',],[63705974400,63721699200,63706014000,63721738800,39600,1,'AEDT',],[63721699200,63737424000,63721735200,63737460000,36000,0,'AEST',],[63737424000,63753148800,63737463600,63753188400,39600,1,'AEDT',],[63753148800,63768873600,63753184800,63768909600,36000,0,'AEST',],[63768873600,63784598400,63768913200,63784638000,39600,1,'AEDT',],[63784598400,63800323200,63784634400,63800359200,36000,0,'AEST',],[63800323200,63816048000,63800362800,63816087600,39600,1,'AEDT',],[63816048000,63831772800,63816084000,63831808800,36000,0,'AEST',],[63831772800,63848102400,63831812400,63848142000,39600,1,'AEDT',],[63848102400,63863827200,63848138400,63863863200,36000,0,'AEST',],[63863827200,63879552000,63863866800,63879591600,39600,1,'AEDT',],[63879552000,63895276800,63879588000,63895312800,36000,0,'AEST',],[63895276800,63911001600,63895316400,63911041200,39600,1,'AEDT',],[63911001600,63926726400,63911037600,63926762400,36000,0,'AEST',],[63926726400,63942451200,63926766000,63942490800,39600,1,'AEDT',],[63942451200,63958176000,63942487200,63958212000,36000,0,'AEST',],];sub olson_version {'2016a'}sub has_dst_changes {66}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {36000}my$last_observance=bless({'format'=>'AE%sT','gmtoff'=>'10:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>718067,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>718067,'utc_rd_secs'=>0,'utc_year'=>1968 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>36000,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>718066,'local_rd_secs'=>50400,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>718066,'utc_rd_secs'=>50400,'utc_year'=>1967 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00s','from'=>'2001','in'=>'Oct','letter'=>'D','name'=>'AT','offset_from_std'=>3600,'on'=>'Sun>=1','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00s','from'=>'2008','in'=>'Apr','letter'=>'S','name'=>'AT','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AUSTRALIA_HOBART

$fatpacked{"DateTime/TimeZone/Australia/Lindeman.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AUSTRALIA_LINDEMAN';
  package DateTime::TimeZone::Australia::Lindeman;$DateTime::TimeZone::Australia::Lindeman::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Australia::Lindeman::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59768892244,DateTime::TimeZone::NEG_INFINITY,59768928000,35756,0,'LMT',],[59768892244,60463116060,59768928244,60463152060,36000,0,'AEST',],[60463116060,60470290800,60463155660,60470330400,39600,1,'AEDT',],[60470290800,61252041600,60470326800,61252077600,36000,0,'AEST',],[61252041600,61259554800,61252081200,61259594400,39600,1,'AEDT',],[61259554800,61275283200,61259590800,61275319200,36000,0,'AEST',],[61275283200,61291004400,61275322800,61291044000,39600,1,'AEDT',],[61291004400,61307337600,61291040400,61307373600,36000,0,'AEST',],[61307337600,61322454000,61307377200,61322493600,39600,1,'AEDT',],[61322454000,62167183200,61322490000,62167219200,36000,0,'AEST',],[62167183200,62193369600,62167219200,62193405600,36000,0,'AEST',],[62193369600,62203651200,62193409200,62203690800,39600,1,'AEDT',],[62203651200,62761276800,62203687200,62761312800,36000,0,'AEST',],[62761276800,62772163200,62761316400,62772202800,39600,1,'AEDT',],[62772163200,62792726400,62772199200,62792762400,36000,0,'AEST',],[62792726400,62803612800,62792766000,62803652400,39600,1,'AEDT',],[62803612800,62824176000,62803648800,62824212000,36000,0,'AEST',],[62824176000,62835062400,62824215600,62835102000,39600,1,'AEDT',],[62835062400,62845596000,62835098400,62845632000,36000,0,'AEST',],[62845596000,62855625600,62845632000,62855661600,36000,0,'AEST',],[62855625600,62867116800,62855665200,62867156400,39600,1,'AEDT',],[62867116800,62887680000,62867152800,62887716000,36000,0,'AEST',],[62887680000,62898566400,62887719600,62898606000,39600,1,'AEDT',],[62898566400,DateTime::TimeZone::INFINITY,62898602400,DateTime::TimeZone::INFINITY,36000,0,'AEST',],];sub olson_version {'2016a'}sub has_dst_changes {10}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AUSTRALIA_LINDEMAN

$fatpacked{"DateTime/TimeZone/Australia/Lord_Howe.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AUSTRALIA_LORD_HOWE';
  package DateTime::TimeZone::Australia::Lord_Howe;$DateTime::TimeZone::Australia::Lord_Howe::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Australia::Lord_Howe::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59771568220,DateTime::TimeZone::NEG_INFINITY,59771606400,38180,0,'LMT',],[59771568220,62487900000,59771604220,62487936000,36000,0,'AEST',],[62487900000,62508468600,62487937800,62508506400,37800,0,'LHST',],[62508468600,62519956200,62508510000,62519997600,41400,1,'LHDT',],[62519956200,62540523000,62519994000,62540560800,37800,0,'LHST',],[62540523000,62551405800,62540564400,62551447200,41400,1,'LHDT',],[62551405800,62571972600,62551443600,62572010400,37800,0,'LHST',],[62571972600,62582855400,62572014000,62582896800,41400,1,'LHDT',],[62582855400,62603422200,62582893200,62603460000,37800,0,'LHST',],[62603422200,62614305000,62603463600,62614346400,41400,1,'LHDT',],[62614305000,62634871800,62614342800,62634909600,37800,0,'LHST',],[62634871800,62646966000,62634911400,62647005600,39600,1,'LHDT',],[62646966000,62665716600,62647003800,62665754400,37800,0,'LHST',],[62665716600,62678415600,62665756200,62678455200,39600,1,'LHDT',],[62678415600,62697771000,62678453400,62697808800,37800,0,'LHST',],[62697771000,62710470000,62697810600,62710509600,39600,1,'LHDT',],[62710470000,62729825400,62710507800,62729863200,37800,0,'LHST',],[62729825400,62741919600,62729865000,62741959200,39600,1,'LHDT',],[62741919600,62761275000,62741957400,62761312800,37800,0,'LHST',],[62761275000,62772159600,62761314600,62772199200,39600,1,'LHDT',],[62772159600,62792724600,62772197400,62792762400,37800,0,'LHST',],[62792724600,62803609200,62792764200,62803648800,39600,1,'LHDT',],[62803609200,62824174200,62803647000,62824212000,37800,0,'LHST',],[62824174200,62835058800,62824213800,62835098400,39600,1,'LHDT',],[62835058800,62855623800,62835096600,62855661600,37800,0,'LHST',],[62855623800,62867113200,62855663400,62867152800,39600,1,'LHDT',],[62867113200,62887678200,62867151000,62887716000,37800,0,'LHST',],[62887678200,62898562800,62887717800,62898602400,39600,1,'LHDT',],[62898562800,62919127800,62898600600,62919165600,37800,0,'LHST',],[62919127800,62930012400,62919167400,62930052000,39600,1,'LHDT',],[62930012400,62950577400,62930050200,62950615200,37800,0,'LHST',],[62950577400,62963881200,62950617000,62963920800,39600,1,'LHDT',],[62963881200,62982027000,62963919000,62982064800,37800,0,'LHST',],[62982027000,62995330800,62982066600,62995370400,39600,1,'LHDT',],[62995330800,63013476600,62995368600,63013514400,37800,0,'LHST',],[63013476600,63026780400,63013516200,63026820000,39600,1,'LHDT',],[63026780400,63044926200,63026818200,63044964000,37800,0,'LHST',],[63044926200,63058230000,63044965800,63058269600,39600,1,'LHDT',],[63058230000,63076980600,63058267800,63077018400,37800,0,'LHST',],[63076980600,63089679600,63077020200,63089719200,39600,1,'LHDT',],[63089679600,63102987000,63089717400,63103024800,37800,0,'LHST',],[63102987000,63121129200,63103026600,63121168800,39600,1,'LHDT',],[63121129200,63139879800,63121167000,63139917600,37800,0,'LHST',],[63139879800,63153183600,63139919400,63153223200,39600,1,'LHDT',],[63153183600,63171329400,63153221400,63171367200,37800,0,'LHST',],[63171329400,63184633200,63171369000,63184672800,39600,1,'LHDT',],[63184633200,63202779000,63184671000,63202816800,37800,0,'LHST',],[63202779000,63216082800,63202818600,63216122400,39600,1,'LHDT',],[63216082800,63234833400,63216120600,63234871200,37800,0,'LHST',],[63234833400,63247532400,63234873000,63247572000,39600,1,'LHDT',],[63247532400,63266283000,63247570200,63266320800,37800,0,'LHST',],[63266283000,63279586800,63266322600,63279626400,39600,1,'LHDT',],[63279586800,63297732600,63279624600,63297770400,37800,0,'LHST',],[63297732600,63310431600,63297772200,63310471200,39600,1,'LHDT',],[63310431600,63329182200,63310469400,63329220000,37800,0,'LHST',],[63329182200,63343090800,63329221800,63343130400,39600,1,'LHDT',],[63343090800,63358817400,63343128600,63358855200,37800,0,'LHST',],[63358817400,63374540400,63358857000,63374580000,39600,1,'LHDT',],[63374540400,63390267000,63374578200,63390304800,37800,0,'LHST',],[63390267000,63405990000,63390306600,63406029600,39600,1,'LHDT',],[63405990000,63421716600,63406027800,63421754400,37800,0,'LHST',],[63421716600,63437439600,63421756200,63437479200,39600,1,'LHDT',],[63437439600,63453166200,63437477400,63453204000,37800,0,'LHST',],[63453166200,63468889200,63453205800,63468928800,39600,1,'LHDT',],[63468889200,63485220600,63468927000,63485258400,37800,0,'LHST',],[63485220600,63500943600,63485260200,63500983200,39600,1,'LHDT',],[63500943600,63516670200,63500981400,63516708000,37800,0,'LHST',],[63516670200,63532393200,63516709800,63532432800,39600,1,'LHDT',],[63532393200,63548119800,63532431000,63548157600,37800,0,'LHST',],[63548119800,63563842800,63548159400,63563882400,39600,1,'LHDT',],[63563842800,63579569400,63563880600,63579607200,37800,0,'LHST',],[63579569400,63595292400,63579609000,63595332000,39600,1,'LHDT',],[63595292400,63611019000,63595330200,63611056800,37800,0,'LHST',],[63611019000,63626742000,63611058600,63626781600,39600,1,'LHDT',],[63626742000,63642468600,63626779800,63642506400,37800,0,'LHST',],[63642468600,63658191600,63642508200,63658231200,39600,1,'LHDT',],[63658191600,63674523000,63658229400,63674560800,37800,0,'LHST',],[63674523000,63690246000,63674562600,63690285600,39600,1,'LHDT',],[63690246000,63705972600,63690283800,63706010400,37800,0,'LHST',],[63705972600,63721695600,63706012200,63721735200,39600,1,'LHDT',],[63721695600,63737422200,63721733400,63737460000,37800,0,'LHST',],[63737422200,63753145200,63737461800,63753184800,39600,1,'LHDT',],[63753145200,63768871800,63753183000,63768909600,37800,0,'LHST',],[63768871800,63784594800,63768911400,63784634400,39600,1,'LHDT',],[63784594800,63800321400,63784632600,63800359200,37800,0,'LHST',],[63800321400,63816044400,63800361000,63816084000,39600,1,'LHDT',],[63816044400,63831771000,63816082200,63831808800,37800,0,'LHST',],[63831771000,63848098800,63831810600,63848138400,39600,1,'LHDT',],[63848098800,63863825400,63848136600,63863863200,37800,0,'LHST',],[63863825400,63879548400,63863865000,63879588000,39600,1,'LHDT',],[63879548400,63895275000,63879586200,63895312800,37800,0,'LHST',],[63895275000,63910998000,63895314600,63911037600,39600,1,'LHDT',],[63910998000,63926724600,63911035800,63926762400,37800,0,'LHST',],[63926724600,63942447600,63926764200,63942487200,39600,1,'LHDT',],[63942447600,63958174200,63942485400,63958212000,37800,0,'LHST',],];sub olson_version {'2016a'}sub has_dst_changes {47}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {37800}my$last_observance=bless({'format'=>'LH%sT','gmtoff'=>'10:30','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>723240,'local_rd_secs'=>1800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>723240,'utc_rd_secs'=>1800,'utc_year'=>1982 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>37800,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>723239,'local_rd_secs'=>50400,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>723239,'utc_rd_secs'=>50400,'utc_year'=>1982 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2008','in'=>'Apr','letter'=>'S','name'=>'LH','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2008','in'=>'Oct','letter'=>'D','name'=>'LH','offset_from_std'=>1800,'on'=>'Sun>=1','save'=>'0:30','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AUSTRALIA_LORD_HOWE

$fatpacked{"DateTime/TimeZone/Australia/Melbourne.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AUSTRALIA_MELBOURNE';
  package DateTime::TimeZone::Australia::Melbourne;$DateTime::TimeZone::Australia::Melbourne::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Australia::Melbourne::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59771571608,DateTime::TimeZone::NEG_INFINITY,59771606400,34792,0,'LMT',],[59771571608,60463116060,59771607608,60463152060,36000,0,'AEST',],[60463116060,60470290800,60463155660,60470330400,39600,1,'AEDT',],[60470290800,61252041600,60470326800,61252077600,36000,0,'AEST',],[61252041600,61259554800,61252081200,61259594400,39600,1,'AEDT',],[61259554800,61275283200,61259590800,61275319200,36000,0,'AEST',],[61275283200,61291004400,61275322800,61291044000,39600,1,'AEDT',],[61291004400,61307337600,61291040400,61307373600,36000,0,'AEST',],[61307337600,61322454000,61307377200,61322493600,39600,1,'AEDT',],[61322454000,62167183200,61322490000,62167219200,36000,0,'AEST',],[62167183200,62193369600,62167219200,62193405600,36000,0,'AEST',],[62193369600,62203651200,62193409200,62203690800,39600,1,'AEDT',],[62203651200,62224819200,62203687200,62224855200,36000,0,'AEST',],[62224819200,62235705600,62224858800,62235745200,39600,1,'AEDT',],[62235705600,62256268800,62235741600,62256304800,36000,0,'AEST',],[62256268800,62267155200,62256308400,62267194800,39600,1,'AEDT',],[62267155200,62287718400,62267191200,62287754400,36000,0,'AEST',],[62287718400,62298604800,62287758000,62298644400,39600,1,'AEDT',],[62298604800,62319168000,62298640800,62319204000,36000,0,'AEST',],[62319168000,62330659200,62319207600,62330698800,39600,1,'AEDT',],[62330659200,62351222400,62330695200,62351258400,36000,0,'AEST',],[62351222400,62362108800,62351262000,62362148400,39600,1,'AEDT',],[62362108800,62382672000,62362144800,62382708000,36000,0,'AEST',],[62382672000,62393558400,62382711600,62393598000,39600,1,'AEDT',],[62393558400,62414121600,62393594400,62414157600,36000,0,'AEST',],[62414121600,62425008000,62414161200,62425047600,39600,1,'AEDT',],[62425008000,62445571200,62425044000,62445607200,36000,0,'AEST',],[62445571200,62456457600,62445610800,62456497200,39600,1,'AEDT',],[62456457600,62477020800,62456493600,62477056800,36000,0,'AEST',],[62477020800,62487907200,62477060400,62487946800,39600,1,'AEDT',],[62487907200,62508470400,62487943200,62508506400,36000,0,'AEST',],[62508470400,62519961600,62508510000,62520001200,39600,1,'AEDT',],[62519961600,62540524800,62519997600,62540560800,36000,0,'AEST',],[62540524800,62551411200,62540564400,62551450800,39600,1,'AEDT',],[62551411200,62571974400,62551447200,62572010400,36000,0,'AEST',],[62571974400,62582860800,62572014000,62582900400,39600,1,'AEDT',],[62582860800,62603424000,62582896800,62603460000,36000,0,'AEST',],[62603424000,62614310400,62603463600,62614350000,39600,1,'AEDT',],[62614310400,62634873600,62614346400,62634909600,36000,0,'AEST',],[62634873600,62646969600,62634913200,62647009200,39600,1,'AEDT',],[62646969600,62665718400,62647005600,62665754400,36000,0,'AEST',],[62665718400,62678419200,62665758000,62678458800,39600,1,'AEDT',],[62678419200,62697168000,62678455200,62697204000,36000,0,'AEST',],[62697168000,62710473600,62697207600,62710513200,39600,1,'AEDT',],[62710473600,62729827200,62710509600,62729863200,36000,0,'AEST',],[62729827200,62741923200,62729866800,62741962800,39600,1,'AEDT',],[62741923200,62761276800,62741959200,62761312800,36000,0,'AEST',],[62761276800,62773372800,62761316400,62773412400,39600,1,'AEDT',],[62773372800,62792726400,62773408800,62792762400,36000,0,'AEST',],[62792726400,62803612800,62792766000,62803652400,39600,1,'AEDT',],[62803612800,62824176000,62803648800,62824212000,36000,0,'AEST',],[62824176000,62835062400,62824215600,62835102000,39600,1,'AEDT',],[62835062400,62855625600,62835098400,62855661600,36000,0,'AEST',],[62855625600,62867116800,62855665200,62867156400,39600,1,'AEDT',],[62867116800,62887680000,62867152800,62887716000,36000,0,'AEST',],[62887680000,62898566400,62887719600,62898606000,39600,1,'AEDT',],[62898566400,62919129600,62898602400,62919165600,36000,0,'AEST',],[62919129600,62931830400,62919169200,62931870000,39600,1,'AEDT',],[62931830400,62950579200,62931866400,62950615200,36000,0,'AEST',],[62950579200,62963884800,62950618800,62963924400,39600,1,'AEDT',],[62963884800,62982028800,62963920800,62982064800,36000,0,'AEST',],[62982028800,62995334400,62982068400,62995374000,39600,1,'AEDT',],[62995334400,63013478400,62995370400,63013514400,36000,0,'AEST',],[63013478400,63026784000,63013518000,63026823600,39600,1,'AEDT',],[63026784000,63044928000,63026820000,63044964000,36000,0,'AEST',],[63044928000,63058233600,63044967600,63058273200,39600,1,'AEDT',],[63058233600,63076982400,63058269600,63077018400,36000,0,'AEST',],[63076982400,63089683200,63077022000,63089722800,39600,1,'AEDT',],[63089683200,63102988800,63089719200,63103024800,36000,0,'AEST',],[63102988800,63121132800,63103028400,63121172400,39600,1,'AEDT',],[63121132800,63139881600,63121168800,63139917600,36000,0,'AEST',],[63139881600,63153187200,63139921200,63153226800,39600,1,'AEDT',],[63153187200,63171331200,63153223200,63171367200,36000,0,'AEST',],[63171331200,63184636800,63171370800,63184676400,39600,1,'AEDT',],[63184636800,63202780800,63184672800,63202816800,36000,0,'AEST',],[63202780800,63216086400,63202820400,63216126000,39600,1,'AEDT',],[63216086400,63234835200,63216122400,63234871200,36000,0,'AEST',],[63234835200,63247536000,63234874800,63247575600,39600,1,'AEDT',],[63247536000,63266284800,63247572000,63266320800,36000,0,'AEST',],[63266284800,63279590400,63266324400,63279630000,39600,1,'AEDT',],[63279590400,63297734400,63279626400,63297770400,36000,0,'AEST',],[63297734400,63310435200,63297774000,63310474800,39600,1,'AEDT',],[63310435200,63329184000,63310471200,63329220000,36000,0,'AEST',],[63329184000,63343094400,63329223600,63343134000,39600,1,'AEDT',],[63343094400,63358819200,63343130400,63358855200,36000,0,'AEST',],[63358819200,63374544000,63358858800,63374583600,39600,1,'AEDT',],[63374544000,63390268800,63374580000,63390304800,36000,0,'AEST',],[63390268800,63405993600,63390308400,63406033200,39600,1,'AEDT',],[63405993600,63421718400,63406029600,63421754400,36000,0,'AEST',],[63421718400,63437443200,63421758000,63437482800,39600,1,'AEDT',],[63437443200,63453168000,63437479200,63453204000,36000,0,'AEST',],[63453168000,63468892800,63453207600,63468932400,39600,1,'AEDT',],[63468892800,63485222400,63468928800,63485258400,36000,0,'AEST',],[63485222400,63500947200,63485262000,63500986800,39600,1,'AEDT',],[63500947200,63516672000,63500983200,63516708000,36000,0,'AEST',],[63516672000,63532396800,63516711600,63532436400,39600,1,'AEDT',],[63532396800,63548121600,63532432800,63548157600,36000,0,'AEST',],[63548121600,63563846400,63548161200,63563886000,39600,1,'AEDT',],[63563846400,63579571200,63563882400,63579607200,36000,0,'AEST',],[63579571200,63595296000,63579610800,63595335600,39600,1,'AEDT',],[63595296000,63611020800,63595332000,63611056800,36000,0,'AEST',],[63611020800,63626745600,63611060400,63626785200,39600,1,'AEDT',],[63626745600,63642470400,63626781600,63642506400,36000,0,'AEST',],[63642470400,63658195200,63642510000,63658234800,39600,1,'AEDT',],[63658195200,63674524800,63658231200,63674560800,36000,0,'AEST',],[63674524800,63690249600,63674564400,63690289200,39600,1,'AEDT',],[63690249600,63705974400,63690285600,63706010400,36000,0,'AEST',],[63705974400,63721699200,63706014000,63721738800,39600,1,'AEDT',],[63721699200,63737424000,63721735200,63737460000,36000,0,'AEST',],[63737424000,63753148800,63737463600,63753188400,39600,1,'AEDT',],[63753148800,63768873600,63753184800,63768909600,36000,0,'AEST',],[63768873600,63784598400,63768913200,63784638000,39600,1,'AEDT',],[63784598400,63800323200,63784634400,63800359200,36000,0,'AEST',],[63800323200,63816048000,63800362800,63816087600,39600,1,'AEDT',],[63816048000,63831772800,63816084000,63831808800,36000,0,'AEST',],[63831772800,63848102400,63831812400,63848142000,39600,1,'AEDT',],[63848102400,63863827200,63848138400,63863863200,36000,0,'AEST',],[63863827200,63879552000,63863866800,63879591600,39600,1,'AEDT',],[63879552000,63895276800,63879588000,63895312800,36000,0,'AEST',],[63895276800,63911001600,63895316400,63911041200,39600,1,'AEDT',],[63911001600,63926726400,63911037600,63926762400,36000,0,'AEST',],[63926726400,63942451200,63926766000,63942490800,39600,1,'AEDT',],[63942451200,63958176000,63942487200,63958212000,36000,0,'AEST',],];sub olson_version {'2016a'}sub has_dst_changes {61}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {36000}my$last_observance=bless({'format'=>'AE%sT','gmtoff'=>'10:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>719528,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>719528,'utc_rd_secs'=>0,'utc_year'=>1972 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>36000,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>719527,'local_rd_secs'=>50400,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>719527,'utc_rd_secs'=>50400,'utc_year'=>1971 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00s','from'=>'2008','in'=>'Oct','letter'=>'D','name'=>'AV','offset_from_std'=>3600,'on'=>'Sun>=1','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00s','from'=>'2008','in'=>'Apr','letter'=>'S','name'=>'AV','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AUSTRALIA_MELBOURNE

$fatpacked{"DateTime/TimeZone/Australia/Perth.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AUSTRALIA_PERTH';
  package DateTime::TimeZone::Australia::Perth;$DateTime::TimeZone::Australia::Perth::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Australia::Perth::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59797757796,DateTime::TimeZone::NEG_INFINITY,59797785600,27804,0,'LMT',],[59797757796,60463123260,59797786596,60463152060,28800,0,'AWST',],[60463123260,60470298000,60463155660,60470330400,32400,1,'AWDT',],[60470298000,61252048800,60470326800,61252077600,28800,0,'AWST',],[61252048800,61259562000,61252081200,61259594400,32400,1,'AWDT',],[61259562000,61275290400,61259590800,61275319200,28800,0,'AWST',],[61275290400,61291011600,61275322800,61291044000,32400,1,'AWDT',],[61291011600,61299216000,61291040400,61299244800,28800,0,'AWST',],[61299216000,62287725600,61299244800,62287754400,28800,0,'AWST',],[62287725600,62298612000,62287758000,62298644400,32400,1,'AWDT',],[62298612000,62571981600,62298640800,62572010400,28800,0,'AWST',],[62571981600,62582868000,62572014000,62582900400,32400,1,'AWDT',],[62582868000,62825997600,62582896800,62826026400,28800,0,'AWST',],[62825997600,62835069600,62826030000,62835102000,32400,1,'AWDT',],[62835069600,63300765600,62835098400,63300794400,28800,0,'AWST',],[63300765600,63310442400,63300798000,63310474800,32400,1,'AWDT',],[63310442400,63329191200,63310471200,63329220000,28800,0,'AWST',],[63329191200,63342496800,63329223600,63342529200,32400,1,'AWDT',],[63342496800,63360640800,63342525600,63360669600,28800,0,'AWST',],[63360640800,63373946400,63360673200,63373978800,32400,1,'AWDT',],[63373946400,DateTime::TimeZone::INFINITY,63373975200,DateTime::TimeZone::INFINITY,28800,0,'AWST',],];sub olson_version {'2016a'}sub has_dst_changes {9}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_AUSTRALIA_PERTH

$fatpacked{"DateTime/TimeZone/Australia/Sydney.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_AUSTRALIA_SYDNEY';
  package DateTime::TimeZone::Australia::Sydney;$DateTime::TimeZone::Australia::Sydney::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Australia::Sydney::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59771570108,DateTime::TimeZone::NEG_INFINITY,59771606400,36292,0,'LMT',],[59771570108,60463116060,59771606108,60463152060,36000,0,'AEST',],[60463116060,60470290800,60463155660,60470330400,39600,1,'AEDT',],[60470290800,61252041600,60470326800,61252077600,36000,0,'AEST',],[61252041600,61259554800,61252081200,61259594400,39600,1,'AEDT',],[61259554800,61275283200,61259590800,61275319200,36000,0,'AEST',],[61275283200,61291004400,61275322800,61291044000,39600,1,'AEDT',],[61291004400,61307337600,61291040400,61307373600,36000,0,'AEST',],[61307337600,61322454000,61307377200,61322493600,39600,1,'AEDT',],[61322454000,62167183200,61322490000,62167219200,36000,0,'AEST',],[62167183200,62193369600,62167219200,62193405600,36000,0,'AEST',],[62193369600,62203651200,62193409200,62203690800,39600,1,'AEDT',],[62203651200,62224819200,62203687200,62224855200,36000,0,'AEST',],[62224819200,62235705600,62224858800,62235745200,39600,1,'AEDT',],[62235705600,62256268800,62235741600,62256304800,36000,0,'AEST',],[62256268800,62267155200,62256308400,62267194800,39600,1,'AEDT',],[62267155200,62287718400,62267191200,62287754400,36000,0,'AEST',],[62287718400,62298604800,62287758000,62298644400,39600,1,'AEDT',],[62298604800,62319168000,62298640800,62319204000,36000,0,'AEST',],[62319168000,62330659200,62319207600,62330698800,39600,1,'AEDT',],[62330659200,62351222400,62330695200,62351258400,36000,0,'AEST',],[62351222400,62362108800,62351262000,62362148400,39600,1,'AEDT',],[62362108800,62382672000,62362144800,62382708000,36000,0,'AEST',],[62382672000,62393558400,62382711600,62393598000,39600,1,'AEDT',],[62393558400,62414121600,62393594400,62414157600,36000,0,'AEST',],[62414121600,62425008000,62414161200,62425047600,39600,1,'AEDT',],[62425008000,62445571200,62425044000,62445607200,36000,0,'AEST',],[62445571200,62456457600,62445610800,62456497200,39600,1,'AEDT',],[62456457600,62477020800,62456493600,62477056800,36000,0,'AEST',],[62477020800,62487907200,62477060400,62487946800,39600,1,'AEDT',],[62487907200,62508470400,62487943200,62508506400,36000,0,'AEST',],[62508470400,62522380800,62508510000,62522420400,39600,1,'AEDT',],[62522380800,62540524800,62522416800,62540560800,36000,0,'AEST',],[62540524800,62551411200,62540564400,62551450800,39600,1,'AEDT',],[62551411200,62571974400,62551447200,62572010400,36000,0,'AEST',],[62571974400,62582860800,62572014000,62582900400,39600,1,'AEDT',],[62582860800,62603424000,62582896800,62603460000,36000,0,'AEST',],[62603424000,62614310400,62603463600,62614350000,39600,1,'AEDT',],[62614310400,62634873600,62614346400,62634909600,36000,0,'AEST',],[62634873600,62646969600,62634913200,62647009200,39600,1,'AEDT',],[62646969600,62665718400,62647005600,62665754400,36000,0,'AEST',],[62665718400,62678419200,62665758000,62678458800,39600,1,'AEDT',],[62678419200,62697772800,62678455200,62697808800,36000,0,'AEST',],[62697772800,62710473600,62697812400,62710513200,39600,1,'AEDT',],[62710473600,62729827200,62710509600,62729863200,36000,0,'AEST',],[62729827200,62741923200,62729866800,62741962800,39600,1,'AEDT',],[62741923200,62761276800,62741959200,62761312800,36000,0,'AEST',],[62761276800,62772163200,62761316400,62772202800,39600,1,'AEDT',],[62772163200,62792726400,62772199200,62792762400,36000,0,'AEST',],[62792726400,62803612800,62792766000,62803652400,39600,1,'AEDT',],[62803612800,62824176000,62803648800,62824212000,36000,0,'AEST',],[62824176000,62835062400,62824215600,62835102000,39600,1,'AEDT',],[62835062400,62855625600,62835098400,62855661600,36000,0,'AEST',],[62855625600,62867116800,62855665200,62867156400,39600,1,'AEDT',],[62867116800,62887680000,62867152800,62887716000,36000,0,'AEST',],[62887680000,62898566400,62887719600,62898606000,39600,1,'AEDT',],[62898566400,62919129600,62898602400,62919165600,36000,0,'AEST',],[62919129600,62930016000,62919169200,62930055600,39600,1,'AEDT',],[62930016000,62950579200,62930052000,62950615200,36000,0,'AEST',],[62950579200,62963884800,62950618800,62963924400,39600,1,'AEDT',],[62963884800,62982028800,62963920800,62982064800,36000,0,'AEST',],[62982028800,62995334400,62982068400,62995374000,39600,1,'AEDT',],[62995334400,63013478400,62995370400,63013514400,36000,0,'AEST',],[63013478400,63026784000,63013518000,63026823600,39600,1,'AEDT',],[63026784000,63044928000,63026820000,63044964000,36000,0,'AEST',],[63044928000,63058233600,63044967600,63058273200,39600,1,'AEDT',],[63058233600,63076982400,63058269600,63077018400,36000,0,'AEST',],[63076982400,63089683200,63077022000,63089722800,39600,1,'AEDT',],[63089683200,63102988800,63089719200,63103024800,36000,0,'AEST',],[63102988800,63121132800,63103028400,63121172400,39600,1,'AEDT',],[63121132800,63139881600,63121168800,63139917600,36000,0,'AEST',],[63139881600,63153187200,63139921200,63153226800,39600,1,'AEDT',],[63153187200,63171331200,63153223200,63171367200,36000,0,'AEST',],[63171331200,63184636800,63171370800,63184676400,39600,1,'AEDT',],[63184636800,63202780800,63184672800,63202816800,36000,0,'AEST',],[63202780800,63216086400,63202820400,63216126000,39600,1,'AEDT',],[63216086400,63234835200,63216122400,63234871200,36000,0,'AEST',],[63234835200,63247536000,63234874800,63247575600,39600,1,'AEDT',],[63247536000,63266284800,63247572000,63266320800,36000,0,'AEST',],[63266284800,63279590400,63266324400,63279630000,39600,1,'AEDT',],[63279590400,63297734400,63279626400,63297770400,36000,0,'AEST',],[63297734400,63310435200,63297774000,63310474800,39600,1,'AEDT',],[63310435200,63329184000,63310471200,63329220000,36000,0,'AEST',],[63329184000,63343094400,63329223600,63343134000,39600,1,'AEDT',],[63343094400,63358819200,63343130400,63358855200,36000,0,'AEST',],[63358819200,63374544000,63358858800,63374583600,39600,1,'AEDT',],[63374544000,63390268800,63374580000,63390304800,36000,0,'AEST',],[63390268800,63405993600,63390308400,63406033200,39600,1,'AEDT',],[63405993600,63421718400,63406029600,63421754400,36000,0,'AEST',],[63421718400,63437443200,63421758000,63437482800,39600,1,'AEDT',],[63437443200,63453168000,63437479200,63453204000,36000,0,'AEST',],[63453168000,63468892800,63453207600,63468932400,39600,1,'AEDT',],[63468892800,63485222400,63468928800,63485258400,36000,0,'AEST',],[63485222400,63500947200,63485262000,63500986800,39600,1,'AEDT',],[63500947200,63516672000,63500983200,63516708000,36000,0,'AEST',],[63516672000,63532396800,63516711600,63532436400,39600,1,'AEDT',],[63532396800,63548121600,63532432800,63548157600,36000,0,'AEST',],[63548121600,63563846400,63548161200,63563886000,39600,1,'AEDT',],[63563846400,63579571200,63563882400,63579607200,36000,0,'AEST',],[63579571200,63595296000,63579610800,63595335600,39600,1,'AEDT',],[63595296000,63611020800,63595332000,63611056800,36000,0,'AEST',],[63611020800,63626745600,63611060400,63626785200,39600,1,'AEDT',],[63626745600,63642470400,63626781600,63642506400,36000,0,'AEST',],[63642470400,63658195200,63642510000,63658234800,39600,1,'AEDT',],[63658195200,63674524800,63658231200,63674560800,36000,0,'AEST',],[63674524800,63690249600,63674564400,63690289200,39600,1,'AEDT',],[63690249600,63705974400,63690285600,63706010400,36000,0,'AEST',],[63705974400,63721699200,63706014000,63721738800,39600,1,'AEDT',],[63721699200,63737424000,63721735200,63737460000,36000,0,'AEST',],[63737424000,63753148800,63737463600,63753188400,39600,1,'AEDT',],[63753148800,63768873600,63753184800,63768909600,36000,0,'AEST',],[63768873600,63784598400,63768913200,63784638000,39600,1,'AEDT',],[63784598400,63800323200,63784634400,63800359200,36000,0,'AEST',],[63800323200,63816048000,63800362800,63816087600,39600,1,'AEDT',],[63816048000,63831772800,63816084000,63831808800,36000,0,'AEST',],[63831772800,63848102400,63831812400,63848142000,39600,1,'AEDT',],[63848102400,63863827200,63848138400,63863863200,36000,0,'AEST',],[63863827200,63879552000,63863866800,63879591600,39600,1,'AEDT',],[63879552000,63895276800,63879588000,63895312800,36000,0,'AEST',],[63895276800,63911001600,63895316400,63911041200,39600,1,'AEDT',],[63911001600,63926726400,63911037600,63926762400,36000,0,'AEST',],[63926726400,63942451200,63926766000,63942490800,39600,1,'AEDT',],[63942451200,63958176000,63942487200,63958212000,36000,0,'AEST',],];sub olson_version {'2016a'}sub has_dst_changes {61}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {36000}my$last_observance=bless({'format'=>'AE%sT','gmtoff'=>'10:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>719528,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>719528,'utc_rd_secs'=>0,'utc_year'=>1972 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>36000,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>719527,'local_rd_secs'=>50400,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>719527,'utc_rd_secs'=>50400,'utc_year'=>1971 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00s','from'=>'2008','in'=>'Oct','letter'=>'D','name'=>'AN','offset_from_std'=>3600,'on'=>'Sun>=1','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00s','from'=>'2008','in'=>'Apr','letter'=>'S','name'=>'AN','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_AUSTRALIA_SYDNEY

$fatpacked{"DateTime/TimeZone/CET.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_CET';
  package DateTime::TimeZone::CET;$DateTime::TimeZone::CET::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::CET::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60441976800,DateTime::TimeZone::NEG_INFINITY,60441980400,3600,0,'CET',],[60441976800,60455199600,60441984000,60455206800,7200,1,'CEST',],[60455199600,60472227600,60455203200,60472231200,3600,0,'CET',],[60472227600,60485533200,60472234800,60485540400,7200,1,'CEST',],[60485533200,60503677200,60485536800,60503680800,3600,0,'CET',],[60503677200,60516982800,60503684400,60516990000,7200,1,'CEST',],[60516982800,61196778000,60516986400,61196781600,3600,0,'CET',],[61196778000,61278426000,61196785200,61278433200,7200,1,'CEST',],[61278426000,61291126800,61278429600,61291130400,3600,0,'CET',],[61291126800,61307456400,61291134000,61307463600,7200,1,'CEST',],[61307456400,61323181200,61307460000,61323184800,3600,0,'CET',],[61323181200,61338906000,61323188400,61338913200,7200,1,'CEST',],[61338906000,61354630800,61338909600,61354634400,3600,0,'CET',],[61354630800,61369059600,61354638000,61369066800,7200,1,'CEST',],[61369059600,62364560400,61369063200,62364564000,3600,0,'CET',],[62364560400,62379680400,62364567600,62379687600,7200,1,'CEST',],[62379680400,62396010000,62379684000,62396013600,3600,0,'CET',],[62396010000,62411734800,62396017200,62411742000,7200,1,'CEST',],[62411734800,62427459600,62411738400,62427463200,3600,0,'CET',],[62427459600,62443184400,62427466800,62443191600,7200,1,'CEST',],[62443184400,62459514000,62443188000,62459517600,3600,0,'CET',],[62459514000,62474634000,62459521200,62474641200,7200,1,'CEST',],[62474634000,62490358800,62474637600,62490362400,3600,0,'CET',],[62490358800,62506083600,62490366000,62506090800,7200,1,'CEST',],[62506083600,62521808400,62506087200,62521812000,3600,0,'CET',],[62521808400,62537533200,62521815600,62537540400,7200,1,'CEST',],[62537533200,62553258000,62537536800,62553261600,3600,0,'CET',],[62553258000,62568982800,62553265200,62568990000,7200,1,'CEST',],[62568982800,62584707600,62568986400,62584711200,3600,0,'CET',],[62584707600,62601037200,62584714800,62601044400,7200,1,'CEST',],[62601037200,62616762000,62601040800,62616765600,3600,0,'CET',],[62616762000,62632486800,62616769200,62632494000,7200,1,'CEST',],[62632486800,62648211600,62632490400,62648215200,3600,0,'CET',],[62648211600,62663936400,62648218800,62663943600,7200,1,'CEST',],[62663936400,62679661200,62663940000,62679664800,3600,0,'CET',],[62679661200,62695386000,62679668400,62695393200,7200,1,'CEST',],[62695386000,62711110800,62695389600,62711114400,3600,0,'CET',],[62711110800,62726835600,62711118000,62726842800,7200,1,'CEST',],[62726835600,62742560400,62726839200,62742564000,3600,0,'CET',],[62742560400,62758285200,62742567600,62758292400,7200,1,'CEST',],[62758285200,62774010000,62758288800,62774013600,3600,0,'CET',],[62774010000,62790339600,62774017200,62790346800,7200,1,'CEST',],[62790339600,62806064400,62790343200,62806068000,3600,0,'CET',],[62806064400,62821789200,62806071600,62821796400,7200,1,'CEST',],[62821789200,62837514000,62821792800,62837517600,3600,0,'CET',],[62837514000,62853238800,62837521200,62853246000,7200,1,'CEST',],[62853238800,62868963600,62853242400,62868967200,3600,0,'CET',],[62868963600,62884688400,62868970800,62884695600,7200,1,'CEST',],[62884688400,62900413200,62884692000,62900416800,3600,0,'CET',],[62900413200,62916138000,62900420400,62916145200,7200,1,'CEST',],[62916138000,62931862800,62916141600,62931866400,3600,0,'CET',],[62931862800,62947587600,62931870000,62947594800,7200,1,'CEST',],[62947587600,62963917200,62947591200,62963920800,3600,0,'CET',],[62963917200,62982061200,62963924400,62982068400,7200,1,'CEST',],[62982061200,62995366800,62982064800,62995370400,3600,0,'CET',],[62995366800,63013510800,62995374000,63013518000,7200,1,'CEST',],[63013510800,63026816400,63013514400,63026820000,3600,0,'CET',],[63026816400,63044960400,63026823600,63044967600,7200,1,'CEST',],[63044960400,63058266000,63044964000,63058269600,3600,0,'CET',],[63058266000,63077014800,63058273200,63077022000,7200,1,'CEST',],[63077014800,63089715600,63077018400,63089719200,3600,0,'CET',],[63089715600,63108464400,63089722800,63108471600,7200,1,'CEST',],[63108464400,63121165200,63108468000,63121168800,3600,0,'CET',],[63121165200,63139914000,63121172400,63139921200,7200,1,'CEST',],[63139914000,63153219600,63139917600,63153223200,3600,0,'CET',],[63153219600,63171363600,63153226800,63171370800,7200,1,'CEST',],[63171363600,63184669200,63171367200,63184672800,3600,0,'CET',],[63184669200,63202813200,63184676400,63202820400,7200,1,'CEST',],[63202813200,63216118800,63202816800,63216122400,3600,0,'CET',],[63216118800,63234867600,63216126000,63234874800,7200,1,'CEST',],[63234867600,63247568400,63234871200,63247572000,3600,0,'CET',],[63247568400,63266317200,63247575600,63266324400,7200,1,'CEST',],[63266317200,63279018000,63266320800,63279021600,3600,0,'CET',],[63279018000,63297766800,63279025200,63297774000,7200,1,'CEST',],[63297766800,63310467600,63297770400,63310471200,3600,0,'CET',],[63310467600,63329216400,63310474800,63329223600,7200,1,'CEST',],[63329216400,63342522000,63329220000,63342525600,3600,0,'CET',],[63342522000,63360666000,63342529200,63360673200,7200,1,'CEST',],[63360666000,63373971600,63360669600,63373975200,3600,0,'CET',],[63373971600,63392115600,63373978800,63392122800,7200,1,'CEST',],[63392115600,63405421200,63392119200,63405424800,3600,0,'CET',],[63405421200,63424170000,63405428400,63424177200,7200,1,'CEST',],[63424170000,63436870800,63424173600,63436874400,3600,0,'CET',],[63436870800,63455619600,63436878000,63455626800,7200,1,'CEST',],[63455619600,63468320400,63455623200,63468324000,3600,0,'CET',],[63468320400,63487069200,63468327600,63487076400,7200,1,'CEST',],[63487069200,63500374800,63487072800,63500378400,3600,0,'CET',],[63500374800,63518518800,63500382000,63518526000,7200,1,'CEST',],[63518518800,63531824400,63518522400,63531828000,3600,0,'CET',],[63531824400,63549968400,63531831600,63549975600,7200,1,'CEST',],[63549968400,63563274000,63549972000,63563277600,3600,0,'CET',],[63563274000,63581418000,63563281200,63581425200,7200,1,'CEST',],[63581418000,63594723600,63581421600,63594727200,3600,0,'CET',],[63594723600,63613472400,63594730800,63613479600,7200,1,'CEST',],[63613472400,63626173200,63613476000,63626176800,3600,0,'CET',],[63626173200,63644922000,63626180400,63644929200,7200,1,'CEST',],[63644922000,63657622800,63644925600,63657626400,3600,0,'CET',],[63657622800,63676371600,63657630000,63676378800,7200,1,'CEST',],[63676371600,63689677200,63676375200,63689680800,3600,0,'CET',],[63689677200,63707821200,63689684400,63707828400,7200,1,'CEST',],[63707821200,63721126800,63707824800,63721130400,3600,0,'CET',],[63721126800,63739270800,63721134000,63739278000,7200,1,'CEST',],[63739270800,63752576400,63739274400,63752580000,3600,0,'CET',],[63752576400,63771325200,63752583600,63771332400,7200,1,'CEST',],[63771325200,63784026000,63771328800,63784029600,3600,0,'CET',],[63784026000,63802774800,63784033200,63802782000,7200,1,'CEST',],[63802774800,63815475600,63802778400,63815479200,3600,0,'CET',],[63815475600,63834224400,63815482800,63834231600,7200,1,'CEST',],[63834224400,63847530000,63834228000,63847533600,3600,0,'CET',],[63847530000,63865674000,63847537200,63865681200,7200,1,'CEST',],[63865674000,63878979600,63865677600,63878983200,3600,0,'CET',],[63878979600,63897123600,63878986800,63897130800,7200,1,'CEST',],[63897123600,63910429200,63897127200,63910432800,3600,0,'CET',],[63910429200,63928573200,63910436400,63928580400,7200,1,'CEST',],[63928573200,63941878800,63928576800,63941882400,3600,0,'CET',],[63941878800,63960627600,63941886000,63960634800,7200,1,'CEST',],];sub olson_version {'2016a'}sub has_dst_changes {58}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {3600}my$last_observance=bless({'format'=>'CE%sT','gmtoff'=>'1:00','local_start_datetime'=>{},'offset_from_std'=>0,'offset_from_utc'=>3600,'until'=>[],'utc_start_datetime'=>{}},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00s','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'C-Eur','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00s','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'C-Eur','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_CET

$fatpacked{"DateTime/TimeZone/CST6CDT.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_CST6CDT';
  package DateTime::TimeZone::CST6CDT;$DateTime::TimeZone::CST6CDT::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::CST6CDT::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60502406400,DateTime::TimeZone::NEG_INFINITY,60502384800,-21600,0,'CST',],[60502406400,60520546800,60502388400,60520528800,-18000,1,'CDT',],[60520546800,60533856000,60520525200,60533834400,-21600,0,'CST',],[60533856000,60551996400,60533838000,60551978400,-18000,1,'CDT',],[60551996400,61255468800,60551974800,61255447200,-21600,0,'CST',],[61255468800,61366287600,61255450800,61366269600,-18000,1,'CWT',],[61366287600,61370290800,61366269600,61370272800,-18000,1,'CPT',],[61370290800,62051299200,61370269200,62051277600,-21600,0,'CST',],[62051299200,62067020400,62051281200,62067002400,-18000,1,'CDT',],[62067020400,62082748800,62066998800,62082727200,-21600,0,'CST',],[62082748800,62098470000,62082730800,62098452000,-18000,1,'CDT',],[62098470000,62114198400,62098448400,62114176800,-21600,0,'CST',],[62114198400,62129919600,62114180400,62129901600,-18000,1,'CDT',],[62129919600,62145648000,62129898000,62145626400,-21600,0,'CST',],[62145648000,62161369200,62145630000,62161351200,-18000,1,'CDT',],[62161369200,62177097600,62161347600,62177076000,-21600,0,'CST',],[62177097600,62193423600,62177079600,62193405600,-18000,1,'CDT',],[62193423600,62209152000,62193402000,62209130400,-21600,0,'CST',],[62209152000,62224873200,62209134000,62224855200,-18000,1,'CDT',],[62224873200,62240601600,62224851600,62240580000,-21600,0,'CST',],[62240601600,62256322800,62240583600,62256304800,-18000,1,'CDT',],[62256322800,62262374400,62256301200,62262352800,-21600,0,'CST',],[62262374400,62287772400,62262356400,62287754400,-18000,1,'CDT',],[62287772400,62298057600,62287750800,62298036000,-21600,0,'CST',],[62298057600,62319222000,62298039600,62319204000,-18000,1,'CDT',],[62319222000,62334950400,62319200400,62334928800,-21600,0,'CST',],[62334950400,62351276400,62334932400,62351258400,-18000,1,'CDT',],[62351276400,62366400000,62351254800,62366378400,-21600,0,'CST',],[62366400000,62382726000,62366382000,62382708000,-18000,1,'CDT',],[62382726000,62398454400,62382704400,62398432800,-21600,0,'CST',],[62398454400,62414175600,62398436400,62414157600,-18000,1,'CDT',],[62414175600,62429904000,62414154000,62429882400,-21600,0,'CST',],[62429904000,62445625200,62429886000,62445607200,-18000,1,'CDT',],[62445625200,62461353600,62445603600,62461332000,-21600,0,'CST',],[62461353600,62477074800,62461335600,62477056800,-18000,1,'CDT',],[62477074800,62492803200,62477053200,62492781600,-21600,0,'CST',],[62492803200,62508524400,62492785200,62508506400,-18000,1,'CDT',],[62508524400,62524252800,62508502800,62524231200,-21600,0,'CST',],[62524252800,62540578800,62524234800,62540560800,-18000,1,'CDT',],[62540578800,62555702400,62540557200,62555680800,-21600,0,'CST',],[62555702400,62572028400,62555684400,62572010400,-18000,1,'CDT',],[62572028400,62587756800,62572006800,62587735200,-21600,0,'CST',],[62587756800,62603478000,62587738800,62603460000,-18000,1,'CDT',],[62603478000,62619206400,62603456400,62619184800,-21600,0,'CST',],[62619206400,62634927600,62619188400,62634909600,-18000,1,'CDT',],[62634927600,62650656000,62634906000,62650634400,-21600,0,'CST',],[62650656000,62666377200,62650638000,62666359200,-18000,1,'CDT',],[62666377200,62680291200,62666355600,62680269600,-21600,0,'CST',],[62680291200,62697826800,62680273200,62697808800,-18000,1,'CDT',],[62697826800,62711740800,62697805200,62711719200,-21600,0,'CST',],[62711740800,62729881200,62711722800,62729863200,-18000,1,'CDT',],[62729881200,62743190400,62729859600,62743168800,-21600,0,'CST',],[62743190400,62761330800,62743172400,62761312800,-18000,1,'CDT',],[62761330800,62774640000,62761309200,62774618400,-21600,0,'CST',],[62774640000,62792780400,62774622000,62792762400,-18000,1,'CDT',],[62792780400,62806694400,62792758800,62806672800,-21600,0,'CST',],[62806694400,62824230000,62806676400,62824212000,-18000,1,'CDT',],[62824230000,62838144000,62824208400,62838122400,-21600,0,'CST',],[62838144000,62855679600,62838126000,62855661600,-18000,1,'CDT',],[62855679600,62869593600,62855658000,62869572000,-21600,0,'CST',],[62869593600,62887734000,62869575600,62887716000,-18000,1,'CDT',],[62887734000,62901043200,62887712400,62901021600,-21600,0,'CST',],[62901043200,62919183600,62901025200,62919165600,-18000,1,'CDT',],[62919183600,62932492800,62919162000,62932471200,-21600,0,'CST',],[62932492800,62950633200,62932474800,62950615200,-18000,1,'CDT',],[62950633200,62964547200,62950611600,62964525600,-21600,0,'CST',],[62964547200,62982082800,62964529200,62982064800,-18000,1,'CDT',],[62982082800,62995996800,62982061200,62995975200,-21600,0,'CST',],[62995996800,63013532400,62995978800,63013514400,-18000,1,'CDT',],[63013532400,63027446400,63013510800,63027424800,-21600,0,'CST',],[63027446400,63044982000,63027428400,63044964000,-18000,1,'CDT',],[63044982000,63058896000,63044960400,63058874400,-21600,0,'CST',],[63058896000,63077036400,63058878000,63077018400,-18000,1,'CDT',],[63077036400,63090345600,63077014800,63090324000,-21600,0,'CST',],[63090345600,63108486000,63090327600,63108468000,-18000,1,'CDT',],[63108486000,63121795200,63108464400,63121773600,-21600,0,'CST',],[63121795200,63139935600,63121777200,63139917600,-18000,1,'CDT',],[63139935600,63153849600,63139914000,63153828000,-21600,0,'CST',],[63153849600,63171385200,63153831600,63171367200,-18000,1,'CDT',],[63171385200,63185299200,63171363600,63185277600,-21600,0,'CST',],[63185299200,63202834800,63185281200,63202816800,-18000,1,'CDT',],[63202834800,63216748800,63202813200,63216727200,-21600,0,'CST',],[63216748800,63234889200,63216730800,63234871200,-18000,1,'CDT',],[63234889200,63248198400,63234867600,63248176800,-21600,0,'CST',],[63248198400,63266338800,63248180400,63266320800,-18000,1,'CDT',],[63266338800,63279648000,63266317200,63279626400,-21600,0,'CST',],[63279648000,63297788400,63279630000,63297770400,-18000,1,'CDT',],[63297788400,63309283200,63297766800,63309261600,-21600,0,'CST',],[63309283200,63329842800,63309265200,63329824800,-18000,1,'CDT',],[63329842800,63340732800,63329821200,63340711200,-21600,0,'CST',],[63340732800,63361292400,63340714800,63361274400,-18000,1,'CDT',],[63361292400,63372182400,63361270800,63372160800,-21600,0,'CST',],[63372182400,63392742000,63372164400,63392724000,-18000,1,'CDT',],[63392742000,63404236800,63392720400,63404215200,-21600,0,'CST',],[63404236800,63424796400,63404218800,63424778400,-18000,1,'CDT',],[63424796400,63435686400,63424774800,63435664800,-21600,0,'CST',],[63435686400,63456246000,63435668400,63456228000,-18000,1,'CDT',],[63456246000,63467136000,63456224400,63467114400,-21600,0,'CST',],[63467136000,63487695600,63467118000,63487677600,-18000,1,'CDT',],[63487695600,63498585600,63487674000,63498564000,-21600,0,'CST',],[63498585600,63519145200,63498567600,63519127200,-18000,1,'CDT',],[63519145200,63530035200,63519123600,63530013600,-21600,0,'CST',],[63530035200,63550594800,63530017200,63550576800,-18000,1,'CDT',],[63550594800,63561484800,63550573200,63561463200,-21600,0,'CST',],[63561484800,63582044400,63561466800,63582026400,-18000,1,'CDT',],[63582044400,63593539200,63582022800,63593517600,-21600,0,'CST',],[63593539200,63614098800,63593521200,63614080800,-18000,1,'CDT',],[63614098800,63624988800,63614077200,63624967200,-21600,0,'CST',],[63624988800,63645548400,63624970800,63645530400,-18000,1,'CDT',],[63645548400,63656438400,63645526800,63656416800,-21600,0,'CST',],[63656438400,63676998000,63656420400,63676980000,-18000,1,'CDT',],[63676998000,63687888000,63676976400,63687866400,-21600,0,'CST',],[63687888000,63708447600,63687870000,63708429600,-18000,1,'CDT',],[63708447600,63719337600,63708426000,63719316000,-21600,0,'CST',],[63719337600,63739897200,63719319600,63739879200,-18000,1,'CDT',],[63739897200,63751392000,63739875600,63751370400,-21600,0,'CST',],[63751392000,63771951600,63751374000,63771933600,-18000,1,'CDT',],[63771951600,63782841600,63771930000,63782820000,-21600,0,'CST',],[63782841600,63803401200,63782823600,63803383200,-18000,1,'CDT',],[63803401200,63814291200,63803379600,63814269600,-21600,0,'CST',],[63814291200,63834850800,63814273200,63834832800,-18000,1,'CDT',],[63834850800,63845740800,63834829200,63845719200,-21600,0,'CST',],[63845740800,63866300400,63845722800,63866282400,-18000,1,'CDT',],[63866300400,63877190400,63866278800,63877168800,-21600,0,'CST',],[63877190400,63897750000,63877172400,63897732000,-18000,1,'CDT',],[63897750000,63908640000,63897728400,63908618400,-21600,0,'CST',],[63908640000,63929199600,63908622000,63929181600,-18000,1,'CDT',],[63929199600,63940694400,63929178000,63940672800,-21600,0,'CST',],[63940694400,63961254000,63940676400,63961236000,-18000,1,'CDT',],];sub olson_version {'2016a'}sub has_dst_changes {65}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-21600}my$last_observance=bless({'format'=>'C%sT','gmtoff'=>'-6:00','local_start_datetime'=>{},'offset_from_std'=>0,'offset_from_utc'=>-21600,'until'=>[],'utc_start_datetime'=>{}},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_CST6CDT

$fatpacked{"DateTime/TimeZone/Catalog.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_CATALOG';
  package DateTime::TimeZone::Catalog;$DateTime::TimeZone::Catalog::VERSION='1.95';use strict;use vars qw(@ALL @CATEGORY_NAMES %CATEGORIES %ZONES_BY_COUNTRY %LINKS);@ALL=qw(Africa/Abidjan Africa/Accra Africa/Algiers Africa/Bissau Africa/Cairo Africa/Casablanca Africa/Ceuta Africa/El_Aaiun Africa/Johannesburg Africa/Khartoum Africa/Lagos Africa/Maputo Africa/Monrovia Africa/Nairobi Africa/Ndjamena Africa/Tripoli Africa/Tunis Africa/Windhoek America/Adak America/Anchorage America/Araguaina America/Argentina/Buenos_Aires America/Argentina/Catamarca America/Argentina/Cordoba America/Argentina/Jujuy America/Argentina/La_Rioja America/Argentina/Mendoza America/Argentina/Rio_Gallegos America/Argentina/Salta America/Argentina/San_Juan America/Argentina/San_Luis America/Argentina/Tucuman America/Argentina/Ushuaia America/Asuncion America/Atikokan America/Bahia America/Bahia_Banderas America/Barbados America/Belem America/Belize America/Blanc-Sablon America/Boa_Vista America/Bogota America/Boise America/Cambridge_Bay America/Campo_Grande America/Cancun America/Caracas America/Cayenne America/Chicago America/Chihuahua America/Costa_Rica America/Creston America/Cuiaba America/Curacao America/Danmarkshavn America/Dawson America/Dawson_Creek America/Denver America/Detroit America/Edmonton America/Eirunepe America/El_Salvador America/Fort_Nelson America/Fortaleza America/Glace_Bay America/Godthab America/Goose_Bay America/Grand_Turk America/Guatemala America/Guayaquil America/Guyana America/Halifax America/Havana America/Hermosillo America/Indiana/Indianapolis America/Indiana/Knox America/Indiana/Marengo America/Indiana/Petersburg America/Indiana/Tell_City America/Indiana/Vevay America/Indiana/Vincennes America/Indiana/Winamac America/Inuvik America/Iqaluit America/Jamaica America/Juneau America/Kentucky/Louisville America/Kentucky/Monticello America/La_Paz America/Lima America/Los_Angeles America/Maceio America/Managua America/Manaus America/Martinique America/Matamoros America/Mazatlan America/Menominee America/Merida America/Metlakatla America/Mexico_City America/Miquelon America/Moncton America/Monterrey America/Montevideo America/Nassau America/New_York America/Nipigon America/Nome America/Noronha America/North_Dakota/Beulah America/North_Dakota/Center America/North_Dakota/New_Salem America/Ojinaga America/Panama America/Pangnirtung America/Paramaribo America/Phoenix America/Port-au-Prince America/Port_of_Spain America/Porto_Velho America/Puerto_Rico America/Rainy_River America/Rankin_Inlet America/Recife America/Regina America/Resolute America/Rio_Branco America/Santarem America/Santiago America/Santo_Domingo America/Sao_Paulo America/Scoresbysund America/Sitka America/St_Johns America/Swift_Current America/Tegucigalpa America/Thule America/Thunder_Bay America/Tijuana America/Toronto America/Vancouver America/Whitehorse America/Winnipeg America/Yakutat America/Yellowknife Antarctica/Casey Antarctica/Davis Antarctica/DumontDUrville Antarctica/Macquarie Antarctica/Mawson Antarctica/Palmer Antarctica/Rothera Antarctica/Syowa Antarctica/Troll Antarctica/Vostok Asia/Almaty Asia/Amman Asia/Anadyr Asia/Aqtau Asia/Aqtobe Asia/Ashgabat Asia/Baghdad Asia/Baku Asia/Bangkok Asia/Beirut Asia/Bishkek Asia/Brunei Asia/Chita Asia/Choibalsan Asia/Colombo Asia/Damascus Asia/Dhaka Asia/Dili Asia/Dubai Asia/Dushanbe Asia/Gaza Asia/Hebron Asia/Ho_Chi_Minh Asia/Hong_Kong Asia/Hovd Asia/Irkutsk Asia/Jakarta Asia/Jayapura Asia/Jerusalem Asia/Kabul Asia/Kamchatka Asia/Karachi Asia/Kathmandu Asia/Khandyga Asia/Kolkata Asia/Krasnoyarsk Asia/Kuala_Lumpur Asia/Kuching Asia/Macau Asia/Magadan Asia/Makassar Asia/Manila Asia/Nicosia Asia/Novokuznetsk Asia/Novosibirsk Asia/Omsk Asia/Oral Asia/Pontianak Asia/Pyongyang Asia/Qatar Asia/Qyzylorda Asia/Rangoon Asia/Riyadh Asia/Sakhalin Asia/Samarkand Asia/Seoul Asia/Shanghai Asia/Singapore Asia/Srednekolymsk Asia/Taipei Asia/Tashkent Asia/Tbilisi Asia/Tehran Asia/Thimphu Asia/Tokyo Asia/Ulaanbaatar Asia/Urumqi Asia/Ust-Nera Asia/Vladivostok Asia/Yakutsk Asia/Yekaterinburg Asia/Yerevan Atlantic/Azores Atlantic/Bermuda Atlantic/Canary Atlantic/Cape_Verde Atlantic/Faroe Atlantic/Madeira Atlantic/Reykjavik Atlantic/South_Georgia Atlantic/Stanley Australia/Adelaide Australia/Brisbane Australia/Broken_Hill Australia/Currie Australia/Darwin Australia/Eucla Australia/Hobart Australia/Lindeman Australia/Lord_Howe Australia/Melbourne Australia/Perth Australia/Sydney CET CST6CDT EET EST EST5EDT Europe/Amsterdam Europe/Andorra Europe/Athens Europe/Belgrade Europe/Berlin Europe/Brussels Europe/Bucharest Europe/Budapest Europe/Chisinau Europe/Copenhagen Europe/Dublin Europe/Gibraltar Europe/Helsinki Europe/Istanbul Europe/Kaliningrad Europe/Kiev Europe/Lisbon Europe/London Europe/Luxembourg Europe/Madrid Europe/Malta Europe/Minsk Europe/Monaco Europe/Moscow Europe/Oslo Europe/Paris Europe/Prague Europe/Riga Europe/Rome Europe/Samara Europe/Simferopol Europe/Sofia Europe/Stockholm Europe/Tallinn Europe/Tirane Europe/Uzhgorod Europe/Vienna Europe/Vilnius Europe/Volgograd Europe/Warsaw Europe/Zaporozhye Europe/Zurich HST Indian/Chagos Indian/Christmas Indian/Cocos Indian/Kerguelen Indian/Mahe Indian/Maldives Indian/Mauritius Indian/Reunion MET MST MST7MDT PST8PDT Pacific/Apia Pacific/Auckland Pacific/Bougainville Pacific/Chatham Pacific/Chuuk Pacific/Easter Pacific/Efate Pacific/Enderbury Pacific/Fakaofo Pacific/Fiji Pacific/Funafuti Pacific/Galapagos Pacific/Gambier Pacific/Guadalcanal Pacific/Guam Pacific/Honolulu Pacific/Kiritimati Pacific/Kosrae Pacific/Kwajalein Pacific/Majuro Pacific/Marquesas Pacific/Nauru Pacific/Niue Pacific/Norfolk Pacific/Noumea Pacific/Pago_Pago Pacific/Palau Pacific/Pitcairn Pacific/Pohnpei Pacific/Port_Moresby Pacific/Rarotonga Pacific/Tahiti Pacific/Tarawa Pacific/Tongatapu Pacific/Wake Pacific/Wallis UTC WET);@CATEGORY_NAMES=qw(Africa America Antarctica Asia Atlantic Australia Europe Indian Pacific);%CATEGORIES=('Africa'=>[qw(Abidjan Accra Algiers Bissau Cairo Casablanca Ceuta El_Aaiun Johannesburg Khartoum Lagos Maputo Monrovia Nairobi Ndjamena Tripoli Tunis Windhoek) ],'America'=>[qw(Adak Anchorage Araguaina Argentina/Buenos_Aires Argentina/Catamarca Argentina/Cordoba Argentina/Jujuy Argentina/La_Rioja Argentina/Mendoza Argentina/Rio_Gallegos Argentina/Salta Argentina/San_Juan Argentina/San_Luis Argentina/Tucuman Argentina/Ushuaia Asuncion Atikokan Bahia Bahia_Banderas Barbados Belem Belize Blanc-Sablon Boa_Vista Bogota Boise Cambridge_Bay Campo_Grande Cancun Caracas Cayenne Chicago Chihuahua Costa_Rica Creston Cuiaba Curacao Danmarkshavn Dawson Dawson_Creek Denver Detroit Edmonton Eirunepe El_Salvador Fort_Nelson Fortaleza Glace_Bay Godthab Goose_Bay Grand_Turk Guatemala Guayaquil Guyana Halifax Havana Hermosillo Indiana/Indianapolis Indiana/Knox Indiana/Marengo Indiana/Petersburg Indiana/Tell_City Indiana/Vevay Indiana/Vincennes Indiana/Winamac Inuvik Iqaluit Jamaica Juneau Kentucky/Louisville Kentucky/Monticello La_Paz Lima Los_Angeles Maceio Managua Manaus Martinique Matamoros Mazatlan Menominee Merida Metlakatla Mexico_City Miquelon Moncton Monterrey Montevideo Nassau New_York Nipigon Nome Noronha North_Dakota/Beulah North_Dakota/Center North_Dakota/New_Salem Ojinaga Panama Pangnirtung Paramaribo Phoenix Port-au-Prince Port_of_Spain Porto_Velho Puerto_Rico Rainy_River Rankin_Inlet Recife Regina Resolute Rio_Branco Santarem Santiago Santo_Domingo Sao_Paulo Scoresbysund Sitka St_Johns Swift_Current Tegucigalpa Thule Thunder_Bay Tijuana Toronto Vancouver Whitehorse Winnipeg Yakutat Yellowknife) ],'Antarctica'=>[qw(Casey Davis DumontDUrville Macquarie Mawson Palmer Rothera Syowa Troll Vostok) ],'Asia'=>[qw(Almaty Amman Anadyr Aqtau Aqtobe Ashgabat Baghdad Baku Bangkok Beirut Bishkek Brunei Chita Choibalsan Colombo Damascus Dhaka Dili Dubai Dushanbe Gaza Hebron Ho_Chi_Minh Hong_Kong Hovd Irkutsk Jakarta Jayapura Jerusalem Kabul Kamchatka Karachi Kathmandu Khandyga Kolkata Krasnoyarsk Kuala_Lumpur Kuching Macau Magadan Makassar Manila Nicosia Novokuznetsk Novosibirsk Omsk Oral Pontianak Pyongyang Qatar Qyzylorda Rangoon Riyadh Sakhalin Samarkand Seoul Shanghai Singapore Srednekolymsk Taipei Tashkent Tbilisi Tehran Thimphu Tokyo Ulaanbaatar Urumqi Ust-Nera Vladivostok Yakutsk Yekaterinburg Yerevan) ],'Atlantic'=>[qw(Azores Bermuda Canary Cape_Verde Faroe Madeira Reykjavik South_Georgia Stanley) ],'Australia'=>[qw(Adelaide Brisbane Broken_Hill Currie Darwin Eucla Hobart Lindeman Lord_Howe Melbourne Perth Sydney) ],'Europe'=>[qw(Amsterdam Andorra Athens Belgrade Berlin Brussels Bucharest Budapest Chisinau Copenhagen Dublin Gibraltar Helsinki Istanbul Kaliningrad Kiev Lisbon London Luxembourg Madrid Malta Minsk Monaco Moscow Oslo Paris Prague Riga Rome Samara Simferopol Sofia Stockholm Tallinn Tirane Uzhgorod Vienna Vilnius Volgograd Warsaw Zaporozhye Zurich) ],'Indian'=>[qw(Chagos Christmas Cocos Kerguelen Mahe Maldives Mauritius Reunion) ],'Pacific'=>[qw(Apia Auckland Bougainville Chatham Chuuk Easter Efate Enderbury Fakaofo Fiji Funafuti Galapagos Gambier Guadalcanal Guam Honolulu Kiritimati Kosrae Kwajalein Majuro Marquesas Nauru Niue Norfolk Noumea Pago_Pago Palau Pitcairn Pohnpei Port_Moresby Rarotonga Tahiti Tarawa Tongatapu Wake Wallis) ],);%ZONES_BY_COUNTRY=('ad'=>[qw(Europe/Andorra) ],'ae'=>[qw(Asia/Dubai) ],'af'=>[qw(Asia/Kabul) ],'ag'=>[qw(America/Antigua) ],'ai'=>[qw(America/Anguilla) ],'al'=>[qw(Europe/Tirane) ],'am'=>[qw(Asia/Yerevan) ],'ao'=>[qw(Africa/Luanda) ],'aq'=>[qw(Antarctica/McMurdo Antarctica/Rothera Antarctica/Palmer Antarctica/Mawson Antarctica/Davis Antarctica/Casey Antarctica/Vostok Antarctica/DumontDUrville Antarctica/Syowa Antarctica/Troll) ],'ar'=>[qw(America/Argentina/Buenos_Aires America/Argentina/Cordoba America/Argentina/Salta America/Argentina/Jujuy America/Argentina/Tucuman America/Argentina/Catamarca America/Argentina/La_Rioja America/Argentina/San_Juan America/Argentina/Mendoza America/Argentina/San_Luis America/Argentina/Rio_Gallegos America/Argentina/Ushuaia) ],'as'=>[qw(Pacific/Pago_Pago) ],'at'=>[qw(Europe/Vienna) ],'au'=>[qw(Australia/Lord_Howe Antarctica/Macquarie Australia/Hobart Australia/Currie Australia/Melbourne Australia/Sydney Australia/Broken_Hill Australia/Brisbane Australia/Lindeman Australia/Adelaide Australia/Darwin Australia/Perth Australia/Eucla) ],'aw'=>[qw(America/Aruba) ],'ax'=>[qw(Europe/Mariehamn) ],'az'=>[qw(Asia/Baku) ],'ba'=>[qw(Europe/Sarajevo) ],'bb'=>[qw(America/Barbados) ],'bd'=>[qw(Asia/Dhaka) ],'be'=>[qw(Europe/Brussels) ],'bf'=>[qw(Africa/Ouagadougou) ],'bg'=>[qw(Europe/Sofia) ],'bh'=>[qw(Asia/Bahrain) ],'bi'=>[qw(Africa/Bujumbura) ],'bj'=>[qw(Africa/Porto-Novo) ],'bl'=>[qw(America/St_Barthelemy) ],'bm'=>[qw(Atlantic/Bermuda) ],'bn'=>[qw(Asia/Brunei) ],'bo'=>[qw(America/La_Paz) ],'bq'=>[qw(America/Kralendijk) ],'br'=>[qw(America/Noronha America/Belem America/Fortaleza America/Recife America/Araguaina America/Maceio America/Bahia America/Sao_Paulo America/Campo_Grande America/Cuiaba America/Santarem America/Porto_Velho America/Boa_Vista America/Manaus America/Eirunepe America/Rio_Branco) ],'bs'=>[qw(America/Nassau) ],'bt'=>[qw(Asia/Thimphu) ],'bw'=>[qw(Africa/Gaborone) ],'by'=>[qw(Europe/Minsk) ],'bz'=>[qw(America/Belize) ],'ca'=>[qw(America/St_Johns America/Halifax America/Glace_Bay America/Moncton America/Goose_Bay America/Blanc-Sablon America/Toronto America/Nipigon America/Thunder_Bay America/Iqaluit America/Pangnirtung America/Resolute America/Atikokan America/Rankin_Inlet America/Winnipeg America/Rainy_River America/Regina America/Swift_Current America/Edmonton America/Cambridge_Bay America/Yellowknife America/Inuvik America/Creston America/Dawson_Creek America/Fort_Nelson America/Vancouver America/Whitehorse America/Dawson) ],'cc'=>[qw(Indian/Cocos) ],'cd'=>[qw(Africa/Kinshasa Africa/Lubumbashi) ],'cf'=>[qw(Africa/Bangui) ],'cg'=>[qw(Africa/Brazzaville) ],'ch'=>[qw(Europe/Zurich) ],'ci'=>[qw(Africa/Abidjan) ],'ck'=>[qw(Pacific/Rarotonga) ],'cl'=>[qw(America/Santiago Pacific/Easter) ],'cm'=>[qw(Africa/Douala) ],'cn'=>[qw(Asia/Shanghai Asia/Urumqi) ],'co'=>[qw(America/Bogota) ],'cr'=>[qw(America/Costa_Rica) ],'cu'=>[qw(America/Havana) ],'cv'=>[qw(Atlantic/Cape_Verde) ],'cw'=>[qw(America/Curacao) ],'cx'=>[qw(Indian/Christmas) ],'cy'=>[qw(Asia/Nicosia) ],'cz'=>[qw(Europe/Prague) ],'de'=>[qw(Europe/Berlin Europe/Busingen) ],'dj'=>[qw(Africa/Djibouti) ],'dk'=>[qw(Europe/Copenhagen) ],'dm'=>[qw(America/Dominica) ],'do'=>[qw(America/Santo_Domingo) ],'dz'=>[qw(Africa/Algiers) ],'ec'=>[qw(America/Guayaquil Pacific/Galapagos) ],'ee'=>[qw(Europe/Tallinn) ],'eg'=>[qw(Africa/Cairo) ],'eh'=>[qw(Africa/El_Aaiun) ],'er'=>[qw(Africa/Asmara) ],'es'=>[qw(Europe/Madrid Africa/Ceuta Atlantic/Canary) ],'et'=>[qw(Africa/Addis_Ababa) ],'fi'=>[qw(Europe/Helsinki) ],'fj'=>[qw(Pacific/Fiji) ],'fk'=>[qw(Atlantic/Stanley) ],'fm'=>[qw(Pacific/Chuuk Pacific/Pohnpei Pacific/Kosrae) ],'fo'=>[qw(Atlantic/Faroe) ],'fr'=>[qw(Europe/Paris) ],'ga'=>[qw(Africa/Libreville) ],'gb'=>[qw(Europe/London) ],'gd'=>[qw(America/Grenada) ],'ge'=>[qw(Asia/Tbilisi) ],'gf'=>[qw(America/Cayenne) ],'gg'=>[qw(Europe/Guernsey) ],'gh'=>[qw(Africa/Accra) ],'gi'=>[qw(Europe/Gibraltar) ],'gl'=>[qw(America/Godthab America/Danmarkshavn America/Scoresbysund America/Thule) ],'gm'=>[qw(Africa/Banjul) ],'gn'=>[qw(Africa/Conakry) ],'gp'=>[qw(America/Guadeloupe) ],'gq'=>[qw(Africa/Malabo) ],'gr'=>[qw(Europe/Athens) ],'gs'=>[qw(Atlantic/South_Georgia) ],'gt'=>[qw(America/Guatemala) ],'gu'=>[qw(Pacific/Guam) ],'gw'=>[qw(Africa/Bissau) ],'gy'=>[qw(America/Guyana) ],'hk'=>[qw(Asia/Hong_Kong) ],'hn'=>[qw(America/Tegucigalpa) ],'hr'=>[qw(Europe/Zagreb) ],'ht'=>[qw(America/Port-au-Prince) ],'hu'=>[qw(Europe/Budapest) ],'id'=>[qw(Asia/Jakarta Asia/Pontianak Asia/Makassar Asia/Jayapura) ],'ie'=>[qw(Europe/Dublin) ],'il'=>[qw(Asia/Jerusalem) ],'im'=>[qw(Europe/Isle_of_Man) ],'in'=>[qw(Asia/Kolkata) ],'io'=>[qw(Indian/Chagos) ],'iq'=>[qw(Asia/Baghdad) ],'ir'=>[qw(Asia/Tehran) ],'is'=>[qw(Atlantic/Reykjavik) ],'it'=>[qw(Europe/Rome) ],'je'=>[qw(Europe/Jersey) ],'jm'=>[qw(America/Jamaica) ],'jo'=>[qw(Asia/Amman) ],'jp'=>[qw(Asia/Tokyo) ],'ke'=>[qw(Africa/Nairobi) ],'kg'=>[qw(Asia/Bishkek) ],'kh'=>[qw(Asia/Phnom_Penh) ],'ki'=>[qw(Pacific/Tarawa Pacific/Enderbury Pacific/Kiritimati) ],'km'=>[qw(Indian/Comoro) ],'kn'=>[qw(America/St_Kitts) ],'kp'=>[qw(Asia/Pyongyang) ],'kr'=>[qw(Asia/Seoul) ],'kw'=>[qw(Asia/Kuwait) ],'ky'=>[qw(America/Cayman) ],'kz'=>[qw(Asia/Almaty Asia/Qyzylorda Asia/Aqtobe Asia/Aqtau Asia/Oral) ],'la'=>[qw(Asia/Vientiane) ],'lb'=>[qw(Asia/Beirut) ],'lc'=>[qw(America/St_Lucia) ],'li'=>[qw(Europe/Vaduz) ],'lk'=>[qw(Asia/Colombo) ],'lr'=>[qw(Africa/Monrovia) ],'ls'=>[qw(Africa/Maseru) ],'lt'=>[qw(Europe/Vilnius) ],'lu'=>[qw(Europe/Luxembourg) ],'lv'=>[qw(Europe/Riga) ],'ly'=>[qw(Africa/Tripoli) ],'ma'=>[qw(Africa/Casablanca) ],'mc'=>[qw(Europe/Monaco) ],'md'=>[qw(Europe/Chisinau) ],'me'=>[qw(Europe/Podgorica) ],'mf'=>[qw(America/Marigot) ],'mg'=>[qw(Indian/Antananarivo) ],'mh'=>[qw(Pacific/Majuro Pacific/Kwajalein) ],'mk'=>[qw(Europe/Skopje) ],'ml'=>[qw(Africa/Bamako) ],'mm'=>[qw(Asia/Rangoon) ],'mn'=>[qw(Asia/Ulaanbaatar Asia/Hovd Asia/Choibalsan) ],'mo'=>[qw(Asia/Macau) ],'mp'=>[qw(Pacific/Saipan) ],'mq'=>[qw(America/Martinique) ],'mr'=>[qw(Africa/Nouakchott) ],'ms'=>[qw(America/Montserrat) ],'mt'=>[qw(Europe/Malta) ],'mu'=>[qw(Indian/Mauritius) ],'mv'=>[qw(Indian/Maldives) ],'mw'=>[qw(Africa/Blantyre) ],'mx'=>[qw(America/Mexico_City America/Cancun America/Merida America/Monterrey America/Matamoros America/Mazatlan America/Chihuahua America/Ojinaga America/Hermosillo America/Tijuana America/Bahia_Banderas) ],'my'=>[qw(Asia/Kuala_Lumpur Asia/Kuching) ],'mz'=>[qw(Africa/Maputo) ],'na'=>[qw(Africa/Windhoek) ],'nc'=>[qw(Pacific/Noumea) ],'ne'=>[qw(Africa/Niamey) ],'nf'=>[qw(Pacific/Norfolk) ],'ng'=>[qw(Africa/Lagos) ],'ni'=>[qw(America/Managua) ],'nl'=>[qw(Europe/Amsterdam) ],'no'=>[qw(Europe/Oslo) ],'np'=>[qw(Asia/Kathmandu) ],'nr'=>[qw(Pacific/Nauru) ],'nu'=>[qw(Pacific/Niue) ],'nz'=>[qw(Pacific/Auckland Pacific/Chatham) ],'om'=>[qw(Asia/Muscat) ],'pa'=>[qw(America/Panama) ],'pe'=>[qw(America/Lima) ],'pf'=>[qw(Pacific/Tahiti Pacific/Marquesas Pacific/Gambier) ],'pg'=>[qw(Pacific/Port_Moresby Pacific/Bougainville) ],'ph'=>[qw(Asia/Manila) ],'pk'=>[qw(Asia/Karachi) ],'pl'=>[qw(Europe/Warsaw) ],'pm'=>[qw(America/Miquelon) ],'pn'=>[qw(Pacific/Pitcairn) ],'pr'=>[qw(America/Puerto_Rico) ],'ps'=>[qw(Asia/Gaza Asia/Hebron) ],'pt'=>[qw(Europe/Lisbon Atlantic/Madeira Atlantic/Azores) ],'pw'=>[qw(Pacific/Palau) ],'py'=>[qw(America/Asuncion) ],'qa'=>[qw(Asia/Qatar) ],'re'=>[qw(Indian/Reunion) ],'ro'=>[qw(Europe/Bucharest) ],'rs'=>[qw(Europe/Belgrade) ],'ru'=>[qw(Europe/Kaliningrad Europe/Moscow Europe/Simferopol Europe/Volgograd Europe/Samara Asia/Yekaterinburg Asia/Omsk Asia/Novosibirsk Asia/Novokuznetsk Asia/Krasnoyarsk Asia/Irkutsk Asia/Chita Asia/Yakutsk Asia/Khandyga Asia/Vladivostok Asia/Sakhalin Asia/Ust-Nera Asia/Magadan Asia/Srednekolymsk Asia/Kamchatka Asia/Anadyr) ],'rw'=>[qw(Africa/Kigali) ],'sa'=>[qw(Asia/Riyadh) ],'sb'=>[qw(Pacific/Guadalcanal) ],'sc'=>[qw(Indian/Mahe) ],'sd'=>[qw(Africa/Khartoum) ],'se'=>[qw(Europe/Stockholm) ],'sg'=>[qw(Asia/Singapore) ],'sh'=>[qw(Atlantic/St_Helena) ],'si'=>[qw(Europe/Ljubljana) ],'sj'=>[qw(Arctic/Longyearbyen) ],'sk'=>[qw(Europe/Bratislava) ],'sl'=>[qw(Africa/Freetown) ],'sm'=>[qw(Europe/San_Marino) ],'sn'=>[qw(Africa/Dakar) ],'so'=>[qw(Africa/Mogadishu) ],'sr'=>[qw(America/Paramaribo) ],'ss'=>[qw(Africa/Juba) ],'st'=>[qw(Africa/Sao_Tome) ],'sv'=>[qw(America/El_Salvador) ],'sx'=>[qw(America/Lower_Princes) ],'sy'=>[qw(Asia/Damascus) ],'sz'=>[qw(Africa/Mbabane) ],'tc'=>[qw(America/Grand_Turk) ],'td'=>[qw(Africa/Ndjamena) ],'tf'=>[qw(Indian/Kerguelen) ],'tg'=>[qw(Africa/Lome) ],'th'=>[qw(Asia/Bangkok) ],'tj'=>[qw(Asia/Dushanbe) ],'tk'=>[qw(Pacific/Fakaofo) ],'tl'=>[qw(Asia/Dili) ],'tm'=>[qw(Asia/Ashgabat) ],'tn'=>[qw(Africa/Tunis) ],'to'=>[qw(Pacific/Tongatapu) ],'tr'=>[qw(Europe/Istanbul) ],'tt'=>[qw(America/Port_of_Spain) ],'tv'=>[qw(Pacific/Funafuti) ],'tw'=>[qw(Asia/Taipei) ],'tz'=>[qw(Africa/Dar_es_Salaam) ],'ua'=>[qw(Europe/Kiev Europe/Uzhgorod Europe/Zaporozhye) ],'ug'=>[qw(Africa/Kampala) ],'uk'=>[qw(Europe/London) ],'um'=>[qw(Pacific/Johnston Pacific/Midway Pacific/Wake) ],'us'=>[qw(America/New_York America/Detroit America/Kentucky/Louisville America/Kentucky/Monticello America/Indiana/Indianapolis America/Indiana/Vincennes America/Indiana/Winamac America/Indiana/Marengo America/Indiana/Petersburg America/Indiana/Vevay America/Chicago America/Indiana/Tell_City America/Indiana/Knox America/Menominee America/North_Dakota/Center America/North_Dakota/New_Salem America/North_Dakota/Beulah America/Denver America/Boise America/Phoenix America/Los_Angeles America/Anchorage America/Juneau America/Sitka America/Metlakatla America/Yakutat America/Nome America/Adak Pacific/Honolulu) ],'uy'=>[qw(America/Montevideo) ],'uz'=>[qw(Asia/Samarkand Asia/Tashkent) ],'va'=>[qw(Europe/Vatican) ],'vc'=>[qw(America/St_Vincent) ],'ve'=>[qw(America/Caracas) ],'vg'=>[qw(America/Tortola) ],'vi'=>[qw(America/St_Thomas) ],'vn'=>[qw(Asia/Ho_Chi_Minh) ],'vu'=>[qw(Pacific/Efate) ],'wf'=>[qw(Pacific/Wallis) ],'ws'=>[qw(Pacific/Apia) ],'ye'=>[qw(Asia/Aden) ],'yt'=>[qw(Indian/Mayotte) ],'za'=>[qw(Africa/Johannesburg) ],'zm'=>[qw(Africa/Lusaka) ],'zw'=>[qw(Africa/Harare) ],);%LINKS=('AKST9AKDT'=>'America/Anchorage','Africa/Addis_Ababa'=>'Africa/Nairobi','Africa/Asmara'=>'Africa/Nairobi','Africa/Asmera'=>'Africa/Nairobi','Africa/Bamako'=>'Africa/Abidjan','Africa/Bangui'=>'Africa/Lagos','Africa/Banjul'=>'Africa/Abidjan','Africa/Blantyre'=>'Africa/Maputo','Africa/Brazzaville'=>'Africa/Lagos','Africa/Bujumbura'=>'Africa/Maputo','Africa/Conakry'=>'Africa/Abidjan','Africa/Dakar'=>'Africa/Abidjan','Africa/Dar_es_Salaam'=>'Africa/Nairobi','Africa/Djibouti'=>'Africa/Nairobi','Africa/Douala'=>'Africa/Lagos','Africa/Freetown'=>'Africa/Abidjan','Africa/Gaborone'=>'Africa/Maputo','Africa/Harare'=>'Africa/Maputo','Africa/Juba'=>'Africa/Khartoum','Africa/Kampala'=>'Africa/Nairobi','Africa/Kigali'=>'Africa/Maputo','Africa/Kinshasa'=>'Africa/Lagos','Africa/Libreville'=>'Africa/Lagos','Africa/Lome'=>'Africa/Abidjan','Africa/Luanda'=>'Africa/Lagos','Africa/Lubumbashi'=>'Africa/Maputo','Africa/Lusaka'=>'Africa/Maputo','Africa/Malabo'=>'Africa/Lagos','Africa/Maseru'=>'Africa/Johannesburg','Africa/Mbabane'=>'Africa/Johannesburg','Africa/Mogadishu'=>'Africa/Nairobi','Africa/Niamey'=>'Africa/Lagos','Africa/Nouakchott'=>'Africa/Abidjan','Africa/Ouagadougou'=>'Africa/Abidjan','Africa/Porto-Novo'=>'Africa/Lagos','Africa/Sao_Tome'=>'Africa/Abidjan','Africa/Timbuktu'=>'Africa/Abidjan','America/Anguilla'=>'America/Port_of_Spain','America/Antigua'=>'America/Port_of_Spain','America/Argentina/ComodRivadavia'=>'America/Argentina/Catamarca','America/Aruba'=>'America/Curacao','America/Atka'=>'America/Adak','America/Buenos_Aires'=>'America/Argentina/Buenos_Aires','America/Catamarca'=>'America/Argentina/Catamarca','America/Cayman'=>'America/Panama','America/Coral_Harbour'=>'America/Atikokan','America/Cordoba'=>'America/Argentina/Cordoba','America/Dominica'=>'America/Port_of_Spain','America/Ensenada'=>'America/Tijuana','America/Fort_Wayne'=>'America/Indiana/Indianapolis','America/Grenada'=>'America/Port_of_Spain','America/Guadeloupe'=>'America/Port_of_Spain','America/Indianapolis'=>'America/Indiana/Indianapolis','America/Jujuy'=>'America/Argentina/Jujuy','America/Knox_IN'=>'America/Indiana/Knox','America/Kralendijk'=>'America/Curacao','America/Louisville'=>'America/Kentucky/Louisville','America/Lower_Princes'=>'America/Curacao','America/Marigot'=>'America/Port_of_Spain','America/Mendoza'=>'America/Argentina/Mendoza','America/Montreal'=>'America/Toronto','America/Montserrat'=>'America/Port_of_Spain','America/Porto_Acre'=>'America/Rio_Branco','America/Rosario'=>'America/Argentina/Cordoba','America/Santa_Isabel'=>'America/Tijuana','America/Shiprock'=>'America/Denver','America/St_Barthelemy'=>'America/Port_of_Spain','America/St_Kitts'=>'America/Port_of_Spain','America/St_Lucia'=>'America/Port_of_Spain','America/St_Thomas'=>'America/Port_of_Spain','America/St_Vincent'=>'America/Port_of_Spain','America/Tortola'=>'America/Port_of_Spain','America/Virgin'=>'America/Port_of_Spain','Antarctica/McMurdo'=>'Pacific/Auckland','Antarctica/South_Pole'=>'Pacific/Auckland','Arctic/Longyearbyen'=>'Europe/Oslo','Asia/Aden'=>'Asia/Riyadh','Asia/Ashkhabad'=>'Asia/Ashgabat','Asia/Bahrain'=>'Asia/Qatar','Asia/Calcutta'=>'Asia/Kolkata','Asia/Chongqing'=>'Asia/Shanghai','Asia/Chungking'=>'Asia/Shanghai','Asia/Dacca'=>'Asia/Dhaka','Asia/Harbin'=>'Asia/Shanghai','Asia/Istanbul'=>'Europe/Istanbul','Asia/Kashgar'=>'Asia/Urumqi','Asia/Katmandu'=>'Asia/Kathmandu','Asia/Kuwait'=>'Asia/Riyadh','Asia/Macao'=>'Asia/Macau','Asia/Muscat'=>'Asia/Dubai','Asia/Phnom_Penh'=>'Asia/Bangkok','Asia/Saigon'=>'Asia/Ho_Chi_Minh','Asia/Tel_Aviv'=>'Asia/Jerusalem','Asia/Thimbu'=>'Asia/Thimphu','Asia/Ujung_Pandang'=>'Asia/Makassar','Asia/Ulan_Bator'=>'Asia/Ulaanbaatar','Asia/Vientiane'=>'Asia/Bangkok','Atlantic/Faeroe'=>'Atlantic/Faroe','Atlantic/Jan_Mayen'=>'Europe/Oslo','Atlantic/St_Helena'=>'Africa/Abidjan','Australia/ACT'=>'Australia/Sydney','Australia/Canberra'=>'Australia/Sydney','Australia/LHI'=>'Australia/Lord_Howe','Australia/NSW'=>'Australia/Sydney','Australia/North'=>'Australia/Darwin','Australia/Queensland'=>'Australia/Brisbane','Australia/South'=>'Australia/Adelaide','Australia/Tasmania'=>'Australia/Hobart','Australia/Victoria'=>'Australia/Melbourne','Australia/West'=>'Australia/Perth','Australia/Yancowinna'=>'Australia/Broken_Hill','Brazil/Acre'=>'America/Rio_Branco','Brazil/DeNoronha'=>'America/Noronha','Brazil/East'=>'America/Sao_Paulo','Brazil/West'=>'America/Manaus','Canada/Atlantic'=>'America/Halifax','Canada/Central'=>'America/Winnipeg','Canada/East-Saskatchewan'=>'America/Regina','Canada/Eastern'=>'America/Toronto','Canada/Mountain'=>'America/Edmonton','Canada/Newfoundland'=>'America/St_Johns','Canada/Pacific'=>'America/Vancouver','Canada/Saskatchewan'=>'America/Regina','Canada/Yukon'=>'America/Whitehorse','Chile/Continental'=>'America/Santiago','Chile/EasterIsland'=>'Pacific/Easter','Cuba'=>'America/Havana','Egypt'=>'Africa/Cairo','Eire'=>'Europe/Dublin','Etc/GMT'=>'UTC','Etc/GMT+0'=>'UTC','Etc/UCT'=>'UTC','Etc/UTC'=>'UTC','Etc/Universal'=>'UTC','Etc/Zulu'=>'UTC','Europe/Belfast'=>'Europe/London','Europe/Bratislava'=>'Europe/Prague','Europe/Busingen'=>'Europe/Zurich','Europe/Guernsey'=>'Europe/London','Europe/Isle_of_Man'=>'Europe/London','Europe/Jersey'=>'Europe/London','Europe/Ljubljana'=>'Europe/Belgrade','Europe/Mariehamn'=>'Europe/Helsinki','Europe/Nicosia'=>'Asia/Nicosia','Europe/Podgorica'=>'Europe/Belgrade','Europe/San_Marino'=>'Europe/Rome','Europe/Sarajevo'=>'Europe/Belgrade','Europe/Skopje'=>'Europe/Belgrade','Europe/Tiraspol'=>'Europe/Chisinau','Europe/Vaduz'=>'Europe/Zurich','Europe/Vatican'=>'Europe/Rome','Europe/Zagreb'=>'Europe/Belgrade','GB'=>'Europe/London','GB-Eire'=>'Europe/London','GMT'=>'UTC','GMT+0'=>'UTC','GMT-0'=>'UTC','GMT0'=>'UTC','Greenwich'=>'UTC','Hongkong'=>'Asia/Hong_Kong','Iceland'=>'Atlantic/Reykjavik','Indian/Antananarivo'=>'Africa/Nairobi','Indian/Comoro'=>'Africa/Nairobi','Indian/Mayotte'=>'Africa/Nairobi','Iran'=>'Asia/Tehran','Israel'=>'Asia/Jerusalem','JST-9'=>'Asia/Tokyo','Jamaica'=>'America/Jamaica','Japan'=>'Asia/Tokyo','Kwajalein'=>'Pacific/Kwajalein','Libya'=>'Africa/Tripoli','Mexico/BajaNorte'=>'America/Tijuana','Mexico/BajaSur'=>'America/Mazatlan','Mexico/General'=>'America/Mexico_City','NZ'=>'Pacific/Auckland','NZ-CHAT'=>'Pacific/Chatham','Navajo'=>'America/Denver','PRC'=>'Asia/Shanghai','Pacific/Johnston'=>'Pacific/Honolulu','Pacific/Midway'=>'Pacific/Pago_Pago','Pacific/Ponape'=>'Pacific/Pohnpei','Pacific/Saipan'=>'Pacific/Guam','Pacific/Samoa'=>'Pacific/Pago_Pago','Pacific/Truk'=>'Pacific/Chuuk','Pacific/Yap'=>'Pacific/Chuuk','Poland'=>'Europe/Warsaw','Portugal'=>'Europe/Lisbon','ROC'=>'Asia/Taipei','ROK'=>'Asia/Seoul','Singapore'=>'Asia/Singapore','Turkey'=>'Europe/Istanbul','UCT'=>'UTC','US/Alaska'=>'America/Anchorage','US/Aleutian'=>'America/Adak','US/Arizona'=>'America/Phoenix','US/Central'=>'America/Chicago','US/East-Indiana'=>'America/Indiana/Indianapolis','US/Eastern'=>'America/New_York','US/Hawaii'=>'Pacific/Honolulu','US/Indiana-Starke'=>'America/Indiana/Knox','US/Michigan'=>'America/Detroit','US/Mountain'=>'America/Denver','US/Pacific'=>'America/Los_Angeles','US/Pacific-New'=>'America/Los_Angeles','US/Samoa'=>'Pacific/Pago_Pago','Universal'=>'UTC','W-SU'=>'Europe/Moscow','Zulu'=>'UTC');sub OlsonVersion {'2016a'}1;
DATETIME_TIMEZONE_CATALOG

$fatpacked{"DateTime/TimeZone/EET.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EET';
  package DateTime::TimeZone::EET;$DateTime::TimeZone::EET::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::EET::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,62364560400,DateTime::TimeZone::NEG_INFINITY,62364567600,7200,0,'EET',],[62364560400,62379680400,62364571200,62379691200,10800,1,'EEST',],[62379680400,62396010000,62379687600,62396017200,7200,0,'EET',],[62396010000,62411734800,62396020800,62411745600,10800,1,'EEST',],[62411734800,62427459600,62411742000,62427466800,7200,0,'EET',],[62427459600,62443184400,62427470400,62443195200,10800,1,'EEST',],[62443184400,62459514000,62443191600,62459521200,7200,0,'EET',],[62459514000,62474634000,62459524800,62474644800,10800,1,'EEST',],[62474634000,62490358800,62474641200,62490366000,7200,0,'EET',],[62490358800,62506083600,62490369600,62506094400,10800,1,'EEST',],[62506083600,62521808400,62506090800,62521815600,7200,0,'EET',],[62521808400,62537533200,62521819200,62537544000,10800,1,'EEST',],[62537533200,62553258000,62537540400,62553265200,7200,0,'EET',],[62553258000,62568982800,62553268800,62568993600,10800,1,'EEST',],[62568982800,62584707600,62568990000,62584714800,7200,0,'EET',],[62584707600,62601037200,62584718400,62601048000,10800,1,'EEST',],[62601037200,62616762000,62601044400,62616769200,7200,0,'EET',],[62616762000,62632486800,62616772800,62632497600,10800,1,'EEST',],[62632486800,62648211600,62632494000,62648218800,7200,0,'EET',],[62648211600,62663936400,62648222400,62663947200,10800,1,'EEST',],[62663936400,62679661200,62663943600,62679668400,7200,0,'EET',],[62679661200,62695386000,62679672000,62695396800,10800,1,'EEST',],[62695386000,62711110800,62695393200,62711118000,7200,0,'EET',],[62711110800,62726835600,62711121600,62726846400,10800,1,'EEST',],[62726835600,62742560400,62726842800,62742567600,7200,0,'EET',],[62742560400,62758285200,62742571200,62758296000,10800,1,'EEST',],[62758285200,62774010000,62758292400,62774017200,7200,0,'EET',],[62774010000,62790339600,62774020800,62790350400,10800,1,'EEST',],[62790339600,62806064400,62790346800,62806071600,7200,0,'EET',],[62806064400,62821789200,62806075200,62821800000,10800,1,'EEST',],[62821789200,62837514000,62821796400,62837521200,7200,0,'EET',],[62837514000,62853238800,62837524800,62853249600,10800,1,'EEST',],[62853238800,62868963600,62853246000,62868970800,7200,0,'EET',],[62868963600,62884688400,62868974400,62884699200,10800,1,'EEST',],[62884688400,62900413200,62884695600,62900420400,7200,0,'EET',],[62900413200,62916138000,62900424000,62916148800,10800,1,'EEST',],[62916138000,62931862800,62916145200,62931870000,7200,0,'EET',],[62931862800,62947587600,62931873600,62947598400,10800,1,'EEST',],[62947587600,62963917200,62947594800,62963924400,7200,0,'EET',],[62963917200,62982061200,62963928000,62982072000,10800,1,'EEST',],[62982061200,62995366800,62982068400,62995374000,7200,0,'EET',],[62995366800,63013510800,62995377600,63013521600,10800,1,'EEST',],[63013510800,63026816400,63013518000,63026823600,7200,0,'EET',],[63026816400,63044960400,63026827200,63044971200,10800,1,'EEST',],[63044960400,63058266000,63044967600,63058273200,7200,0,'EET',],[63058266000,63077014800,63058276800,63077025600,10800,1,'EEST',],[63077014800,63089715600,63077022000,63089722800,7200,0,'EET',],[63089715600,63108464400,63089726400,63108475200,10800,1,'EEST',],[63108464400,63121165200,63108471600,63121172400,7200,0,'EET',],[63121165200,63139914000,63121176000,63139924800,10800,1,'EEST',],[63139914000,63153219600,63139921200,63153226800,7200,0,'EET',],[63153219600,63171363600,63153230400,63171374400,10800,1,'EEST',],[63171363600,63184669200,63171370800,63184676400,7200,0,'EET',],[63184669200,63202813200,63184680000,63202824000,10800,1,'EEST',],[63202813200,63216118800,63202820400,63216126000,7200,0,'EET',],[63216118800,63234867600,63216129600,63234878400,10800,1,'EEST',],[63234867600,63247568400,63234874800,63247575600,7200,0,'EET',],[63247568400,63266317200,63247579200,63266328000,10800,1,'EEST',],[63266317200,63279018000,63266324400,63279025200,7200,0,'EET',],[63279018000,63297766800,63279028800,63297777600,10800,1,'EEST',],[63297766800,63310467600,63297774000,63310474800,7200,0,'EET',],[63310467600,63329216400,63310478400,63329227200,10800,1,'EEST',],[63329216400,63342522000,63329223600,63342529200,7200,0,'EET',],[63342522000,63360666000,63342532800,63360676800,10800,1,'EEST',],[63360666000,63373971600,63360673200,63373978800,7200,0,'EET',],[63373971600,63392115600,63373982400,63392126400,10800,1,'EEST',],[63392115600,63405421200,63392122800,63405428400,7200,0,'EET',],[63405421200,63424170000,63405432000,63424180800,10800,1,'EEST',],[63424170000,63436870800,63424177200,63436878000,7200,0,'EET',],[63436870800,63455619600,63436881600,63455630400,10800,1,'EEST',],[63455619600,63468320400,63455626800,63468327600,7200,0,'EET',],[63468320400,63487069200,63468331200,63487080000,10800,1,'EEST',],[63487069200,63500374800,63487076400,63500382000,7200,0,'EET',],[63500374800,63518518800,63500385600,63518529600,10800,1,'EEST',],[63518518800,63531824400,63518526000,63531831600,7200,0,'EET',],[63531824400,63549968400,63531835200,63549979200,10800,1,'EEST',],[63549968400,63563274000,63549975600,63563281200,7200,0,'EET',],[63563274000,63581418000,63563284800,63581428800,10800,1,'EEST',],[63581418000,63594723600,63581425200,63594730800,7200,0,'EET',],[63594723600,63613472400,63594734400,63613483200,10800,1,'EEST',],[63613472400,63626173200,63613479600,63626180400,7200,0,'EET',],[63626173200,63644922000,63626184000,63644932800,10800,1,'EEST',],[63644922000,63657622800,63644929200,63657630000,7200,0,'EET',],[63657622800,63676371600,63657633600,63676382400,10800,1,'EEST',],[63676371600,63689677200,63676378800,63689684400,7200,0,'EET',],[63689677200,63707821200,63689688000,63707832000,10800,1,'EEST',],[63707821200,63721126800,63707828400,63721134000,7200,0,'EET',],[63721126800,63739270800,63721137600,63739281600,10800,1,'EEST',],[63739270800,63752576400,63739278000,63752583600,7200,0,'EET',],[63752576400,63771325200,63752587200,63771336000,10800,1,'EEST',],[63771325200,63784026000,63771332400,63784033200,7200,0,'EET',],[63784026000,63802774800,63784036800,63802785600,10800,1,'EEST',],[63802774800,63815475600,63802782000,63815482800,7200,0,'EET',],[63815475600,63834224400,63815486400,63834235200,10800,1,'EEST',],[63834224400,63847530000,63834231600,63847537200,7200,0,'EET',],[63847530000,63865674000,63847540800,63865684800,10800,1,'EEST',],[63865674000,63878979600,63865681200,63878986800,7200,0,'EET',],[63878979600,63897123600,63878990400,63897134400,10800,1,'EEST',],[63897123600,63910429200,63897130800,63910436400,7200,0,'EET',],[63910429200,63928573200,63910440000,63928584000,10800,1,'EEST',],[63928573200,63941878800,63928580400,63941886000,7200,0,'EET',],[63941878800,63960627600,63941889600,63960638400,10800,1,'EEST',],];sub olson_version {'2016a'}sub has_dst_changes {51}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {7200}my$last_observance=bless({'format'=>'EE%sT','gmtoff'=>'2:00','local_start_datetime'=>{},'offset_from_std'=>0,'offset_from_utc'=>7200,'until'=>[],'utc_start_datetime'=>{}},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EET

$fatpacked{"DateTime/TimeZone/EST.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EST';
  package DateTime::TimeZone::EST;$DateTime::TimeZone::EST::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::EST::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,DateTime::TimeZone::INFINITY,DateTime::TimeZone::NEG_INFINITY,DateTime::TimeZone::INFINITY,-18000,0,'EST',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_EST

$fatpacked{"DateTime/TimeZone/EST5EDT.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EST5EDT';
  package DateTime::TimeZone::EST5EDT;$DateTime::TimeZone::EST5EDT::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::EST5EDT::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60502402800,DateTime::TimeZone::NEG_INFINITY,60502384800,-18000,0,'EST',],[60502402800,60520543200,60502388400,60520528800,-14400,1,'EDT',],[60520543200,60533852400,60520525200,60533834400,-18000,0,'EST',],[60533852400,60551992800,60533838000,60551978400,-14400,1,'EDT',],[60551992800,61255465200,60551974800,61255447200,-18000,0,'EST',],[61255465200,61366287600,61255450800,61366273200,-14400,1,'EWT',],[61366287600,61370287200,61366273200,61370272800,-14400,1,'EPT',],[61370287200,62051295600,61370269200,62051277600,-18000,0,'EST',],[62051295600,62067016800,62051281200,62067002400,-14400,1,'EDT',],[62067016800,62082745200,62066998800,62082727200,-18000,0,'EST',],[62082745200,62098466400,62082730800,62098452000,-14400,1,'EDT',],[62098466400,62114194800,62098448400,62114176800,-18000,0,'EST',],[62114194800,62129916000,62114180400,62129901600,-14400,1,'EDT',],[62129916000,62145644400,62129898000,62145626400,-18000,0,'EST',],[62145644400,62161365600,62145630000,62161351200,-14400,1,'EDT',],[62161365600,62177094000,62161347600,62177076000,-18000,0,'EST',],[62177094000,62193420000,62177079600,62193405600,-14400,1,'EDT',],[62193420000,62209148400,62193402000,62209130400,-18000,0,'EST',],[62209148400,62224869600,62209134000,62224855200,-14400,1,'EDT',],[62224869600,62240598000,62224851600,62240580000,-18000,0,'EST',],[62240598000,62256319200,62240583600,62256304800,-14400,1,'EDT',],[62256319200,62262370800,62256301200,62262352800,-18000,0,'EST',],[62262370800,62287768800,62262356400,62287754400,-14400,1,'EDT',],[62287768800,62298054000,62287750800,62298036000,-18000,0,'EST',],[62298054000,62319218400,62298039600,62319204000,-14400,1,'EDT',],[62319218400,62334946800,62319200400,62334928800,-18000,0,'EST',],[62334946800,62351272800,62334932400,62351258400,-14400,1,'EDT',],[62351272800,62366396400,62351254800,62366378400,-18000,0,'EST',],[62366396400,62382722400,62366382000,62382708000,-14400,1,'EDT',],[62382722400,62398450800,62382704400,62398432800,-18000,0,'EST',],[62398450800,62414172000,62398436400,62414157600,-14400,1,'EDT',],[62414172000,62429900400,62414154000,62429882400,-18000,0,'EST',],[62429900400,62445621600,62429886000,62445607200,-14400,1,'EDT',],[62445621600,62461350000,62445603600,62461332000,-18000,0,'EST',],[62461350000,62477071200,62461335600,62477056800,-14400,1,'EDT',],[62477071200,62492799600,62477053200,62492781600,-18000,0,'EST',],[62492799600,62508520800,62492785200,62508506400,-14400,1,'EDT',],[62508520800,62524249200,62508502800,62524231200,-18000,0,'EST',],[62524249200,62540575200,62524234800,62540560800,-14400,1,'EDT',],[62540575200,62555698800,62540557200,62555680800,-18000,0,'EST',],[62555698800,62572024800,62555684400,62572010400,-14400,1,'EDT',],[62572024800,62587753200,62572006800,62587735200,-18000,0,'EST',],[62587753200,62603474400,62587738800,62603460000,-14400,1,'EDT',],[62603474400,62619202800,62603456400,62619184800,-18000,0,'EST',],[62619202800,62634924000,62619188400,62634909600,-14400,1,'EDT',],[62634924000,62650652400,62634906000,62650634400,-18000,0,'EST',],[62650652400,62666373600,62650638000,62666359200,-14400,1,'EDT',],[62666373600,62680287600,62666355600,62680269600,-18000,0,'EST',],[62680287600,62697823200,62680273200,62697808800,-14400,1,'EDT',],[62697823200,62711737200,62697805200,62711719200,-18000,0,'EST',],[62711737200,62729877600,62711722800,62729863200,-14400,1,'EDT',],[62729877600,62743186800,62729859600,62743168800,-18000,0,'EST',],[62743186800,62761327200,62743172400,62761312800,-14400,1,'EDT',],[62761327200,62774636400,62761309200,62774618400,-18000,0,'EST',],[62774636400,62792776800,62774622000,62792762400,-14400,1,'EDT',],[62792776800,62806690800,62792758800,62806672800,-18000,0,'EST',],[62806690800,62824226400,62806676400,62824212000,-14400,1,'EDT',],[62824226400,62838140400,62824208400,62838122400,-18000,0,'EST',],[62838140400,62855676000,62838126000,62855661600,-14400,1,'EDT',],[62855676000,62869590000,62855658000,62869572000,-18000,0,'EST',],[62869590000,62887730400,62869575600,62887716000,-14400,1,'EDT',],[62887730400,62901039600,62887712400,62901021600,-18000,0,'EST',],[62901039600,62919180000,62901025200,62919165600,-14400,1,'EDT',],[62919180000,62932489200,62919162000,62932471200,-18000,0,'EST',],[62932489200,62950629600,62932474800,62950615200,-14400,1,'EDT',],[62950629600,62964543600,62950611600,62964525600,-18000,0,'EST',],[62964543600,62982079200,62964529200,62982064800,-14400,1,'EDT',],[62982079200,62995993200,62982061200,62995975200,-18000,0,'EST',],[62995993200,63013528800,62995978800,63013514400,-14400,1,'EDT',],[63013528800,63027442800,63013510800,63027424800,-18000,0,'EST',],[63027442800,63044978400,63027428400,63044964000,-14400,1,'EDT',],[63044978400,63058892400,63044960400,63058874400,-18000,0,'EST',],[63058892400,63077032800,63058878000,63077018400,-14400,1,'EDT',],[63077032800,63090342000,63077014800,63090324000,-18000,0,'EST',],[63090342000,63108482400,63090327600,63108468000,-14400,1,'EDT',],[63108482400,63121791600,63108464400,63121773600,-18000,0,'EST',],[63121791600,63139932000,63121777200,63139917600,-14400,1,'EDT',],[63139932000,63153846000,63139914000,63153828000,-18000,0,'EST',],[63153846000,63171381600,63153831600,63171367200,-14400,1,'EDT',],[63171381600,63185295600,63171363600,63185277600,-18000,0,'EST',],[63185295600,63202831200,63185281200,63202816800,-14400,1,'EDT',],[63202831200,63216745200,63202813200,63216727200,-18000,0,'EST',],[63216745200,63234885600,63216730800,63234871200,-14400,1,'EDT',],[63234885600,63248194800,63234867600,63248176800,-18000,0,'EST',],[63248194800,63266335200,63248180400,63266320800,-14400,1,'EDT',],[63266335200,63279644400,63266317200,63279626400,-18000,0,'EST',],[63279644400,63297784800,63279630000,63297770400,-14400,1,'EDT',],[63297784800,63309279600,63297766800,63309261600,-18000,0,'EST',],[63309279600,63329839200,63309265200,63329824800,-14400,1,'EDT',],[63329839200,63340729200,63329821200,63340711200,-18000,0,'EST',],[63340729200,63361288800,63340714800,63361274400,-14400,1,'EDT',],[63361288800,63372178800,63361270800,63372160800,-18000,0,'EST',],[63372178800,63392738400,63372164400,63392724000,-14400,1,'EDT',],[63392738400,63404233200,63392720400,63404215200,-18000,0,'EST',],[63404233200,63424792800,63404218800,63424778400,-14400,1,'EDT',],[63424792800,63435682800,63424774800,63435664800,-18000,0,'EST',],[63435682800,63456242400,63435668400,63456228000,-14400,1,'EDT',],[63456242400,63467132400,63456224400,63467114400,-18000,0,'EST',],[63467132400,63487692000,63467118000,63487677600,-14400,1,'EDT',],[63487692000,63498582000,63487674000,63498564000,-18000,0,'EST',],[63498582000,63519141600,63498567600,63519127200,-14400,1,'EDT',],[63519141600,63530031600,63519123600,63530013600,-18000,0,'EST',],[63530031600,63550591200,63530017200,63550576800,-14400,1,'EDT',],[63550591200,63561481200,63550573200,63561463200,-18000,0,'EST',],[63561481200,63582040800,63561466800,63582026400,-14400,1,'EDT',],[63582040800,63593535600,63582022800,63593517600,-18000,0,'EST',],[63593535600,63614095200,63593521200,63614080800,-14400,1,'EDT',],[63614095200,63624985200,63614077200,63624967200,-18000,0,'EST',],[63624985200,63645544800,63624970800,63645530400,-14400,1,'EDT',],[63645544800,63656434800,63645526800,63656416800,-18000,0,'EST',],[63656434800,63676994400,63656420400,63676980000,-14400,1,'EDT',],[63676994400,63687884400,63676976400,63687866400,-18000,0,'EST',],[63687884400,63708444000,63687870000,63708429600,-14400,1,'EDT',],[63708444000,63719334000,63708426000,63719316000,-18000,0,'EST',],[63719334000,63739893600,63719319600,63739879200,-14400,1,'EDT',],[63739893600,63751388400,63739875600,63751370400,-18000,0,'EST',],[63751388400,63771948000,63751374000,63771933600,-14400,1,'EDT',],[63771948000,63782838000,63771930000,63782820000,-18000,0,'EST',],[63782838000,63803397600,63782823600,63803383200,-14400,1,'EDT',],[63803397600,63814287600,63803379600,63814269600,-18000,0,'EST',],[63814287600,63834847200,63814273200,63834832800,-14400,1,'EDT',],[63834847200,63845737200,63834829200,63845719200,-18000,0,'EST',],[63845737200,63866296800,63845722800,63866282400,-14400,1,'EDT',],[63866296800,63877186800,63866278800,63877168800,-18000,0,'EST',],[63877186800,63897746400,63877172400,63897732000,-14400,1,'EDT',],[63897746400,63908636400,63897728400,63908618400,-18000,0,'EST',],[63908636400,63929196000,63908622000,63929181600,-14400,1,'EDT',],[63929196000,63940690800,63929178000,63940672800,-18000,0,'EST',],[63940690800,63961250400,63940676400,63961236000,-14400,1,'EDT',],];sub olson_version {'2016a'}sub has_dst_changes {65}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-18000}my$last_observance=bless({'format'=>'E%sT','gmtoff'=>'-5:00','local_start_datetime'=>{},'offset_from_std'=>0,'offset_from_utc'=>-18000,'until'=>[],'utc_start_datetime'=>{}},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EST5EDT

$fatpacked{"DateTime/TimeZone/Europe/Amsterdam.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_AMSTERDAM';
  package DateTime::TimeZone::Europe::Amsterdam;$DateTime::TimeZone::Europe::Amsterdam::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Amsterdam::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,57875470828,DateTime::TimeZone::NEG_INFINITY,57875472000,1172,0,'LMT',],[57875470828,60441982828,57875472000,60441984000,1172,0,'AMT',],[60441982828,60455198428,60441987600,60455203200,4772,1,'NST',],[60455198428,60472230028,60455199600,60472231200,1172,0,'AMT',],[60472230028,60485535628,60472234800,60485540400,4772,1,'NST',],[60485535628,60502470028,60485536800,60502471200,1172,0,'AMT',],[60502470028,60518194828,60502474800,60518199600,4772,1,'NST',],[60518194828,60534524428,60518196000,60534525600,1172,0,'AMT',],[60534524428,60549644428,60534529200,60549649200,4772,1,'NST',],[60549644428,60565974028,60549645600,60565975200,1172,0,'AMT',],[60565974028,60581094028,60565978800,60581098800,4772,1,'NST',],[60581094028,60597423628,60581095200,60597424800,1172,0,'AMT',],[60597423628,60612543628,60597428400,60612548400,4772,1,'NST',],[60612543628,60628182028,60612544800,60628183200,1172,0,'AMT',],[60628182028,60645116428,60628186800,60645121200,4772,1,'NST',],[60645116428,60665506828,60645117600,60665508000,1172,0,'AMT',],[60665506828,60676566028,60665511600,60676570800,4772,1,'NST',],[60676566028,60691686028,60676567200,60691687200,1172,0,'AMT',],[60691686028,60708015628,60691690800,60708020400,4772,1,'NST',],[60708015628,60729010828,60708016800,60729012000,1172,0,'AMT',],[60729010828,60739465228,60729015600,60739470000,4772,1,'NST',],[60739465228,60758732428,60739466400,60758733600,1172,0,'AMT',],[60758732428,60770914828,60758737200,60770919600,4772,1,'NST',],[60770914828,60790268428,60770916000,60790269600,1172,0,'AMT',],[60790268428,60802364428,60790273200,60802369200,4772,1,'NST',],[60802364428,60821890828,60802365600,60821892000,1172,0,'AMT',],[60821890828,60834418828,60821895600,60834423600,4772,1,'NST',],[60834418828,60853426828,60834420000,60853428000,1172,0,'AMT',],[60853426828,60865868428,60853431600,60865873200,4772,1,'NST',],[60865868428,60884962828,60865869600,60884964000,1172,0,'AMT',],[60884962828,60897318028,60884967600,60897322800,4772,1,'NST',],[60897318028,60916498828,60897319200,60916500000,1172,0,'AMT',],[60916498828,60928767628,60916503600,60928772400,4772,1,'NST',],[60928767628,60948726028,60928768800,60948727200,1172,0,'AMT',],[60948726028,60960217228,60948730800,60960222000,4772,1,'NST',],[60960217228,60979657228,60960218400,60979658400,1172,0,'AMT',],[60979657228,60992271628,60979662000,60992276400,4772,1,'NST',],[60992271628,61011193228,60992272800,61011194400,1172,0,'AMT',],[61011193228,61023721228,61011198000,61023726000,4772,1,'NST',],[61023721228,61042729228,61023722400,61042730400,1172,0,'AMT',],[61042729228,61055170828,61042734000,61055175600,4772,1,'NST',],[61055170828,61074351628,61055172000,61074352800,1172,0,'AMT',],[61074351628,61086620428,61074356400,61086625200,4772,1,'NST',],[61086620428,61106492428,61086621600,61106493600,1172,0,'AMT',],[61106492428,61109937628,61106497200,61109942400,4772,1,'NST',],[61109937628,61118070000,61109942428,61118074800,4800,1,'NEST',],[61118070000,61137423600,61118071200,61137424800,1200,0,'NET',],[61137423600,61149519600,61137428400,61149524400,4800,1,'NEST',],[61149519600,61168959600,61149520800,61168960800,1200,0,'NET',],[61168959600,61181574000,61168964400,61181578800,4800,1,'NEST',],[61181574000,61200661200,61181575200,61200662400,1200,0,'NET',],[61200661200,61278426000,61200668400,61278433200,7200,1,'CEST',],[61278426000,61291126800,61278429600,61291130400,3600,0,'CET',],[61291126800,61307456400,61291134000,61307463600,7200,1,'CEST',],[61307456400,61323181200,61307460000,61323184800,3600,0,'CET',],[61323181200,61338906000,61323188400,61338913200,7200,1,'CEST',],[61338906000,61354630800,61338909600,61354634400,3600,0,'CET',],[61354630800,61369059600,61354638000,61369066800,7200,1,'CEST',],[61369059600,62356604400,61369063200,62356608000,3600,0,'CET',],[62356604400,62364560400,62356608000,62364564000,3600,0,'CET',],[62364560400,62379680400,62364567600,62379687600,7200,1,'CEST',],[62379680400,62396010000,62379684000,62396013600,3600,0,'CET',],[62396010000,62411734800,62396017200,62411742000,7200,1,'CEST',],[62411734800,62427459600,62411738400,62427463200,3600,0,'CET',],[62427459600,62443184400,62427466800,62443191600,7200,1,'CEST',],[62443184400,62459514000,62443188000,62459517600,3600,0,'CET',],[62459514000,62474634000,62459521200,62474641200,7200,1,'CEST',],[62474634000,62490358800,62474637600,62490362400,3600,0,'CET',],[62490358800,62506083600,62490366000,62506090800,7200,1,'CEST',],[62506083600,62521808400,62506087200,62521812000,3600,0,'CET',],[62521808400,62537533200,62521815600,62537540400,7200,1,'CEST',],[62537533200,62553258000,62537536800,62553261600,3600,0,'CET',],[62553258000,62568982800,62553265200,62568990000,7200,1,'CEST',],[62568982800,62584707600,62568986400,62584711200,3600,0,'CET',],[62584707600,62601037200,62584714800,62601044400,7200,1,'CEST',],[62601037200,62616762000,62601040800,62616765600,3600,0,'CET',],[62616762000,62632486800,62616769200,62632494000,7200,1,'CEST',],[62632486800,62648211600,62632490400,62648215200,3600,0,'CET',],[62648211600,62663936400,62648218800,62663943600,7200,1,'CEST',],[62663936400,62679661200,62663940000,62679664800,3600,0,'CET',],[62679661200,62695386000,62679668400,62695393200,7200,1,'CEST',],[62695386000,62711110800,62695389600,62711114400,3600,0,'CET',],[62711110800,62726835600,62711118000,62726842800,7200,1,'CEST',],[62726835600,62742560400,62726839200,62742564000,3600,0,'CET',],[62742560400,62758285200,62742567600,62758292400,7200,1,'CEST',],[62758285200,62774010000,62758288800,62774013600,3600,0,'CET',],[62774010000,62790339600,62774017200,62790346800,7200,1,'CEST',],[62790339600,62806064400,62790343200,62806068000,3600,0,'CET',],[62806064400,62821789200,62806071600,62821796400,7200,1,'CEST',],[62821789200,62837514000,62821792800,62837517600,3600,0,'CET',],[62837514000,62853238800,62837521200,62853246000,7200,1,'CEST',],[62853238800,62868963600,62853242400,62868967200,3600,0,'CET',],[62868963600,62884688400,62868970800,62884695600,7200,1,'CEST',],[62884688400,62900413200,62884692000,62900416800,3600,0,'CET',],[62900413200,62916138000,62900420400,62916145200,7200,1,'CEST',],[62916138000,62931862800,62916141600,62931866400,3600,0,'CET',],[62931862800,62947587600,62931870000,62947594800,7200,1,'CEST',],[62947587600,62963917200,62947591200,62963920800,3600,0,'CET',],[62963917200,62982061200,62963924400,62982068400,7200,1,'CEST',],[62982061200,62995366800,62982064800,62995370400,3600,0,'CET',],[62995366800,63013510800,62995374000,63013518000,7200,1,'CEST',],[63013510800,63026816400,63013514400,63026820000,3600,0,'CET',],[63026816400,63044960400,63026823600,63044967600,7200,1,'CEST',],[63044960400,63058266000,63044964000,63058269600,3600,0,'CET',],[63058266000,63077014800,63058273200,63077022000,7200,1,'CEST',],[63077014800,63089715600,63077018400,63089719200,3600,0,'CET',],[63089715600,63108464400,63089722800,63108471600,7200,1,'CEST',],[63108464400,63121165200,63108468000,63121168800,3600,0,'CET',],[63121165200,63139914000,63121172400,63139921200,7200,1,'CEST',],[63139914000,63153219600,63139917600,63153223200,3600,0,'CET',],[63153219600,63171363600,63153226800,63171370800,7200,1,'CEST',],[63171363600,63184669200,63171367200,63184672800,3600,0,'CET',],[63184669200,63202813200,63184676400,63202820400,7200,1,'CEST',],[63202813200,63216118800,63202816800,63216122400,3600,0,'CET',],[63216118800,63234867600,63216126000,63234874800,7200,1,'CEST',],[63234867600,63247568400,63234871200,63247572000,3600,0,'CET',],[63247568400,63266317200,63247575600,63266324400,7200,1,'CEST',],[63266317200,63279018000,63266320800,63279021600,3600,0,'CET',],[63279018000,63297766800,63279025200,63297774000,7200,1,'CEST',],[63297766800,63310467600,63297770400,63310471200,3600,0,'CET',],[63310467600,63329216400,63310474800,63329223600,7200,1,'CEST',],[63329216400,63342522000,63329220000,63342525600,3600,0,'CET',],[63342522000,63360666000,63342529200,63360673200,7200,1,'CEST',],[63360666000,63373971600,63360669600,63373975200,3600,0,'CET',],[63373971600,63392115600,63373978800,63392122800,7200,1,'CEST',],[63392115600,63405421200,63392119200,63405424800,3600,0,'CET',],[63405421200,63424170000,63405428400,63424177200,7200,1,'CEST',],[63424170000,63436870800,63424173600,63436874400,3600,0,'CET',],[63436870800,63455619600,63436878000,63455626800,7200,1,'CEST',],[63455619600,63468320400,63455623200,63468324000,3600,0,'CET',],[63468320400,63487069200,63468327600,63487076400,7200,1,'CEST',],[63487069200,63500374800,63487072800,63500378400,3600,0,'CET',],[63500374800,63518518800,63500382000,63518526000,7200,1,'CEST',],[63518518800,63531824400,63518522400,63531828000,3600,0,'CET',],[63531824400,63549968400,63531831600,63549975600,7200,1,'CEST',],[63549968400,63563274000,63549972000,63563277600,3600,0,'CET',],[63563274000,63581418000,63563281200,63581425200,7200,1,'CEST',],[63581418000,63594723600,63581421600,63594727200,3600,0,'CET',],[63594723600,63613472400,63594730800,63613479600,7200,1,'CEST',],[63613472400,63626173200,63613476000,63626176800,3600,0,'CET',],[63626173200,63644922000,63626180400,63644929200,7200,1,'CEST',],[63644922000,63657622800,63644925600,63657626400,3600,0,'CET',],[63657622800,63676371600,63657630000,63676378800,7200,1,'CEST',],[63676371600,63689677200,63676375200,63689680800,3600,0,'CET',],[63689677200,63707821200,63689684400,63707828400,7200,1,'CEST',],[63707821200,63721126800,63707824800,63721130400,3600,0,'CET',],[63721126800,63739270800,63721134000,63739278000,7200,1,'CEST',],[63739270800,63752576400,63739274400,63752580000,3600,0,'CET',],[63752576400,63771325200,63752583600,63771332400,7200,1,'CEST',],[63771325200,63784026000,63771328800,63784029600,3600,0,'CET',],[63784026000,63802774800,63784033200,63802782000,7200,1,'CEST',],[63802774800,63815475600,63802778400,63815479200,3600,0,'CET',],[63815475600,63834224400,63815482800,63834231600,7200,1,'CEST',],[63834224400,63847530000,63834228000,63847533600,3600,0,'CET',],[63847530000,63865674000,63847537200,63865681200,7200,1,'CEST',],[63865674000,63878979600,63865677600,63878983200,3600,0,'CET',],[63878979600,63897123600,63878986800,63897130800,7200,1,'CEST',],[63897123600,63910429200,63897127200,63910432800,3600,0,'CET',],[63910429200,63928573200,63910436400,63928580400,7200,1,'CEST',],[63928573200,63941878800,63928576800,63941882400,3600,0,'CET',],[63941878800,63960627600,63941886000,63960634800,7200,1,'CEST',],];sub olson_version {'2016a'}sub has_dst_changes {80}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {3600}my$last_observance=bless({'format'=>'CE%sT','gmtoff'=>'1:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>721720,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>721720,'utc_rd_secs'=>0,'utc_year'=>1978 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>3600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>721719,'local_rd_secs'=>82800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>721719,'utc_rd_secs'=>82800,'utc_year'=>1977 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_AMSTERDAM

$fatpacked{"DateTime/TimeZone/Europe/Andorra.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_ANDORRA';
  package DateTime::TimeZone::Europe::Andorra;$DateTime::TimeZone::Europe::Andorra::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Andorra::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59958230036,DateTime::TimeZone::NEG_INFINITY,59958230400,364,0,'LMT',],[59958230036,61401801600,59958230036,61401801600,0,0,'WET',],[61401801600,62616762000,61401805200,62616765600,3600,0,'CET',],[62616762000,62632486800,62616769200,62632494000,7200,1,'CEST',],[62632486800,62648211600,62632490400,62648215200,3600,0,'CET',],[62648211600,62663936400,62648218800,62663943600,7200,1,'CEST',],[62663936400,62679661200,62663940000,62679664800,3600,0,'CET',],[62679661200,62695386000,62679668400,62695393200,7200,1,'CEST',],[62695386000,62711110800,62695389600,62711114400,3600,0,'CET',],[62711110800,62726835600,62711118000,62726842800,7200,1,'CEST',],[62726835600,62742560400,62726839200,62742564000,3600,0,'CET',],[62742560400,62758285200,62742567600,62758292400,7200,1,'CEST',],[62758285200,62774010000,62758288800,62774013600,3600,0,'CET',],[62774010000,62790339600,62774017200,62790346800,7200,1,'CEST',],[62790339600,62806064400,62790343200,62806068000,3600,0,'CET',],[62806064400,62821789200,62806071600,62821796400,7200,1,'CEST',],[62821789200,62837514000,62821792800,62837517600,3600,0,'CET',],[62837514000,62853238800,62837521200,62853246000,7200,1,'CEST',],[62853238800,62868963600,62853242400,62868967200,3600,0,'CET',],[62868963600,62884688400,62868970800,62884695600,7200,1,'CEST',],[62884688400,62900413200,62884692000,62900416800,3600,0,'CET',],[62900413200,62916138000,62900420400,62916145200,7200,1,'CEST',],[62916138000,62931862800,62916141600,62931866400,3600,0,'CET',],[62931862800,62947587600,62931870000,62947594800,7200,1,'CEST',],[62947587600,62963917200,62947591200,62963920800,3600,0,'CET',],[62963917200,62982061200,62963924400,62982068400,7200,1,'CEST',],[62982061200,62995366800,62982064800,62995370400,3600,0,'CET',],[62995366800,63013510800,62995374000,63013518000,7200,1,'CEST',],[63013510800,63026816400,63013514400,63026820000,3600,0,'CET',],[63026816400,63044960400,63026823600,63044967600,7200,1,'CEST',],[63044960400,63058266000,63044964000,63058269600,3600,0,'CET',],[63058266000,63077014800,63058273200,63077022000,7200,1,'CEST',],[63077014800,63089715600,63077018400,63089719200,3600,0,'CET',],[63089715600,63108464400,63089722800,63108471600,7200,1,'CEST',],[63108464400,63121165200,63108468000,63121168800,3600,0,'CET',],[63121165200,63139914000,63121172400,63139921200,7200,1,'CEST',],[63139914000,63153219600,63139917600,63153223200,3600,0,'CET',],[63153219600,63171363600,63153226800,63171370800,7200,1,'CEST',],[63171363600,63184669200,63171367200,63184672800,3600,0,'CET',],[63184669200,63202813200,63184676400,63202820400,7200,1,'CEST',],[63202813200,63216118800,63202816800,63216122400,3600,0,'CET',],[63216118800,63234867600,63216126000,63234874800,7200,1,'CEST',],[63234867600,63247568400,63234871200,63247572000,3600,0,'CET',],[63247568400,63266317200,63247575600,63266324400,7200,1,'CEST',],[63266317200,63279018000,63266320800,63279021600,3600,0,'CET',],[63279018000,63297766800,63279025200,63297774000,7200,1,'CEST',],[63297766800,63310467600,63297770400,63310471200,3600,0,'CET',],[63310467600,63329216400,63310474800,63329223600,7200,1,'CEST',],[63329216400,63342522000,63329220000,63342525600,3600,0,'CET',],[63342522000,63360666000,63342529200,63360673200,7200,1,'CEST',],[63360666000,63373971600,63360669600,63373975200,3600,0,'CET',],[63373971600,63392115600,63373978800,63392122800,7200,1,'CEST',],[63392115600,63405421200,63392119200,63405424800,3600,0,'CET',],[63405421200,63424170000,63405428400,63424177200,7200,1,'CEST',],[63424170000,63436870800,63424173600,63436874400,3600,0,'CET',],[63436870800,63455619600,63436878000,63455626800,7200,1,'CEST',],[63455619600,63468320400,63455623200,63468324000,3600,0,'CET',],[63468320400,63487069200,63468327600,63487076400,7200,1,'CEST',],[63487069200,63500374800,63487072800,63500378400,3600,0,'CET',],[63500374800,63518518800,63500382000,63518526000,7200,1,'CEST',],[63518518800,63531824400,63518522400,63531828000,3600,0,'CET',],[63531824400,63549968400,63531831600,63549975600,7200,1,'CEST',],[63549968400,63563274000,63549972000,63563277600,3600,0,'CET',],[63563274000,63581418000,63563281200,63581425200,7200,1,'CEST',],[63581418000,63594723600,63581421600,63594727200,3600,0,'CET',],[63594723600,63613472400,63594730800,63613479600,7200,1,'CEST',],[63613472400,63626173200,63613476000,63626176800,3600,0,'CET',],[63626173200,63644922000,63626180400,63644929200,7200,1,'CEST',],[63644922000,63657622800,63644925600,63657626400,3600,0,'CET',],[63657622800,63676371600,63657630000,63676378800,7200,1,'CEST',],[63676371600,63689677200,63676375200,63689680800,3600,0,'CET',],[63689677200,63707821200,63689684400,63707828400,7200,1,'CEST',],[63707821200,63721126800,63707824800,63721130400,3600,0,'CET',],[63721126800,63739270800,63721134000,63739278000,7200,1,'CEST',],[63739270800,63752576400,63739274400,63752580000,3600,0,'CET',],[63752576400,63771325200,63752583600,63771332400,7200,1,'CEST',],[63771325200,63784026000,63771328800,63784029600,3600,0,'CET',],[63784026000,63802774800,63784033200,63802782000,7200,1,'CEST',],[63802774800,63815475600,63802778400,63815479200,3600,0,'CET',],[63815475600,63834224400,63815482800,63834231600,7200,1,'CEST',],[63834224400,63847530000,63834228000,63847533600,3600,0,'CET',],[63847530000,63865674000,63847537200,63865681200,7200,1,'CEST',],[63865674000,63878979600,63865677600,63878983200,3600,0,'CET',],[63878979600,63897123600,63878986800,63897130800,7200,1,'CEST',],[63897123600,63910429200,63897127200,63910432800,3600,0,'CET',],[63910429200,63928573200,63910436400,63928580400,7200,1,'CEST',],[63928573200,63941878800,63928576800,63941882400,3600,0,'CET',],[63941878800,63960627600,63941886000,63960634800,7200,1,'CEST',],];sub olson_version {'2016a'}sub has_dst_changes {43}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {3600}my$last_observance=bless({'format'=>'CE%sT','gmtoff'=>'1:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>724731,'local_rd_secs'=>10800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>724731,'utc_rd_secs'=>10800,'utc_year'=>1986 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>3600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>724731,'local_rd_secs'=>3600,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>724731,'utc_rd_secs'=>3600,'utc_year'=>1986 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_ANDORRA

$fatpacked{"DateTime/TimeZone/Europe/Athens.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_ATHENS';
  package DateTime::TimeZone::Europe::Athens;$DateTime::TimeZone::Europe::Athens::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Athens::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59791040708,DateTime::TimeZone::NEG_INFINITY,59791046400,5692,0,'LMT',],[59791040708,60449581568,59791046400,60449587260,5692,0,'AMT',],[60449581568,60952687200,60449588768,60952694400,7200,0,'EET',],[60952687200,60957522000,60952698000,60957532800,10800,1,'EEST',],[60957522000,61228821600,60957529200,61228828800,7200,0,'EET',],[61228821600,61230805200,61228832400,61230816000,10800,1,'EEST',],[61230805200,61278426000,61230812400,61278433200,7200,1,'CEST',],[61278426000,61291206000,61278429600,61291209600,3600,0,'CET',],[61291206000,61307445600,61291213200,61307452800,7200,1,'CEST',],[61307445600,61323260400,61307449200,61323264000,3600,0,'CET',],[61323260400,61583320800,61323267600,61583328000,7200,0,'EET',],[61583320800,61594030800,61583331600,61594041600,10800,1,'EEST',],[61594030800,62302168800,61594038000,62302176000,7200,0,'EET',],[62302168800,62321868000,62302179600,62321878800,10800,1,'EEST',],[62321868000,62333712000,62321875200,62333719200,7200,0,'EET',],[62333712000,62349436800,62333722800,62349447600,10800,1,'EEST',],[62349436800,62364556800,62349444000,62364564000,7200,0,'EET',],[62364556800,62379763200,62364567600,62379774000,10800,1,'EEST',],[62379763200,62396006400,62379770400,62396013600,7200,0,'EET',],[62396006400,62411130000,62396017200,62411140800,10800,1,'EEST',],[62411130000,62427481200,62411137200,62427488400,7200,0,'EET',],[62427481200,62443090800,62427492000,62443101600,10800,1,'EEST',],[62443090800,62459071200,62443098000,62459078400,7200,0,'EET',],[62459071200,62474619600,62459082000,62474630400,10800,1,'EEST',],[62474619600,62482831200,62474626800,62482838400,7200,0,'EET',],[62482831200,62490358800,62482838400,62490366000,7200,0,'EET',],[62490358800,62506083600,62490369600,62506094400,10800,1,'EEST',],[62506083600,62521808400,62506090800,62521815600,7200,0,'EET',],[62521808400,62537533200,62521819200,62537544000,10800,1,'EEST',],[62537533200,62553258000,62537540400,62553265200,7200,0,'EET',],[62553258000,62568982800,62553268800,62568993600,10800,1,'EEST',],[62568982800,62584707600,62568990000,62584714800,7200,0,'EET',],[62584707600,62601037200,62584718400,62601048000,10800,1,'EEST',],[62601037200,62616762000,62601044400,62616769200,7200,0,'EET',],[62616762000,62632486800,62616772800,62632497600,10800,1,'EEST',],[62632486800,62648211600,62632494000,62648218800,7200,0,'EET',],[62648211600,62663936400,62648222400,62663947200,10800,1,'EEST',],[62663936400,62679661200,62663943600,62679668400,7200,0,'EET',],[62679661200,62695386000,62679672000,62695396800,10800,1,'EEST',],[62695386000,62711110800,62695393200,62711118000,7200,0,'EET',],[62711110800,62726835600,62711121600,62726846400,10800,1,'EEST',],[62726835600,62742560400,62726842800,62742567600,7200,0,'EET',],[62742560400,62758285200,62742571200,62758296000,10800,1,'EEST',],[62758285200,62774010000,62758292400,62774017200,7200,0,'EET',],[62774010000,62790339600,62774020800,62790350400,10800,1,'EEST',],[62790339600,62806064400,62790346800,62806071600,7200,0,'EET',],[62806064400,62821789200,62806075200,62821800000,10800,1,'EEST',],[62821789200,62837514000,62821796400,62837521200,7200,0,'EET',],[62837514000,62853238800,62837524800,62853249600,10800,1,'EEST',],[62853238800,62868963600,62853246000,62868970800,7200,0,'EET',],[62868963600,62884688400,62868974400,62884699200,10800,1,'EEST',],[62884688400,62900413200,62884695600,62900420400,7200,0,'EET',],[62900413200,62916138000,62900424000,62916148800,10800,1,'EEST',],[62916138000,62931862800,62916145200,62931870000,7200,0,'EET',],[62931862800,62947587600,62931873600,62947598400,10800,1,'EEST',],[62947587600,62963917200,62947594800,62963924400,7200,0,'EET',],[62963917200,62982061200,62963928000,62982072000,10800,1,'EEST',],[62982061200,62995366800,62982068400,62995374000,7200,0,'EET',],[62995366800,63013510800,62995377600,63013521600,10800,1,'EEST',],[63013510800,63026816400,63013518000,63026823600,7200,0,'EET',],[63026816400,63044960400,63026827200,63044971200,10800,1,'EEST',],[63044960400,63058266000,63044967600,63058273200,7200,0,'EET',],[63058266000,63077014800,63058276800,63077025600,10800,1,'EEST',],[63077014800,63089715600,63077022000,63089722800,7200,0,'EET',],[63089715600,63108464400,63089726400,63108475200,10800,1,'EEST',],[63108464400,63121165200,63108471600,63121172400,7200,0,'EET',],[63121165200,63139914000,63121176000,63139924800,10800,1,'EEST',],[63139914000,63153219600,63139921200,63153226800,7200,0,'EET',],[63153219600,63171363600,63153230400,63171374400,10800,1,'EEST',],[63171363600,63184669200,63171370800,63184676400,7200,0,'EET',],[63184669200,63202813200,63184680000,63202824000,10800,1,'EEST',],[63202813200,63216118800,63202820400,63216126000,7200,0,'EET',],[63216118800,63234867600,63216129600,63234878400,10800,1,'EEST',],[63234867600,63247568400,63234874800,63247575600,7200,0,'EET',],[63247568400,63266317200,63247579200,63266328000,10800,1,'EEST',],[63266317200,63279018000,63266324400,63279025200,7200,0,'EET',],[63279018000,63297766800,63279028800,63297777600,10800,1,'EEST',],[63297766800,63310467600,63297774000,63310474800,7200,0,'EET',],[63310467600,63329216400,63310478400,63329227200,10800,1,'EEST',],[63329216400,63342522000,63329223600,63342529200,7200,0,'EET',],[63342522000,63360666000,63342532800,63360676800,10800,1,'EEST',],[63360666000,63373971600,63360673200,63373978800,7200,0,'EET',],[63373971600,63392115600,63373982400,63392126400,10800,1,'EEST',],[63392115600,63405421200,63392122800,63405428400,7200,0,'EET',],[63405421200,63424170000,63405432000,63424180800,10800,1,'EEST',],[63424170000,63436870800,63424177200,63436878000,7200,0,'EET',],[63436870800,63455619600,63436881600,63455630400,10800,1,'EEST',],[63455619600,63468320400,63455626800,63468327600,7200,0,'EET',],[63468320400,63487069200,63468331200,63487080000,10800,1,'EEST',],[63487069200,63500374800,63487076400,63500382000,7200,0,'EET',],[63500374800,63518518800,63500385600,63518529600,10800,1,'EEST',],[63518518800,63531824400,63518526000,63531831600,7200,0,'EET',],[63531824400,63549968400,63531835200,63549979200,10800,1,'EEST',],[63549968400,63563274000,63549975600,63563281200,7200,0,'EET',],[63563274000,63581418000,63563284800,63581428800,10800,1,'EEST',],[63581418000,63594723600,63581425200,63594730800,7200,0,'EET',],[63594723600,63613472400,63594734400,63613483200,10800,1,'EEST',],[63613472400,63626173200,63613479600,63626180400,7200,0,'EET',],[63626173200,63644922000,63626184000,63644932800,10800,1,'EEST',],[63644922000,63657622800,63644929200,63657630000,7200,0,'EET',],[63657622800,63676371600,63657633600,63676382400,10800,1,'EEST',],[63676371600,63689677200,63676378800,63689684400,7200,0,'EET',],[63689677200,63707821200,63689688000,63707832000,10800,1,'EEST',],[63707821200,63721126800,63707828400,63721134000,7200,0,'EET',],[63721126800,63739270800,63721137600,63739281600,10800,1,'EEST',],[63739270800,63752576400,63739278000,63752583600,7200,0,'EET',],[63752576400,63771325200,63752587200,63771336000,10800,1,'EEST',],[63771325200,63784026000,63771332400,63784033200,7200,0,'EET',],[63784026000,63802774800,63784036800,63802785600,10800,1,'EEST',],[63802774800,63815475600,63802782000,63815482800,7200,0,'EET',],[63815475600,63834224400,63815486400,63834235200,10800,1,'EEST',],[63834224400,63847530000,63834231600,63847537200,7200,0,'EET',],[63847530000,63865674000,63847540800,63865684800,10800,1,'EEST',],[63865674000,63878979600,63865681200,63878986800,7200,0,'EET',],[63878979600,63897123600,63878990400,63897134400,10800,1,'EEST',],[63897123600,63910429200,63897130800,63910436400,7200,0,'EET',],[63910429200,63928573200,63910440000,63928584000,10800,1,'EEST',],[63928573200,63941878800,63928580400,63941886000,7200,0,'EET',],[63941878800,63960627600,63941889600,63960638400,10800,1,'EEST',],];sub olson_version {'2016a'}sub has_dst_changes {58}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {7200}my$last_observance=bless({'format'=>'EE%sT','gmtoff'=>'2:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>723181,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>723181,'utc_rd_secs'=>0,'utc_year'=>1982 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>7200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>723180,'local_rd_secs'=>79200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>723180,'utc_rd_secs'=>79200,'utc_year'=>1981 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_ATHENS

$fatpacked{"DateTime/TimeZone/Europe/Belgrade.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_BELGRADE';
  package DateTime::TimeZone::Europe::Belgrade;$DateTime::TimeZone::Europe::Belgrade::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Belgrade::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59421767880,DateTime::TimeZone::NEG_INFINITY,59421772800,4920,0,'LMT',],[59421767880,61229858400,59421771480,61229862000,3600,0,'CET',],[61229858400,61278426000,61229865600,61278433200,7200,1,'CEST',],[61278426000,61291126800,61278429600,61291130400,3600,0,'CET',],[61291126800,61307456400,61291134000,61307463600,7200,1,'CEST',],[61307456400,61323181200,61307460000,61323184800,3600,0,'CET',],[61323181200,61338906000,61323188400,61338913200,7200,1,'CEST',],[61338906000,61346761200,61338909600,61346764800,3600,0,'CET',],[61346761200,61357741200,61346764800,61357744800,3600,0,'CET',],[61357741200,61369059600,61357748400,61369066800,7200,1,'CEST',],[61369059600,62542882800,61369063200,62542886400,3600,0,'CET',],[62542882800,62553258000,62542886400,62553261600,3600,0,'CET',],[62553258000,62568982800,62553265200,62568990000,7200,1,'CEST',],[62568982800,62584707600,62568986400,62584711200,3600,0,'CET',],[62584707600,62601037200,62584714800,62601044400,7200,1,'CEST',],[62601037200,62616762000,62601040800,62616765600,3600,0,'CET',],[62616762000,62632486800,62616769200,62632494000,7200,1,'CEST',],[62632486800,62648211600,62632490400,62648215200,3600,0,'CET',],[62648211600,62663936400,62648218800,62663943600,7200,1,'CEST',],[62663936400,62679661200,62663940000,62679664800,3600,0,'CET',],[62679661200,62695386000,62679668400,62695393200,7200,1,'CEST',],[62695386000,62711110800,62695389600,62711114400,3600,0,'CET',],[62711110800,62726835600,62711118000,62726842800,7200,1,'CEST',],[62726835600,62742560400,62726839200,62742564000,3600,0,'CET',],[62742560400,62758285200,62742567600,62758292400,7200,1,'CEST',],[62758285200,62774010000,62758288800,62774013600,3600,0,'CET',],[62774010000,62790339600,62774017200,62790346800,7200,1,'CEST',],[62790339600,62806064400,62790343200,62806068000,3600,0,'CET',],[62806064400,62821789200,62806071600,62821796400,7200,1,'CEST',],[62821789200,62837514000,62821792800,62837517600,3600,0,'CET',],[62837514000,62853238800,62837521200,62853246000,7200,1,'CEST',],[62853238800,62868963600,62853242400,62868967200,3600,0,'CET',],[62868963600,62884688400,62868970800,62884695600,7200,1,'CEST',],[62884688400,62900413200,62884692000,62900416800,3600,0,'CET',],[62900413200,62916138000,62900420400,62916145200,7200,1,'CEST',],[62916138000,62931862800,62916141600,62931866400,3600,0,'CET',],[62931862800,62947587600,62931870000,62947594800,7200,1,'CEST',],[62947587600,62963917200,62947591200,62963920800,3600,0,'CET',],[62963917200,62982061200,62963924400,62982068400,7200,1,'CEST',],[62982061200,62995366800,62982064800,62995370400,3600,0,'CET',],[62995366800,63013510800,62995374000,63013518000,7200,1,'CEST',],[63013510800,63026816400,63013514400,63026820000,3600,0,'CET',],[63026816400,63044960400,63026823600,63044967600,7200,1,'CEST',],[63044960400,63058266000,63044964000,63058269600,3600,0,'CET',],[63058266000,63077014800,63058273200,63077022000,7200,1,'CEST',],[63077014800,63089715600,63077018400,63089719200,3600,0,'CET',],[63089715600,63108464400,63089722800,63108471600,7200,1,'CEST',],[63108464400,63121165200,63108468000,63121168800,3600,0,'CET',],[63121165200,63139914000,63121172400,63139921200,7200,1,'CEST',],[63139914000,63153219600,63139917600,63153223200,3600,0,'CET',],[63153219600,63171363600,63153226800,63171370800,7200,1,'CEST',],[63171363600,63184669200,63171367200,63184672800,3600,0,'CET',],[63184669200,63202813200,63184676400,63202820400,7200,1,'CEST',],[63202813200,63216118800,63202816800,63216122400,3600,0,'CET',],[63216118800,63234867600,63216126000,63234874800,7200,1,'CEST',],[63234867600,63247568400,63234871200,63247572000,3600,0,'CET',],[63247568400,63266317200,63247575600,63266324400,7200,1,'CEST',],[63266317200,63279018000,63266320800,63279021600,3600,0,'CET',],[63279018000,63297766800,63279025200,63297774000,7200,1,'CEST',],[63297766800,63310467600,63297770400,63310471200,3600,0,'CET',],[63310467600,63329216400,63310474800,63329223600,7200,1,'CEST',],[63329216400,63342522000,63329220000,63342525600,3600,0,'CET',],[63342522000,63360666000,63342529200,63360673200,7200,1,'CEST',],[63360666000,63373971600,63360669600,63373975200,3600,0,'CET',],[63373971600,63392115600,63373978800,63392122800,7200,1,'CEST',],[63392115600,63405421200,63392119200,63405424800,3600,0,'CET',],[63405421200,63424170000,63405428400,63424177200,7200,1,'CEST',],[63424170000,63436870800,63424173600,63436874400,3600,0,'CET',],[63436870800,63455619600,63436878000,63455626800,7200,1,'CEST',],[63455619600,63468320400,63455623200,63468324000,3600,0,'CET',],[63468320400,63487069200,63468327600,63487076400,7200,1,'CEST',],[63487069200,63500374800,63487072800,63500378400,3600,0,'CET',],[63500374800,63518518800,63500382000,63518526000,7200,1,'CEST',],[63518518800,63531824400,63518522400,63531828000,3600,0,'CET',],[63531824400,63549968400,63531831600,63549975600,7200,1,'CEST',],[63549968400,63563274000,63549972000,63563277600,3600,0,'CET',],[63563274000,63581418000,63563281200,63581425200,7200,1,'CEST',],[63581418000,63594723600,63581421600,63594727200,3600,0,'CET',],[63594723600,63613472400,63594730800,63613479600,7200,1,'CEST',],[63613472400,63626173200,63613476000,63626176800,3600,0,'CET',],[63626173200,63644922000,63626180400,63644929200,7200,1,'CEST',],[63644922000,63657622800,63644925600,63657626400,3600,0,'CET',],[63657622800,63676371600,63657630000,63676378800,7200,1,'CEST',],[63676371600,63689677200,63676375200,63689680800,3600,0,'CET',],[63689677200,63707821200,63689684400,63707828400,7200,1,'CEST',],[63707821200,63721126800,63707824800,63721130400,3600,0,'CET',],[63721126800,63739270800,63721134000,63739278000,7200,1,'CEST',],[63739270800,63752576400,63739274400,63752580000,3600,0,'CET',],[63752576400,63771325200,63752583600,63771332400,7200,1,'CEST',],[63771325200,63784026000,63771328800,63784029600,3600,0,'CET',],[63784026000,63802774800,63784033200,63802782000,7200,1,'CEST',],[63802774800,63815475600,63802778400,63815479200,3600,0,'CET',],[63815475600,63834224400,63815482800,63834231600,7200,1,'CEST',],[63834224400,63847530000,63834228000,63847533600,3600,0,'CET',],[63847530000,63865674000,63847537200,63865681200,7200,1,'CEST',],[63865674000,63878979600,63865677600,63878983200,3600,0,'CET',],[63878979600,63897123600,63878986800,63897130800,7200,1,'CEST',],[63897123600,63910429200,63897127200,63910432800,3600,0,'CET',],[63910429200,63928573200,63910436400,63928580400,7200,1,'CEST',],[63928573200,63941878800,63928576800,63941882400,3600,0,'CET',],[63941878800,63960627600,63941886000,63960634800,7200,1,'CEST',],];sub olson_version {'2016a'}sub has_dst_changes {49}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {3600}my$last_observance=bless({'format'=>'CE%sT','gmtoff'=>'1:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>723876,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>723876,'utc_rd_secs'=>0,'utc_year'=>1983 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>3600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>723875,'local_rd_secs'=>82800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>723875,'utc_rd_secs'=>82800,'utc_year'=>1983 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_BELGRADE

$fatpacked{"DateTime/TimeZone/Europe/Berlin.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_BERLIN';
  package DateTime::TimeZone::Europe::Berlin;$DateTime::TimeZone::Europe::Berlin::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Berlin::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59713628792,DateTime::TimeZone::NEG_INFINITY,59713632000,3208,0,'LMT',],[59713628792,60441976800,59713632392,60441980400,3600,0,'CET',],[60441976800,60455199600,60441984000,60455206800,7200,1,'CEST',],[60455199600,60472227600,60455203200,60472231200,3600,0,'CET',],[60472227600,60485533200,60472234800,60485540400,7200,1,'CEST',],[60485533200,60503677200,60485536800,60503680800,3600,0,'CET',],[60503677200,60516982800,60503684400,60516990000,7200,1,'CEST',],[60516982800,61196778000,60516986400,61196781600,3600,0,'CET',],[61196778000,61278426000,61196785200,61278433200,7200,1,'CEST',],[61278426000,61291126800,61278429600,61291130400,3600,0,'CET',],[61291126800,61307456400,61291134000,61307463600,7200,1,'CEST',],[61307456400,61323181200,61307460000,61323184800,3600,0,'CET',],[61323181200,61338906000,61323188400,61338913200,7200,1,'CEST',],[61338906000,61354630800,61338909600,61354634400,3600,0,'CET',],[61354630800,61359120000,61354638000,61359127200,7200,1,'CEST',],[61359120000,61369747200,61359130800,61369758000,10800,1,'CEMT',],[61369747200,61374502800,61369754400,61374510000,7200,1,'CEST',],[61374502800,61378297200,61374506400,61378300800,3600,0,'CET',],[61378297200,61387203600,61378300800,61387207200,3600,0,'CET',],[61387203600,61402410000,61387210800,61402417200,7200,1,'CEST',],[61402410000,61418052000,61402413600,61418055600,3600,0,'CET',],[61418052000,61421072400,61418059200,61421079600,7200,1,'CEST',],[61421072400,61425302400,61421083200,61425313200,10800,1,'CEMT',],[61425302400,61433773200,61425309600,61433780400,7200,1,'CEST',],[61433773200,61450707600,61433776800,61450711200,3600,0,'CET',],[61450707600,61465222800,61450714800,61465230000,7200,1,'CEST',],[61465222800,61481552400,61465226400,61481556000,3600,0,'CET',],[61481552400,61496672400,61481559600,61496679600,7200,1,'CEST',],[61496672400,62451212400,61496676000,62451216000,3600,0,'CET',],[62451212400,62459514000,62451216000,62459517600,3600,0,'CET',],[62459514000,62474634000,62459521200,62474641200,7200,1,'CEST',],[62474634000,62490358800,62474637600,62490362400,3600,0,'CET',],[62490358800,62506083600,62490366000,62506090800,7200,1,'CEST',],[62506083600,62521808400,62506087200,62521812000,3600,0,'CET',],[62521808400,62537533200,62521815600,62537540400,7200,1,'CEST',],[62537533200,62553258000,62537536800,62553261600,3600,0,'CET',],[62553258000,62568982800,62553265200,62568990000,7200,1,'CEST',],[62568982800,62584707600,62568986400,62584711200,3600,0,'CET',],[62584707600,62601037200,62584714800,62601044400,7200,1,'CEST',],[62601037200,62616762000,62601040800,62616765600,3600,0,'CET',],[62616762000,62632486800,62616769200,62632494000,7200,1,'CEST',],[62632486800,62648211600,62632490400,62648215200,3600,0,'CET',],[62648211600,62663936400,62648218800,62663943600,7200,1,'CEST',],[62663936400,62679661200,62663940000,62679664800,3600,0,'CET',],[62679661200,62695386000,62679668400,62695393200,7200,1,'CEST',],[62695386000,62711110800,62695389600,62711114400,3600,0,'CET',],[62711110800,62726835600,62711118000,62726842800,7200,1,'CEST',],[62726835600,62742560400,62726839200,62742564000,3600,0,'CET',],[62742560400,62758285200,62742567600,62758292400,7200,1,'CEST',],[62758285200,62774010000,62758288800,62774013600,3600,0,'CET',],[62774010000,62790339600,62774017200,62790346800,7200,1,'CEST',],[62790339600,62806064400,62790343200,62806068000,3600,0,'CET',],[62806064400,62821789200,62806071600,62821796400,7200,1,'CEST',],[62821789200,62837514000,62821792800,62837517600,3600,0,'CET',],[62837514000,62853238800,62837521200,62853246000,7200,1,'CEST',],[62853238800,62868963600,62853242400,62868967200,3600,0,'CET',],[62868963600,62884688400,62868970800,62884695600,7200,1,'CEST',],[62884688400,62900413200,62884692000,62900416800,3600,0,'CET',],[62900413200,62916138000,62900420400,62916145200,7200,1,'CEST',],[62916138000,62931862800,62916141600,62931866400,3600,0,'CET',],[62931862800,62947587600,62931870000,62947594800,7200,1,'CEST',],[62947587600,62963917200,62947591200,62963920800,3600,0,'CET',],[62963917200,62982061200,62963924400,62982068400,7200,1,'CEST',],[62982061200,62995366800,62982064800,62995370400,3600,0,'CET',],[62995366800,63013510800,62995374000,63013518000,7200,1,'CEST',],[63013510800,63026816400,63013514400,63026820000,3600,0,'CET',],[63026816400,63044960400,63026823600,63044967600,7200,1,'CEST',],[63044960400,63058266000,63044964000,63058269600,3600,0,'CET',],[63058266000,63077014800,63058273200,63077022000,7200,1,'CEST',],[63077014800,63089715600,63077018400,63089719200,3600,0,'CET',],[63089715600,63108464400,63089722800,63108471600,7200,1,'CEST',],[63108464400,63121165200,63108468000,63121168800,3600,0,'CET',],[63121165200,63139914000,63121172400,63139921200,7200,1,'CEST',],[63139914000,63153219600,63139917600,63153223200,3600,0,'CET',],[63153219600,63171363600,63153226800,63171370800,7200,1,'CEST',],[63171363600,63184669200,63171367200,63184672800,3600,0,'CET',],[63184669200,63202813200,63184676400,63202820400,7200,1,'CEST',],[63202813200,63216118800,63202816800,63216122400,3600,0,'CET',],[63216118800,63234867600,63216126000,63234874800,7200,1,'CEST',],[63234867600,63247568400,63234871200,63247572000,3600,0,'CET',],[63247568400,63266317200,63247575600,63266324400,7200,1,'CEST',],[63266317200,63279018000,63266320800,63279021600,3600,0,'CET',],[63279018000,63297766800,63279025200,63297774000,7200,1,'CEST',],[63297766800,63310467600,63297770400,63310471200,3600,0,'CET',],[63310467600,63329216400,63310474800,63329223600,7200,1,'CEST',],[63329216400,63342522000,63329220000,63342525600,3600,0,'CET',],[63342522000,63360666000,63342529200,63360673200,7200,1,'CEST',],[63360666000,63373971600,63360669600,63373975200,3600,0,'CET',],[63373971600,63392115600,63373978800,63392122800,7200,1,'CEST',],[63392115600,63405421200,63392119200,63405424800,3600,0,'CET',],[63405421200,63424170000,63405428400,63424177200,7200,1,'CEST',],[63424170000,63436870800,63424173600,63436874400,3600,0,'CET',],[63436870800,63455619600,63436878000,63455626800,7200,1,'CEST',],[63455619600,63468320400,63455623200,63468324000,3600,0,'CET',],[63468320400,63487069200,63468327600,63487076400,7200,1,'CEST',],[63487069200,63500374800,63487072800,63500378400,3600,0,'CET',],[63500374800,63518518800,63500382000,63518526000,7200,1,'CEST',],[63518518800,63531824400,63518522400,63531828000,3600,0,'CET',],[63531824400,63549968400,63531831600,63549975600,7200,1,'CEST',],[63549968400,63563274000,63549972000,63563277600,3600,0,'CET',],[63563274000,63581418000,63563281200,63581425200,7200,1,'CEST',],[63581418000,63594723600,63581421600,63594727200,3600,0,'CET',],[63594723600,63613472400,63594730800,63613479600,7200,1,'CEST',],[63613472400,63626173200,63613476000,63626176800,3600,0,'CET',],[63626173200,63644922000,63626180400,63644929200,7200,1,'CEST',],[63644922000,63657622800,63644925600,63657626400,3600,0,'CET',],[63657622800,63676371600,63657630000,63676378800,7200,1,'CEST',],[63676371600,63689677200,63676375200,63689680800,3600,0,'CET',],[63689677200,63707821200,63689684400,63707828400,7200,1,'CEST',],[63707821200,63721126800,63707824800,63721130400,3600,0,'CET',],[63721126800,63739270800,63721134000,63739278000,7200,1,'CEST',],[63739270800,63752576400,63739274400,63752580000,3600,0,'CET',],[63752576400,63771325200,63752583600,63771332400,7200,1,'CEST',],[63771325200,63784026000,63771328800,63784029600,3600,0,'CET',],[63784026000,63802774800,63784033200,63802782000,7200,1,'CEST',],[63802774800,63815475600,63802778400,63815479200,3600,0,'CET',],[63815475600,63834224400,63815482800,63834231600,7200,1,'CEST',],[63834224400,63847530000,63834228000,63847533600,3600,0,'CET',],[63847530000,63865674000,63847537200,63865681200,7200,1,'CEST',],[63865674000,63878979600,63865677600,63878983200,3600,0,'CET',],[63878979600,63897123600,63878986800,63897130800,7200,1,'CEST',],[63897123600,63910429200,63897127200,63910432800,3600,0,'CET',],[63910429200,63928573200,63910436400,63928580400,7200,1,'CEST',],[63928573200,63941878800,63928576800,63941882400,3600,0,'CET',],[63941878800,63960627600,63941886000,63960634800,7200,1,'CEST',],];sub olson_version {'2016a'}sub has_dst_changes {63}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {3600}my$last_observance=bless({'format'=>'CE%sT','gmtoff'=>'1:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>722815,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>722815,'utc_rd_secs'=>0,'utc_year'=>1981 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>3600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>722814,'local_rd_secs'=>82800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>722814,'utc_rd_secs'=>82800,'utc_year'=>1980 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_BERLIN

$fatpacked{"DateTime/TimeZone/Europe/Brussels.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_BRUSSELS';
  package DateTime::TimeZone::Europe::Brussels;$DateTime::TimeZone::Europe::Brussels::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Brussels::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59295541350,DateTime::TimeZone::NEG_INFINITY,59295542400,1050,0,'LMT',],[59295541350,59684730150,59295542400,59684731200,1050,0,'BMT',],[59684730150,60395328000,59684730150,60395328000,0,0,'WET',],[60395328000,60441980400,60395331600,60441984000,3600,0,'CET',],[60441980400,60455199600,60441987600,60455206800,7200,1,'CEST',],[60455199600,60472227600,60455203200,60472231200,3600,0,'CET',],[60472227600,60485533200,60472234800,60485540400,7200,1,'CEST',],[60485533200,60503677200,60485536800,60503680800,3600,0,'CET',],[60503677200,60516982800,60503684400,60516990000,7200,1,'CEST',],[60516982800,60521857200,60516986400,60521860800,3600,0,'CET',],[60521857200,60531404400,60521857200,60531404400,0,0,'WET',],[60531404400,60550153200,60531408000,60550156800,3600,1,'WEST',],[60550153200,60561644400,60550153200,60561644400,0,0,'WET',],[60561644400,60583417200,60561648000,60583420800,3600,1,'WEST',],[60583417200,60595686000,60583417200,60595686000,0,0,'WET',],[60595686000,60615126000,60595689600,60615129600,3600,1,'WEST',],[60615126000,60628172400,60615126000,60628172400,0,0,'WET',],[60628172400,60645106800,60628176000,60645110400,3600,1,'WEST',],[60645106800,60662041200,60645106800,60662041200,0,0,'WET',],[60662041200,60676556400,60662044800,60676560000,3600,1,'WEST',],[60676556400,60691676400,60676556400,60691676400,0,0,'WET',],[60691676400,60708006000,60691680000,60708009600,3600,1,'WEST',],[60708006000,60723730800,60708006000,60723730800,0,0,'WET',],[60723730800,60739455600,60723734400,60739459200,3600,1,'WEST',],[60739455600,60756390000,60739455600,60756390000,0,0,'WET',],[60756390000,60770905200,60756393600,60770908800,3600,1,'WEST',],[60770905200,60787234800,60770905200,60787234800,0,0,'WET',],[60787234800,60802354800,60787238400,60802358400,3600,1,'WEST',],[60802354800,60819289200,60802354800,60819289200,0,0,'WET',],[60819289200,60834420000,60819292800,60834423600,3600,1,'WEST',],[60834420000,60851354400,60834420000,60851354400,0,0,'WET',],[60851354400,60865869600,60851358000,60865873200,3600,1,'WEST',],[60865869600,60882199200,60865869600,60882199200,0,0,'WET',],[60882199200,60897319200,60882202800,60897322800,3600,1,'WEST',],[60897319200,60914253600,60897319200,60914253600,0,0,'WET',],[60914253600,60928768800,60914257200,60928772400,3600,1,'WEST',],[60928768800,60944493600,60928768800,60944493600,0,0,'WET',],[60944493600,60960218400,60944497200,60960222000,3600,1,'WEST',],[60960218400,60975338400,60960218400,60975338400,0,0,'WET',],[60975338400,60992272800,60975342000,60992276400,3600,1,'WEST',],[60992272800,61007997600,60992272800,61007997600,0,0,'WET',],[61007997600,61023722400,61008001200,61023726000,3600,1,'WEST',],[61023722400,61038842400,61023722400,61038842400,0,0,'WET',],[61038842400,61055172000,61038846000,61055175600,3600,1,'WEST',],[61055172000,61072106400,61055172000,61072106400,0,0,'WET',],[61072106400,61086621600,61072110000,61086625200,3600,1,'WEST',],[61086621600,61102346400,61086621600,61102346400,0,0,'WET',],[61102346400,61118071200,61102350000,61118074800,3600,1,'WEST',],[61118071200,61133191200,61118071200,61133191200,0,0,'WET',],[61133191200,61149520800,61133194800,61149524400,3600,1,'WEST',],[61149520800,61166455200,61149520800,61166455200,0,0,'WET',],[61166455200,61185204000,61166458800,61185207600,3600,1,'WEST',],[61185204000,61193671200,61185204000,61193671200,0,0,'WET',],[61193671200,61201015200,61193674800,61201018800,3600,1,'WEST',],[61201015200,61278426000,61201022400,61278433200,7200,1,'CEST',],[61278426000,61291126800,61278429600,61291130400,3600,0,'CET',],[61291126800,61307456400,61291134000,61307463600,7200,1,'CEST',],[61307456400,61323181200,61307460000,61323184800,3600,0,'CET',],[61323181200,61336389600,61323188400,61336396800,7200,1,'CEST',],[61336389600,61337610000,61336396800,61337617200,7200,1,'CEST',],[61337610000,61354630800,61337613600,61354634400,3600,0,'CET',],[61354630800,61369059600,61354638000,61369066800,7200,1,'CEST',],[61369059600,61390227600,61369063200,61390231200,3600,0,'CET',],[61390227600,61402410000,61390234800,61402417200,7200,1,'CEST',],[61402410000,62356604400,61402413600,62356608000,3600,0,'CET',],[62356604400,62364560400,62356608000,62364564000,3600,0,'CET',],[62364560400,62379680400,62364567600,62379687600,7200,1,'CEST',],[62379680400,62396010000,62379684000,62396013600,3600,0,'CET',],[62396010000,62411734800,62396017200,62411742000,7200,1,'CEST',],[62411734800,62427459600,62411738400,62427463200,3600,0,'CET',],[62427459600,62443184400,62427466800,62443191600,7200,1,'CEST',],[62443184400,62459514000,62443188000,62459517600,3600,0,'CET',],[62459514000,62474634000,62459521200,62474641200,7200,1,'CEST',],[62474634000,62490358800,62474637600,62490362400,3600,0,'CET',],[62490358800,62506083600,62490366000,62506090800,7200,1,'CEST',],[62506083600,62521808400,62506087200,62521812000,3600,0,'CET',],[62521808400,62537533200,62521815600,62537540400,7200,1,'CEST',],[62537533200,62553258000,62537536800,62553261600,3600,0,'CET',],[62553258000,62568982800,62553265200,62568990000,7200,1,'CEST',],[62568982800,62584707600,62568986400,62584711200,3600,0,'CET',],[62584707600,62601037200,62584714800,62601044400,7200,1,'CEST',],[62601037200,62616762000,62601040800,62616765600,3600,0,'CET',],[62616762000,62632486800,62616769200,62632494000,7200,1,'CEST',],[62632486800,62648211600,62632490400,62648215200,3600,0,'CET',],[62648211600,62663936400,62648218800,62663943600,7200,1,'CEST',],[62663936400,62679661200,62663940000,62679664800,3600,0,'CET',],[62679661200,62695386000,62679668400,62695393200,7200,1,'CEST',],[62695386000,62711110800,62695389600,62711114400,3600,0,'CET',],[62711110800,62726835600,62711118000,62726842800,7200,1,'CEST',],[62726835600,62742560400,62726839200,62742564000,3600,0,'CET',],[62742560400,62758285200,62742567600,62758292400,7200,1,'CEST',],[62758285200,62774010000,62758288800,62774013600,3600,0,'CET',],[62774010000,62790339600,62774017200,62790346800,7200,1,'CEST',],[62790339600,62806064400,62790343200,62806068000,3600,0,'CET',],[62806064400,62821789200,62806071600,62821796400,7200,1,'CEST',],[62821789200,62837514000,62821792800,62837517600,3600,0,'CET',],[62837514000,62853238800,62837521200,62853246000,7200,1,'CEST',],[62853238800,62868963600,62853242400,62868967200,3600,0,'CET',],[62868963600,62884688400,62868970800,62884695600,7200,1,'CEST',],[62884688400,62900413200,62884692000,62900416800,3600,0,'CET',],[62900413200,62916138000,62900420400,62916145200,7200,1,'CEST',],[62916138000,62931862800,62916141600,62931866400,3600,0,'CET',],[62931862800,62947587600,62931870000,62947594800,7200,1,'CEST',],[62947587600,62963917200,62947591200,62963920800,3600,0,'CET',],[62963917200,62982061200,62963924400,62982068400,7200,1,'CEST',],[62982061200,62995366800,62982064800,62995370400,3600,0,'CET',],[62995366800,63013510800,62995374000,63013518000,7200,1,'CEST',],[63013510800,63026816400,63013514400,63026820000,3600,0,'CET',],[63026816400,63044960400,63026823600,63044967600,7200,1,'CEST',],[63044960400,63058266000,63044964000,63058269600,3600,0,'CET',],[63058266000,63077014800,63058273200,63077022000,7200,1,'CEST',],[63077014800,63089715600,63077018400,63089719200,3600,0,'CET',],[63089715600,63108464400,63089722800,63108471600,7200,1,'CEST',],[63108464400,63121165200,63108468000,63121168800,3600,0,'CET',],[63121165200,63139914000,63121172400,63139921200,7200,1,'CEST',],[63139914000,63153219600,63139917600,63153223200,3600,0,'CET',],[63153219600,63171363600,63153226800,63171370800,7200,1,'CEST',],[63171363600,63184669200,63171367200,63184672800,3600,0,'CET',],[63184669200,63202813200,63184676400,63202820400,7200,1,'CEST',],[63202813200,63216118800,63202816800,63216122400,3600,0,'CET',],[63216118800,63234867600,63216126000,63234874800,7200,1,'CEST',],[63234867600,63247568400,63234871200,63247572000,3600,0,'CET',],[63247568400,63266317200,63247575600,63266324400,7200,1,'CEST',],[63266317200,63279018000,63266320800,63279021600,3600,0,'CET',],[63279018000,63297766800,63279025200,63297774000,7200,1,'CEST',],[63297766800,63310467600,63297770400,63310471200,3600,0,'CET',],[63310467600,63329216400,63310474800,63329223600,7200,1,'CEST',],[63329216400,63342522000,63329220000,63342525600,3600,0,'CET',],[63342522000,63360666000,63342529200,63360673200,7200,1,'CEST',],[63360666000,63373971600,63360669600,63373975200,3600,0,'CET',],[63373971600,63392115600,63373978800,63392122800,7200,1,'CEST',],[63392115600,63405421200,63392119200,63405424800,3600,0,'CET',],[63405421200,63424170000,63405428400,63424177200,7200,1,'CEST',],[63424170000,63436870800,63424173600,63436874400,3600,0,'CET',],[63436870800,63455619600,63436878000,63455626800,7200,1,'CEST',],[63455619600,63468320400,63455623200,63468324000,3600,0,'CET',],[63468320400,63487069200,63468327600,63487076400,7200,1,'CEST',],[63487069200,63500374800,63487072800,63500378400,3600,0,'CET',],[63500374800,63518518800,63500382000,63518526000,7200,1,'CEST',],[63518518800,63531824400,63518522400,63531828000,3600,0,'CET',],[63531824400,63549968400,63531831600,63549975600,7200,1,'CEST',],[63549968400,63563274000,63549972000,63563277600,3600,0,'CET',],[63563274000,63581418000,63563281200,63581425200,7200,1,'CEST',],[63581418000,63594723600,63581421600,63594727200,3600,0,'CET',],[63594723600,63613472400,63594730800,63613479600,7200,1,'CEST',],[63613472400,63626173200,63613476000,63626176800,3600,0,'CET',],[63626173200,63644922000,63626180400,63644929200,7200,1,'CEST',],[63644922000,63657622800,63644925600,63657626400,3600,0,'CET',],[63657622800,63676371600,63657630000,63676378800,7200,1,'CEST',],[63676371600,63689677200,63676375200,63689680800,3600,0,'CET',],[63689677200,63707821200,63689684400,63707828400,7200,1,'CEST',],[63707821200,63721126800,63707824800,63721130400,3600,0,'CET',],[63721126800,63739270800,63721134000,63739278000,7200,1,'CEST',],[63739270800,63752576400,63739274400,63752580000,3600,0,'CET',],[63752576400,63771325200,63752583600,63771332400,7200,1,'CEST',],[63771325200,63784026000,63771328800,63784029600,3600,0,'CET',],[63784026000,63802774800,63784033200,63802782000,7200,1,'CEST',],[63802774800,63815475600,63802778400,63815479200,3600,0,'CET',],[63815475600,63834224400,63815482800,63834231600,7200,1,'CEST',],[63834224400,63847530000,63834228000,63847533600,3600,0,'CET',],[63847530000,63865674000,63847537200,63865681200,7200,1,'CEST',],[63865674000,63878979600,63865677600,63878983200,3600,0,'CET',],[63878979600,63897123600,63878986800,63897130800,7200,1,'CEST',],[63897123600,63910429200,63897127200,63910432800,3600,0,'CET',],[63910429200,63928573200,63910436400,63928580400,7200,1,'CEST',],[63928573200,63941878800,63928576800,63941882400,3600,0,'CET',],[63941878800,63960627600,63941886000,63960634800,7200,1,'CEST',],];sub olson_version {'2016a'}sub has_dst_changes {82}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {3600}my$last_observance=bless({'format'=>'CE%sT','gmtoff'=>'1:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>721720,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>721720,'utc_rd_secs'=>0,'utc_year'=>1978 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>3600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>721719,'local_rd_secs'=>82800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>721719,'utc_rd_secs'=>82800,'utc_year'=>1977 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_BRUSSELS

$fatpacked{"DateTime/TimeZone/Europe/Bucharest.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_BUCHAREST';
  package DateTime::TimeZone::Europe::Bucharest;$DateTime::TimeZone::Europe::Bucharest::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Bucharest::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59666278536,DateTime::TimeZone::NEG_INFINITY,59666284800,6264,0,'LMT',],[59666278536,60922534536,59666284800,60922540800,6264,0,'BMT',],[60922534536,60948626400,60922541736,60948633600,7200,0,'EET',],[60948626400,60960204000,60948637200,60960214800,10800,1,'EEST',],[60960204000,60975928800,60960211200,60975936000,7200,0,'EET',],[60975928800,60991653600,60975939600,60991664400,10800,1,'EEST',],[60991653600,61007983200,60991660800,61007990400,7200,0,'EET',],[61007983200,61023708000,61007994000,61023718800,10800,1,'EEST',],[61023708000,61039432800,61023715200,61039440000,7200,0,'EET',],[61039432800,61055157600,61039443600,61055168400,10800,1,'EEST',],[61055157600,61070882400,61055164800,61070889600,7200,0,'EET',],[61070882400,61086607200,61070893200,61086618000,10800,1,'EEST',],[61086607200,61102332000,61086614400,61102339200,7200,0,'EET',],[61102332000,61118056800,61102342800,61118067600,10800,1,'EEST',],[61118056800,61133781600,61118064000,61133788800,7200,0,'EET',],[61133781600,61149506400,61133792400,61149517200,10800,1,'EEST',],[61149506400,61165231200,61149513600,61165238400,7200,0,'EET',],[61165231200,61180956000,61165242000,61180966800,10800,1,'EEST',],[61180956000,62432287200,61180963200,62432294400,7200,0,'EET',],[62432287200,62443170000,62432298000,62443180800,10800,1,'EEST',],[62443170000,62459499600,62443177200,62459506800,7200,0,'EET',],[62459499600,62474623200,62459510400,62474634000,10800,1,'EEST',],[62474623200,62490355200,62474630400,62490362400,7200,0,'EET',],[62490355200,62506080000,62490366000,62506090800,10800,1,'EEST',],[62506080000,62521804800,62506087200,62521812000,7200,0,'EET',],[62521804800,62537529600,62521815600,62537540400,10800,1,'EEST',],[62537529600,62553254400,62537536800,62553261600,7200,0,'EET',],[62553254400,62568979200,62553265200,62568990000,10800,1,'EEST',],[62568979200,62584704000,62568986400,62584711200,7200,0,'EET',],[62584704000,62601033600,62584714800,62601044400,10800,1,'EEST',],[62601033600,62616758400,62601040800,62616765600,7200,0,'EET',],[62616758400,62632483200,62616769200,62632494000,10800,1,'EEST',],[62632483200,62648208000,62632490400,62648215200,7200,0,'EET',],[62648208000,62663932800,62648218800,62663943600,10800,1,'EEST',],[62663932800,62679657600,62663940000,62679664800,7200,0,'EET',],[62679657600,62695382400,62679668400,62695393200,10800,1,'EEST',],[62695382400,62711107200,62695389600,62711114400,7200,0,'EET',],[62711107200,62726832000,62711118000,62726842800,10800,1,'EEST',],[62726832000,62742556800,62726839200,62742564000,7200,0,'EET',],[62742556800,62758281600,62742567600,62758292400,10800,1,'EEST',],[62758281600,62774006400,62758288800,62774013600,7200,0,'EET',],[62774006400,62790336000,62774017200,62790346800,10800,1,'EEST',],[62790336000,62798364000,62790343200,62798371200,7200,0,'EET',],[62798364000,62806053600,62798371200,62806060800,7200,0,'EET',],[62806053600,62821778400,62806064400,62821789200,10800,1,'EEST',],[62821778400,62837503200,62821785600,62837510400,7200,0,'EET',],[62837503200,62853228000,62837514000,62853238800,10800,1,'EEST',],[62853228000,62868952800,62853235200,62868960000,7200,0,'EET',],[62868952800,62884677600,62868963600,62884688400,10800,1,'EEST',],[62884677600,62893058400,62884684800,62893065600,7200,0,'EET',],[62893058400,62900402400,62893065600,62900409600,7200,0,'EET',],[62900402400,62916123600,62900413200,62916134400,10800,1,'EEST',],[62916123600,62931852000,62916130800,62931859200,7200,0,'EET',],[62931852000,62947573200,62931862800,62947584000,10800,1,'EEST',],[62947573200,62963906400,62947580400,62963913600,7200,0,'EET',],[62963906400,62982046800,62963917200,62982057600,10800,1,'EEST',],[62982046800,62987752800,62982054000,62987760000,7200,0,'EET',],[62987752800,62995366800,62987760000,62995374000,7200,0,'EET',],[62995366800,63013510800,62995377600,63013521600,10800,1,'EEST',],[63013510800,63026816400,63013518000,63026823600,7200,0,'EET',],[63026816400,63044960400,63026827200,63044971200,10800,1,'EEST',],[63044960400,63058266000,63044967600,63058273200,7200,0,'EET',],[63058266000,63077014800,63058276800,63077025600,10800,1,'EEST',],[63077014800,63089715600,63077022000,63089722800,7200,0,'EET',],[63089715600,63108464400,63089726400,63108475200,10800,1,'EEST',],[63108464400,63121165200,63108471600,63121172400,7200,0,'EET',],[63121165200,63139914000,63121176000,63139924800,10800,1,'EEST',],[63139914000,63153219600,63139921200,63153226800,7200,0,'EET',],[63153219600,63171363600,63153230400,63171374400,10800,1,'EEST',],[63171363600,63184669200,63171370800,63184676400,7200,0,'EET',],[63184669200,63202813200,63184680000,63202824000,10800,1,'EEST',],[63202813200,63216118800,63202820400,63216126000,7200,0,'EET',],[63216118800,63234867600,63216129600,63234878400,10800,1,'EEST',],[63234867600,63247568400,63234874800,63247575600,7200,0,'EET',],[63247568400,63266317200,63247579200,63266328000,10800,1,'EEST',],[63266317200,63279018000,63266324400,63279025200,7200,0,'EET',],[63279018000,63297766800,63279028800,63297777600,10800,1,'EEST',],[63297766800,63310467600,63297774000,63310474800,7200,0,'EET',],[63310467600,63329216400,63310478400,63329227200,10800,1,'EEST',],[63329216400,63342522000,63329223600,63342529200,7200,0,'EET',],[63342522000,63360666000,63342532800,63360676800,10800,1,'EEST',],[63360666000,63373971600,63360673200,63373978800,7200,0,'EET',],[63373971600,63392115600,63373982400,63392126400,10800,1,'EEST',],[63392115600,63405421200,63392122800,63405428400,7200,0,'EET',],[63405421200,63424170000,63405432000,63424180800,10800,1,'EEST',],[63424170000,63436870800,63424177200,63436878000,7200,0,'EET',],[63436870800,63455619600,63436881600,63455630400,10800,1,'EEST',],[63455619600,63468320400,63455626800,63468327600,7200,0,'EET',],[63468320400,63487069200,63468331200,63487080000,10800,1,'EEST',],[63487069200,63500374800,63487076400,63500382000,7200,0,'EET',],[63500374800,63518518800,63500385600,63518529600,10800,1,'EEST',],[63518518800,63531824400,63518526000,63531831600,7200,0,'EET',],[63531824400,63549968400,63531835200,63549979200,10800,1,'EEST',],[63549968400,63563274000,63549975600,63563281200,7200,0,'EET',],[63563274000,63581418000,63563284800,63581428800,10800,1,'EEST',],[63581418000,63594723600,63581425200,63594730800,7200,0,'EET',],[63594723600,63613472400,63594734400,63613483200,10800,1,'EEST',],[63613472400,63626173200,63613479600,63626180400,7200,0,'EET',],[63626173200,63644922000,63626184000,63644932800,10800,1,'EEST',],[63644922000,63657622800,63644929200,63657630000,7200,0,'EET',],[63657622800,63676371600,63657633600,63676382400,10800,1,'EEST',],[63676371600,63689677200,63676378800,63689684400,7200,0,'EET',],[63689677200,63707821200,63689688000,63707832000,10800,1,'EEST',],[63707821200,63721126800,63707828400,63721134000,7200,0,'EET',],[63721126800,63739270800,63721137600,63739281600,10800,1,'EEST',],[63739270800,63752576400,63739278000,63752583600,7200,0,'EET',],[63752576400,63771325200,63752587200,63771336000,10800,1,'EEST',],[63771325200,63784026000,63771332400,63784033200,7200,0,'EET',],[63784026000,63802774800,63784036800,63802785600,10800,1,'EEST',],[63802774800,63815475600,63802782000,63815482800,7200,0,'EET',],[63815475600,63834224400,63815486400,63834235200,10800,1,'EEST',],[63834224400,63847530000,63834231600,63847537200,7200,0,'EET',],[63847530000,63865674000,63847540800,63865684800,10800,1,'EEST',],[63865674000,63878979600,63865681200,63878986800,7200,0,'EET',],[63878979600,63897123600,63878990400,63897134400,10800,1,'EEST',],[63897123600,63910429200,63897130800,63910436400,7200,0,'EET',],[63910429200,63928573200,63910440000,63928584000,10800,1,'EEST',],[63928573200,63941878800,63928580400,63941886000,7200,0,'EET',],[63941878800,63960627600,63941889600,63960638400,10800,1,'EEST',],];sub olson_version {'2016a'}sub has_dst_changes {57}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {7200}my$last_observance=bless({'format'=>'EE%sT','gmtoff'=>'2:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>729025,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>729025,'utc_rd_secs'=>0,'utc_year'=>1998 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>7200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>729024,'local_rd_secs'=>79200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>729024,'utc_rd_secs'=>79200,'utc_year'=>1997 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_BUCHAREST

$fatpacked{"DateTime/TimeZone/Europe/Budapest.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_BUDAPEST';
  package DateTime::TimeZone::Europe::Budapest;$DateTime::TimeZone::Europe::Budapest::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Budapest::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59634744220,DateTime::TimeZone::NEG_INFINITY,59634748800,4580,0,'LMT',],[59634744220,60441976800,59634747820,60441980400,3600,0,'CET',],[60441976800,60455199600,60441984000,60455206800,7200,1,'CEST',],[60455199600,60472227600,60455203200,60472231200,3600,0,'CET',],[60472227600,60485533200,60472234800,60485540400,7200,1,'CEST',],[60485533200,60494684400,60485536800,60494688000,3600,0,'CET',],[60494684400,60502471200,60494688000,60502474800,3600,0,'CET',],[60502471200,60516982800,60502478400,60516990000,7200,1,'CEST',],[60516982800,60535216800,60516986400,60535220400,3600,0,'CET',],[60535216800,60554480400,60535224000,60554487600,7200,1,'CEST',],[60554480400,61228911600,60554484000,61228915200,3600,0,'CET',],[61228911600,61278426000,61228918800,61278433200,7200,1,'CEST',],[61278426000,61291126800,61278429600,61291130400,3600,0,'CET',],[61291126800,61307456400,61291134000,61307463600,7200,1,'CEST',],[61307456400,61323181200,61307460000,61323184800,3600,0,'CET',],[61323181200,61338906000,61323188400,61338913200,7200,1,'CEST',],[61338906000,61346761200,61338909600,61346764800,3600,0,'CET',],[61346761200,61357212000,61346764800,61357215600,3600,0,'CET',],[61357212000,61373023200,61357219200,61373030400,7200,1,'CEST',],[61373023200,61385994000,61373026800,61385997600,3600,0,'CET',],[61385994000,61402323600,61386001200,61402330800,7200,1,'CEST',],[61402323600,61418048400,61402327200,61418052000,3600,0,'CET',],[61418048400,61433773200,61418055600,61433780400,7200,1,'CEST',],[61433773200,61449498000,61433776800,61449501600,3600,0,'CET',],[61449498000,61465222800,61449505200,61465230000,7200,1,'CEST',],[61465222800,61481552400,61465226400,61481556000,3600,0,'CET',],[61481552400,61496672400,61481559600,61496679600,7200,1,'CEST',],[61496672400,61513693200,61496676000,61513696800,3600,0,'CET',],[61513693200,61530022800,61513700400,61530030000,7200,1,'CEST',],[61530022800,61643026800,61530026400,61643030400,3600,0,'CET',],[61643026800,61654514400,61643034000,61654521600,7200,1,'CEST',],[61654514400,61674562800,61654518000,61674566400,3600,0,'CET',],[61674562800,61686050400,61674570000,61686057600,7200,1,'CEST',],[61686050400,61707135600,61686054000,61707139200,3600,0,'CET',],[61707135600,61717413600,61707142800,61717420800,7200,1,'CEST',],[61717413600,61738588800,61717417200,61738592400,3600,0,'CET',],[61738588800,61748874000,61738596000,61748881200,7200,1,'CEST',],[61748874000,62459510400,61748877600,62459514000,3600,0,'CET',],[62459510400,62474634000,62459517600,62474641200,7200,1,'CEST',],[62474634000,62490358800,62474637600,62490362400,3600,0,'CET',],[62490358800,62506083600,62490366000,62506090800,7200,1,'CEST',],[62506083600,62521808400,62506087200,62521812000,3600,0,'CET',],[62521808400,62537533200,62521815600,62537540400,7200,1,'CEST',],[62537533200,62553258000,62537536800,62553261600,3600,0,'CET',],[62553258000,62568982800,62553265200,62568990000,7200,1,'CEST',],[62568982800,62584707600,62568986400,62584711200,3600,0,'CET',],[62584707600,62601037200,62584714800,62601044400,7200,1,'CEST',],[62601037200,62616762000,62601040800,62616765600,3600,0,'CET',],[62616762000,62632486800,62616769200,62632494000,7200,1,'CEST',],[62632486800,62648211600,62632490400,62648215200,3600,0,'CET',],[62648211600,62663936400,62648218800,62663943600,7200,1,'CEST',],[62663936400,62679661200,62663940000,62679664800,3600,0,'CET',],[62679661200,62695386000,62679668400,62695393200,7200,1,'CEST',],[62695386000,62711110800,62695389600,62711114400,3600,0,'CET',],[62711110800,62726835600,62711118000,62726842800,7200,1,'CEST',],[62726835600,62742560400,62726839200,62742564000,3600,0,'CET',],[62742560400,62758285200,62742567600,62758292400,7200,1,'CEST',],[62758285200,62774010000,62758288800,62774013600,3600,0,'CET',],[62774010000,62790339600,62774017200,62790346800,7200,1,'CEST',],[62790339600,62806064400,62790343200,62806068000,3600,0,'CET',],[62806064400,62821789200,62806071600,62821796400,7200,1,'CEST',],[62821789200,62837514000,62821792800,62837517600,3600,0,'CET',],[62837514000,62853238800,62837521200,62853246000,7200,1,'CEST',],[62853238800,62868963600,62853242400,62868967200,3600,0,'CET',],[62868963600,62884688400,62868970800,62884695600,7200,1,'CEST',],[62884688400,62900413200,62884692000,62900416800,3600,0,'CET',],[62900413200,62916138000,62900420400,62916145200,7200,1,'CEST',],[62916138000,62931862800,62916141600,62931866400,3600,0,'CET',],[62931862800,62947587600,62931870000,62947594800,7200,1,'CEST',],[62947587600,62963917200,62947591200,62963920800,3600,0,'CET',],[62963917200,62982061200,62963924400,62982068400,7200,1,'CEST',],[62982061200,62995366800,62982064800,62995370400,3600,0,'CET',],[62995366800,63013510800,62995374000,63013518000,7200,1,'CEST',],[63013510800,63026816400,63013514400,63026820000,3600,0,'CET',],[63026816400,63044960400,63026823600,63044967600,7200,1,'CEST',],[63044960400,63058266000,63044964000,63058269600,3600,0,'CET',],[63058266000,63077014800,63058273200,63077022000,7200,1,'CEST',],[63077014800,63089715600,63077018400,63089719200,3600,0,'CET',],[63089715600,63108464400,63089722800,63108471600,7200,1,'CEST',],[63108464400,63121165200,63108468000,63121168800,3600,0,'CET',],[63121165200,63139914000,63121172400,63139921200,7200,1,'CEST',],[63139914000,63153219600,63139917600,63153223200,3600,0,'CET',],[63153219600,63171363600,63153226800,63171370800,7200,1,'CEST',],[63171363600,63184669200,63171367200,63184672800,3600,0,'CET',],[63184669200,63202813200,63184676400,63202820400,7200,1,'CEST',],[63202813200,63216118800,63202816800,63216122400,3600,0,'CET',],[63216118800,63234867600,63216126000,63234874800,7200,1,'CEST',],[63234867600,63247568400,63234871200,63247572000,3600,0,'CET',],[63247568400,63266317200,63247575600,63266324400,7200,1,'CEST',],[63266317200,63279018000,63266320800,63279021600,3600,0,'CET',],[63279018000,63297766800,63279025200,63297774000,7200,1,'CEST',],[63297766800,63310467600,63297770400,63310471200,3600,0,'CET',],[63310467600,63329216400,63310474800,63329223600,7200,1,'CEST',],[63329216400,63342522000,63329220000,63342525600,3600,0,'CET',],[63342522000,63360666000,63342529200,63360673200,7200,1,'CEST',],[63360666000,63373971600,63360669600,63373975200,3600,0,'CET',],[63373971600,63392115600,63373978800,63392122800,7200,1,'CEST',],[63392115600,63405421200,63392119200,63405424800,3600,0,'CET',],[63405421200,63424170000,63405428400,63424177200,7200,1,'CEST',],[63424170000,63436870800,63424173600,63436874400,3600,0,'CET',],[63436870800,63455619600,63436878000,63455626800,7200,1,'CEST',],[63455619600,63468320400,63455623200,63468324000,3600,0,'CET',],[63468320400,63487069200,63468327600,63487076400,7200,1,'CEST',],[63487069200,63500374800,63487072800,63500378400,3600,0,'CET',],[63500374800,63518518800,63500382000,63518526000,7200,1,'CEST',],[63518518800,63531824400,63518522400,63531828000,3600,0,'CET',],[63531824400,63549968400,63531831600,63549975600,7200,1,'CEST',],[63549968400,63563274000,63549972000,63563277600,3600,0,'CET',],[63563274000,63581418000,63563281200,63581425200,7200,1,'CEST',],[63581418000,63594723600,63581421600,63594727200,3600,0,'CET',],[63594723600,63613472400,63594730800,63613479600,7200,1,'CEST',],[63613472400,63626173200,63613476000,63626176800,3600,0,'CET',],[63626173200,63644922000,63626180400,63644929200,7200,1,'CEST',],[63644922000,63657622800,63644925600,63657626400,3600,0,'CET',],[63657622800,63676371600,63657630000,63676378800,7200,1,'CEST',],[63676371600,63689677200,63676375200,63689680800,3600,0,'CET',],[63689677200,63707821200,63689684400,63707828400,7200,1,'CEST',],[63707821200,63721126800,63707824800,63721130400,3600,0,'CET',],[63721126800,63739270800,63721134000,63739278000,7200,1,'CEST',],[63739270800,63752576400,63739274400,63752580000,3600,0,'CET',],[63752576400,63771325200,63752583600,63771332400,7200,1,'CEST',],[63771325200,63784026000,63771328800,63784029600,3600,0,'CET',],[63784026000,63802774800,63784033200,63802782000,7200,1,'CEST',],[63802774800,63815475600,63802778400,63815479200,3600,0,'CET',],[63815475600,63834224400,63815482800,63834231600,7200,1,'CEST',],[63834224400,63847530000,63834228000,63847533600,3600,0,'CET',],[63847530000,63865674000,63847537200,63865681200,7200,1,'CEST',],[63865674000,63878979600,63865677600,63878983200,3600,0,'CET',],[63878979600,63897123600,63878986800,63897130800,7200,1,'CEST',],[63897123600,63910429200,63897127200,63910432800,3600,0,'CET',],[63910429200,63928573200,63910436400,63928580400,7200,1,'CEST',],[63928573200,63941878800,63928576800,63941882400,3600,0,'CET',],[63941878800,63960627600,63941886000,63960634800,7200,1,'CEST',],];sub olson_version {'2016a'}sub has_dst_changes {65}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {3600}my$last_observance=bless({'format'=>'CE%sT','gmtoff'=>'1:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>723086,'local_rd_secs'=>7200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>723086,'utc_rd_secs'=>7200,'utc_year'=>1981 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>3600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>723086,'local_rd_secs'=>3600,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>723086,'utc_rd_secs'=>3600,'utc_year'=>1981 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_BUDAPEST

$fatpacked{"DateTime/TimeZone/Europe/Chisinau.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_CHISINAU';
  package DateTime::TimeZone::Europe::Chisinau;$DateTime::TimeZone::Europe::Chisinau::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Chisinau::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59295535480,DateTime::TimeZone::NEG_INFINITY,59295542400,6920,0,'LMT',],[59295535480,60498569100,59295542380,60498576000,6900,0,'CMT',],[60498569100,60922534536,60498575364,60922540800,6264,0,'BMT',],[60922534536,60948626400,60922541736,60948633600,7200,0,'EET',],[60948626400,60960204000,60948637200,60960214800,10800,1,'EEST',],[60960204000,60975928800,60960211200,60975936000,7200,0,'EET',],[60975928800,60991653600,60975939600,60991664400,10800,1,'EEST',],[60991653600,61007983200,60991660800,61007990400,7200,0,'EET',],[61007983200,61023708000,61007994000,61023718800,10800,1,'EEST',],[61023708000,61039432800,61023715200,61039440000,7200,0,'EET',],[61039432800,61055157600,61039443600,61055168400,10800,1,'EEST',],[61055157600,61070882400,61055164800,61070889600,7200,0,'EET',],[61070882400,61086607200,61070893200,61086618000,10800,1,'EEST',],[61086607200,61102332000,61086614400,61102339200,7200,0,'EET',],[61102332000,61118056800,61102342800,61118067600,10800,1,'EEST',],[61118056800,61133781600,61118064000,61133788800,7200,0,'EET',],[61133781600,61149506400,61133792400,61149517200,10800,1,'EEST',],[61149506400,61165231200,61149513600,61165238400,7200,0,'EET',],[61165231200,61180956000,61165242000,61180966800,10800,1,'EEST',],[61180956000,61208517600,61180963200,61208524800,7200,0,'EET',],[61208517600,61237544400,61208528400,61237555200,10800,1,'EEST',],[61237544400,61278426000,61237551600,61278433200,7200,1,'CEST',],[61278426000,61291126800,61278429600,61291130400,3600,0,'CET',],[61291126800,61307456400,61291134000,61307463600,7200,1,'CEST',],[61307456400,61323181200,61307460000,61323184800,3600,0,'CET',],[61323181200,61335525600,61323188400,61335532800,7200,1,'CEST',],[61335525600,62490603600,61335536400,62490614400,10800,0,'MSK',],[62490603600,62506411200,62490618000,62506425600,14400,1,'MSD',],[62506411200,62522139600,62506422000,62522150400,10800,0,'MSK',],[62522139600,62537947200,62522154000,62537961600,14400,1,'MSD',],[62537947200,62553675600,62537958000,62553686400,10800,0,'MSK',],[62553675600,62569483200,62553690000,62569497600,14400,1,'MSD',],[62569483200,62585298000,62569494000,62585308800,10800,0,'MSK',],[62585298000,62601030000,62585312400,62601044400,14400,1,'MSD',],[62601030000,62616754800,62601040800,62616765600,10800,0,'MSK',],[62616754800,62632479600,62616769200,62632494000,14400,1,'MSD',],[62632479600,62648204400,62632490400,62648215200,10800,0,'MSK',],[62648204400,62663929200,62648218800,62663943600,14400,1,'MSD',],[62663929200,62679654000,62663940000,62679664800,10800,0,'MSK',],[62679654000,62695378800,62679668400,62695393200,14400,1,'MSD',],[62695378800,62711103600,62695389600,62711114400,10800,0,'MSK',],[62711103600,62726828400,62711118000,62726842800,14400,1,'MSD',],[62726828400,62742553200,62726839200,62742564000,10800,0,'MSK',],[62742553200,62758278000,62742567600,62758292400,14400,1,'MSD',],[62758278000,62766824400,62758288800,62766835200,10800,0,'MSK',],[62766824400,62777624400,62766835200,62777635200,10800,0,'MSK',],[62777624400,62798364000,62777631600,62798371200,7200,0,'EET',],[62798364000,62806060800,62798371200,62806068000,7200,0,'EET',],[62806060800,62821785600,62806071600,62821796400,10800,1,'EEST',],[62821785600,62829900000,62821792800,62829907200,7200,0,'EET',],[62829900000,62837503200,62829907200,62837510400,7200,0,'EET',],[62837503200,62853224400,62837514000,62853235200,10800,1,'EEST',],[62853224400,62868952800,62853231600,62868960000,7200,0,'EET',],[62868952800,62884674000,62868963600,62884684800,10800,1,'EEST',],[62884674000,62900402400,62884681200,62900409600,7200,0,'EET',],[62900402400,62916123600,62900413200,62916134400,10800,1,'EEST',],[62916123600,62931852000,62916130800,62931859200,7200,0,'EET',],[62931852000,62947573200,62931862800,62947584000,10800,1,'EEST',],[62947573200,62963906400,62947580400,62963913600,7200,0,'EET',],[62963906400,62982046800,62963917200,62982057600,10800,1,'EEST',],[62982046800,62987752800,62982054000,62987760000,7200,0,'EET',],[62987752800,62995363200,62987760000,62995370400,7200,0,'EET',],[62995363200,63013507200,62995374000,63013518000,10800,1,'EEST',],[63013507200,63026812800,63013514400,63026820000,7200,0,'EET',],[63026812800,63044956800,63026823600,63044967600,10800,1,'EEST',],[63044956800,63058262400,63044964000,63058269600,7200,0,'EET',],[63058262400,63077011200,63058273200,63077022000,10800,1,'EEST',],[63077011200,63089712000,63077018400,63089719200,7200,0,'EET',],[63089712000,63108460800,63089722800,63108471600,10800,1,'EEST',],[63108460800,63121161600,63108468000,63121168800,7200,0,'EET',],[63121161600,63139910400,63121172400,63139921200,10800,1,'EEST',],[63139910400,63153216000,63139917600,63153223200,7200,0,'EET',],[63153216000,63171360000,63153226800,63171370800,10800,1,'EEST',],[63171360000,63184665600,63171367200,63184672800,7200,0,'EET',],[63184665600,63202809600,63184676400,63202820400,10800,1,'EEST',],[63202809600,63216115200,63202816800,63216122400,7200,0,'EET',],[63216115200,63234864000,63216126000,63234874800,10800,1,'EEST',],[63234864000,63247564800,63234871200,63247572000,7200,0,'EET',],[63247564800,63266313600,63247575600,63266324400,10800,1,'EEST',],[63266313600,63279014400,63266320800,63279021600,7200,0,'EET',],[63279014400,63297763200,63279025200,63297774000,10800,1,'EEST',],[63297763200,63310464000,63297770400,63310471200,7200,0,'EET',],[63310464000,63329212800,63310474800,63329223600,10800,1,'EEST',],[63329212800,63342518400,63329220000,63342525600,7200,0,'EET',],[63342518400,63360662400,63342529200,63360673200,10800,1,'EEST',],[63360662400,63373968000,63360669600,63373975200,7200,0,'EET',],[63373968000,63392112000,63373978800,63392122800,10800,1,'EEST',],[63392112000,63405417600,63392119200,63405424800,7200,0,'EET',],[63405417600,63424166400,63405428400,63424177200,10800,1,'EEST',],[63424166400,63436867200,63424173600,63436874400,7200,0,'EET',],[63436867200,63455616000,63436878000,63455626800,10800,1,'EEST',],[63455616000,63468316800,63455623200,63468324000,7200,0,'EET',],[63468316800,63487065600,63468327600,63487076400,10800,1,'EEST',],[63487065600,63500371200,63487072800,63500378400,7200,0,'EET',],[63500371200,63518515200,63500382000,63518526000,10800,1,'EEST',],[63518515200,63531820800,63518522400,63531828000,7200,0,'EET',],[63531820800,63549964800,63531831600,63549975600,10800,1,'EEST',],[63549964800,63563270400,63549972000,63563277600,7200,0,'EET',],[63563270400,63581414400,63563281200,63581425200,10800,1,'EEST',],[63581414400,63594720000,63581421600,63594727200,7200,0,'EET',],[63594720000,63613468800,63594730800,63613479600,10800,1,'EEST',],[63613468800,63626169600,63613476000,63626176800,7200,0,'EET',],[63626169600,63644918400,63626180400,63644929200,10800,1,'EEST',],[63644918400,63657619200,63644925600,63657626400,7200,0,'EET',],[63657619200,63676368000,63657630000,63676378800,10800,1,'EEST',],[63676368000,63689673600,63676375200,63689680800,7200,0,'EET',],[63689673600,63707817600,63689684400,63707828400,10800,1,'EEST',],[63707817600,63721123200,63707824800,63721130400,7200,0,'EET',],[63721123200,63739267200,63721134000,63739278000,10800,1,'EEST',],[63739267200,63752572800,63739274400,63752580000,7200,0,'EET',],[63752572800,63771321600,63752583600,63771332400,10800,1,'EEST',],[63771321600,63784022400,63771328800,63784029600,7200,0,'EET',],[63784022400,63802771200,63784033200,63802782000,10800,1,'EEST',],[63802771200,63815472000,63802778400,63815479200,7200,0,'EET',],[63815472000,63834220800,63815482800,63834231600,10800,1,'EEST',],[63834220800,63847526400,63834228000,63847533600,7200,0,'EET',],[63847526400,63865670400,63847537200,63865681200,10800,1,'EEST',],[63865670400,63878976000,63865677600,63878983200,7200,0,'EET',],[63878976000,63897120000,63878986800,63897130800,10800,1,'EEST',],[63897120000,63910425600,63897127200,63910432800,7200,0,'EET',],[63910425600,63928569600,63910436400,63928580400,10800,1,'EEST',],[63928569600,63941875200,63928576800,63941882400,7200,0,'EET',],[63941875200,63960624000,63941886000,63960634800,10800,1,'EEST',],];sub olson_version {'2016a'}sub has_dst_changes {58}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {7200}my$last_observance=bless({'format'=>'EE%sT','gmtoff'=>'2:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>729025,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>729025,'utc_rd_secs'=>0,'utc_year'=>1998 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>7200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>729024,'local_rd_secs'=>79200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>729024,'utc_rd_secs'=>79200,'utc_year'=>1997 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'1997','in'=>'Mar','letter'=>'S','name'=>'Moldova','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'3:00','from'=>'1997','in'=>'Oct','letter'=>'','name'=>'Moldova','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_CHISINAU

$fatpacked{"DateTime/TimeZone/Europe/Copenhagen.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_COPENHAGEN';
  package DateTime::TimeZone::Europe::Copenhagen;$DateTime::TimeZone::Europe::Copenhagen::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Copenhagen::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59611158580,DateTime::TimeZone::NEG_INFINITY,59611161600,3020,0,'LMT',],[59611158580,59737388980,59611161600,59737392000,3020,0,'CMT',],[59737388980,60443186400,59737392580,60443190000,3600,0,'CET',],[60443186400,60455192400,60443193600,60455199600,7200,1,'CEST',],[60455192400,61200572400,60455196000,61200576000,3600,0,'CET',],[61200572400,61278426000,61200579600,61278433200,7200,1,'CEST',],[61278426000,61291126800,61278429600,61291130400,3600,0,'CET',],[61291126800,61307456400,61291134000,61307463600,7200,1,'CEST',],[61307456400,61323181200,61307460000,61323184800,3600,0,'CET',],[61323181200,61338906000,61323188400,61338913200,7200,1,'CEST',],[61338906000,61354630800,61338909600,61354634400,3600,0,'CET',],[61354630800,61366294800,61354638000,61366302000,7200,1,'CEST',],[61366294800,61388672400,61366298400,61388676000,3600,0,'CET',],[61388672400,61399299600,61388679600,61399306800,7200,1,'CEST',],[61399299600,61420467600,61399303200,61420471200,3600,0,'CET',],[61420467600,61428934800,61420474800,61428942000,7200,1,'CEST',],[61428934800,61452522000,61428938400,61452525600,3600,0,'CET',],[61452522000,61460384400,61452529200,61460391600,7200,1,'CEST',],[61460384400,62451212400,61460388000,62451216000,3600,0,'CET',],[62451212400,62459514000,62451216000,62459517600,3600,0,'CET',],[62459514000,62474634000,62459521200,62474641200,7200,1,'CEST',],[62474634000,62490358800,62474637600,62490362400,3600,0,'CET',],[62490358800,62506083600,62490366000,62506090800,7200,1,'CEST',],[62506083600,62521808400,62506087200,62521812000,3600,0,'CET',],[62521808400,62537533200,62521815600,62537540400,7200,1,'CEST',],[62537533200,62553258000,62537536800,62553261600,3600,0,'CET',],[62553258000,62568982800,62553265200,62568990000,7200,1,'CEST',],[62568982800,62584707600,62568986400,62584711200,3600,0,'CET',],[62584707600,62601037200,62584714800,62601044400,7200,1,'CEST',],[62601037200,62616762000,62601040800,62616765600,3600,0,'CET',],[62616762000,62632486800,62616769200,62632494000,7200,1,'CEST',],[62632486800,62648211600,62632490400,62648215200,3600,0,'CET',],[62648211600,62663936400,62648218800,62663943600,7200,1,'CEST',],[62663936400,62679661200,62663940000,62679664800,3600,0,'CET',],[62679661200,62695386000,62679668400,62695393200,7200,1,'CEST',],[62695386000,62711110800,62695389600,62711114400,3600,0,'CET',],[62711110800,62726835600,62711118000,62726842800,7200,1,'CEST',],[62726835600,62742560400,62726839200,62742564000,3600,0,'CET',],[62742560400,62758285200,62742567600,62758292400,7200,1,'CEST',],[62758285200,62774010000,62758288800,62774013600,3600,0,'CET',],[62774010000,62790339600,62774017200,62790346800,7200,1,'CEST',],[62790339600,62806064400,62790343200,62806068000,3600,0,'CET',],[62806064400,62821789200,62806071600,62821796400,7200,1,'CEST',],[62821789200,62837514000,62821792800,62837517600,3600,0,'CET',],[62837514000,62853238800,62837521200,62853246000,7200,1,'CEST',],[62853238800,62868963600,62853242400,62868967200,3600,0,'CET',],[62868963600,62884688400,62868970800,62884695600,7200,1,'CEST',],[62884688400,62900413200,62884692000,62900416800,3600,0,'CET',],[62900413200,62916138000,62900420400,62916145200,7200,1,'CEST',],[62916138000,62931862800,62916141600,62931866400,3600,0,'CET',],[62931862800,62947587600,62931870000,62947594800,7200,1,'CEST',],[62947587600,62963917200,62947591200,62963920800,3600,0,'CET',],[62963917200,62982061200,62963924400,62982068400,7200,1,'CEST',],[62982061200,62995366800,62982064800,62995370400,3600,0,'CET',],[62995366800,63013510800,62995374000,63013518000,7200,1,'CEST',],[63013510800,63026816400,63013514400,63026820000,3600,0,'CET',],[63026816400,63044960400,63026823600,63044967600,7200,1,'CEST',],[63044960400,63058266000,63044964000,63058269600,3600,0,'CET',],[63058266000,63077014800,63058273200,63077022000,7200,1,'CEST',],[63077014800,63089715600,63077018400,63089719200,3600,0,'CET',],[63089715600,63108464400,63089722800,63108471600,7200,1,'CEST',],[63108464400,63121165200,63108468000,63121168800,3600,0,'CET',],[63121165200,63139914000,63121172400,63139921200,7200,1,'CEST',],[63139914000,63153219600,63139917600,63153223200,3600,0,'CET',],[63153219600,63171363600,63153226800,63171370800,7200,1,'CEST',],[63171363600,63184669200,63171367200,63184672800,3600,0,'CET',],[63184669200,63202813200,63184676400,63202820400,7200,1,'CEST',],[63202813200,63216118800,63202816800,63216122400,3600,0,'CET',],[63216118800,63234867600,63216126000,63234874800,7200,1,'CEST',],[63234867600,63247568400,63234871200,63247572000,3600,0,'CET',],[63247568400,63266317200,63247575600,63266324400,7200,1,'CEST',],[63266317200,63279018000,63266320800,63279021600,3600,0,'CET',],[63279018000,63297766800,63279025200,63297774000,7200,1,'CEST',],[63297766800,63310467600,63297770400,63310471200,3600,0,'CET',],[63310467600,63329216400,63310474800,63329223600,7200,1,'CEST',],[63329216400,63342522000,63329220000,63342525600,3600,0,'CET',],[63342522000,63360666000,63342529200,63360673200,7200,1,'CEST',],[63360666000,63373971600,63360669600,63373975200,3600,0,'CET',],[63373971600,63392115600,63373978800,63392122800,7200,1,'CEST',],[63392115600,63405421200,63392119200,63405424800,3600,0,'CET',],[63405421200,63424170000,63405428400,63424177200,7200,1,'CEST',],[63424170000,63436870800,63424173600,63436874400,3600,0,'CET',],[63436870800,63455619600,63436878000,63455626800,7200,1,'CEST',],[63455619600,63468320400,63455623200,63468324000,3600,0,'CET',],[63468320400,63487069200,63468327600,63487076400,7200,1,'CEST',],[63487069200,63500374800,63487072800,63500378400,3600,0,'CET',],[63500374800,63518518800,63500382000,63518526000,7200,1,'CEST',],[63518518800,63531824400,63518522400,63531828000,3600,0,'CET',],[63531824400,63549968400,63531831600,63549975600,7200,1,'CEST',],[63549968400,63563274000,63549972000,63563277600,3600,0,'CET',],[63563274000,63581418000,63563281200,63581425200,7200,1,'CEST',],[63581418000,63594723600,63581421600,63594727200,3600,0,'CET',],[63594723600,63613472400,63594730800,63613479600,7200,1,'CEST',],[63613472400,63626173200,63613476000,63626176800,3600,0,'CET',],[63626173200,63644922000,63626180400,63644929200,7200,1,'CEST',],[63644922000,63657622800,63644925600,63657626400,3600,0,'CET',],[63657622800,63676371600,63657630000,63676378800,7200,1,'CEST',],[63676371600,63689677200,63676375200,63689680800,3600,0,'CET',],[63689677200,63707821200,63689684400,63707828400,7200,1,'CEST',],[63707821200,63721126800,63707824800,63721130400,3600,0,'CET',],[63721126800,63739270800,63721134000,63739278000,7200,1,'CEST',],[63739270800,63752576400,63739274400,63752580000,3600,0,'CET',],[63752576400,63771325200,63752583600,63771332400,7200,1,'CEST',],[63771325200,63784026000,63771328800,63784029600,3600,0,'CET',],[63784026000,63802774800,63784033200,63802782000,7200,1,'CEST',],[63802774800,63815475600,63802778400,63815479200,3600,0,'CET',],[63815475600,63834224400,63815482800,63834231600,7200,1,'CEST',],[63834224400,63847530000,63834228000,63847533600,3600,0,'CET',],[63847530000,63865674000,63847537200,63865681200,7200,1,'CEST',],[63865674000,63878979600,63865677600,63878983200,3600,0,'CET',],[63878979600,63897123600,63878986800,63897130800,7200,1,'CEST',],[63897123600,63910429200,63897127200,63910432800,3600,0,'CET',],[63910429200,63928573200,63910436400,63928580400,7200,1,'CEST',],[63928573200,63941878800,63928576800,63941882400,3600,0,'CET',],[63941878800,63960627600,63941886000,63960634800,7200,1,'CEST',],];sub olson_version {'2016a'}sub has_dst_changes {56}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {3600}my$last_observance=bless({'format'=>'CE%sT','gmtoff'=>'1:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>722815,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>722815,'utc_rd_secs'=>0,'utc_year'=>1981 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>3600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>722814,'local_rd_secs'=>82800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>722814,'utc_rd_secs'=>82800,'utc_year'=>1980 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_COPENHAGEN

$fatpacked{"DateTime/TimeZone/Europe/Dublin.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_DUBLIN';
  package DateTime::TimeZone::Europe::Dublin;$DateTime::TimeZone::Europe::Dublin::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Dublin::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59314033500,DateTime::TimeZone::NEG_INFINITY,59314032000,-1500,0,'LMT',],[59314033500,60443720721,59314031979,60443719200,-1521,0,'DMT',],[60443720721,60455211921,60443722800,60455214000,2079,1,'IST',],[60455211921,60471540000,60455211921,60471540000,0,0,'GMT',],[60471540000,60485536800,60471543600,60485540400,3600,1,'BST',],[60485536800,60501780000,60485536800,60501780000,0,0,'GMT',],[60501780000,60518196000,60501783600,60518199600,3600,1,'BST',],[60518196000,60533834400,60518196000,60533834400,0,0,'GMT',],[60533834400,60549645600,60533838000,60549649200,3600,1,'BST',],[60549645600,60565284000,60549645600,60565284000,0,0,'GMT',],[60565284000,60583514400,60565287600,60583518000,3600,1,'BST',],[60583514400,60597338400,60583514400,60597338400,0,0,'GMT',],[60597338400,60613149600,60597342000,60613153200,3600,1,'BST',],[60613149600,60618672000,60613149600,60618672000,0,0,'GMT',],[60618672000,60628183200,60618672000,60628183200,0,0,'GMT',],[60628183200,60645117600,60628186800,60645121200,3600,1,'IST',],[60645117600,60662052000,60645117600,60662052000,0,0,'GMT',],[60662052000,60674752800,60662055600,60674756400,3600,1,'IST',],[60674752800,60692896800,60674752800,60692896800,0,0,'GMT',],[60692896800,60706807200,60692900400,60706810800,3600,1,'IST',],[60706807200,60724951200,60706807200,60724951200,0,0,'GMT',],[60724951200,60739466400,60724954800,60739470000,3600,1,'IST',],[60739466400,60756400800,60739466400,60756400800,0,0,'GMT',],[60756400800,60770916000,60756404400,60770919600,3600,1,'IST',],[60770916000,60787245600,60770916000,60787245600,0,0,'GMT',],[60787245600,60802365600,60787249200,60802369200,3600,1,'IST',],[60802365600,60819904800,60802365600,60819904800,0,0,'GMT',],[60819904800,60834420000,60819908400,60834423600,3600,1,'IST',],[60834420000,60851354400,60834420000,60851354400,0,0,'GMT',],[60851354400,60865869600,60851358000,60865873200,3600,1,'IST',],[60865869600,60882199200,60865869600,60882199200,0,0,'GMT',],[60882199200,60897319200,60882202800,60897322800,3600,1,'IST',],[60897319200,60914253600,60897319200,60914253600,0,0,'GMT',],[60914253600,60928768800,60914257200,60928772400,3600,1,'IST',],[60928768800,60945703200,60928768800,60945703200,0,0,'GMT',],[60945703200,60960218400,60945706800,60960222000,3600,1,'IST',],[60960218400,60976548000,60960218400,60976548000,0,0,'GMT',],[60976548000,60992272800,60976551600,60992276400,3600,1,'IST',],[60992272800,61009207200,60992272800,61009207200,0,0,'GMT',],[61009207200,61023722400,61009210800,61023726000,3600,1,'IST',],[61023722400,61040052000,61023722400,61040052000,0,0,'GMT',],[61040052000,61055172000,61040055600,61055175600,3600,1,'IST',],[61055172000,61072106400,61055172000,61072106400,0,0,'GMT',],[61072106400,61086621600,61072110000,61086625200,3600,1,'IST',],[61086621600,61103556000,61086621600,61103556000,0,0,'GMT',],[61103556000,61118071200,61103559600,61118074800,3600,1,'IST',],[61118071200,61134400800,61118071200,61134400800,0,0,'GMT',],[61134400800,61149520800,61134404400,61149524400,3600,1,'IST',],[61149520800,61166455200,61149520800,61166455200,0,0,'GMT',],[61166455200,61185204000,61166458800,61185207600,3600,1,'IST',],[61185204000,61193671200,61185204000,61193671200,0,0,'GMT',],[61193671200,61402323600,61193674800,61402327200,3600,1,'IST',],[61402323600,61416237600,61402323600,61416237600,0,0,'GMT',],[61416237600,61436192400,61416241200,61436196000,3600,1,'IST',],[61436192400,61450711200,61436192400,61450711200,0,0,'GMT',],[61450711200,61467645600,61450714800,61467649200,3600,1,'IST',],[61467645600,61480951200,61467645600,61480951200,0,0,'GMT',],[61480951200,61499095200,61480954800,61499098800,3600,1,'IST',],[61499095200,61513610400,61499095200,61513610400,0,0,'GMT',],[61513610400,61529940000,61513614000,61529943600,3600,1,'IST',],[61529940000,61545060000,61529940000,61545060000,0,0,'GMT',],[61545060000,61561389600,61545063600,61561393200,3600,1,'IST',],[61561389600,61577114400,61561389600,61577114400,0,0,'GMT',],[61577114400,61593444000,61577118000,61593447600,3600,1,'IST',],[61593444000,61608564000,61593444000,61608564000,0,0,'GMT',],[61608564000,61623079200,61608567600,61623082800,3600,1,'IST',],[61623079200,61639408800,61623079200,61639408800,0,0,'GMT',],[61639408800,61654528800,61639412400,61654532400,3600,1,'IST',],[61654528800,61671463200,61654528800,61671463200,0,0,'GMT',],[61671463200,61685978400,61671466800,61685982000,3600,1,'IST',],[61685978400,61703517600,61685978400,61703517600,0,0,'GMT',],[61703517600,61718032800,61703521200,61718036400,3600,1,'IST',],[61718032800,61734362400,61718032800,61734362400,0,0,'GMT',],[61734362400,61749482400,61734366000,61749486000,3600,1,'IST',],[61749482400,61766416800,61749482400,61766416800,0,0,'GMT',],[61766416800,61780932000,61766420400,61780935600,3600,1,'IST',],[61780932000,61797866400,61780932000,61797866400,0,0,'GMT',],[61797866400,61812381600,61797870000,61812385200,3600,1,'IST',],[61812381600,61828711200,61812381600,61828711200,0,0,'GMT',],[61828711200,61843831200,61828714800,61843834800,3600,1,'IST',],[61843831200,61858951200,61843831200,61858951200,0,0,'GMT',],[61858951200,61877700000,61858954800,61877703600,3600,1,'IST',],[61877700000,61890400800,61877700000,61890400800,0,0,'GMT',],[61890400800,61909149600,61890404400,61909153200,3600,1,'IST',],[61909149600,61922455200,61909149600,61922455200,0,0,'GMT',],[61922455200,61940599200,61922458800,61940602800,3600,1,'IST',],[61940599200,61953300000,61940599200,61953300000,0,0,'GMT',],[61953300000,61972048800,61953303600,61972052400,3600,1,'IST',],[61972048800,61984749600,61972048800,61984749600,0,0,'GMT',],[61984749600,62003498400,61984753200,62003502000,3600,1,'IST',],[62003498400,62016199200,62003498400,62016199200,0,0,'GMT',],[62016199200,62034948000,62016202800,62034951600,3600,1,'IST',],[62034948000,62047648800,62034948000,62047648800,0,0,'GMT',],[62047648800,62067002400,62047652400,62067006000,3600,1,'IST',],[62067002400,62076679200,62067002400,62076679200,0,0,'GMT',],[62076679200,62098441200,62076682800,62098444800,3600,1,'IST',],[62098441200,62193405600,62098444800,62193409200,3600,0,'IST',],[62193405600,62205501600,62193405600,62205501600,0,0,'GMT',],[62205501600,62224855200,62205505200,62224858800,3600,1,'IST',],[62224855200,62236951200,62224855200,62236951200,0,0,'GMT',],[62236951200,62256304800,62236954800,62256308400,3600,1,'IST',],[62256304800,62268400800,62256304800,62268400800,0,0,'GMT',],[62268400800,62287754400,62268404400,62287758000,3600,1,'IST',],[62287754400,62299850400,62287754400,62299850400,0,0,'GMT',],[62299850400,62319204000,62299854000,62319207600,3600,1,'IST',],[62319204000,62331904800,62319204000,62331904800,0,0,'GMT',],[62331904800,62350653600,62331908400,62350657200,3600,1,'IST',],[62350653600,62363354400,62350653600,62363354400,0,0,'GMT',],[62363354400,62382103200,62363358000,62382106800,3600,1,'IST',],[62382103200,62394804000,62382103200,62394804000,0,0,'GMT',],[62394804000,62414157600,62394807600,62414161200,3600,1,'IST',],[62414157600,62426253600,62414157600,62426253600,0,0,'GMT',],[62426253600,62445607200,62426257200,62445610800,3600,1,'IST',],[62445607200,62457703200,62445607200,62457703200,0,0,'GMT',],[62457703200,62477056800,62457706800,62477060400,3600,1,'IST',],[62477056800,62490358800,62477056800,62490358800,0,0,'GMT',],[62490358800,62508502800,62490362400,62508506400,3600,1,'IST',],[62508502800,62521808400,62508502800,62521808400,0,0,'GMT',],[62521808400,62539952400,62521812000,62539956000,3600,1,'IST',],[62539952400,62553258000,62539952400,62553258000,0,0,'GMT',],[62553258000,62571402000,62553261600,62571405600,3600,1,'IST',],[62571402000,62584707600,62571402000,62584707600,0,0,'GMT',],[62584707600,62603456400,62584711200,62603460000,3600,1,'IST',],[62603456400,62616762000,62603456400,62616762000,0,0,'GMT',],[62616762000,62634906000,62616765600,62634909600,3600,1,'IST',],[62634906000,62648211600,62634906000,62648211600,0,0,'GMT',],[62648211600,62666355600,62648215200,62666359200,3600,1,'IST',],[62666355600,62679661200,62666355600,62679661200,0,0,'GMT',],[62679661200,62697805200,62679664800,62697808800,3600,1,'IST',],[62697805200,62711110800,62697805200,62711110800,0,0,'GMT',],[62711110800,62729254800,62711114400,62729258400,3600,1,'IST',],[62729254800,62742560400,62729254800,62742560400,0,0,'GMT',],[62742560400,62761309200,62742564000,62761312800,3600,1,'IST',],[62761309200,62774010000,62761309200,62774010000,0,0,'GMT',],[62774010000,62792758800,62774013600,62792762400,3600,1,'IST',],[62792758800,62806064400,62792758800,62806064400,0,0,'GMT',],[62806064400,62824208400,62806068000,62824212000,3600,1,'IST',],[62824208400,62837514000,62824208400,62837514000,0,0,'GMT',],[62837514000,62855658000,62837517600,62855661600,3600,1,'IST',],[62855658000,62868963600,62855658000,62868963600,0,0,'GMT',],[62868963600,62887107600,62868967200,62887111200,3600,1,'IST',],[62887107600,62900413200,62887107600,62900413200,0,0,'GMT',],[62900413200,62918557200,62900416800,62918560800,3600,1,'IST',],[62918557200,62931862800,62918557200,62931862800,0,0,'GMT',],[62931862800,62950006800,62931866400,62950010400,3600,1,'IST',],[62950006800,62956137600,62950006800,62956137600,0,0,'GMT',],[62956137600,62963917200,62956137600,62963917200,0,0,'GMT',],[62963917200,62982061200,62963920800,62982064800,3600,1,'IST',],[62982061200,62995366800,62982061200,62995366800,0,0,'GMT',],[62995366800,63013510800,62995370400,63013514400,3600,1,'IST',],[63013510800,63026816400,63013510800,63026816400,0,0,'GMT',],[63026816400,63044960400,63026820000,63044964000,3600,1,'IST',],[63044960400,63058266000,63044960400,63058266000,0,0,'GMT',],[63058266000,63077014800,63058269600,63077018400,3600,1,'IST',],[63077014800,63089715600,63077014800,63089715600,0,0,'GMT',],[63089715600,63108464400,63089719200,63108468000,3600,1,'IST',],[63108464400,63121165200,63108464400,63121165200,0,0,'GMT',],[63121165200,63139914000,63121168800,63139917600,3600,1,'IST',],[63139914000,63153219600,63139914000,63153219600,0,0,'GMT',],[63153219600,63171363600,63153223200,63171367200,3600,1,'IST',],[63171363600,63184669200,63171363600,63184669200,0,0,'GMT',],[63184669200,63202813200,63184672800,63202816800,3600,1,'IST',],[63202813200,63216118800,63202813200,63216118800,0,0,'GMT',],[63216118800,63234867600,63216122400,63234871200,3600,1,'IST',],[63234867600,63247568400,63234867600,63247568400,0,0,'GMT',],[63247568400,63266317200,63247572000,63266320800,3600,1,'IST',],[63266317200,63279018000,63266317200,63279018000,0,0,'GMT',],[63279018000,63297766800,63279021600,63297770400,3600,1,'IST',],[63297766800,63310467600,63297766800,63310467600,0,0,'GMT',],[63310467600,63329216400,63310471200,63329220000,3600,1,'IST',],[63329216400,63342522000,63329216400,63342522000,0,0,'GMT',],[63342522000,63360666000,63342525600,63360669600,3600,1,'IST',],[63360666000,63373971600,63360666000,63373971600,0,0,'GMT',],[63373971600,63392115600,63373975200,63392119200,3600,1,'IST',],[63392115600,63405421200,63392115600,63405421200,0,0,'GMT',],[63405421200,63424170000,63405424800,63424173600,3600,1,'IST',],[63424170000,63436870800,63424170000,63436870800,0,0,'GMT',],[63436870800,63455619600,63436874400,63455623200,3600,1,'IST',],[63455619600,63468320400,63455619600,63468320400,0,0,'GMT',],[63468320400,63487069200,63468324000,63487072800,3600,1,'IST',],[63487069200,63500374800,63487069200,63500374800,0,0,'GMT',],[63500374800,63518518800,63500378400,63518522400,3600,1,'IST',],[63518518800,63531824400,63518518800,63531824400,0,0,'GMT',],[63531824400,63549968400,63531828000,63549972000,3600,1,'IST',],[63549968400,63563274000,63549968400,63563274000,0,0,'GMT',],[63563274000,63581418000,63563277600,63581421600,3600,1,'IST',],[63581418000,63594723600,63581418000,63594723600,0,0,'GMT',],[63594723600,63613472400,63594727200,63613476000,3600,1,'IST',],[63613472400,63626173200,63613472400,63626173200,0,0,'GMT',],[63626173200,63644922000,63626176800,63644925600,3600,1,'IST',],[63644922000,63657622800,63644922000,63657622800,0,0,'GMT',],[63657622800,63676371600,63657626400,63676375200,3600,1,'IST',],[63676371600,63689677200,63676371600,63689677200,0,0,'GMT',],[63689677200,63707821200,63689680800,63707824800,3600,1,'IST',],[63707821200,63721126800,63707821200,63721126800,0,0,'GMT',],[63721126800,63739270800,63721130400,63739274400,3600,1,'IST',],[63739270800,63752576400,63739270800,63752576400,0,0,'GMT',],[63752576400,63771325200,63752580000,63771328800,3600,1,'IST',],[63771325200,63784026000,63771325200,63784026000,0,0,'GMT',],[63784026000,63802774800,63784029600,63802778400,3600,1,'IST',],[63802774800,63815475600,63802774800,63815475600,0,0,'GMT',],[63815475600,63834224400,63815479200,63834228000,3600,1,'IST',],[63834224400,63847530000,63834224400,63847530000,0,0,'GMT',],[63847530000,63865674000,63847533600,63865677600,3600,1,'IST',],[63865674000,63878979600,63865674000,63878979600,0,0,'GMT',],[63878979600,63897123600,63878983200,63897127200,3600,1,'IST',],[63897123600,63910429200,63897123600,63910429200,0,0,'GMT',],[63910429200,63928573200,63910432800,63928576800,3600,1,'IST',],[63928573200,63941878800,63928573200,63941878800,0,0,'GMT',],[63941878800,63960627600,63941882400,63960631200,3600,1,'IST',],];sub olson_version {'2016a'}sub has_dst_changes {103}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {0}my$last_observance=bless({'format'=>'GMT/IST','gmtoff'=>'0:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>728659,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>728659,'utc_rd_secs'=>0,'utc_year'=>1997 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>0,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>728659,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>728659,'utc_rd_secs'=>0,'utc_year'=>1997 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_DUBLIN

$fatpacked{"DateTime/TimeZone/Europe/Gibraltar.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_GIBRALTAR';
  package DateTime::TimeZone::Europe::Gibraltar;$DateTime::TimeZone::Europe::Gibraltar::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Gibraltar::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59314033284,DateTime::TimeZone::NEG_INFINITY,59314032000,-1284,0,'LMT',],[59314033284,60443719200,59314033284,60443719200,0,0,'GMT',],[60443719200,60455210400,60443722800,60455214000,3600,1,'BST',],[60455210400,60471540000,60455210400,60471540000,0,0,'GMT',],[60471540000,60485536800,60471543600,60485540400,3600,1,'BST',],[60485536800,60501780000,60485536800,60501780000,0,0,'GMT',],[60501780000,60518196000,60501783600,60518199600,3600,1,'BST',],[60518196000,60533834400,60518196000,60533834400,0,0,'GMT',],[60533834400,60549645600,60533838000,60549649200,3600,1,'BST',],[60549645600,60565284000,60549645600,60565284000,0,0,'GMT',],[60565284000,60583514400,60565287600,60583518000,3600,1,'BST',],[60583514400,60597338400,60583514400,60597338400,0,0,'GMT',],[60597338400,60613149600,60597342000,60613153200,3600,1,'BST',],[60613149600,60628183200,60613149600,60628183200,0,0,'GMT',],[60628183200,60645117600,60628186800,60645121200,3600,1,'BST',],[60645117600,60662052000,60645117600,60662052000,0,0,'GMT',],[60662052000,60674752800,60662055600,60674756400,3600,1,'BST',],[60674752800,60692896800,60674752800,60692896800,0,0,'GMT',],[60692896800,60706807200,60692900400,60706810800,3600,1,'BST',],[60706807200,60724951200,60706807200,60724951200,0,0,'GMT',],[60724951200,60739466400,60724954800,60739470000,3600,1,'BST',],[60739466400,60756400800,60739466400,60756400800,0,0,'GMT',],[60756400800,60770916000,60756404400,60770919600,3600,1,'BST',],[60770916000,60787245600,60770916000,60787245600,0,0,'GMT',],[60787245600,60802365600,60787249200,60802369200,3600,1,'BST',],[60802365600,60819904800,60802365600,60819904800,0,0,'GMT',],[60819904800,60834420000,60819908400,60834423600,3600,1,'BST',],[60834420000,60851354400,60834420000,60851354400,0,0,'GMT',],[60851354400,60865869600,60851358000,60865873200,3600,1,'BST',],[60865869600,60882199200,60865869600,60882199200,0,0,'GMT',],[60882199200,60897319200,60882202800,60897322800,3600,1,'BST',],[60897319200,60914253600,60897319200,60914253600,0,0,'GMT',],[60914253600,60928768800,60914257200,60928772400,3600,1,'BST',],[60928768800,60945703200,60928768800,60945703200,0,0,'GMT',],[60945703200,60960218400,60945706800,60960222000,3600,1,'BST',],[60960218400,60976548000,60960218400,60976548000,0,0,'GMT',],[60976548000,60992272800,60976551600,60992276400,3600,1,'BST',],[60992272800,61009207200,60992272800,61009207200,0,0,'GMT',],[61009207200,61023722400,61009210800,61023726000,3600,1,'BST',],[61023722400,61040052000,61023722400,61040052000,0,0,'GMT',],[61040052000,61055172000,61040055600,61055175600,3600,1,'BST',],[61055172000,61072106400,61055172000,61072106400,0,0,'GMT',],[61072106400,61086621600,61072110000,61086625200,3600,1,'BST',],[61086621600,61103556000,61086621600,61103556000,0,0,'GMT',],[61103556000,61118071200,61103559600,61118074800,3600,1,'BST',],[61118071200,61134400800,61118071200,61134400800,0,0,'GMT',],[61134400800,61149520800,61134404400,61149524400,3600,1,'BST',],[61149520800,61166455200,61149520800,61166455200,0,0,'GMT',],[61166455200,61185204000,61166458800,61185207600,3600,1,'BST',],[61185204000,61193671200,61185204000,61193671200,0,0,'GMT',],[61193671200,61231165200,61193674800,61231168800,3600,1,'BST',],[61231165200,61239632400,61231172400,61239639600,7200,1,'BDST',],[61239632400,61260195600,61239636000,61260199200,3600,1,'BST',],[61260195600,61271082000,61260202800,61271089200,7200,1,'BDST',],[61271082000,61291645200,61271085600,61291648800,3600,1,'BST',],[61291645200,61303136400,61291652400,61303143600,7200,1,'BDST',],[61303136400,61323094800,61303140000,61323098400,3600,1,'BST',],[61323094800,61337610000,61323102000,61337617200,7200,1,'BDST',],[61337610000,61354630800,61337613600,61354634400,3600,1,'BST',],[61354630800,61363616400,61354638000,61363623600,7200,1,'BDST',],[61363616400,61370877600,61363620000,61370881200,3600,1,'BST',],[61370877600,61387207200,61370877600,61387207200,0,0,'GMT',],[61387207200,61402327200,61387210800,61402330800,3600,1,'BST',],[61402327200,61416237600,61402327200,61416237600,0,0,'GMT',],[61416237600,61418653200,61416241200,61418656800,3600,1,'BST',],[61418653200,61428934800,61418660400,61428942000,7200,1,'BDST',],[61428934800,61436196000,61428938400,61436199600,3600,1,'BST',],[61436196000,61447687200,61436196000,61447687200,0,0,'GMT',],[61447687200,61467645600,61447690800,61467649200,3600,1,'BST',],[61467645600,61480951200,61467645600,61480951200,0,0,'GMT',],[61480951200,61499095200,61480954800,61499098800,3600,1,'BST',],[61499095200,61513610400,61499095200,61513610400,0,0,'GMT',],[61513610400,61529940000,61513614000,61529943600,3600,1,'BST',],[61529940000,61545060000,61529940000,61545060000,0,0,'GMT',],[61545060000,61561389600,61545063600,61561393200,3600,1,'BST',],[61561389600,61577114400,61561389600,61577114400,0,0,'GMT',],[61577114400,61593444000,61577118000,61593447600,3600,1,'BST',],[61593444000,61608564000,61593444000,61608564000,0,0,'GMT',],[61608564000,61623079200,61608567600,61623082800,3600,1,'BST',],[61623079200,61639408800,61623079200,61639408800,0,0,'GMT',],[61639408800,61654528800,61639412400,61654532400,3600,1,'BST',],[61654528800,61671463200,61654528800,61671463200,0,0,'GMT',],[61671463200,61685978400,61671466800,61685982000,3600,1,'BST',],[61685978400,61703517600,61685978400,61703517600,0,0,'GMT',],[61703517600,61718032800,61703521200,61718036400,3600,1,'BST',],[61718032800,61734362400,61718032800,61734362400,0,0,'GMT',],[61734362400,62514370800,61734366000,62514374400,3600,0,'CET',],[62514370800,62521808400,62514374400,62521812000,3600,0,'CET',],[62521808400,62537533200,62521815600,62537540400,7200,1,'CEST',],[62537533200,62553258000,62537536800,62553261600,3600,0,'CET',],[62553258000,62568982800,62553265200,62568990000,7200,1,'CEST',],[62568982800,62584707600,62568986400,62584711200,3600,0,'CET',],[62584707600,62601037200,62584714800,62601044400,7200,1,'CEST',],[62601037200,62616762000,62601040800,62616765600,3600,0,'CET',],[62616762000,62632486800,62616769200,62632494000,7200,1,'CEST',],[62632486800,62648211600,62632490400,62648215200,3600,0,'CET',],[62648211600,62663936400,62648218800,62663943600,7200,1,'CEST',],[62663936400,62679661200,62663940000,62679664800,3600,0,'CET',],[62679661200,62695386000,62679668400,62695393200,7200,1,'CEST',],[62695386000,62711110800,62695389600,62711114400,3600,0,'CET',],[62711110800,62726835600,62711118000,62726842800,7200,1,'CEST',],[62726835600,62742560400,62726839200,62742564000,3600,0,'CET',],[62742560400,62758285200,62742567600,62758292400,7200,1,'CEST',],[62758285200,62774010000,62758288800,62774013600,3600,0,'CET',],[62774010000,62790339600,62774017200,62790346800,7200,1,'CEST',],[62790339600,62806064400,62790343200,62806068000,3600,0,'CET',],[62806064400,62821789200,62806071600,62821796400,7200,1,'CEST',],[62821789200,62837514000,62821792800,62837517600,3600,0,'CET',],[62837514000,62853238800,62837521200,62853246000,7200,1,'CEST',],[62853238800,62868963600,62853242400,62868967200,3600,0,'CET',],[62868963600,62884688400,62868970800,62884695600,7200,1,'CEST',],[62884688400,62900413200,62884692000,62900416800,3600,0,'CET',],[62900413200,62916138000,62900420400,62916145200,7200,1,'CEST',],[62916138000,62931862800,62916141600,62931866400,3600,0,'CET',],[62931862800,62947587600,62931870000,62947594800,7200,1,'CEST',],[62947587600,62963917200,62947591200,62963920800,3600,0,'CET',],[62963917200,62982061200,62963924400,62982068400,7200,1,'CEST',],[62982061200,62995366800,62982064800,62995370400,3600,0,'CET',],[62995366800,63013510800,62995374000,63013518000,7200,1,'CEST',],[63013510800,63026816400,63013514400,63026820000,3600,0,'CET',],[63026816400,63044960400,63026823600,63044967600,7200,1,'CEST',],[63044960400,63058266000,63044964000,63058269600,3600,0,'CET',],[63058266000,63077014800,63058273200,63077022000,7200,1,'CEST',],[63077014800,63089715600,63077018400,63089719200,3600,0,'CET',],[63089715600,63108464400,63089722800,63108471600,7200,1,'CEST',],[63108464400,63121165200,63108468000,63121168800,3600,0,'CET',],[63121165200,63139914000,63121172400,63139921200,7200,1,'CEST',],[63139914000,63153219600,63139917600,63153223200,3600,0,'CET',],[63153219600,63171363600,63153226800,63171370800,7200,1,'CEST',],[63171363600,63184669200,63171367200,63184672800,3600,0,'CET',],[63184669200,63202813200,63184676400,63202820400,7200,1,'CEST',],[63202813200,63216118800,63202816800,63216122400,3600,0,'CET',],[63216118800,63234867600,63216126000,63234874800,7200,1,'CEST',],[63234867600,63247568400,63234871200,63247572000,3600,0,'CET',],[63247568400,63266317200,63247575600,63266324400,7200,1,'CEST',],[63266317200,63279018000,63266320800,63279021600,3600,0,'CET',],[63279018000,63297766800,63279025200,63297774000,7200,1,'CEST',],[63297766800,63310467600,63297770400,63310471200,3600,0,'CET',],[63310467600,63329216400,63310474800,63329223600,7200,1,'CEST',],[63329216400,63342522000,63329220000,63342525600,3600,0,'CET',],[63342522000,63360666000,63342529200,63360673200,7200,1,'CEST',],[63360666000,63373971600,63360669600,63373975200,3600,0,'CET',],[63373971600,63392115600,63373978800,63392122800,7200,1,'CEST',],[63392115600,63405421200,63392119200,63405424800,3600,0,'CET',],[63405421200,63424170000,63405428400,63424177200,7200,1,'CEST',],[63424170000,63436870800,63424173600,63436874400,3600,0,'CET',],[63436870800,63455619600,63436878000,63455626800,7200,1,'CEST',],[63455619600,63468320400,63455623200,63468324000,3600,0,'CET',],[63468320400,63487069200,63468327600,63487076400,7200,1,'CEST',],[63487069200,63500374800,63487072800,63500378400,3600,0,'CET',],[63500374800,63518518800,63500382000,63518526000,7200,1,'CEST',],[63518518800,63531824400,63518522400,63531828000,3600,0,'CET',],[63531824400,63549968400,63531831600,63549975600,7200,1,'CEST',],[63549968400,63563274000,63549972000,63563277600,3600,0,'CET',],[63563274000,63581418000,63563281200,63581425200,7200,1,'CEST',],[63581418000,63594723600,63581421600,63594727200,3600,0,'CET',],[63594723600,63613472400,63594730800,63613479600,7200,1,'CEST',],[63613472400,63626173200,63613476000,63626176800,3600,0,'CET',],[63626173200,63644922000,63626180400,63644929200,7200,1,'CEST',],[63644922000,63657622800,63644925600,63657626400,3600,0,'CET',],[63657622800,63676371600,63657630000,63676378800,7200,1,'CEST',],[63676371600,63689677200,63676375200,63689680800,3600,0,'CET',],[63689677200,63707821200,63689684400,63707828400,7200,1,'CEST',],[63707821200,63721126800,63707824800,63721130400,3600,0,'CET',],[63721126800,63739270800,63721134000,63739278000,7200,1,'CEST',],[63739270800,63752576400,63739274400,63752580000,3600,0,'CET',],[63752576400,63771325200,63752583600,63771332400,7200,1,'CEST',],[63771325200,63784026000,63771328800,63784029600,3600,0,'CET',],[63784026000,63802774800,63784033200,63802782000,7200,1,'CEST',],[63802774800,63815475600,63802778400,63815479200,3600,0,'CET',],[63815475600,63834224400,63815482800,63834231600,7200,1,'CEST',],[63834224400,63847530000,63834228000,63847533600,3600,0,'CET',],[63847530000,63865674000,63847537200,63865681200,7200,1,'CEST',],[63865674000,63878979600,63865677600,63878983200,3600,0,'CET',],[63878979600,63897123600,63878986800,63897130800,7200,1,'CEST',],[63897123600,63910429200,63897127200,63910432800,3600,0,'CET',],[63910429200,63928573200,63910436400,63928580400,7200,1,'CEST',],[63928573200,63941878800,63928576800,63941882400,3600,0,'CET',],[63941878800,63960627600,63941886000,63960634800,7200,1,'CEST',],];sub olson_version {'2016a'}sub has_dst_changes {94}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {3600}my$last_observance=bless({'format'=>'CE%sT','gmtoff'=>'1:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>723546,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>723546,'utc_rd_secs'=>0,'utc_year'=>1983 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>3600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>723545,'local_rd_secs'=>82800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>723545,'utc_rd_secs'=>82800,'utc_year'=>1982 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_GIBRALTAR

$fatpacked{"DateTime/TimeZone/Europe/Helsinki.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_HELSINKI';
  package DateTime::TimeZone::Europe::Helsinki;$DateTime::TimeZone::Europe::Helsinki::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Helsinki::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59245424411,DateTime::TimeZone::NEG_INFINITY,59245430400,5989,0,'LMT',],[59245424411,60599744411,59245430400,60599750400,5989,0,'HMT',],[60599744411,61260012000,60599751611,61260019200,7200,0,'EET',],[61260012000,61275909600,61260022800,61275920400,10800,1,'EEST',],[61275909600,62490355200,61275916800,62490362400,7200,0,'EET',],[62490355200,62506080000,62490366000,62506090800,10800,1,'EEST',],[62506080000,62521804800,62506087200,62521812000,7200,0,'EET',],[62521804800,62537529600,62521815600,62537540400,10800,1,'EEST',],[62537529600,62545903200,62537536800,62545910400,7200,0,'EET',],[62545903200,62553258000,62545910400,62553265200,7200,0,'EET',],[62553258000,62568982800,62553268800,62568993600,10800,1,'EEST',],[62568982800,62584707600,62568990000,62584714800,7200,0,'EET',],[62584707600,62601037200,62584718400,62601048000,10800,1,'EEST',],[62601037200,62616762000,62601044400,62616769200,7200,0,'EET',],[62616762000,62632486800,62616772800,62632497600,10800,1,'EEST',],[62632486800,62648211600,62632494000,62648218800,7200,0,'EET',],[62648211600,62663936400,62648222400,62663947200,10800,1,'EEST',],[62663936400,62679661200,62663943600,62679668400,7200,0,'EET',],[62679661200,62695386000,62679672000,62695396800,10800,1,'EEST',],[62695386000,62711110800,62695393200,62711118000,7200,0,'EET',],[62711110800,62726835600,62711121600,62726846400,10800,1,'EEST',],[62726835600,62742560400,62726842800,62742567600,7200,0,'EET',],[62742560400,62758285200,62742571200,62758296000,10800,1,'EEST',],[62758285200,62774010000,62758292400,62774017200,7200,0,'EET',],[62774010000,62790339600,62774020800,62790350400,10800,1,'EEST',],[62790339600,62806064400,62790346800,62806071600,7200,0,'EET',],[62806064400,62821789200,62806075200,62821800000,10800,1,'EEST',],[62821789200,62837514000,62821796400,62837521200,7200,0,'EET',],[62837514000,62853238800,62837524800,62853249600,10800,1,'EEST',],[62853238800,62868963600,62853246000,62868970800,7200,0,'EET',],[62868963600,62884688400,62868974400,62884699200,10800,1,'EEST',],[62884688400,62900413200,62884695600,62900420400,7200,0,'EET',],[62900413200,62916138000,62900424000,62916148800,10800,1,'EEST',],[62916138000,62931862800,62916145200,62931870000,7200,0,'EET',],[62931862800,62947587600,62931873600,62947598400,10800,1,'EEST',],[62947587600,62963917200,62947594800,62963924400,7200,0,'EET',],[62963917200,62982061200,62963928000,62982072000,10800,1,'EEST',],[62982061200,62995366800,62982068400,62995374000,7200,0,'EET',],[62995366800,63013510800,62995377600,63013521600,10800,1,'EEST',],[63013510800,63026816400,63013518000,63026823600,7200,0,'EET',],[63026816400,63044960400,63026827200,63044971200,10800,1,'EEST',],[63044960400,63058266000,63044967600,63058273200,7200,0,'EET',],[63058266000,63077014800,63058276800,63077025600,10800,1,'EEST',],[63077014800,63089715600,63077022000,63089722800,7200,0,'EET',],[63089715600,63108464400,63089726400,63108475200,10800,1,'EEST',],[63108464400,63121165200,63108471600,63121172400,7200,0,'EET',],[63121165200,63139914000,63121176000,63139924800,10800,1,'EEST',],[63139914000,63153219600,63139921200,63153226800,7200,0,'EET',],[63153219600,63171363600,63153230400,63171374400,10800,1,'EEST',],[63171363600,63184669200,63171370800,63184676400,7200,0,'EET',],[63184669200,63202813200,63184680000,63202824000,10800,1,'EEST',],[63202813200,63216118800,63202820400,63216126000,7200,0,'EET',],[63216118800,63234867600,63216129600,63234878400,10800,1,'EEST',],[63234867600,63247568400,63234874800,63247575600,7200,0,'EET',],[63247568400,63266317200,63247579200,63266328000,10800,1,'EEST',],[63266317200,63279018000,63266324400,63279025200,7200,0,'EET',],[63279018000,63297766800,63279028800,63297777600,10800,1,'EEST',],[63297766800,63310467600,63297774000,63310474800,7200,0,'EET',],[63310467600,63329216400,63310478400,63329227200,10800,1,'EEST',],[63329216400,63342522000,63329223600,63342529200,7200,0,'EET',],[63342522000,63360666000,63342532800,63360676800,10800,1,'EEST',],[63360666000,63373971600,63360673200,63373978800,7200,0,'EET',],[63373971600,63392115600,63373982400,63392126400,10800,1,'EEST',],[63392115600,63405421200,63392122800,63405428400,7200,0,'EET',],[63405421200,63424170000,63405432000,63424180800,10800,1,'EEST',],[63424170000,63436870800,63424177200,63436878000,7200,0,'EET',],[63436870800,63455619600,63436881600,63455630400,10800,1,'EEST',],[63455619600,63468320400,63455626800,63468327600,7200,0,'EET',],[63468320400,63487069200,63468331200,63487080000,10800,1,'EEST',],[63487069200,63500374800,63487076400,63500382000,7200,0,'EET',],[63500374800,63518518800,63500385600,63518529600,10800,1,'EEST',],[63518518800,63531824400,63518526000,63531831600,7200,0,'EET',],[63531824400,63549968400,63531835200,63549979200,10800,1,'EEST',],[63549968400,63563274000,63549975600,63563281200,7200,0,'EET',],[63563274000,63581418000,63563284800,63581428800,10800,1,'EEST',],[63581418000,63594723600,63581425200,63594730800,7200,0,'EET',],[63594723600,63613472400,63594734400,63613483200,10800,1,'EEST',],[63613472400,63626173200,63613479600,63626180400,7200,0,'EET',],[63626173200,63644922000,63626184000,63644932800,10800,1,'EEST',],[63644922000,63657622800,63644929200,63657630000,7200,0,'EET',],[63657622800,63676371600,63657633600,63676382400,10800,1,'EEST',],[63676371600,63689677200,63676378800,63689684400,7200,0,'EET',],[63689677200,63707821200,63689688000,63707832000,10800,1,'EEST',],[63707821200,63721126800,63707828400,63721134000,7200,0,'EET',],[63721126800,63739270800,63721137600,63739281600,10800,1,'EEST',],[63739270800,63752576400,63739278000,63752583600,7200,0,'EET',],[63752576400,63771325200,63752587200,63771336000,10800,1,'EEST',],[63771325200,63784026000,63771332400,63784033200,7200,0,'EET',],[63784026000,63802774800,63784036800,63802785600,10800,1,'EEST',],[63802774800,63815475600,63802782000,63815482800,7200,0,'EET',],[63815475600,63834224400,63815486400,63834235200,10800,1,'EEST',],[63834224400,63847530000,63834231600,63847537200,7200,0,'EET',],[63847530000,63865674000,63847540800,63865684800,10800,1,'EEST',],[63865674000,63878979600,63865681200,63878986800,7200,0,'EET',],[63878979600,63897123600,63878990400,63897134400,10800,1,'EEST',],[63897123600,63910429200,63897130800,63910436400,7200,0,'EET',],[63910429200,63928573200,63910440000,63928584000,10800,1,'EEST',],[63928573200,63941878800,63928580400,63941886000,7200,0,'EET',],[63941878800,63960627600,63941889600,63960638400,10800,1,'EEST',],];sub olson_version {'2016a'}sub has_dst_changes {48}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {7200}my$last_observance=bless({'format'=>'EE%sT','gmtoff'=>'2:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>723911,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>723911,'utc_rd_secs'=>0,'utc_year'=>1984 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>7200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>723910,'local_rd_secs'=>79200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>723910,'utc_rd_secs'=>79200,'utc_year'=>1983 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_HELSINKI

$fatpacked{"DateTime/TimeZone/Europe/Istanbul.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_ISTANBUL';
  package DateTime::TimeZone::Europe::Istanbul;$DateTime::TimeZone::Europe::Istanbul::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Istanbul::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59295535448,DateTime::TimeZone::NEG_INFINITY,59295542400,6952,0,'LMT',],[59295535448,60265807384,59295542464,60265814400,7016,0,'IMT',],[60265807384,60441976800,60265814584,60441984000,7200,0,'EET',],[60441976800,60455192400,60441987600,60455203200,10800,1,'EEST',],[60455192400,60565269600,60455199600,60565276800,7200,0,'EET',],[60565269600,60583496400,60565280400,60583507200,10800,1,'EEST',],[60583496400,60597324000,60583503600,60597331200,7200,0,'EET',],[60597324000,60613131600,60597334800,60613142400,10800,1,'EEST',],[60613131600,60628168800,60613138800,60628176000,7200,0,'EET',],[60628168800,60645099600,60628179600,60645110400,10800,1,'EEST',],[60645099600,60695474400,60645106800,60695481600,7200,0,'EET',],[60695474400,60707653200,60695485200,60707664000,10800,1,'EEST',],[60707653200,60725973600,60707660400,60725980800,7200,0,'EET',],[60725973600,60739189200,60725984400,60739200000,10800,1,'EEST',],[60739189200,61204543200,60739196400,61204550400,7200,0,'EET',],[61204543200,61212920400,61204554000,61212931200,10800,1,'EEST',],[61212920400,61217848800,61212927600,61217856000,7200,0,'EET',],[61217848800,61243246800,61217859600,61243257600,10800,1,'EEST',],[61243246800,61259839200,61243254000,61259846400,7200,0,'EET',],[61259839200,61278325200,61259850000,61278336000,10800,1,'EEST',],[61278325200,61354620000,61278332400,61354627200,7200,0,'EET',],[61354620000,61370946000,61354630800,61370956800,10800,1,'EEST',],[61370946000,61391340000,61370953200,61391347200,7200,0,'EET',],[61391340000,61401877200,61391350800,61401888000,10800,1,'EEST',],[61401877200,61419247200,61401884400,61419254400,7200,0,'EET',],[61419247200,61433758800,61419258000,61433769600,10800,1,'EEST',],[61433758800,61450696800,61433766000,61450704000,7200,0,'EET',],[61450696800,61465208400,61450707600,61465219200,10800,1,'EEST',],[61465208400,61481541600,61465215600,61481548800,7200,0,'EET',],[61481541600,61496658000,61481552400,61496668800,10800,1,'EEST',],[61496658000,61513855200,61496665200,61513862400,7200,0,'EET',],[61513855200,61528712400,61513866000,61528723200,10800,1,'EEST',],[61528712400,61545650400,61528719600,61545657600,7200,0,'EET',],[61545650400,61560248400,61545661200,61560259200,10800,1,'EEST',],[61560248400,61900063200,61560255600,61900070400,7200,0,'EET',],[61900063200,61907403600,61900074000,61907414400,10800,1,'EEST',],[61907403600,61957951200,61907410800,61957958400,7200,0,'EET',],[61957951200,61969957200,61957962000,61969968000,10800,1,'EEST',],[61969957200,62146216800,61969964400,62146224000,7200,0,'EET',],[62146216800,62159518800,62146227600,62159529600,10800,1,'EEST',],[62159518800,62177666400,62159526000,62177673600,7200,0,'EET',],[62177666400,62190968400,62177677200,62190979200,10800,1,'EEST',],[62190968400,62209720800,62190975600,62209728000,7200,0,'EET',],[62209720800,62223022800,62209731600,62223033600,10800,1,'EEST',],[62223022800,62243593200,62223030000,62243600400,7200,0,'EET',],[62243593200,62256902400,62243604000,62256913200,10800,1,'EEST',],[62256902400,62269603200,62256909600,62269610400,7200,0,'EET',],[62269603200,62288359200,62269614000,62288370000,10800,1,'EEST',],[62288359200,62301045600,62288366400,62301052800,7200,0,'EET',],[62301045600,62319186000,62301056400,62319196800,10800,1,'EEST',],[62319186000,62338111200,62319193200,62338118400,7200,0,'EET',],[62338111200,62351240400,62338122000,62351251200,10800,1,'EEST',],[62351240400,62364549600,62351247600,62364556800,7200,0,'EET',],[62364549600,62381480400,62364560400,62381491200,10800,1,'EEST',],[62381480400,62395999200,62381487600,62396006400,7200,0,'EET',],[62395999200,62412930000,62396010000,62412940800,10800,1,'EEST',],[62412930000,62427452400,62412944400,62427466800,14400,1,'TRST',],[62427452400,62444462400,62427466800,62444476800,14400,1,'TRST',],[62444462400,62459510400,62444473200,62459521200,10800,0,'TRT',],[62459510400,62475912000,62459524800,62475926400,14400,1,'TRST',],[62475912000,62490355200,62475922800,62490366000,10800,0,'TRT',],[62490355200,62507361600,62490369600,62507376000,14400,1,'TRST',],[62507361600,62521804800,62507372400,62521815600,10800,0,'TRT',],[62521804800,62538811200,62521819200,62538825600,14400,1,'TRST',],[62538811200,62564130000,62538822000,62564140800,10800,0,'TRT',],[62564130000,62569569600,62564144400,62569584000,14400,1,'TRST',],[62569569600,62618475600,62569580400,62618486400,10800,0,'TRT',],[62618475600,62632386000,62618486400,62632396800,10800,1,'EEST',],[62632386000,62648208000,62632393200,62648215200,7200,0,'EET',],[62648208000,62663932800,62648218800,62663943600,10800,1,'EEST',],[62663932800,62679657600,62663940000,62679664800,7200,0,'EET',],[62679657600,62695382400,62679668400,62695393200,10800,1,'EEST',],[62695382400,62711107200,62695389600,62711114400,7200,0,'EET',],[62711107200,62726832000,62711118000,62726842800,10800,1,'EEST',],[62726832000,62742556800,62726839200,62742564000,7200,0,'EET',],[62742556800,62758281600,62742567600,62758292400,10800,1,'EEST',],[62758281600,62774006400,62758288800,62774013600,7200,0,'EET',],[62774006400,62790336000,62774017200,62790346800,10800,1,'EEST',],[62790336000,62806057200,62790343200,62806064400,7200,0,'EET',],[62806057200,62821782000,62806068000,62821792800,10800,1,'EEST',],[62821782000,62837506800,62821789200,62837514000,7200,0,'EET',],[62837506800,62853231600,62837517600,62853242400,10800,1,'EEST',],[62853231600,62868956400,62853238800,62868963600,7200,0,'EET',],[62868956400,62884681200,62868967200,62884692000,10800,1,'EEST',],[62884681200,62900406000,62884688400,62900413200,7200,0,'EET',],[62900406000,62916130800,62900416800,62916141600,10800,1,'EEST',],[62916130800,62931855600,62916138000,62931862800,7200,0,'EET',],[62931855600,62947580400,62931866400,62947591200,10800,1,'EEST',],[62947580400,62963910000,62947587600,62963917200,7200,0,'EET',],[62963910000,62982054000,62963920800,62982064800,10800,1,'EEST',],[62982054000,62995359600,62982061200,62995366800,7200,0,'EET',],[62995359600,63013503600,62995370400,63013514400,10800,1,'EEST',],[63013503600,63026809200,63013510800,63026816400,7200,0,'EET',],[63026809200,63044953200,63026820000,63044964000,10800,1,'EEST',],[63044953200,63058258800,63044960400,63058266000,7200,0,'EET',],[63058258800,63077007600,63058269600,63077018400,10800,1,'EEST',],[63077007600,63089708400,63077014800,63089715600,7200,0,'EET',],[63089708400,63108457200,63089719200,63108468000,10800,1,'EEST',],[63108457200,63121158000,63108464400,63121165200,7200,0,'EET',],[63121158000,63139906800,63121168800,63139917600,10800,1,'EEST',],[63139906800,63153212400,63139914000,63153219600,7200,0,'EET',],[63153212400,63171356400,63153223200,63171367200,10800,1,'EEST',],[63171356400,63184662000,63171363600,63184669200,7200,0,'EET',],[63184662000,63202806000,63184672800,63202816800,10800,1,'EEST',],[63202806000,63216111600,63202813200,63216118800,7200,0,'EET',],[63216111600,63234860400,63216122400,63234871200,10800,1,'EEST',],[63234860400,63247561200,63234867600,63247568400,7200,0,'EET',],[63247561200,63266310000,63247572000,63266320800,10800,1,'EEST',],[63266310000,63279010800,63266317200,63279018000,7200,0,'EET',],[63279010800,63297759600,63279021600,63297770400,10800,1,'EEST',],[63297759600,63303285600,63297766800,63303292800,7200,0,'EET',],[63303285600,63310467600,63303292800,63310474800,7200,0,'EET',],[63310467600,63329216400,63310478400,63329227200,10800,1,'EEST',],[63329216400,63342522000,63329223600,63342529200,7200,0,'EET',],[63342522000,63360666000,63342532800,63360676800,10800,1,'EEST',],[63360666000,63373971600,63360673200,63373978800,7200,0,'EET',],[63373971600,63392115600,63373982400,63392126400,10800,1,'EEST',],[63392115600,63405421200,63392122800,63405428400,7200,0,'EET',],[63405421200,63424170000,63405432000,63424180800,10800,1,'EEST',],[63424170000,63436870800,63424177200,63436878000,7200,0,'EET',],[63436870800,63436957200,63436878000,63436964400,7200,0,'EET',],[63436957200,63455619600,63436968000,63455630400,10800,1,'EEST',],[63455619600,63468320400,63455626800,63468327600,7200,0,'EET',],[63468320400,63487069200,63468331200,63487080000,10800,1,'EEST',],[63487069200,63500374800,63487076400,63500382000,7200,0,'EET',],[63500374800,63518518800,63500385600,63518529600,10800,1,'EEST',],[63518518800,63531824400,63518526000,63531831600,7200,0,'EET',],[63531824400,63531910800,63531831600,63531918000,7200,0,'EET',],[63531910800,63549968400,63531921600,63549979200,10800,1,'EEST',],[63549968400,63563274000,63549975600,63563281200,7200,0,'EET',],[63563274000,63581418000,63563284800,63581428800,10800,1,'EEST',],[63581418000,63582627600,63581428800,63582638400,10800,1,'EEST',],[63582627600,63594723600,63582634800,63594730800,7200,0,'EET',],[63594723600,63613472400,63594734400,63613483200,10800,1,'EEST',],[63613472400,63626173200,63613479600,63626180400,7200,0,'EET',],[63626173200,63644922000,63626184000,63644932800,10800,1,'EEST',],[63644922000,63657622800,63644929200,63657630000,7200,0,'EET',],[63657622800,63676371600,63657633600,63676382400,10800,1,'EEST',],[63676371600,63689677200,63676378800,63689684400,7200,0,'EET',],[63689677200,63707821200,63689688000,63707832000,10800,1,'EEST',],[63707821200,63721126800,63707828400,63721134000,7200,0,'EET',],[63721126800,63739270800,63721137600,63739281600,10800,1,'EEST',],[63739270800,63752576400,63739278000,63752583600,7200,0,'EET',],[63752576400,63771325200,63752587200,63771336000,10800,1,'EEST',],[63771325200,63784026000,63771332400,63784033200,7200,0,'EET',],[63784026000,63802774800,63784036800,63802785600,10800,1,'EEST',],[63802774800,63815475600,63802782000,63815482800,7200,0,'EET',],[63815475600,63834224400,63815486400,63834235200,10800,1,'EEST',],[63834224400,63847530000,63834231600,63847537200,7200,0,'EET',],[63847530000,63865674000,63847540800,63865684800,10800,1,'EEST',],[63865674000,63878979600,63865681200,63878986800,7200,0,'EET',],[63878979600,63897123600,63878990400,63897134400,10800,1,'EEST',],[63897123600,63910429200,63897130800,63910436400,7200,0,'EET',],[63910429200,63928573200,63910440000,63928584000,10800,1,'EEST',],[63928573200,63941878800,63928580400,63941886000,7200,0,'EET',],[63941878800,63960627600,63941889600,63960638400,10800,1,'EEST',],];sub olson_version {'2016a'}sub has_dst_changes {77}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {7200}my$last_observance=bless({'format'=>'EE%sT','gmtoff'=>'2:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>735910,'local_rd_secs'=>10800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>735910,'utc_rd_secs'=>10800,'utc_year'=>2016 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>7200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>735910,'local_rd_secs'=>3600,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>735910,'utc_rd_secs'=>3600,'utc_year'=>2016 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_ISTANBUL

$fatpacked{"DateTime/TimeZone/Europe/Kaliningrad.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_KALININGRAD';
  package DateTime::TimeZone::Europe::Kaliningrad;$DateTime::TimeZone::Europe::Kaliningrad::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Kaliningrad::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59713627080,DateTime::TimeZone::NEG_INFINITY,59713632000,4920,0,'LMT',],[59713627080,60441976800,59713630680,60441980400,3600,0,'CET',],[60441976800,60455199600,60441984000,60455206800,7200,1,'CEST',],[60455199600,60472227600,60455203200,60472231200,3600,0,'CET',],[60472227600,60485533200,60472234800,60485540400,7200,1,'CEST',],[60485533200,60503677200,60485536800,60503680800,3600,0,'CET',],[60503677200,60516982800,60503684400,60516990000,7200,1,'CEST',],[60516982800,61196778000,60516986400,61196781600,3600,0,'CET',],[61196778000,61278426000,61196785200,61278433200,7200,1,'CEST',],[61278426000,61291126800,61278429600,61291130400,3600,0,'CET',],[61291126800,61307456400,61291134000,61307463600,7200,1,'CEST',],[61307456400,61323181200,61307460000,61323184800,3600,0,'CET',],[61323181200,61338906000,61323188400,61338913200,7200,1,'CEST',],[61338906000,61346761200,61338909600,61346764800,3600,0,'CET',],[61346761200,61356952800,61346768400,61356960000,7200,0,'CET',],[61356952800,61373019600,61356963600,61373030400,10800,1,'CEST',],[61373019600,61378293600,61373026800,61378300800,7200,0,'CET',],[61378293600,62490603600,61378304400,62490614400,10800,0,'MSK',],[62490603600,62506411200,62490618000,62506425600,14400,1,'MSD',],[62506411200,62522139600,62506422000,62522150400,10800,0,'MSK',],[62522139600,62537947200,62522154000,62537961600,14400,1,'MSD',],[62537947200,62553675600,62537958000,62553686400,10800,0,'MSK',],[62553675600,62569483200,62553690000,62569497600,14400,1,'MSD',],[62569483200,62585298000,62569494000,62585308800,10800,0,'MSK',],[62585298000,62601030000,62585312400,62601044400,14400,1,'MSD',],[62601030000,62616754800,62601040800,62616765600,10800,0,'MSK',],[62616754800,62632479600,62616769200,62632494000,14400,1,'MSD',],[62632479600,62648204400,62632490400,62648215200,10800,0,'MSK',],[62648204400,62663929200,62648218800,62663943600,14400,1,'MSD',],[62663929200,62679654000,62663940000,62679664800,10800,0,'MSK',],[62679654000,62695378800,62679668400,62695393200,14400,1,'MSD',],[62695378800,62711103600,62695389600,62711114400,10800,0,'MSK',],[62711103600,62726828400,62711118000,62726842800,14400,1,'MSD',],[62726828400,62742553200,62726839200,62742564000,10800,0,'MSK',],[62742553200,62758278000,62742567600,62758292400,14400,1,'MSD',],[62758278000,62774002800,62758288800,62774013600,10800,0,'MSK',],[62774002800,62790332400,62774017200,62790346800,14400,1,'MSD',],[62790332400,62806057200,62790343200,62806068000,10800,0,'MSK',],[62806057200,62821785600,62806068000,62821796400,10800,1,'EEST',],[62821785600,62837499600,62821792800,62837506800,7200,0,'EET',],[62837499600,62853220800,62837510400,62853231600,10800,1,'EEST',],[62853220800,62868960000,62853228000,62868967200,7200,0,'EET',],[62868960000,62884684800,62868970800,62884695600,10800,1,'EEST',],[62884684800,62900409600,62884692000,62900416800,7200,0,'EET',],[62900409600,62916134400,62900420400,62916145200,10800,1,'EEST',],[62916134400,62931859200,62916141600,62931866400,7200,0,'EET',],[62931859200,62947584000,62931870000,62947594800,10800,1,'EEST',],[62947584000,62963913600,62947591200,62963920800,7200,0,'EET',],[62963913600,62982057600,62963924400,62982068400,10800,1,'EEST',],[62982057600,62995363200,62982064800,62995370400,7200,0,'EET',],[62995363200,63013507200,62995374000,63013518000,10800,1,'EEST',],[63013507200,63026812800,63013514400,63026820000,7200,0,'EET',],[63026812800,63044956800,63026823600,63044967600,10800,1,'EEST',],[63044956800,63058262400,63044964000,63058269600,7200,0,'EET',],[63058262400,63077011200,63058273200,63077022000,10800,1,'EEST',],[63077011200,63089712000,63077018400,63089719200,7200,0,'EET',],[63089712000,63108460800,63089722800,63108471600,10800,1,'EEST',],[63108460800,63121161600,63108468000,63121168800,7200,0,'EET',],[63121161600,63139910400,63121172400,63139921200,10800,1,'EEST',],[63139910400,63153216000,63139917600,63153223200,7200,0,'EET',],[63153216000,63171360000,63153226800,63171370800,10800,1,'EEST',],[63171360000,63184665600,63171367200,63184672800,7200,0,'EET',],[63184665600,63202809600,63184676400,63202820400,10800,1,'EEST',],[63202809600,63216115200,63202816800,63216122400,7200,0,'EET',],[63216115200,63234864000,63216126000,63234874800,10800,1,'EEST',],[63234864000,63247564800,63234871200,63247572000,7200,0,'EET',],[63247564800,63266313600,63247575600,63266324400,10800,1,'EEST',],[63266313600,63279014400,63266320800,63279021600,7200,0,'EET',],[63279014400,63297763200,63279025200,63297774000,10800,1,'EEST',],[63297763200,63310464000,63297770400,63310471200,7200,0,'EET',],[63310464000,63329212800,63310474800,63329223600,10800,1,'EEST',],[63329212800,63342518400,63329220000,63342525600,7200,0,'EET',],[63342518400,63360662400,63342529200,63360673200,10800,1,'EEST',],[63360662400,63373968000,63360669600,63373975200,7200,0,'EET',],[63373968000,63392112000,63373978800,63392122800,10800,1,'EEST',],[63392112000,63405417600,63392119200,63405424800,7200,0,'EET',],[63405417600,63424166400,63405428400,63424177200,10800,1,'EEST',],[63424166400,63436867200,63424173600,63436874400,7200,0,'EET',],[63436867200,63549961200,63436878000,63549972000,10800,0,'FET',],[63549961200,DateTime::TimeZone::INFINITY,63549968400,DateTime::TimeZone::INFINITY,7200,0,'EET',],];sub olson_version {'2016a'}sub has_dst_changes {37}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_EUROPE_KALININGRAD

$fatpacked{"DateTime/TimeZone/Europe/Kiev.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_KIEV';
  package DateTime::TimeZone::Europe::Kiev;$DateTime::TimeZone::Europe::Kiev::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Kiev::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59295535076,DateTime::TimeZone::NEG_INFINITY,59295542400,7324,0,'LMT',],[59295535076,60694523876,59295542400,60694531200,7324,0,'KMT',],[60694523876,60888146400,60694531076,60888153600,7200,0,'EET',],[60888146400,61243160400,60888157200,61243171200,10800,0,'MSK',],[61243160400,61278426000,61243167600,61278433200,7200,1,'CEST',],[61278426000,61291126800,61278429600,61291130400,3600,0,'CET',],[61291126800,61307456400,61291134000,61307463600,7200,1,'CEST',],[61307456400,61310300400,61307460000,61310304000,3600,0,'CET',],[61310300400,62490603600,61310311200,62490614400,10800,0,'MSK',],[62490603600,62506411200,62490618000,62506425600,14400,1,'MSD',],[62506411200,62522139600,62506422000,62522150400,10800,0,'MSK',],[62522139600,62537947200,62522154000,62537961600,14400,1,'MSD',],[62537947200,62553675600,62537958000,62553686400,10800,0,'MSK',],[62553675600,62569483200,62553690000,62569497600,14400,1,'MSD',],[62569483200,62585298000,62569494000,62585308800,10800,0,'MSK',],[62585298000,62601030000,62585312400,62601044400,14400,1,'MSD',],[62601030000,62616754800,62601040800,62616765600,10800,0,'MSK',],[62616754800,62632479600,62616769200,62632494000,14400,1,'MSD',],[62632479600,62648204400,62632490400,62648215200,10800,0,'MSK',],[62648204400,62663929200,62648218800,62663943600,14400,1,'MSD',],[62663929200,62679654000,62663940000,62679664800,10800,0,'MSK',],[62679654000,62695378800,62679668400,62695393200,14400,1,'MSD',],[62695378800,62711103600,62695389600,62711114400,10800,0,'MSK',],[62711103600,62726828400,62711118000,62726842800,14400,1,'MSD',],[62726828400,62742553200,62726839200,62742564000,10800,0,'MSK',],[62742553200,62758278000,62742567600,62758292400,14400,1,'MSD',],[62758278000,62774002800,62758288800,62774013600,10800,0,'MSK',],[62774002800,62782466400,62774017200,62782480800,14400,1,'MSD',],[62782466400,62821785600,62782477200,62821796400,10800,1,'EEST',],[62821785600,62837503200,62821792800,62837510400,7200,0,'EET',],[62837503200,62853224400,62837514000,62853235200,10800,1,'EEST',],[62853224400,62868952800,62853231600,62868960000,7200,0,'EET',],[62868952800,62884674000,62868963600,62884684800,10800,1,'EEST',],[62884674000,62900402400,62884681200,62900409600,7200,0,'EET',],[62900402400,62916123600,62900413200,62916134400,10800,1,'EEST',],[62916123600,62924594400,62916130800,62924601600,7200,0,'EET',],[62924594400,62931862800,62924601600,62931870000,7200,0,'EET',],[62931862800,62947587600,62931873600,62947598400,10800,1,'EEST',],[62947587600,62963917200,62947594800,62963924400,7200,0,'EET',],[62963917200,62982061200,62963928000,62982072000,10800,1,'EEST',],[62982061200,62995366800,62982068400,62995374000,7200,0,'EET',],[62995366800,63013510800,62995377600,63013521600,10800,1,'EEST',],[63013510800,63026816400,63013518000,63026823600,7200,0,'EET',],[63026816400,63044960400,63026827200,63044971200,10800,1,'EEST',],[63044960400,63058266000,63044967600,63058273200,7200,0,'EET',],[63058266000,63077014800,63058276800,63077025600,10800,1,'EEST',],[63077014800,63089715600,63077022000,63089722800,7200,0,'EET',],[63089715600,63108464400,63089726400,63108475200,10800,1,'EEST',],[63108464400,63121165200,63108471600,63121172400,7200,0,'EET',],[63121165200,63139914000,63121176000,63139924800,10800,1,'EEST',],[63139914000,63153219600,63139921200,63153226800,7200,0,'EET',],[63153219600,63171363600,63153230400,63171374400,10800,1,'EEST',],[63171363600,63184669200,63171370800,63184676400,7200,0,'EET',],[63184669200,63202813200,63184680000,63202824000,10800,1,'EEST',],[63202813200,63216118800,63202820400,63216126000,7200,0,'EET',],[63216118800,63234867600,63216129600,63234878400,10800,1,'EEST',],[63234867600,63247568400,63234874800,63247575600,7200,0,'EET',],[63247568400,63266317200,63247579200,63266328000,10800,1,'EEST',],[63266317200,63279018000,63266324400,63279025200,7200,0,'EET',],[63279018000,63297766800,63279028800,63297777600,10800,1,'EEST',],[63297766800,63310467600,63297774000,63310474800,7200,0,'EET',],[63310467600,63329216400,63310478400,63329227200,10800,1,'EEST',],[63329216400,63342522000,63329223600,63342529200,7200,0,'EET',],[63342522000,63360666000,63342532800,63360676800,10800,1,'EEST',],[63360666000,63373971600,63360673200,63373978800,7200,0,'EET',],[63373971600,63392115600,63373982400,63392126400,10800,1,'EEST',],[63392115600,63405421200,63392122800,63405428400,7200,0,'EET',],[63405421200,63424170000,63405432000,63424180800,10800,1,'EEST',],[63424170000,63436870800,63424177200,63436878000,7200,0,'EET',],[63436870800,63455619600,63436881600,63455630400,10800,1,'EEST',],[63455619600,63468320400,63455626800,63468327600,7200,0,'EET',],[63468320400,63487069200,63468331200,63487080000,10800,1,'EEST',],[63487069200,63500374800,63487076400,63500382000,7200,0,'EET',],[63500374800,63518518800,63500385600,63518529600,10800,1,'EEST',],[63518518800,63531824400,63518526000,63531831600,7200,0,'EET',],[63531824400,63549968400,63531835200,63549979200,10800,1,'EEST',],[63549968400,63563274000,63549975600,63563281200,7200,0,'EET',],[63563274000,63581418000,63563284800,63581428800,10800,1,'EEST',],[63581418000,63594723600,63581425200,63594730800,7200,0,'EET',],[63594723600,63613472400,63594734400,63613483200,10800,1,'EEST',],[63613472400,63626173200,63613479600,63626180400,7200,0,'EET',],[63626173200,63644922000,63626184000,63644932800,10800,1,'EEST',],[63644922000,63657622800,63644929200,63657630000,7200,0,'EET',],[63657622800,63676371600,63657633600,63676382400,10800,1,'EEST',],[63676371600,63689677200,63676378800,63689684400,7200,0,'EET',],[63689677200,63707821200,63689688000,63707832000,10800,1,'EEST',],[63707821200,63721126800,63707828400,63721134000,7200,0,'EET',],[63721126800,63739270800,63721137600,63739281600,10800,1,'EEST',],[63739270800,63752576400,63739278000,63752583600,7200,0,'EET',],[63752576400,63771325200,63752587200,63771336000,10800,1,'EEST',],[63771325200,63784026000,63771332400,63784033200,7200,0,'EET',],[63784026000,63802774800,63784036800,63802785600,10800,1,'EEST',],[63802774800,63815475600,63802782000,63815482800,7200,0,'EET',],[63815475600,63834224400,63815486400,63834235200,10800,1,'EEST',],[63834224400,63847530000,63834231600,63847537200,7200,0,'EET',],[63847530000,63865674000,63847540800,63865684800,10800,1,'EEST',],[63865674000,63878979600,63865681200,63878986800,7200,0,'EET',],[63878979600,63897123600,63878990400,63897134400,10800,1,'EEST',],[63897123600,63910429200,63897130800,63910436400,7200,0,'EET',],[63910429200,63928573200,63910440000,63928584000,10800,1,'EEST',],[63928573200,63941878800,63928580400,63941886000,7200,0,'EET',],[63941878800,63960627600,63941889600,63960638400,10800,1,'EEST',],];sub olson_version {'2016a'}sub has_dst_changes {49}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {7200}my$last_observance=bless({'format'=>'EE%sT','gmtoff'=>'2:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>728294,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>728294,'utc_rd_secs'=>0,'utc_year'=>1996 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>7200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>728293,'local_rd_secs'=>79200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>728293,'utc_rd_secs'=>79200,'utc_year'=>1995 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_KIEV

$fatpacked{"DateTime/TimeZone/Europe/Lisbon.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_LISBON';
  package DateTime::TimeZone::Europe::Lisbon;$DateTime::TimeZone::Europe::Lisbon::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Lisbon::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59421775005,DateTime::TimeZone::NEG_INFINITY,59421772800,-2205,0,'LMT',],[59421775005,60305301405,59421772800,60305299200,-2205,0,'LMT',],[60305301405,60446127600,60305301405,60446127600,0,0,'WET',],[60446127600,60457881600,60446131200,60457885200,3600,1,'WEST',],[60457881600,60468246000,60457881600,60468246000,0,0,'WET',],[60468246000,60487945200,60468249600,60487948800,3600,1,'WEST',],[60487945200,60499868400,60487945200,60499868400,0,0,'WET',],[60499868400,60519481200,60499872000,60519484800,3600,1,'WEST',],[60519481200,60531318000,60519481200,60531318000,0,0,'WET',],[60531318000,60551017200,60531321600,60551020800,3600,1,'WEST',],[60551017200,60562940400,60551017200,60562940400,0,0,'WET',],[60562940400,60582639600,60562944000,60582643200,3600,1,'WEST',],[60582639600,60594476400,60582639600,60594476400,0,0,'WET',],[60594476400,60614175600,60594480000,60614179200,3600,1,'WEST',],[60614175600,60693231600,60614175600,60693231600,0,0,'WET',],[60693231600,60708870000,60693235200,60708873600,3600,1,'WEST',],[60708870000,60756390000,60708870000,60756390000,0,0,'WET',],[60756390000,60770905200,60756393600,60770908800,3600,1,'WEST',],[60770905200,60787234800,60770905200,60787234800,0,0,'WET',],[60787234800,60802354800,60787238400,60802358400,3600,1,'WEST',],[60802354800,60819289200,60802354800,60819289200,0,0,'WET',],[60819289200,60834409200,60819292800,60834412800,3600,1,'WEST',],[60834409200,60851343600,60834409200,60851343600,0,0,'WET',],[60851343600,60865858800,60851347200,60865862400,3600,1,'WEST',],[60865858800,60914242800,60865858800,60914242800,0,0,'WET',],[60914242800,60928758000,60914246400,60928761600,3600,1,'WEST',],[60928758000,60944482800,60928758000,60944482800,0,0,'WET',],[60944482800,60960207600,60944486400,60960211200,3600,1,'WEST',],[60960207600,61007986800,60960207600,61007986800,0,0,'WET',],[61007986800,61023711600,61007990400,61023715200,3600,1,'WEST',],[61023711600,61038831600,61023711600,61038831600,0,0,'WET',],[61038831600,61055161200,61038835200,61055164800,3600,1,'WEST',],[61055161200,61072095600,61055161200,61072095600,0,0,'WET',],[61072095600,61086610800,61072099200,61086614400,3600,1,'WEST',],[61086610800,61102335600,61086610800,61102335600,0,0,'WET',],[61102335600,61118060400,61102339200,61118064000,3600,1,'WEST',],[61118060400,61133180400,61118060400,61133180400,0,0,'WET',],[61133180400,61149510000,61133184000,61149513600,3600,1,'WEST',],[61149510000,61166444400,61149510000,61166444400,0,0,'WET',],[61166444400,61185193200,61166448000,61185196800,3600,1,'WEST',],[61185193200,61193660400,61185193200,61193660400,0,0,'WET',],[61193660400,61213014000,61193664000,61213017600,3600,1,'WEST',],[61213014000,61228738800,61213014000,61228738800,0,0,'WET',],[61228738800,61244550000,61228742400,61244553600,3600,1,'WEST',],[61244550000,61258374000,61244550000,61258374000,0,0,'WET',],[61258374000,61261999200,61258377600,61262002800,3600,1,'WEST',],[61261999200,61271676000,61262006400,61271683200,7200,1,'WEMT',],[61271676000,61277727600,61271679600,61277731200,3600,1,'WEST',],[61277727600,61289823600,61277727600,61289823600,0,0,'WET',],[61289823600,61292844000,61289827200,61292847600,3600,1,'WEST',],[61292844000,61304335200,61292851200,61304342400,7200,1,'WEMT',],[61304335200,61309782000,61304338800,61309785600,3600,1,'WEST',],[61309782000,61321273200,61309782000,61321273200,0,0,'WET',],[61321273200,61324898400,61321276800,61324902000,3600,1,'WEST',],[61324898400,61335784800,61324905600,61335792000,7200,1,'WEMT',],[61335784800,61341231600,61335788400,61341235200,3600,1,'WEST',],[61341231600,61352722800,61341231600,61352722800,0,0,'WET',],[61352722800,61356348000,61352726400,61356351600,3600,1,'WEST',],[61356348000,61367234400,61356355200,61367241600,7200,1,'WEMT',],[61367234400,61372681200,61367238000,61372684800,3600,1,'WEST',],[61372681200,61386591600,61372681200,61386591600,0,0,'WET',],[61386591600,61402316400,61386595200,61402320000,3600,1,'WEST',],[61402316400,61418052000,61402316400,61418052000,0,0,'WET',],[61418052000,61433776800,61418055600,61433780400,3600,1,'WEST',],[61433776800,61449501600,61433776800,61449501600,0,0,'WET',],[61449501600,61465226400,61449505200,61465230000,3600,1,'WEST',],[61465226400,61480951200,61465226400,61480951200,0,0,'WET',],[61480951200,61496676000,61480954800,61496679600,3600,1,'WEST',],[61496676000,61543850400,61496676000,61543850400,0,0,'WET',],[61543850400,61560180000,61543854000,61560183600,3600,1,'WEST',],[61560180000,61575904800,61560180000,61575904800,0,0,'WET',],[61575904800,61591629600,61575908400,61591633200,3600,1,'WEST',],[61591629600,61607354400,61591629600,61607354400,0,0,'WET',],[61607354400,61623079200,61607358000,61623082800,3600,1,'WEST',],[61623079200,61638804000,61623079200,61638804000,0,0,'WET',],[61638804000,61654528800,61638807600,61654532400,3600,1,'WEST',],[61654528800,61670253600,61654528800,61670253600,0,0,'WET',],[61670253600,61685978400,61670257200,61685982000,3600,1,'WEST',],[61685978400,61701703200,61685978400,61701703200,0,0,'WET',],[61701703200,61718032800,61701706800,61718036400,3600,1,'WEST',],[61718032800,61733757600,61718032800,61733757600,0,0,'WET',],[61733757600,61749482400,61733761200,61749486000,3600,1,'WEST',],[61749482400,61765207200,61749482400,61765207200,0,0,'WET',],[61765207200,61780932000,61765210800,61780935600,3600,1,'WEST',],[61780932000,61796656800,61780932000,61796656800,0,0,'WET',],[61796656800,61812381600,61796660400,61812385200,3600,1,'WEST',],[61812381600,61828106400,61812381600,61828106400,0,0,'WET',],[61828106400,61843831200,61828110000,61843834800,3600,1,'WEST',],[61843831200,61859556000,61843831200,61859556000,0,0,'WET',],[61859556000,61875280800,61859559600,61875284400,3600,1,'WEST',],[61875280800,61891005600,61875280800,61891005600,0,0,'WET',],[61891005600,61907335200,61891009200,61907338800,3600,1,'WEST',],[61907335200,61923060000,61907335200,61923060000,0,0,'WET',],[61923060000,61938784800,61923063600,61938788400,3600,1,'WEST',],[61938784800,61954509600,61938784800,61954509600,0,0,'WET',],[61954509600,61970234400,61954513200,61970238000,3600,1,'WEST',],[61970234400,61985959200,61970234400,61985959200,0,0,'WET',],[61985959200,62001684000,61985962800,62001687600,3600,1,'WEST',],[62001684000,62017408800,62001684000,62017408800,0,0,'WET',],[62017408800,62348227200,62017412400,62348230800,3600,0,'CET',],[62348227200,62363952000,62348227200,62363952000,0,0,'WET',],[62363952000,62379676800,62363955600,62379680400,3600,1,'WEST',],[62379676800,62396006400,62379676800,62396006400,0,0,'WET',],[62396006400,62411731200,62396010000,62411734800,3600,1,'WEST',],[62411731200,62427456000,62411731200,62427456000,0,0,'WET',],[62427456000,62443184400,62427459600,62443188000,3600,1,'WEST',],[62443184400,62458905600,62443184400,62458905600,0,0,'WET',],[62458905600,62474634000,62458909200,62474637600,3600,1,'WEST',],[62474634000,62490358800,62474634000,62490358800,0,0,'WET',],[62490358800,62506083600,62490362400,62506087200,3600,1,'WEST',],[62506083600,62521808400,62506083600,62521808400,0,0,'WET',],[62521808400,62537533200,62521812000,62537536800,3600,1,'WEST',],[62537533200,62553261600,62537533200,62553261600,0,0,'WET',],[62553261600,62568982800,62553265200,62568986400,3600,1,'WEST',],[62568982800,62584707600,62568982800,62584707600,0,0,'WET',],[62584707600,62601037200,62584711200,62601040800,3600,1,'WEST',],[62601037200,62616762000,62601037200,62616762000,0,0,'WET',],[62616762000,62632486800,62616765600,62632490400,3600,1,'WEST',],[62632486800,62648211600,62632486800,62648211600,0,0,'WET',],[62648211600,62663936400,62648215200,62663940000,3600,1,'WEST',],[62663936400,62679661200,62663936400,62679661200,0,0,'WET',],[62679661200,62695386000,62679664800,62695389600,3600,1,'WEST',],[62695386000,62711110800,62695386000,62711110800,0,0,'WET',],[62711110800,62726835600,62711114400,62726839200,3600,1,'WEST',],[62726835600,62742560400,62726835600,62742560400,0,0,'WET',],[62742560400,62758285200,62742564000,62758288800,3600,1,'WEST',],[62758285200,62774010000,62758285200,62774010000,0,0,'WET',],[62774010000,62790339600,62774013600,62790343200,3600,1,'WEST',],[62790339600,62806064400,62790339600,62806064400,0,0,'WET',],[62806064400,62821789200,62806068000,62821792800,3600,1,'WEST',],[62821789200,62837514000,62821789200,62837514000,0,0,'WET',],[62837514000,62853238800,62837517600,62853242400,3600,1,'WEST',],[62853238800,62868963600,62853242400,62868967200,3600,0,'CET',],[62868963600,62884688400,62868970800,62884695600,7200,1,'CEST',],[62884688400,62900413200,62884692000,62900416800,3600,0,'CET',],[62900413200,62916138000,62900420400,62916145200,7200,1,'CEST',],[62916138000,62931862800,62916141600,62931866400,3600,0,'CET',],[62931862800,62947587600,62931870000,62947594800,7200,1,'CEST',],[62947587600,62963917200,62947591200,62963920800,3600,0,'CET',],[62963917200,62982061200,62963920800,62982064800,3600,1,'WEST',],[62982061200,62995366800,62982061200,62995366800,0,0,'WET',],[62995366800,63013510800,62995370400,63013514400,3600,1,'WEST',],[63013510800,63026816400,63013510800,63026816400,0,0,'WET',],[63026816400,63044960400,63026820000,63044964000,3600,1,'WEST',],[63044960400,63058266000,63044960400,63058266000,0,0,'WET',],[63058266000,63077014800,63058269600,63077018400,3600,1,'WEST',],[63077014800,63089715600,63077014800,63089715600,0,0,'WET',],[63089715600,63108464400,63089719200,63108468000,3600,1,'WEST',],[63108464400,63121165200,63108464400,63121165200,0,0,'WET',],[63121165200,63139914000,63121168800,63139917600,3600,1,'WEST',],[63139914000,63153219600,63139914000,63153219600,0,0,'WET',],[63153219600,63171363600,63153223200,63171367200,3600,1,'WEST',],[63171363600,63184669200,63171363600,63184669200,0,0,'WET',],[63184669200,63202813200,63184672800,63202816800,3600,1,'WEST',],[63202813200,63216118800,63202813200,63216118800,0,0,'WET',],[63216118800,63234867600,63216122400,63234871200,3600,1,'WEST',],[63234867600,63247568400,63234867600,63247568400,0,0,'WET',],[63247568400,63266317200,63247572000,63266320800,3600,1,'WEST',],[63266317200,63279018000,63266317200,63279018000,0,0,'WET',],[63279018000,63297766800,63279021600,63297770400,3600,1,'WEST',],[63297766800,63310467600,63297766800,63310467600,0,0,'WET',],[63310467600,63329216400,63310471200,63329220000,3600,1,'WEST',],[63329216400,63342522000,63329216400,63342522000,0,0,'WET',],[63342522000,63360666000,63342525600,63360669600,3600,1,'WEST',],[63360666000,63373971600,63360666000,63373971600,0,0,'WET',],[63373971600,63392115600,63373975200,63392119200,3600,1,'WEST',],[63392115600,63405421200,63392115600,63405421200,0,0,'WET',],[63405421200,63424170000,63405424800,63424173600,3600,1,'WEST',],[63424170000,63436870800,63424170000,63436870800,0,0,'WET',],[63436870800,63455619600,63436874400,63455623200,3600,1,'WEST',],[63455619600,63468320400,63455619600,63468320400,0,0,'WET',],[63468320400,63487069200,63468324000,63487072800,3600,1,'WEST',],[63487069200,63500374800,63487069200,63500374800,0,0,'WET',],[63500374800,63518518800,63500378400,63518522400,3600,1,'WEST',],[63518518800,63531824400,63518518800,63531824400,0,0,'WET',],[63531824400,63549968400,63531828000,63549972000,3600,1,'WEST',],[63549968400,63563274000,63549968400,63563274000,0,0,'WET',],[63563274000,63581418000,63563277600,63581421600,3600,1,'WEST',],[63581418000,63594723600,63581418000,63594723600,0,0,'WET',],[63594723600,63613472400,63594727200,63613476000,3600,1,'WEST',],[63613472400,63626173200,63613472400,63626173200,0,0,'WET',],[63626173200,63644922000,63626176800,63644925600,3600,1,'WEST',],[63644922000,63657622800,63644922000,63657622800,0,0,'WET',],[63657622800,63676371600,63657626400,63676375200,3600,1,'WEST',],[63676371600,63689677200,63676371600,63689677200,0,0,'WET',],[63689677200,63707821200,63689680800,63707824800,3600,1,'WEST',],[63707821200,63721126800,63707821200,63721126800,0,0,'WET',],[63721126800,63739270800,63721130400,63739274400,3600,1,'WEST',],[63739270800,63752576400,63739270800,63752576400,0,0,'WET',],[63752576400,63771325200,63752580000,63771328800,3600,1,'WEST',],[63771325200,63784026000,63771325200,63784026000,0,0,'WET',],[63784026000,63802774800,63784029600,63802778400,3600,1,'WEST',],[63802774800,63815475600,63802774800,63815475600,0,0,'WET',],[63815475600,63834224400,63815479200,63834228000,3600,1,'WEST',],[63834224400,63847530000,63834224400,63847530000,0,0,'WET',],[63847530000,63865674000,63847533600,63865677600,3600,1,'WEST',],[63865674000,63878979600,63865674000,63878979600,0,0,'WET',],[63878979600,63897123600,63878983200,63897127200,3600,1,'WEST',],[63897123600,63910429200,63897123600,63910429200,0,0,'WET',],[63910429200,63928573200,63910432800,63928576800,3600,1,'WEST',],[63928573200,63941878800,63928573200,63941878800,0,0,'WET',],[63941878800,63960627600,63941882400,63960631200,3600,1,'WEST',],];sub olson_version {'2016a'}sub has_dst_changes {103}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {0}my$last_observance=bless({'format'=>'WE%sT','gmtoff'=>'0:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>728749,'local_rd_secs'=>7200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>728749,'utc_rd_secs'=>7200,'utc_year'=>1997 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>0,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>728749,'local_rd_secs'=>3600,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>728749,'utc_rd_secs'=>3600,'utc_year'=>1997 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_LISBON

$fatpacked{"DateTime/TimeZone/Europe/London.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_LONDON';
  package DateTime::TimeZone::Europe::London;$DateTime::TimeZone::Europe::London::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::London::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,58283020875,DateTime::TimeZone::NEG_INFINITY,58283020800,-75,0,'LMT',],[58283020875,60443719200,58283020875,60443719200,0,0,'GMT',],[60443719200,60455210400,60443722800,60455214000,3600,1,'BST',],[60455210400,60471540000,60455210400,60471540000,0,0,'GMT',],[60471540000,60485536800,60471543600,60485540400,3600,1,'BST',],[60485536800,60501780000,60485536800,60501780000,0,0,'GMT',],[60501780000,60518196000,60501783600,60518199600,3600,1,'BST',],[60518196000,60533834400,60518196000,60533834400,0,0,'GMT',],[60533834400,60549645600,60533838000,60549649200,3600,1,'BST',],[60549645600,60565284000,60549645600,60565284000,0,0,'GMT',],[60565284000,60583514400,60565287600,60583518000,3600,1,'BST',],[60583514400,60597338400,60583514400,60597338400,0,0,'GMT',],[60597338400,60613149600,60597342000,60613153200,3600,1,'BST',],[60613149600,60628183200,60613149600,60628183200,0,0,'GMT',],[60628183200,60645117600,60628186800,60645121200,3600,1,'BST',],[60645117600,60662052000,60645117600,60662052000,0,0,'GMT',],[60662052000,60674752800,60662055600,60674756400,3600,1,'BST',],[60674752800,60692896800,60674752800,60692896800,0,0,'GMT',],[60692896800,60706807200,60692900400,60706810800,3600,1,'BST',],[60706807200,60724951200,60706807200,60724951200,0,0,'GMT',],[60724951200,60739466400,60724954800,60739470000,3600,1,'BST',],[60739466400,60756400800,60739466400,60756400800,0,0,'GMT',],[60756400800,60770916000,60756404400,60770919600,3600,1,'BST',],[60770916000,60787245600,60770916000,60787245600,0,0,'GMT',],[60787245600,60802365600,60787249200,60802369200,3600,1,'BST',],[60802365600,60819904800,60802365600,60819904800,0,0,'GMT',],[60819904800,60834420000,60819908400,60834423600,3600,1,'BST',],[60834420000,60851354400,60834420000,60851354400,0,0,'GMT',],[60851354400,60865869600,60851358000,60865873200,3600,1,'BST',],[60865869600,60882199200,60865869600,60882199200,0,0,'GMT',],[60882199200,60897319200,60882202800,60897322800,3600,1,'BST',],[60897319200,60914253600,60897319200,60914253600,0,0,'GMT',],[60914253600,60928768800,60914257200,60928772400,3600,1,'BST',],[60928768800,60945703200,60928768800,60945703200,0,0,'GMT',],[60945703200,60960218400,60945706800,60960222000,3600,1,'BST',],[60960218400,60976548000,60960218400,60976548000,0,0,'GMT',],[60976548000,60992272800,60976551600,60992276400,3600,1,'BST',],[60992272800,61009207200,60992272800,61009207200,0,0,'GMT',],[61009207200,61023722400,61009210800,61023726000,3600,1,'BST',],[61023722400,61040052000,61023722400,61040052000,0,0,'GMT',],[61040052000,61055172000,61040055600,61055175600,3600,1,'BST',],[61055172000,61072106400,61055172000,61072106400,0,0,'GMT',],[61072106400,61086621600,61072110000,61086625200,3600,1,'BST',],[61086621600,61103556000,61086621600,61103556000,0,0,'GMT',],[61103556000,61118071200,61103559600,61118074800,3600,1,'BST',],[61118071200,61134400800,61118071200,61134400800,0,0,'GMT',],[61134400800,61149520800,61134404400,61149524400,3600,1,'BST',],[61149520800,61166455200,61149520800,61166455200,0,0,'GMT',],[61166455200,61185204000,61166458800,61185207600,3600,1,'BST',],[61185204000,61193671200,61185204000,61193671200,0,0,'GMT',],[61193671200,61231165200,61193674800,61231168800,3600,1,'BST',],[61231165200,61239632400,61231172400,61239639600,7200,1,'BDST',],[61239632400,61260195600,61239636000,61260199200,3600,1,'BST',],[61260195600,61271082000,61260202800,61271089200,7200,1,'BDST',],[61271082000,61291645200,61271085600,61291648800,3600,1,'BST',],[61291645200,61303136400,61291652400,61303143600,7200,1,'BDST',],[61303136400,61323094800,61303140000,61323098400,3600,1,'BST',],[61323094800,61337610000,61323102000,61337617200,7200,1,'BDST',],[61337610000,61354630800,61337613600,61354634400,3600,1,'BST',],[61354630800,61363616400,61354638000,61363623600,7200,1,'BDST',],[61363616400,61370877600,61363620000,61370881200,3600,1,'BST',],[61370877600,61387207200,61370877600,61387207200,0,0,'GMT',],[61387207200,61402327200,61387210800,61402330800,3600,1,'BST',],[61402327200,61416237600,61402327200,61416237600,0,0,'GMT',],[61416237600,61418653200,61416241200,61418656800,3600,1,'BST',],[61418653200,61428934800,61418660400,61428942000,7200,1,'BDST',],[61428934800,61436196000,61428938400,61436199600,3600,1,'BST',],[61436196000,61447687200,61436196000,61447687200,0,0,'GMT',],[61447687200,61467645600,61447690800,61467649200,3600,1,'BST',],[61467645600,61480951200,61467645600,61480951200,0,0,'GMT',],[61480951200,61499095200,61480954800,61499098800,3600,1,'BST',],[61499095200,61513610400,61499095200,61513610400,0,0,'GMT',],[61513610400,61529940000,61513614000,61529943600,3600,1,'BST',],[61529940000,61545060000,61529940000,61545060000,0,0,'GMT',],[61545060000,61561389600,61545063600,61561393200,3600,1,'BST',],[61561389600,61577114400,61561389600,61577114400,0,0,'GMT',],[61577114400,61593444000,61577118000,61593447600,3600,1,'BST',],[61593444000,61608564000,61593444000,61608564000,0,0,'GMT',],[61608564000,61623079200,61608567600,61623082800,3600,1,'BST',],[61623079200,61639408800,61623079200,61639408800,0,0,'GMT',],[61639408800,61654528800,61639412400,61654532400,3600,1,'BST',],[61654528800,61671463200,61654528800,61671463200,0,0,'GMT',],[61671463200,61685978400,61671466800,61685982000,3600,1,'BST',],[61685978400,61703517600,61685978400,61703517600,0,0,'GMT',],[61703517600,61718032800,61703521200,61718036400,3600,1,'BST',],[61718032800,61734362400,61718032800,61734362400,0,0,'GMT',],[61734362400,61749482400,61734366000,61749486000,3600,1,'BST',],[61749482400,61766416800,61749482400,61766416800,0,0,'GMT',],[61766416800,61780932000,61766420400,61780935600,3600,1,'BST',],[61780932000,61797866400,61780932000,61797866400,0,0,'GMT',],[61797866400,61812381600,61797870000,61812385200,3600,1,'BST',],[61812381600,61828711200,61812381600,61828711200,0,0,'GMT',],[61828711200,61843831200,61828714800,61843834800,3600,1,'BST',],[61843831200,61858951200,61843831200,61858951200,0,0,'GMT',],[61858951200,61877700000,61858954800,61877703600,3600,1,'BST',],[61877700000,61890400800,61877700000,61890400800,0,0,'GMT',],[61890400800,61909149600,61890404400,61909153200,3600,1,'BST',],[61909149600,61922455200,61909149600,61922455200,0,0,'GMT',],[61922455200,61940599200,61922458800,61940602800,3600,1,'BST',],[61940599200,61953300000,61940599200,61953300000,0,0,'GMT',],[61953300000,61972048800,61953303600,61972052400,3600,1,'BST',],[61972048800,61984749600,61972048800,61984749600,0,0,'GMT',],[61984749600,62003498400,61984753200,62003502000,3600,1,'BST',],[62003498400,62016199200,62003498400,62016199200,0,0,'GMT',],[62016199200,62034948000,62016202800,62034951600,3600,1,'BST',],[62034948000,62047648800,62034948000,62047648800,0,0,'GMT',],[62047648800,62067002400,62047652400,62067006000,3600,1,'BST',],[62067002400,62076679200,62067002400,62076679200,0,0,'GMT',],[62076679200,62098441200,62076682800,62098444800,3600,1,'BST',],[62098441200,62193405600,62098444800,62193409200,3600,0,'BST',],[62193405600,62205501600,62193405600,62205501600,0,0,'GMT',],[62205501600,62224855200,62205505200,62224858800,3600,1,'BST',],[62224855200,62236951200,62224855200,62236951200,0,0,'GMT',],[62236951200,62256304800,62236954800,62256308400,3600,1,'BST',],[62256304800,62268400800,62256304800,62268400800,0,0,'GMT',],[62268400800,62287754400,62268404400,62287758000,3600,1,'BST',],[62287754400,62299850400,62287754400,62299850400,0,0,'GMT',],[62299850400,62319204000,62299854000,62319207600,3600,1,'BST',],[62319204000,62331904800,62319204000,62331904800,0,0,'GMT',],[62331904800,62350653600,62331908400,62350657200,3600,1,'BST',],[62350653600,62363354400,62350653600,62363354400,0,0,'GMT',],[62363354400,62382103200,62363358000,62382106800,3600,1,'BST',],[62382103200,62394804000,62382103200,62394804000,0,0,'GMT',],[62394804000,62414157600,62394807600,62414161200,3600,1,'BST',],[62414157600,62426253600,62414157600,62426253600,0,0,'GMT',],[62426253600,62445607200,62426257200,62445610800,3600,1,'BST',],[62445607200,62457703200,62445607200,62457703200,0,0,'GMT',],[62457703200,62477056800,62457706800,62477060400,3600,1,'BST',],[62477056800,62490358800,62477056800,62490358800,0,0,'GMT',],[62490358800,62508502800,62490362400,62508506400,3600,1,'BST',],[62508502800,62521808400,62508502800,62521808400,0,0,'GMT',],[62521808400,62539952400,62521812000,62539956000,3600,1,'BST',],[62539952400,62553258000,62539952400,62553258000,0,0,'GMT',],[62553258000,62571402000,62553261600,62571405600,3600,1,'BST',],[62571402000,62584707600,62571402000,62584707600,0,0,'GMT',],[62584707600,62603456400,62584711200,62603460000,3600,1,'BST',],[62603456400,62616762000,62603456400,62616762000,0,0,'GMT',],[62616762000,62634906000,62616765600,62634909600,3600,1,'BST',],[62634906000,62648211600,62634906000,62648211600,0,0,'GMT',],[62648211600,62666355600,62648215200,62666359200,3600,1,'BST',],[62666355600,62679661200,62666355600,62679661200,0,0,'GMT',],[62679661200,62697805200,62679664800,62697808800,3600,1,'BST',],[62697805200,62711110800,62697805200,62711110800,0,0,'GMT',],[62711110800,62729254800,62711114400,62729258400,3600,1,'BST',],[62729254800,62742560400,62729254800,62742560400,0,0,'GMT',],[62742560400,62761309200,62742564000,62761312800,3600,1,'BST',],[62761309200,62774010000,62761309200,62774010000,0,0,'GMT',],[62774010000,62792758800,62774013600,62792762400,3600,1,'BST',],[62792758800,62806064400,62792758800,62806064400,0,0,'GMT',],[62806064400,62824208400,62806068000,62824212000,3600,1,'BST',],[62824208400,62837514000,62824208400,62837514000,0,0,'GMT',],[62837514000,62855658000,62837517600,62855661600,3600,1,'BST',],[62855658000,62868963600,62855658000,62868963600,0,0,'GMT',],[62868963600,62887107600,62868967200,62887111200,3600,1,'BST',],[62887107600,62900413200,62887107600,62900413200,0,0,'GMT',],[62900413200,62918557200,62900416800,62918560800,3600,1,'BST',],[62918557200,62931862800,62918557200,62931862800,0,0,'GMT',],[62931862800,62950006800,62931866400,62950010400,3600,1,'BST',],[62950006800,62956137600,62950006800,62956137600,0,0,'GMT',],[62956137600,62963917200,62956137600,62963917200,0,0,'GMT',],[62963917200,62982061200,62963920800,62982064800,3600,1,'BST',],[62982061200,62995366800,62982061200,62995366800,0,0,'GMT',],[62995366800,63013510800,62995370400,63013514400,3600,1,'BST',],[63013510800,63026816400,63013510800,63026816400,0,0,'GMT',],[63026816400,63044960400,63026820000,63044964000,3600,1,'BST',],[63044960400,63058266000,63044960400,63058266000,0,0,'GMT',],[63058266000,63077014800,63058269600,63077018400,3600,1,'BST',],[63077014800,63089715600,63077014800,63089715600,0,0,'GMT',],[63089715600,63108464400,63089719200,63108468000,3600,1,'BST',],[63108464400,63121165200,63108464400,63121165200,0,0,'GMT',],[63121165200,63139914000,63121168800,63139917600,3600,1,'BST',],[63139914000,63153219600,63139914000,63153219600,0,0,'GMT',],[63153219600,63171363600,63153223200,63171367200,3600,1,'BST',],[63171363600,63184669200,63171363600,63184669200,0,0,'GMT',],[63184669200,63202813200,63184672800,63202816800,3600,1,'BST',],[63202813200,63216118800,63202813200,63216118800,0,0,'GMT',],[63216118800,63234867600,63216122400,63234871200,3600,1,'BST',],[63234867600,63247568400,63234867600,63247568400,0,0,'GMT',],[63247568400,63266317200,63247572000,63266320800,3600,1,'BST',],[63266317200,63279018000,63266317200,63279018000,0,0,'GMT',],[63279018000,63297766800,63279021600,63297770400,3600,1,'BST',],[63297766800,63310467600,63297766800,63310467600,0,0,'GMT',],[63310467600,63329216400,63310471200,63329220000,3600,1,'BST',],[63329216400,63342522000,63329216400,63342522000,0,0,'GMT',],[63342522000,63360666000,63342525600,63360669600,3600,1,'BST',],[63360666000,63373971600,63360666000,63373971600,0,0,'GMT',],[63373971600,63392115600,63373975200,63392119200,3600,1,'BST',],[63392115600,63405421200,63392115600,63405421200,0,0,'GMT',],[63405421200,63424170000,63405424800,63424173600,3600,1,'BST',],[63424170000,63436870800,63424170000,63436870800,0,0,'GMT',],[63436870800,63455619600,63436874400,63455623200,3600,1,'BST',],[63455619600,63468320400,63455619600,63468320400,0,0,'GMT',],[63468320400,63487069200,63468324000,63487072800,3600,1,'BST',],[63487069200,63500374800,63487069200,63500374800,0,0,'GMT',],[63500374800,63518518800,63500378400,63518522400,3600,1,'BST',],[63518518800,63531824400,63518518800,63531824400,0,0,'GMT',],[63531824400,63549968400,63531828000,63549972000,3600,1,'BST',],[63549968400,63563274000,63549968400,63563274000,0,0,'GMT',],[63563274000,63581418000,63563277600,63581421600,3600,1,'BST',],[63581418000,63594723600,63581418000,63594723600,0,0,'GMT',],[63594723600,63613472400,63594727200,63613476000,3600,1,'BST',],[63613472400,63626173200,63613472400,63626173200,0,0,'GMT',],[63626173200,63644922000,63626176800,63644925600,3600,1,'BST',],[63644922000,63657622800,63644922000,63657622800,0,0,'GMT',],[63657622800,63676371600,63657626400,63676375200,3600,1,'BST',],[63676371600,63689677200,63676371600,63689677200,0,0,'GMT',],[63689677200,63707821200,63689680800,63707824800,3600,1,'BST',],[63707821200,63721126800,63707821200,63721126800,0,0,'GMT',],[63721126800,63739270800,63721130400,63739274400,3600,1,'BST',],[63739270800,63752576400,63739270800,63752576400,0,0,'GMT',],[63752576400,63771325200,63752580000,63771328800,3600,1,'BST',],[63771325200,63784026000,63771325200,63784026000,0,0,'GMT',],[63784026000,63802774800,63784029600,63802778400,3600,1,'BST',],[63802774800,63815475600,63802774800,63815475600,0,0,'GMT',],[63815475600,63834224400,63815479200,63834228000,3600,1,'BST',],[63834224400,63847530000,63834224400,63847530000,0,0,'GMT',],[63847530000,63865674000,63847533600,63865677600,3600,1,'BST',],[63865674000,63878979600,63865674000,63878979600,0,0,'GMT',],[63878979600,63897123600,63878983200,63897127200,3600,1,'BST',],[63897123600,63910429200,63897123600,63910429200,0,0,'GMT',],[63910429200,63928573200,63910432800,63928576800,3600,1,'BST',],[63928573200,63941878800,63928573200,63941878800,0,0,'GMT',],[63941878800,63960627600,63941882400,63960631200,3600,1,'BST',],];sub olson_version {'2016a'}sub has_dst_changes {116}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {0}my$last_observance=bless({'format'=>'GMT/BST','gmtoff'=>'0:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>728659,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>728659,'utc_rd_secs'=>0,'utc_year'=>1997 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>0,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>728659,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>728659,'utc_rd_secs'=>0,'utc_year'=>1997 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_LONDON

$fatpacked{"DateTime/TimeZone/Europe/Luxembourg.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_LUXEMBOURG';
  package DateTime::TimeZone::Europe::Luxembourg;$DateTime::TimeZone::Europe::Luxembourg::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Luxembourg::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60065969724,DateTime::TimeZone::NEG_INFINITY,60065971200,1476,0,'LMT',],[60065969724,60443186400,60065973324,60443190000,3600,0,'CET',],[60443186400,60455199600,60443193600,60455206800,7200,1,'CEST',],[60455199600,60473340000,60455203200,60473343600,3600,0,'CET',],[60473340000,60485526000,60473347200,60485533200,7200,1,'CEST',],[60485526000,60503677200,60485529600,60503680800,3600,0,'CET',],[60503677200,60516982800,60503684400,60516990000,7200,1,'CEST',],[60516982800,60523023600,60516986400,60523027200,3600,0,'CET',],[60523023600,60531404400,60523023600,60531404400,0,0,'WET',],[60531404400,60550164000,60531408000,60550167600,3600,1,'WEST',],[60550164000,60561644400,60550164000,60561644400,0,0,'WET',],[60561644400,60583424400,60561648000,60583428000,3600,1,'WEST',],[60583424400,60595686000,60583424400,60595686000,0,0,'WET',],[60595686000,60615133200,60595689600,60615136800,3600,1,'WEST',],[60615133200,60628172400,60615133200,60628172400,0,0,'WET',],[60628172400,60645110400,60628176000,60645114000,3600,1,'WEST',],[60645110400,60662041200,60645110400,60662041200,0,0,'WET',],[60662041200,60676563600,60662044800,60676567200,3600,1,'WEST',],[60676563600,60691676400,60676563600,60691676400,0,0,'WET',],[60691676400,60708009600,60691680000,60708013200,3600,1,'WEST',],[60708009600,60723817200,60708009600,60723817200,0,0,'WET',],[60723817200,60739459200,60723820800,60739462800,3600,1,'WEST',],[60739459200,60756390000,60739459200,60756390000,0,0,'WET',],[60756390000,60770908800,60756393600,60770912400,3600,1,'WEST',],[60770908800,60787234800,60770908800,60787234800,0,0,'WET',],[60787234800,60802358400,60787238400,60802362000,3600,1,'WEST',],[60802358400,60819289200,60802358400,60819289200,0,0,'WET',],[60819289200,60834412800,60819292800,60834416400,3600,1,'WEST',],[60834412800,60851343600,60834412800,60851343600,0,0,'WET',],[60851343600,60865869600,60851347200,60865873200,3600,1,'WEST',],[60865869600,60882199200,60865869600,60882199200,0,0,'WET',],[60882199200,60897319200,60882202800,60897322800,3600,1,'WEST',],[60897319200,60914253600,60897319200,60914253600,0,0,'WET',],[60914253600,60928768800,60914257200,60928772400,3600,1,'WEST',],[60928768800,60944493600,60928768800,60944493600,0,0,'WET',],[60944493600,60960218400,60944497200,60960222000,3600,1,'WEST',],[60960218400,60975338400,60960218400,60975338400,0,0,'WET',],[60975338400,60992272800,60975342000,60992276400,3600,1,'WEST',],[60992272800,61007997600,60992272800,61007997600,0,0,'WET',],[61007997600,61023722400,61008001200,61023726000,3600,1,'WEST',],[61023722400,61038842400,61023722400,61038842400,0,0,'WET',],[61038842400,61055172000,61038846000,61055175600,3600,1,'WEST',],[61055172000,61072106400,61055172000,61072106400,0,0,'WET',],[61072106400,61086621600,61072110000,61086625200,3600,1,'WEST',],[61086621600,61102346400,61086621600,61102346400,0,0,'WET',],[61102346400,61118071200,61102350000,61118074800,3600,1,'WEST',],[61118071200,61133191200,61118071200,61133191200,0,0,'WET',],[61133191200,61149520800,61133194800,61149524400,3600,1,'WEST',],[61149520800,61166455200,61149520800,61166455200,0,0,'WET',],[61166455200,61185204000,61166458800,61185207600,3600,1,'WEST',],[61185204000,61193671200,61185204000,61193671200,0,0,'WET',],[61193671200,61200496800,61193674800,61200500400,3600,1,'WEST',],[61200496800,61278426000,61200504000,61278433200,7200,1,'WEST',],[61278426000,61291126800,61278429600,61291130400,3600,0,'WET',],[61291126800,61307456400,61291134000,61307463600,7200,1,'WEST',],[61307456400,61323181200,61307460000,61323184800,3600,0,'WET',],[61323181200,61337696400,61323188400,61337703600,7200,1,'WEST',],[61337696400,61354630800,61337700000,61354634400,3600,0,'CET',],[61354630800,61369059600,61354638000,61369066800,7200,1,'CEST',],[61369059600,61390227600,61369063200,61390231200,3600,0,'CET',],[61390227600,61402410000,61390234800,61402417200,7200,1,'CEST',],[61402410000,62356604400,61402413600,62356608000,3600,0,'CET',],[62356604400,62364560400,62356608000,62364564000,3600,0,'CET',],[62364560400,62379680400,62364567600,62379687600,7200,1,'CEST',],[62379680400,62396010000,62379684000,62396013600,3600,0,'CET',],[62396010000,62411734800,62396017200,62411742000,7200,1,'CEST',],[62411734800,62427459600,62411738400,62427463200,3600,0,'CET',],[62427459600,62443184400,62427466800,62443191600,7200,1,'CEST',],[62443184400,62459514000,62443188000,62459517600,3600,0,'CET',],[62459514000,62474634000,62459521200,62474641200,7200,1,'CEST',],[62474634000,62490358800,62474637600,62490362400,3600,0,'CET',],[62490358800,62506083600,62490366000,62506090800,7200,1,'CEST',],[62506083600,62521808400,62506087200,62521812000,3600,0,'CET',],[62521808400,62537533200,62521815600,62537540400,7200,1,'CEST',],[62537533200,62553258000,62537536800,62553261600,3600,0,'CET',],[62553258000,62568982800,62553265200,62568990000,7200,1,'CEST',],[62568982800,62584707600,62568986400,62584711200,3600,0,'CET',],[62584707600,62601037200,62584714800,62601044400,7200,1,'CEST',],[62601037200,62616762000,62601040800,62616765600,3600,0,'CET',],[62616762000,62632486800,62616769200,62632494000,7200,1,'CEST',],[62632486800,62648211600,62632490400,62648215200,3600,0,'CET',],[62648211600,62663936400,62648218800,62663943600,7200,1,'CEST',],[62663936400,62679661200,62663940000,62679664800,3600,0,'CET',],[62679661200,62695386000,62679668400,62695393200,7200,1,'CEST',],[62695386000,62711110800,62695389600,62711114400,3600,0,'CET',],[62711110800,62726835600,62711118000,62726842800,7200,1,'CEST',],[62726835600,62742560400,62726839200,62742564000,3600,0,'CET',],[62742560400,62758285200,62742567600,62758292400,7200,1,'CEST',],[62758285200,62774010000,62758288800,62774013600,3600,0,'CET',],[62774010000,62790339600,62774017200,62790346800,7200,1,'CEST',],[62790339600,62806064400,62790343200,62806068000,3600,0,'CET',],[62806064400,62821789200,62806071600,62821796400,7200,1,'CEST',],[62821789200,62837514000,62821792800,62837517600,3600,0,'CET',],[62837514000,62853238800,62837521200,62853246000,7200,1,'CEST',],[62853238800,62868963600,62853242400,62868967200,3600,0,'CET',],[62868963600,62884688400,62868970800,62884695600,7200,1,'CEST',],[62884688400,62900413200,62884692000,62900416800,3600,0,'CET',],[62900413200,62916138000,62900420400,62916145200,7200,1,'CEST',],[62916138000,62931862800,62916141600,62931866400,3600,0,'CET',],[62931862800,62947587600,62931870000,62947594800,7200,1,'CEST',],[62947587600,62963917200,62947591200,62963920800,3600,0,'CET',],[62963917200,62982061200,62963924400,62982068400,7200,1,'CEST',],[62982061200,62995366800,62982064800,62995370400,3600,0,'CET',],[62995366800,63013510800,62995374000,63013518000,7200,1,'CEST',],[63013510800,63026816400,63013514400,63026820000,3600,0,'CET',],[63026816400,63044960400,63026823600,63044967600,7200,1,'CEST',],[63044960400,63058266000,63044964000,63058269600,3600,0,'CET',],[63058266000,63077014800,63058273200,63077022000,7200,1,'CEST',],[63077014800,63089715600,63077018400,63089719200,3600,0,'CET',],[63089715600,63108464400,63089722800,63108471600,7200,1,'CEST',],[63108464400,63121165200,63108468000,63121168800,3600,0,'CET',],[63121165200,63139914000,63121172400,63139921200,7200,1,'CEST',],[63139914000,63153219600,63139917600,63153223200,3600,0,'CET',],[63153219600,63171363600,63153226800,63171370800,7200,1,'CEST',],[63171363600,63184669200,63171367200,63184672800,3600,0,'CET',],[63184669200,63202813200,63184676400,63202820400,7200,1,'CEST',],[63202813200,63216118800,63202816800,63216122400,3600,0,'CET',],[63216118800,63234867600,63216126000,63234874800,7200,1,'CEST',],[63234867600,63247568400,63234871200,63247572000,3600,0,'CET',],[63247568400,63266317200,63247575600,63266324400,7200,1,'CEST',],[63266317200,63279018000,63266320800,63279021600,3600,0,'CET',],[63279018000,63297766800,63279025200,63297774000,7200,1,'CEST',],[63297766800,63310467600,63297770400,63310471200,3600,0,'CET',],[63310467600,63329216400,63310474800,63329223600,7200,1,'CEST',],[63329216400,63342522000,63329220000,63342525600,3600,0,'CET',],[63342522000,63360666000,63342529200,63360673200,7200,1,'CEST',],[63360666000,63373971600,63360669600,63373975200,3600,0,'CET',],[63373971600,63392115600,63373978800,63392122800,7200,1,'CEST',],[63392115600,63405421200,63392119200,63405424800,3600,0,'CET',],[63405421200,63424170000,63405428400,63424177200,7200,1,'CEST',],[63424170000,63436870800,63424173600,63436874400,3600,0,'CET',],[63436870800,63455619600,63436878000,63455626800,7200,1,'CEST',],[63455619600,63468320400,63455623200,63468324000,3600,0,'CET',],[63468320400,63487069200,63468327600,63487076400,7200,1,'CEST',],[63487069200,63500374800,63487072800,63500378400,3600,0,'CET',],[63500374800,63518518800,63500382000,63518526000,7200,1,'CEST',],[63518518800,63531824400,63518522400,63531828000,3600,0,'CET',],[63531824400,63549968400,63531831600,63549975600,7200,1,'CEST',],[63549968400,63563274000,63549972000,63563277600,3600,0,'CET',],[63563274000,63581418000,63563281200,63581425200,7200,1,'CEST',],[63581418000,63594723600,63581421600,63594727200,3600,0,'CET',],[63594723600,63613472400,63594730800,63613479600,7200,1,'CEST',],[63613472400,63626173200,63613476000,63626176800,3600,0,'CET',],[63626173200,63644922000,63626180400,63644929200,7200,1,'CEST',],[63644922000,63657622800,63644925600,63657626400,3600,0,'CET',],[63657622800,63676371600,63657630000,63676378800,7200,1,'CEST',],[63676371600,63689677200,63676375200,63689680800,3600,0,'CET',],[63689677200,63707821200,63689684400,63707828400,7200,1,'CEST',],[63707821200,63721126800,63707824800,63721130400,3600,0,'CET',],[63721126800,63739270800,63721134000,63739278000,7200,1,'CEST',],[63739270800,63752576400,63739274400,63752580000,3600,0,'CET',],[63752576400,63771325200,63752583600,63771332400,7200,1,'CEST',],[63771325200,63784026000,63771328800,63784029600,3600,0,'CET',],[63784026000,63802774800,63784033200,63802782000,7200,1,'CEST',],[63802774800,63815475600,63802778400,63815479200,3600,0,'CET',],[63815475600,63834224400,63815482800,63834231600,7200,1,'CEST',],[63834224400,63847530000,63834228000,63847533600,3600,0,'CET',],[63847530000,63865674000,63847537200,63865681200,7200,1,'CEST',],[63865674000,63878979600,63865677600,63878983200,3600,0,'CET',],[63878979600,63897123600,63878986800,63897130800,7200,1,'CEST',],[63897123600,63910429200,63897127200,63910432800,3600,0,'CET',],[63910429200,63928573200,63910436400,63928580400,7200,1,'CEST',],[63928573200,63941878800,63928576800,63941882400,3600,0,'CET',],[63941878800,63960627600,63941886000,63960634800,7200,1,'CEST',],];sub olson_version {'2016a'}sub has_dst_changes {81}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {3600}my$last_observance=bless({'format'=>'CE%sT','gmtoff'=>'1:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>721720,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>721720,'utc_rd_secs'=>0,'utc_year'=>1978 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>3600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>721719,'local_rd_secs'=>82800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>721719,'utc_rd_secs'=>82800,'utc_year'=>1977 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_LUXEMBOURG

$fatpacked{"DateTime/TimeZone/Europe/Madrid.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_MADRID';
  package DateTime::TimeZone::Europe::Madrid;$DateTime::TimeZone::Europe::Madrid::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Madrid::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59958231284,DateTime::TimeZone::NEG_INFINITY,59958230400,-884,0,'LMT',],[59958231284,60473948400,59958231284,60473948400,0,0,'WET',],[60473948400,60487254000,60473952000,60487257600,3600,1,'WEST',],[60487254000,60503756400,60487254000,60503756400,0,0,'WET',],[60503756400,60518790000,60503760000,60518793600,3600,1,'WEST',],[60518790000,60534428400,60518790000,60534428400,0,0,'WET',],[60534428400,60550326000,60534432000,60550329600,3600,1,'WEST',],[60550326000,60693231600,60550326000,60693231600,0,0,'WET',],[60693231600,60708006000,60693235200,60708009600,3600,1,'WEST',],[60708006000,60756390000,60708006000,60756390000,0,0,'WET',],[60756390000,60770905200,60756393600,60770908800,3600,1,'WEST',],[60770905200,60787234800,60770905200,60787234800,0,0,'WET',],[60787234800,60802354800,60787238400,60802358400,3600,1,'WEST',],[60802354800,60819289200,60802354800,60819289200,0,0,'WET',],[60819289200,60834409200,60819292800,60834412800,3600,1,'WEST',],[60834409200,60851343600,60834409200,60851343600,0,0,'WET',],[60851343600,60865858800,60851347200,60865862400,3600,1,'WEST',],[60865858800,61106569200,60865858800,61106569200,0,0,'WET',],[61106569200,61118060400,61106572800,61118064000,3600,1,'WEST',],[61118060400,61132834800,61118060400,61132834800,0,0,'WET',],[61132834800,61149510000,61132838400,61149513600,3600,1,'WEST',],[61149510000,61166444400,61149510000,61166444400,0,0,'WET',],[61166444400,61181564400,61166448000,61181568000,3600,1,'WEST',],[61181564400,61195474800,61181564400,61195474800,0,0,'WET',],[61195474800,61262604000,61195478400,61262607600,3600,1,'WEST',],[61262604000,61273144800,61262611200,61273152000,7200,1,'WEMT',],[61273144800,61292844000,61273148400,61292847600,3600,1,'WEST',],[61292844000,61307445600,61292851200,61307452800,7200,1,'WEMT',],[61307445600,61324293600,61307449200,61324297200,3600,1,'WEST',],[61324293600,61339672800,61324300800,61339680000,7200,1,'WEMT',],[61339672800,61355743200,61339676400,61355746800,3600,1,'WEST',],[61355743200,61370262000,61355750400,61370269200,7200,1,'WEMT',],[61370262000,61387192800,61370265600,61387196400,3600,1,'WEST',],[61387192800,61401794400,61387200000,61401801600,7200,1,'WEMT',],[61401794400,61483356000,61401798000,61483359600,3600,0,'CET',],[61483356000,61496492400,61483363200,61496499600,7200,1,'CEST',],[61496492400,62270805600,61496496000,62270809200,3600,0,'CET',],[62270805600,62285929200,62270812800,62285936400,7200,1,'CEST',],[62285929200,62302860000,62285932800,62302863600,3600,0,'CET',],[62302860000,62317378800,62302867200,62317386000,7200,1,'CEST',],[62317378800,62332495200,62317382400,62332498800,3600,0,'CET',],[62332495200,62348223600,62332502400,62348230800,7200,1,'CEST',],[62348223600,62364549600,62348227200,62364553200,3600,0,'CET',],[62364549600,62379673200,62364556800,62379680400,7200,1,'CEST',],[62379673200,62396085600,62379676800,62396089200,3600,0,'CET',],[62396085600,62411727600,62396092800,62411734800,7200,1,'CEST',],[62411727600,62419676400,62411731200,62419680000,3600,0,'CET',],[62419676400,62427459600,62419680000,62427463200,3600,0,'CET',],[62427459600,62443184400,62427466800,62443191600,7200,1,'CEST',],[62443184400,62459514000,62443188000,62459517600,3600,0,'CET',],[62459514000,62474634000,62459521200,62474641200,7200,1,'CEST',],[62474634000,62490358800,62474637600,62490362400,3600,0,'CET',],[62490358800,62506083600,62490366000,62506090800,7200,1,'CEST',],[62506083600,62521808400,62506087200,62521812000,3600,0,'CET',],[62521808400,62537533200,62521815600,62537540400,7200,1,'CEST',],[62537533200,62553258000,62537536800,62553261600,3600,0,'CET',],[62553258000,62568982800,62553265200,62568990000,7200,1,'CEST',],[62568982800,62584707600,62568986400,62584711200,3600,0,'CET',],[62584707600,62601037200,62584714800,62601044400,7200,1,'CEST',],[62601037200,62616762000,62601040800,62616765600,3600,0,'CET',],[62616762000,62632486800,62616769200,62632494000,7200,1,'CEST',],[62632486800,62648211600,62632490400,62648215200,3600,0,'CET',],[62648211600,62663936400,62648218800,62663943600,7200,1,'CEST',],[62663936400,62679661200,62663940000,62679664800,3600,0,'CET',],[62679661200,62695386000,62679668400,62695393200,7200,1,'CEST',],[62695386000,62711110800,62695389600,62711114400,3600,0,'CET',],[62711110800,62726835600,62711118000,62726842800,7200,1,'CEST',],[62726835600,62742560400,62726839200,62742564000,3600,0,'CET',],[62742560400,62758285200,62742567600,62758292400,7200,1,'CEST',],[62758285200,62774010000,62758288800,62774013600,3600,0,'CET',],[62774010000,62790339600,62774017200,62790346800,7200,1,'CEST',],[62790339600,62806064400,62790343200,62806068000,3600,0,'CET',],[62806064400,62821789200,62806071600,62821796400,7200,1,'CEST',],[62821789200,62837514000,62821792800,62837517600,3600,0,'CET',],[62837514000,62853238800,62837521200,62853246000,7200,1,'CEST',],[62853238800,62868963600,62853242400,62868967200,3600,0,'CET',],[62868963600,62884688400,62868970800,62884695600,7200,1,'CEST',],[62884688400,62900413200,62884692000,62900416800,3600,0,'CET',],[62900413200,62916138000,62900420400,62916145200,7200,1,'CEST',],[62916138000,62931862800,62916141600,62931866400,3600,0,'CET',],[62931862800,62947587600,62931870000,62947594800,7200,1,'CEST',],[62947587600,62963917200,62947591200,62963920800,3600,0,'CET',],[62963917200,62982061200,62963924400,62982068400,7200,1,'CEST',],[62982061200,62995366800,62982064800,62995370400,3600,0,'CET',],[62995366800,63013510800,62995374000,63013518000,7200,1,'CEST',],[63013510800,63026816400,63013514400,63026820000,3600,0,'CET',],[63026816400,63044960400,63026823600,63044967600,7200,1,'CEST',],[63044960400,63058266000,63044964000,63058269600,3600,0,'CET',],[63058266000,63077014800,63058273200,63077022000,7200,1,'CEST',],[63077014800,63089715600,63077018400,63089719200,3600,0,'CET',],[63089715600,63108464400,63089722800,63108471600,7200,1,'CEST',],[63108464400,63121165200,63108468000,63121168800,3600,0,'CET',],[63121165200,63139914000,63121172400,63139921200,7200,1,'CEST',],[63139914000,63153219600,63139917600,63153223200,3600,0,'CET',],[63153219600,63171363600,63153226800,63171370800,7200,1,'CEST',],[63171363600,63184669200,63171367200,63184672800,3600,0,'CET',],[63184669200,63202813200,63184676400,63202820400,7200,1,'CEST',],[63202813200,63216118800,63202816800,63216122400,3600,0,'CET',],[63216118800,63234867600,63216126000,63234874800,7200,1,'CEST',],[63234867600,63247568400,63234871200,63247572000,3600,0,'CET',],[63247568400,63266317200,63247575600,63266324400,7200,1,'CEST',],[63266317200,63279018000,63266320800,63279021600,3600,0,'CET',],[63279018000,63297766800,63279025200,63297774000,7200,1,'CEST',],[63297766800,63310467600,63297770400,63310471200,3600,0,'CET',],[63310467600,63329216400,63310474800,63329223600,7200,1,'CEST',],[63329216400,63342522000,63329220000,63342525600,3600,0,'CET',],[63342522000,63360666000,63342529200,63360673200,7200,1,'CEST',],[63360666000,63373971600,63360669600,63373975200,3600,0,'CET',],[63373971600,63392115600,63373978800,63392122800,7200,1,'CEST',],[63392115600,63405421200,63392119200,63405424800,3600,0,'CET',],[63405421200,63424170000,63405428400,63424177200,7200,1,'CEST',],[63424170000,63436870800,63424173600,63436874400,3600,0,'CET',],[63436870800,63455619600,63436878000,63455626800,7200,1,'CEST',],[63455619600,63468320400,63455623200,63468324000,3600,0,'CET',],[63468320400,63487069200,63468327600,63487076400,7200,1,'CEST',],[63487069200,63500374800,63487072800,63500378400,3600,0,'CET',],[63500374800,63518518800,63500382000,63518526000,7200,1,'CEST',],[63518518800,63531824400,63518522400,63531828000,3600,0,'CET',],[63531824400,63549968400,63531831600,63549975600,7200,1,'CEST',],[63549968400,63563274000,63549972000,63563277600,3600,0,'CET',],[63563274000,63581418000,63563281200,63581425200,7200,1,'CEST',],[63581418000,63594723600,63581421600,63594727200,3600,0,'CET',],[63594723600,63613472400,63594730800,63613479600,7200,1,'CEST',],[63613472400,63626173200,63613476000,63626176800,3600,0,'CET',],[63626173200,63644922000,63626180400,63644929200,7200,1,'CEST',],[63644922000,63657622800,63644925600,63657626400,3600,0,'CET',],[63657622800,63676371600,63657630000,63676378800,7200,1,'CEST',],[63676371600,63689677200,63676375200,63689680800,3600,0,'CET',],[63689677200,63707821200,63689684400,63707828400,7200,1,'CEST',],[63707821200,63721126800,63707824800,63721130400,3600,0,'CET',],[63721126800,63739270800,63721134000,63739278000,7200,1,'CEST',],[63739270800,63752576400,63739274400,63752580000,3600,0,'CET',],[63752576400,63771325200,63752583600,63771332400,7200,1,'CEST',],[63771325200,63784026000,63771328800,63784029600,3600,0,'CET',],[63784026000,63802774800,63784033200,63802782000,7200,1,'CEST',],[63802774800,63815475600,63802778400,63815479200,3600,0,'CET',],[63815475600,63834224400,63815482800,63834231600,7200,1,'CEST',],[63834224400,63847530000,63834228000,63847533600,3600,0,'CET',],[63847530000,63865674000,63847537200,63865681200,7200,1,'CEST',],[63865674000,63878979600,63865677600,63878983200,3600,0,'CET',],[63878979600,63897123600,63878986800,63897130800,7200,1,'CEST',],[63897123600,63910429200,63897127200,63910432800,3600,0,'CET',],[63910429200,63928573200,63910436400,63928580400,7200,1,'CEST',],[63928573200,63941878800,63928576800,63941882400,3600,0,'CET',],[63941878800,63960627600,63941886000,63960634800,7200,1,'CEST',],];sub olson_version {'2016a'}sub has_dst_changes {76}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {3600}my$last_observance=bless({'format'=>'CE%sT','gmtoff'=>'1:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>722450,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>722450,'utc_rd_secs'=>0,'utc_year'=>1980 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>3600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>722449,'local_rd_secs'=>82800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>722449,'utc_rd_secs'=>82800,'utc_year'=>1979 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_MADRID

$fatpacked{"DateTime/TimeZone/Europe/Malta.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_MALTA';
  package DateTime::TimeZone::Europe::Malta;$DateTime::TimeZone::Europe::Malta::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Malta::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59732204516,DateTime::TimeZone::NEG_INFINITY,59732208000,3484,0,'LMT',],[59732204516,60444831600,59732208116,60444835200,3600,0,'CET',],[60444831600,60455199600,60444838800,60455206800,7200,1,'CEST',],[60455199600,60470924400,60455203200,60470928000,3600,0,'CET',],[60470924400,60486649200,60470931600,60486656400,7200,1,'CEST',],[60486649200,60500559600,60486652800,60500563200,3600,0,'CET',],[60500559600,60518703600,60500566800,60518710800,7200,1,'CEST',],[60518703600,60531404400,60518707200,60531408000,3600,0,'CET',],[60531404400,60550153200,60531411600,60550160400,7200,1,'CEST',],[60550153200,60564668400,60550156800,60564672000,3600,0,'CET',],[60564668400,60580393200,60564675600,60580400400,7200,1,'CEST',],[60580393200,61203250800,60580396800,61203254400,3600,0,'CET',],[61203250800,61278426000,61203258000,61278433200,7200,1,'CEST',],[61278426000,61291126800,61278429600,61291130400,3600,0,'CET',],[61291126800,61307456400,61291134000,61307463600,7200,1,'CEST',],[61307456400,61323181200,61307460000,61323184800,3600,0,'CET',],[61323181200,61338906000,61323188400,61338913200,7200,1,'CEST',],[61338906000,61354630800,61338909600,61354634400,3600,0,'CET',],[61354630800,61368966000,61354638000,61368973200,7200,1,'CEST',],[61368966000,61384784400,61368969600,61384788000,3600,0,'CET',],[61384784400,61402323600,61384791600,61402330800,7200,1,'CEST',],[61402323600,61416226800,61402327200,61416230400,3600,0,'CET',],[61416226800,61433766000,61416234000,61433773200,7200,1,'CEST',],[61433766000,61446474000,61433769600,61446477600,3600,0,'CET',],[61446474000,61465222800,61446481200,61465230000,7200,1,'CEST',],[61465222800,62021631600,61465226400,62021635200,3600,0,'CET',],[62021631600,62032514400,62021638800,62032521600,7200,1,'CEST',],[62032514400,62053686000,62032518000,62053689600,3600,0,'CET',],[62053686000,62063964000,62053693200,62063971200,7200,1,'CEST',],[62063964000,62085135600,62063967600,62085139200,3600,0,'CET',],[62085135600,62095413600,62085142800,62095420800,7200,1,'CEST',],[62095413600,62117190000,62095417200,62117193600,3600,0,'CET',],[62117190000,62127468000,62117197200,62127475200,7200,1,'CEST',],[62127468000,62148639600,62127471600,62148643200,3600,0,'CET',],[62148639600,62158917600,62148646800,62158924800,7200,1,'CEST',],[62158917600,62179484400,62158921200,62179488000,3600,0,'CET',],[62179484400,62190370800,62179491600,62190378000,7200,1,'CEST',],[62190370800,62211538800,62190374400,62211542400,3600,0,'CET',],[62211538800,62222421600,62211546000,62222428800,7200,1,'CEST',],[62222421600,62238063600,62222425200,62238067200,3600,0,'CET',],[62238063600,62253788400,62238070800,62253795600,7200,1,'CEST',],[62253788400,62271414000,62253792000,62271417600,3600,0,'CET',],[62271414000,62284201200,62271421200,62284208400,7200,1,'CEST',],[62284201200,62302870800,62284204800,62302874400,3600,0,'CET',],[62302870800,62316172800,62302878000,62316180000,7200,1,'CEST',],[62316172800,62334320400,62316176400,62334324000,3600,0,'CET',],[62334320400,62347622400,62334327600,62347629600,7200,1,'CEST',],[62347622400,62365770000,62347626000,62365773600,3600,0,'CET',],[62365770000,62379072000,62365777200,62379079200,7200,1,'CEST',],[62379072000,62397219600,62379075600,62397223200,3600,0,'CET',],[62397219600,62410521600,62397226800,62410528800,7200,1,'CEST',],[62410521600,62428669200,62410525200,62428672800,3600,0,'CET',],[62428669200,62441971200,62428676400,62441978400,7200,1,'CEST',],[62441971200,62458995600,62441974800,62458999200,3600,0,'CET',],[62458995600,62474025600,62459002800,62474032800,7200,1,'CEST',],[62474025600,62482834800,62474029200,62482838400,3600,0,'CET',],[62482834800,62490358800,62482838400,62490362400,3600,0,'CET',],[62490358800,62506083600,62490366000,62506090800,7200,1,'CEST',],[62506083600,62521808400,62506087200,62521812000,3600,0,'CET',],[62521808400,62537533200,62521815600,62537540400,7200,1,'CEST',],[62537533200,62553258000,62537536800,62553261600,3600,0,'CET',],[62553258000,62568982800,62553265200,62568990000,7200,1,'CEST',],[62568982800,62584707600,62568986400,62584711200,3600,0,'CET',],[62584707600,62601037200,62584714800,62601044400,7200,1,'CEST',],[62601037200,62616762000,62601040800,62616765600,3600,0,'CET',],[62616762000,62632486800,62616769200,62632494000,7200,1,'CEST',],[62632486800,62648211600,62632490400,62648215200,3600,0,'CET',],[62648211600,62663936400,62648218800,62663943600,7200,1,'CEST',],[62663936400,62679661200,62663940000,62679664800,3600,0,'CET',],[62679661200,62695386000,62679668400,62695393200,7200,1,'CEST',],[62695386000,62711110800,62695389600,62711114400,3600,0,'CET',],[62711110800,62726835600,62711118000,62726842800,7200,1,'CEST',],[62726835600,62742560400,62726839200,62742564000,3600,0,'CET',],[62742560400,62758285200,62742567600,62758292400,7200,1,'CEST',],[62758285200,62774010000,62758288800,62774013600,3600,0,'CET',],[62774010000,62790339600,62774017200,62790346800,7200,1,'CEST',],[62790339600,62806064400,62790343200,62806068000,3600,0,'CET',],[62806064400,62821789200,62806071600,62821796400,7200,1,'CEST',],[62821789200,62837514000,62821792800,62837517600,3600,0,'CET',],[62837514000,62853238800,62837521200,62853246000,7200,1,'CEST',],[62853238800,62868963600,62853242400,62868967200,3600,0,'CET',],[62868963600,62884688400,62868970800,62884695600,7200,1,'CEST',],[62884688400,62900413200,62884692000,62900416800,3600,0,'CET',],[62900413200,62916138000,62900420400,62916145200,7200,1,'CEST',],[62916138000,62931862800,62916141600,62931866400,3600,0,'CET',],[62931862800,62947587600,62931870000,62947594800,7200,1,'CEST',],[62947587600,62963917200,62947591200,62963920800,3600,0,'CET',],[62963917200,62982061200,62963924400,62982068400,7200,1,'CEST',],[62982061200,62995366800,62982064800,62995370400,3600,0,'CET',],[62995366800,63013510800,62995374000,63013518000,7200,1,'CEST',],[63013510800,63026816400,63013514400,63026820000,3600,0,'CET',],[63026816400,63044960400,63026823600,63044967600,7200,1,'CEST',],[63044960400,63058266000,63044964000,63058269600,3600,0,'CET',],[63058266000,63077014800,63058273200,63077022000,7200,1,'CEST',],[63077014800,63089715600,63077018400,63089719200,3600,0,'CET',],[63089715600,63108464400,63089722800,63108471600,7200,1,'CEST',],[63108464400,63121165200,63108468000,63121168800,3600,0,'CET',],[63121165200,63139914000,63121172400,63139921200,7200,1,'CEST',],[63139914000,63153219600,63139917600,63153223200,3600,0,'CET',],[63153219600,63171363600,63153226800,63171370800,7200,1,'CEST',],[63171363600,63184669200,63171367200,63184672800,3600,0,'CET',],[63184669200,63202813200,63184676400,63202820400,7200,1,'CEST',],[63202813200,63216118800,63202816800,63216122400,3600,0,'CET',],[63216118800,63234867600,63216126000,63234874800,7200,1,'CEST',],[63234867600,63247568400,63234871200,63247572000,3600,0,'CET',],[63247568400,63266317200,63247575600,63266324400,7200,1,'CEST',],[63266317200,63279018000,63266320800,63279021600,3600,0,'CET',],[63279018000,63297766800,63279025200,63297774000,7200,1,'CEST',],[63297766800,63310467600,63297770400,63310471200,3600,0,'CET',],[63310467600,63329216400,63310474800,63329223600,7200,1,'CEST',],[63329216400,63342522000,63329220000,63342525600,3600,0,'CET',],[63342522000,63360666000,63342529200,63360673200,7200,1,'CEST',],[63360666000,63373971600,63360669600,63373975200,3600,0,'CET',],[63373971600,63392115600,63373978800,63392122800,7200,1,'CEST',],[63392115600,63405421200,63392119200,63405424800,3600,0,'CET',],[63405421200,63424170000,63405428400,63424177200,7200,1,'CEST',],[63424170000,63436870800,63424173600,63436874400,3600,0,'CET',],[63436870800,63455619600,63436878000,63455626800,7200,1,'CEST',],[63455619600,63468320400,63455623200,63468324000,3600,0,'CET',],[63468320400,63487069200,63468327600,63487076400,7200,1,'CEST',],[63487069200,63500374800,63487072800,63500378400,3600,0,'CET',],[63500374800,63518518800,63500382000,63518526000,7200,1,'CEST',],[63518518800,63531824400,63518522400,63531828000,3600,0,'CET',],[63531824400,63549968400,63531831600,63549975600,7200,1,'CEST',],[63549968400,63563274000,63549972000,63563277600,3600,0,'CET',],[63563274000,63581418000,63563281200,63581425200,7200,1,'CEST',],[63581418000,63594723600,63581421600,63594727200,3600,0,'CET',],[63594723600,63613472400,63594730800,63613479600,7200,1,'CEST',],[63613472400,63626173200,63613476000,63626176800,3600,0,'CET',],[63626173200,63644922000,63626180400,63644929200,7200,1,'CEST',],[63644922000,63657622800,63644925600,63657626400,3600,0,'CET',],[63657622800,63676371600,63657630000,63676378800,7200,1,'CEST',],[63676371600,63689677200,63676375200,63689680800,3600,0,'CET',],[63689677200,63707821200,63689684400,63707828400,7200,1,'CEST',],[63707821200,63721126800,63707824800,63721130400,3600,0,'CET',],[63721126800,63739270800,63721134000,63739278000,7200,1,'CEST',],[63739270800,63752576400,63739274400,63752580000,3600,0,'CET',],[63752576400,63771325200,63752583600,63771332400,7200,1,'CEST',],[63771325200,63784026000,63771328800,63784029600,3600,0,'CET',],[63784026000,63802774800,63784033200,63802782000,7200,1,'CEST',],[63802774800,63815475600,63802778400,63815479200,3600,0,'CET',],[63815475600,63834224400,63815482800,63834231600,7200,1,'CEST',],[63834224400,63847530000,63834228000,63847533600,3600,0,'CET',],[63847530000,63865674000,63847537200,63865681200,7200,1,'CEST',],[63865674000,63878979600,63865677600,63878983200,3600,0,'CET',],[63878979600,63897123600,63878986800,63897130800,7200,1,'CEST',],[63897123600,63910429200,63897127200,63910432800,3600,0,'CET',],[63910429200,63928573200,63910436400,63928580400,7200,1,'CEST',],[63928573200,63941878800,63928576800,63941882400,3600,0,'CET',],[63941878800,63960627600,63941886000,63960634800,7200,1,'CEST',],];sub olson_version {'2016a'}sub has_dst_changes {74}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {3600}my$last_observance=bless({'format'=>'CE%sT','gmtoff'=>'1:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>723181,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>723181,'utc_rd_secs'=>0,'utc_year'=>1982 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>3600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>723180,'local_rd_secs'=>82800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>723180,'utc_rd_secs'=>82800,'utc_year'=>1981 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_MALTA

$fatpacked{"DateTime/TimeZone/Europe/Minsk.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_MINSK';
  package DateTime::TimeZone::Europe::Minsk;$DateTime::TimeZone::Europe::Minsk::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Minsk::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59295535784,DateTime::TimeZone::NEG_INFINITY,59295542400,6616,0,'LMT',],[59295535784,60694524600,59295542384,60694531200,6600,0,'MMT',],[60694524600,60888146400,60694531800,60888153600,7200,0,'EET',],[60888146400,61235902800,60888157200,61235913600,10800,0,'MSK',],[61235902800,61278426000,61235910000,61278433200,7200,1,'CEST',],[61278426000,61291126800,61278429600,61291130400,3600,0,'CET',],[61291126800,61307456400,61291134000,61307463600,7200,1,'CEST',],[61307456400,61323181200,61307460000,61323184800,3600,0,'CET',],[61323181200,61331032800,61323188400,61331040000,7200,1,'CEST',],[61331032800,62490603600,61331043600,62490614400,10800,0,'MSK',],[62490603600,62506411200,62490618000,62506425600,14400,1,'MSD',],[62506411200,62522139600,62506422000,62522150400,10800,0,'MSK',],[62522139600,62537947200,62522154000,62537961600,14400,1,'MSD',],[62537947200,62553675600,62537958000,62553686400,10800,0,'MSK',],[62553675600,62569483200,62553690000,62569497600,14400,1,'MSD',],[62569483200,62585298000,62569494000,62585308800,10800,0,'MSK',],[62585298000,62601030000,62585312400,62601044400,14400,1,'MSD',],[62601030000,62616754800,62601040800,62616765600,10800,0,'MSK',],[62616754800,62632479600,62616769200,62632494000,14400,1,'MSD',],[62632479600,62648204400,62632490400,62648215200,10800,0,'MSK',],[62648204400,62663929200,62648218800,62663943600,14400,1,'MSD',],[62663929200,62679654000,62663940000,62679664800,10800,0,'MSK',],[62679654000,62695378800,62679668400,62695393200,14400,1,'MSD',],[62695378800,62711103600,62695389600,62711114400,10800,0,'MSK',],[62711103600,62726828400,62711118000,62726842800,14400,1,'MSD',],[62726828400,62742553200,62726839200,62742564000,10800,0,'MSK',],[62742553200,62758278000,62742567600,62758292400,14400,1,'MSD',],[62758278000,62766824400,62758288800,62766835200,10800,0,'MSK',],[62766824400,62806057200,62766835200,62806068000,10800,0,'MSK',],[62806057200,62821785600,62806068000,62821796400,10800,1,'EEST',],[62821785600,62837503200,62821792800,62837510400,7200,0,'EET',],[62837503200,62853228000,62837514000,62853238800,10800,1,'EEST',],[62853228000,62868960000,62853235200,62868967200,7200,0,'EET',],[62868960000,62884684800,62868970800,62884695600,10800,1,'EEST',],[62884684800,62900409600,62884692000,62900416800,7200,0,'EET',],[62900409600,62916134400,62900420400,62916145200,10800,1,'EEST',],[62916134400,62931859200,62916141600,62931866400,7200,0,'EET',],[62931859200,62947584000,62931870000,62947594800,10800,1,'EEST',],[62947584000,62963913600,62947591200,62963920800,7200,0,'EET',],[62963913600,62982057600,62963924400,62982068400,10800,1,'EEST',],[62982057600,62995363200,62982064800,62995370400,7200,0,'EET',],[62995363200,63013507200,62995374000,63013518000,10800,1,'EEST',],[63013507200,63026812800,63013514400,63026820000,7200,0,'EET',],[63026812800,63044956800,63026823600,63044967600,10800,1,'EEST',],[63044956800,63058262400,63044964000,63058269600,7200,0,'EET',],[63058262400,63077011200,63058273200,63077022000,10800,1,'EEST',],[63077011200,63089712000,63077018400,63089719200,7200,0,'EET',],[63089712000,63108460800,63089722800,63108471600,10800,1,'EEST',],[63108460800,63121161600,63108468000,63121168800,7200,0,'EET',],[63121161600,63139910400,63121172400,63139921200,10800,1,'EEST',],[63139910400,63153216000,63139917600,63153223200,7200,0,'EET',],[63153216000,63171360000,63153226800,63171370800,10800,1,'EEST',],[63171360000,63184665600,63171367200,63184672800,7200,0,'EET',],[63184665600,63202809600,63184676400,63202820400,10800,1,'EEST',],[63202809600,63216115200,63202816800,63216122400,7200,0,'EET',],[63216115200,63234864000,63216126000,63234874800,10800,1,'EEST',],[63234864000,63247564800,63234871200,63247572000,7200,0,'EET',],[63247564800,63266313600,63247575600,63266324400,10800,1,'EEST',],[63266313600,63279014400,63266320800,63279021600,7200,0,'EET',],[63279014400,63297763200,63279025200,63297774000,10800,1,'EEST',],[63297763200,63310464000,63297770400,63310471200,7200,0,'EET',],[63310464000,63329212800,63310474800,63329223600,10800,1,'EEST',],[63329212800,63342518400,63329220000,63342525600,7200,0,'EET',],[63342518400,63360662400,63342529200,63360673200,10800,1,'EEST',],[63360662400,63373968000,63360669600,63373975200,7200,0,'EET',],[63373968000,63392112000,63373978800,63392122800,10800,1,'EEST',],[63392112000,63405417600,63392119200,63405424800,7200,0,'EET',],[63405417600,63424166400,63405428400,63424177200,10800,1,'EEST',],[63424166400,63436867200,63424173600,63436874400,7200,0,'EET',],[63436867200,63549957600,63436878000,63549968400,10800,0,'FET',],[63549957600,DateTime::TimeZone::INFINITY,63549968400,DateTime::TimeZone::INFINITY,10800,0,'MSK',],];sub olson_version {'2016a'}sub has_dst_changes {32}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_EUROPE_MINSK

$fatpacked{"DateTime/TimeZone/Europe/Monaco.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_MONACO';
  package DateTime::TimeZone::Europe::Monaco;$DateTime::TimeZone::Europe::Monaco::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Monaco::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59649003028,DateTime::TimeZone::NEG_INFINITY,59649004800,1772,0,'LMT',],[59649003028,60279724239,59649003589,60279724800,561,0,'PMT',],[60279724239,60445868400,60279724239,60445868400,0,0,'WET',],[60445868400,60455286000,60445872000,60455289600,3600,1,'WEST',],[60455286000,60470319600,60455286000,60470319600,0,0,'WET',],[60470319600,60487340400,60470323200,60487344000,3600,1,'WEST',],[60487340400,60500559600,60487340400,60500559600,0,0,'WET',],[60500559600,60518790000,60500563200,60518793600,3600,1,'WEST',],[60518790000,60531404400,60518790000,60531404400,0,0,'WET',],[60531404400,60550239600,60531408000,60550243200,3600,1,'WEST',],[60550239600,60561644400,60550239600,60561644400,0,0,'WET',],[60561644400,60583417200,60561648000,60583420800,3600,1,'WEST',],[60583417200,60595686000,60583417200,60595686000,0,0,'WET',],[60595686000,60615126000,60595689600,60615129600,3600,1,'WEST',],[60615126000,60628172400,60615126000,60628172400,0,0,'WET',],[60628172400,60645106800,60628176000,60645110400,3600,1,'WEST',],[60645106800,60665065200,60645106800,60665065200,0,0,'WET',],[60665065200,60676556400,60665068800,60676560000,3600,1,'WEST',],[60676556400,60691676400,60676556400,60691676400,0,0,'WET',],[60691676400,60708006000,60691680000,60708009600,3600,1,'WEST',],[60708006000,60723730800,60708006000,60723730800,0,0,'WET',],[60723730800,60739455600,60723734400,60739459200,3600,1,'WEST',],[60739455600,60756390000,60739455600,60756390000,0,0,'WET',],[60756390000,60770905200,60756393600,60770908800,3600,1,'WEST',],[60770905200,60787234800,60770905200,60787234800,0,0,'WET',],[60787234800,60802354800,60787238400,60802358400,3600,1,'WEST',],[60802354800,60819289200,60802354800,60819289200,0,0,'WET',],[60819289200,60834409200,60819292800,60834412800,3600,1,'WEST',],[60834409200,60851343600,60834409200,60851343600,0,0,'WET',],[60851343600,60865858800,60851347200,60865862400,3600,1,'WEST',],[60865858800,60882188400,60865858800,60882188400,0,0,'WET',],[60882188400,60897308400,60882192000,60897312000,3600,1,'WEST',],[60897308400,60914242800,60897308400,60914242800,0,0,'WET',],[60914242800,60928758000,60914246400,60928761600,3600,1,'WEST',],[60928758000,60944482800,60928758000,60944482800,0,0,'WET',],[60944482800,60960207600,60944486400,60960211200,3600,1,'WEST',],[60960207600,60975327600,60960207600,60975327600,0,0,'WET',],[60975327600,60992262000,60975331200,60992265600,3600,1,'WEST',],[60992262000,61007986800,60992262000,61007986800,0,0,'WET',],[61007986800,61023711600,61007990400,61023715200,3600,1,'WEST',],[61023711600,61038831600,61023711600,61038831600,0,0,'WET',],[61038831600,61055161200,61038835200,61055164800,3600,1,'WEST',],[61055161200,61072095600,61055161200,61072095600,0,0,'WET',],[61072095600,61086610800,61072099200,61086614400,3600,1,'WEST',],[61086610800,61102335600,61086610800,61102335600,0,0,'WET',],[61102335600,61118060400,61102339200,61118064000,3600,1,'WEST',],[61118060400,61133180400,61118060400,61133180400,0,0,'WET',],[61133180400,61149510000,61133184000,61149513600,3600,1,'WEST',],[61149510000,61166444400,61149510000,61166444400,0,0,'WET',],[61166444400,61185193200,61166448000,61185196800,3600,1,'WEST',],[61185193200,61193671200,61185193200,61193671200,0,0,'WET',],[61193671200,61231244400,61193674800,61231248000,3600,1,'WEST',],[61231244400,61244546400,61231251600,61244553600,7200,1,'WEMT',],[61244546400,61257855600,61244550000,61257859200,3600,1,'WEST',],[61257855600,61278426000,61257862800,61278433200,7200,1,'WEMT',],[61278426000,61291126800,61278429600,61291130400,3600,1,'WEST',],[61291126800,61307456400,61291134000,61307463600,7200,1,'WEMT',],[61307456400,61323181200,61307460000,61323184800,3600,1,'WEST',],[61323181200,61339417200,61323188400,61339424400,7200,1,'WEMT',],[61339417200,61354630800,61339420800,61354634400,3600,1,'WEST',],[61354630800,61369059600,61354638000,61369066800,7200,1,'WEMT',],[61369059600,62332502400,61369063200,62332506000,3600,0,'CET',],[62332502400,62348223600,62332509600,62348230800,7200,1,'CEST',],[62348223600,62356604400,62348227200,62356608000,3600,0,'CET',],[62356604400,62364560400,62356608000,62364564000,3600,0,'CET',],[62364560400,62379680400,62364567600,62379687600,7200,1,'CEST',],[62379680400,62396010000,62379684000,62396013600,3600,0,'CET',],[62396010000,62411734800,62396017200,62411742000,7200,1,'CEST',],[62411734800,62427459600,62411738400,62427463200,3600,0,'CET',],[62427459600,62443184400,62427466800,62443191600,7200,1,'CEST',],[62443184400,62459514000,62443188000,62459517600,3600,0,'CET',],[62459514000,62474634000,62459521200,62474641200,7200,1,'CEST',],[62474634000,62490358800,62474637600,62490362400,3600,0,'CET',],[62490358800,62506083600,62490366000,62506090800,7200,1,'CEST',],[62506083600,62521808400,62506087200,62521812000,3600,0,'CET',],[62521808400,62537533200,62521815600,62537540400,7200,1,'CEST',],[62537533200,62553258000,62537536800,62553261600,3600,0,'CET',],[62553258000,62568982800,62553265200,62568990000,7200,1,'CEST',],[62568982800,62584707600,62568986400,62584711200,3600,0,'CET',],[62584707600,62601037200,62584714800,62601044400,7200,1,'CEST',],[62601037200,62616762000,62601040800,62616765600,3600,0,'CET',],[62616762000,62632486800,62616769200,62632494000,7200,1,'CEST',],[62632486800,62648211600,62632490400,62648215200,3600,0,'CET',],[62648211600,62663936400,62648218800,62663943600,7200,1,'CEST',],[62663936400,62679661200,62663940000,62679664800,3600,0,'CET',],[62679661200,62695386000,62679668400,62695393200,7200,1,'CEST',],[62695386000,62711110800,62695389600,62711114400,3600,0,'CET',],[62711110800,62726835600,62711118000,62726842800,7200,1,'CEST',],[62726835600,62742560400,62726839200,62742564000,3600,0,'CET',],[62742560400,62758285200,62742567600,62758292400,7200,1,'CEST',],[62758285200,62774010000,62758288800,62774013600,3600,0,'CET',],[62774010000,62790339600,62774017200,62790346800,7200,1,'CEST',],[62790339600,62806064400,62790343200,62806068000,3600,0,'CET',],[62806064400,62821789200,62806071600,62821796400,7200,1,'CEST',],[62821789200,62837514000,62821792800,62837517600,3600,0,'CET',],[62837514000,62853238800,62837521200,62853246000,7200,1,'CEST',],[62853238800,62868963600,62853242400,62868967200,3600,0,'CET',],[62868963600,62884688400,62868970800,62884695600,7200,1,'CEST',],[62884688400,62900413200,62884692000,62900416800,3600,0,'CET',],[62900413200,62916138000,62900420400,62916145200,7200,1,'CEST',],[62916138000,62931862800,62916141600,62931866400,3600,0,'CET',],[62931862800,62947587600,62931870000,62947594800,7200,1,'CEST',],[62947587600,62963917200,62947591200,62963920800,3600,0,'CET',],[62963917200,62982061200,62963924400,62982068400,7200,1,'CEST',],[62982061200,62995366800,62982064800,62995370400,3600,0,'CET',],[62995366800,63013510800,62995374000,63013518000,7200,1,'CEST',],[63013510800,63026816400,63013514400,63026820000,3600,0,'CET',],[63026816400,63044960400,63026823600,63044967600,7200,1,'CEST',],[63044960400,63058266000,63044964000,63058269600,3600,0,'CET',],[63058266000,63077014800,63058273200,63077022000,7200,1,'CEST',],[63077014800,63089715600,63077018400,63089719200,3600,0,'CET',],[63089715600,63108464400,63089722800,63108471600,7200,1,'CEST',],[63108464400,63121165200,63108468000,63121168800,3600,0,'CET',],[63121165200,63139914000,63121172400,63139921200,7200,1,'CEST',],[63139914000,63153219600,63139917600,63153223200,3600,0,'CET',],[63153219600,63171363600,63153226800,63171370800,7200,1,'CEST',],[63171363600,63184669200,63171367200,63184672800,3600,0,'CET',],[63184669200,63202813200,63184676400,63202820400,7200,1,'CEST',],[63202813200,63216118800,63202816800,63216122400,3600,0,'CET',],[63216118800,63234867600,63216126000,63234874800,7200,1,'CEST',],[63234867600,63247568400,63234871200,63247572000,3600,0,'CET',],[63247568400,63266317200,63247575600,63266324400,7200,1,'CEST',],[63266317200,63279018000,63266320800,63279021600,3600,0,'CET',],[63279018000,63297766800,63279025200,63297774000,7200,1,'CEST',],[63297766800,63310467600,63297770400,63310471200,3600,0,'CET',],[63310467600,63329216400,63310474800,63329223600,7200,1,'CEST',],[63329216400,63342522000,63329220000,63342525600,3600,0,'CET',],[63342522000,63360666000,63342529200,63360673200,7200,1,'CEST',],[63360666000,63373971600,63360669600,63373975200,3600,0,'CET',],[63373971600,63392115600,63373978800,63392122800,7200,1,'CEST',],[63392115600,63405421200,63392119200,63405424800,3600,0,'CET',],[63405421200,63424170000,63405428400,63424177200,7200,1,'CEST',],[63424170000,63436870800,63424173600,63436874400,3600,0,'CET',],[63436870800,63455619600,63436878000,63455626800,7200,1,'CEST',],[63455619600,63468320400,63455623200,63468324000,3600,0,'CET',],[63468320400,63487069200,63468327600,63487076400,7200,1,'CEST',],[63487069200,63500374800,63487072800,63500378400,3600,0,'CET',],[63500374800,63518518800,63500382000,63518526000,7200,1,'CEST',],[63518518800,63531824400,63518522400,63531828000,3600,0,'CET',],[63531824400,63549968400,63531831600,63549975600,7200,1,'CEST',],[63549968400,63563274000,63549972000,63563277600,3600,0,'CET',],[63563274000,63581418000,63563281200,63581425200,7200,1,'CEST',],[63581418000,63594723600,63581421600,63594727200,3600,0,'CET',],[63594723600,63613472400,63594730800,63613479600,7200,1,'CEST',],[63613472400,63626173200,63613476000,63626176800,3600,0,'CET',],[63626173200,63644922000,63626180400,63644929200,7200,1,'CEST',],[63644922000,63657622800,63644925600,63657626400,3600,0,'CET',],[63657622800,63676371600,63657630000,63676378800,7200,1,'CEST',],[63676371600,63689677200,63676375200,63689680800,3600,0,'CET',],[63689677200,63707821200,63689684400,63707828400,7200,1,'CEST',],[63707821200,63721126800,63707824800,63721130400,3600,0,'CET',],[63721126800,63739270800,63721134000,63739278000,7200,1,'CEST',],[63739270800,63752576400,63739274400,63752580000,3600,0,'CET',],[63752576400,63771325200,63752583600,63771332400,7200,1,'CEST',],[63771325200,63784026000,63771328800,63784029600,3600,0,'CET',],[63784026000,63802774800,63784033200,63802782000,7200,1,'CEST',],[63802774800,63815475600,63802778400,63815479200,3600,0,'CET',],[63815475600,63834224400,63815482800,63834231600,7200,1,'CEST',],[63834224400,63847530000,63834228000,63847533600,3600,0,'CET',],[63847530000,63865674000,63847537200,63865681200,7200,1,'CEST',],[63865674000,63878979600,63865677600,63878983200,3600,0,'CET',],[63878979600,63897123600,63878986800,63897130800,7200,1,'CEST',],[63897123600,63910429200,63897127200,63910432800,3600,0,'CET',],[63910429200,63928573200,63910436400,63928580400,7200,1,'CEST',],[63928573200,63941878800,63928576800,63941882400,3600,0,'CET',],[63941878800,63960627600,63941886000,63960634800,7200,1,'CEST',],];sub olson_version {'2016a'}sub has_dst_changes {86}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {3600}my$last_observance=bless({'format'=>'CE%sT','gmtoff'=>'1:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>721720,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>721720,'utc_rd_secs'=>0,'utc_year'=>1978 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>3600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>721719,'local_rd_secs'=>82800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>721719,'utc_rd_secs'=>82800,'utc_year'=>1977 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_MONACO

$fatpacked{"DateTime/TimeZone/Europe/Moscow.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_MOSCOW';
  package DateTime::TimeZone::Europe::Moscow;$DateTime::TimeZone::Europe::Moscow::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Moscow::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59295533383,DateTime::TimeZone::NEG_INFINITY,59295542400,9017,0,'LMT',],[59295533383,60447418183,59295542400,60447427200,9017,0,'MMT',],[60447418183,60478864121,60447427262,60478873200,9079,0,'MMT',],[60478864121,60494329721,60478876800,60494342400,12679,1,'MST',],[60494329721,60507718121,60494338800,60507727200,9079,0,'MMT',],[60507718121,60516966521,60507734400,60516982800,16279,1,'MDST',],[60516966521,60539254121,60516979200,60539266800,12679,1,'MST',],[60539254121,60541853321,60539270400,60541869600,16279,1,'MDST',],[60541853321,60545822400,60541867721,60545836800,14400,1,'MSD',],[60545822400,60593256000,60545833200,60593266800,10800,0,'MSK',],[60593256000,60596190000,60593270400,60596204400,14400,1,'MSD',],[60596190000,60610359600,60596208000,60610377600,18000,1,'MSM',],[60610359600,60612955200,60610374000,60612969600,14400,1,'MSD',],[60612955200,60644494800,60612966000,60644505600,10800,0,'MSK',],[60644494800,60888146400,60644502000,60888153600,7200,0,'EET',],[60888146400,62490603600,60888157200,62490614400,10800,0,'MSK',],[62490603600,62506411200,62490618000,62506425600,14400,1,'MSD',],[62506411200,62522139600,62506422000,62522150400,10800,0,'MSK',],[62522139600,62537947200,62522154000,62537961600,14400,1,'MSD',],[62537947200,62553675600,62537958000,62553686400,10800,0,'MSK',],[62553675600,62569483200,62553690000,62569497600,14400,1,'MSD',],[62569483200,62585298000,62569494000,62585308800,10800,0,'MSK',],[62585298000,62601030000,62585312400,62601044400,14400,1,'MSD',],[62601030000,62616754800,62601040800,62616765600,10800,0,'MSK',],[62616754800,62632479600,62616769200,62632494000,14400,1,'MSD',],[62632479600,62648204400,62632490400,62648215200,10800,0,'MSK',],[62648204400,62663929200,62648218800,62663943600,14400,1,'MSD',],[62663929200,62679654000,62663940000,62679664800,10800,0,'MSK',],[62679654000,62695378800,62679668400,62695393200,14400,1,'MSD',],[62695378800,62711103600,62695389600,62711114400,10800,0,'MSK',],[62711103600,62726828400,62711118000,62726842800,14400,1,'MSD',],[62726828400,62742553200,62726839200,62742564000,10800,0,'MSK',],[62742553200,62758278000,62742567600,62758292400,14400,1,'MSD',],[62758278000,62774002800,62758288800,62774013600,10800,0,'MSK',],[62774002800,62790332400,62774017200,62790346800,14400,1,'MSD',],[62790332400,62806057200,62790343200,62806068000,10800,0,'MSK',],[62806057200,62821785600,62806068000,62821796400,10800,1,'EEST',],[62821785600,62831462400,62821792800,62831469600,7200,0,'EET',],[62831462400,62837496000,62831473200,62837506800,10800,0,'MSK',],[62837496000,62853217200,62837510400,62853231600,14400,1,'MSD',],[62853217200,62868956400,62853228000,62868967200,10800,0,'MSK',],[62868956400,62884681200,62868970800,62884695600,14400,1,'MSD',],[62884681200,62900406000,62884692000,62900416800,10800,0,'MSK',],[62900406000,62916130800,62900420400,62916145200,14400,1,'MSD',],[62916130800,62931855600,62916141600,62931866400,10800,0,'MSK',],[62931855600,62947580400,62931870000,62947594800,14400,1,'MSD',],[62947580400,62963910000,62947591200,62963920800,10800,0,'MSK',],[62963910000,62982054000,62963924400,62982068400,14400,1,'MSD',],[62982054000,62995359600,62982064800,62995370400,10800,0,'MSK',],[62995359600,63013503600,62995374000,63013518000,14400,1,'MSD',],[63013503600,63026809200,63013514400,63026820000,10800,0,'MSK',],[63026809200,63044953200,63026823600,63044967600,14400,1,'MSD',],[63044953200,63058258800,63044964000,63058269600,10800,0,'MSK',],[63058258800,63077007600,63058273200,63077022000,14400,1,'MSD',],[63077007600,63089708400,63077018400,63089719200,10800,0,'MSK',],[63089708400,63108457200,63089722800,63108471600,14400,1,'MSD',],[63108457200,63121158000,63108468000,63121168800,10800,0,'MSK',],[63121158000,63139906800,63121172400,63139921200,14400,1,'MSD',],[63139906800,63153212400,63139917600,63153223200,10800,0,'MSK',],[63153212400,63171356400,63153226800,63171370800,14400,1,'MSD',],[63171356400,63184662000,63171367200,63184672800,10800,0,'MSK',],[63184662000,63202806000,63184676400,63202820400,14400,1,'MSD',],[63202806000,63216111600,63202816800,63216122400,10800,0,'MSK',],[63216111600,63234860400,63216126000,63234874800,14400,1,'MSD',],[63234860400,63247561200,63234871200,63247572000,10800,0,'MSK',],[63247561200,63266310000,63247575600,63266324400,14400,1,'MSD',],[63266310000,63279010800,63266320800,63279021600,10800,0,'MSK',],[63279010800,63297759600,63279025200,63297774000,14400,1,'MSD',],[63297759600,63310460400,63297770400,63310471200,10800,0,'MSK',],[63310460400,63329209200,63310474800,63329223600,14400,1,'MSD',],[63329209200,63342514800,63329220000,63342525600,10800,0,'MSK',],[63342514800,63360658800,63342529200,63360673200,14400,1,'MSD',],[63360658800,63373964400,63360669600,63373975200,10800,0,'MSK',],[63373964400,63392108400,63373978800,63392122800,14400,1,'MSD',],[63392108400,63405414000,63392119200,63405424800,10800,0,'MSK',],[63405414000,63424162800,63405428400,63424177200,14400,1,'MSD',],[63424162800,63436863600,63424173600,63436874400,10800,0,'MSK',],[63436863600,63549957600,63436878000,63549972000,14400,0,'MSK',],[63549957600,DateTime::TimeZone::INFINITY,63549968400,DateTime::TimeZone::INFINITY,10800,0,'MSK',],];sub olson_version {'2016a'}sub has_dst_changes {38}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_EUROPE_MOSCOW

$fatpacked{"DateTime/TimeZone/Europe/Oslo.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_OSLO';
  package DateTime::TimeZone::Europe::Oslo;$DateTime::TimeZone::Europe::Oslo::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Oslo::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59768925420,DateTime::TimeZone::NEG_INFINITY,59768928000,2580,0,'LMT',],[59768925420,60443798400,59768929020,60443802000,3600,0,'CET',],[60443798400,60455109600,60443805600,60455116800,7200,1,'CEST',],[60455109600,61208172000,60455113200,61208175600,3600,0,'CET',],[61208172000,61278426000,61208179200,61278433200,7200,1,'CEST',],[61278426000,61291126800,61278429600,61291130400,3600,0,'CET',],[61291126800,61307456400,61291134000,61307463600,7200,1,'CEST',],[61307456400,61323181200,61307460000,61323184800,3600,0,'CET',],[61323181200,61338906000,61323188400,61338913200,7200,1,'CEST',],[61338906000,61354630800,61338909600,61354634400,3600,0,'CET',],[61354630800,61370355600,61354638000,61370362800,7200,1,'CEST',],[61370355600,61794838800,61370359200,61794842400,3600,0,'CET',],[61794838800,61811168400,61794846000,61811175600,7200,1,'CEST',],[61811168400,61826893200,61811172000,61826896800,3600,0,'CET',],[61826893200,61842618000,61826900400,61842625200,7200,1,'CEST',],[61842618000,61858342800,61842621600,61858346400,3600,0,'CET',],[61858342800,61874067600,61858350000,61874074800,7200,1,'CEST',],[61874067600,61889792400,61874071200,61889796000,3600,0,'CET',],[61889792400,61905517200,61889799600,61905524400,7200,1,'CEST',],[61905517200,61921242000,61905520800,61921245600,3600,0,'CET',],[61921242000,61936966800,61921249200,61936974000,7200,1,'CEST',],[61936966800,61952691600,61936970400,61952695200,3600,0,'CET',],[61952691600,61969021200,61952698800,61969028400,7200,1,'CEST',],[61969021200,61987770000,61969024800,61987773600,3600,0,'CET',],[61987770000,62000470800,61987777200,62000478000,7200,1,'CEST',],[62000470800,62451212400,62000474400,62451216000,3600,0,'CET',],[62451212400,62459514000,62451216000,62459517600,3600,0,'CET',],[62459514000,62474634000,62459521200,62474641200,7200,1,'CEST',],[62474634000,62490358800,62474637600,62490362400,3600,0,'CET',],[62490358800,62506083600,62490366000,62506090800,7200,1,'CEST',],[62506083600,62521808400,62506087200,62521812000,3600,0,'CET',],[62521808400,62537533200,62521815600,62537540400,7200,1,'CEST',],[62537533200,62553258000,62537536800,62553261600,3600,0,'CET',],[62553258000,62568982800,62553265200,62568990000,7200,1,'CEST',],[62568982800,62584707600,62568986400,62584711200,3600,0,'CET',],[62584707600,62601037200,62584714800,62601044400,7200,1,'CEST',],[62601037200,62616762000,62601040800,62616765600,3600,0,'CET',],[62616762000,62632486800,62616769200,62632494000,7200,1,'CEST',],[62632486800,62648211600,62632490400,62648215200,3600,0,'CET',],[62648211600,62663936400,62648218800,62663943600,7200,1,'CEST',],[62663936400,62679661200,62663940000,62679664800,3600,0,'CET',],[62679661200,62695386000,62679668400,62695393200,7200,1,'CEST',],[62695386000,62711110800,62695389600,62711114400,3600,0,'CET',],[62711110800,62726835600,62711118000,62726842800,7200,1,'CEST',],[62726835600,62742560400,62726839200,62742564000,3600,0,'CET',],[62742560400,62758285200,62742567600,62758292400,7200,1,'CEST',],[62758285200,62774010000,62758288800,62774013600,3600,0,'CET',],[62774010000,62790339600,62774017200,62790346800,7200,1,'CEST',],[62790339600,62806064400,62790343200,62806068000,3600,0,'CET',],[62806064400,62821789200,62806071600,62821796400,7200,1,'CEST',],[62821789200,62837514000,62821792800,62837517600,3600,0,'CET',],[62837514000,62853238800,62837521200,62853246000,7200,1,'CEST',],[62853238800,62868963600,62853242400,62868967200,3600,0,'CET',],[62868963600,62884688400,62868970800,62884695600,7200,1,'CEST',],[62884688400,62900413200,62884692000,62900416800,3600,0,'CET',],[62900413200,62916138000,62900420400,62916145200,7200,1,'CEST',],[62916138000,62931862800,62916141600,62931866400,3600,0,'CET',],[62931862800,62947587600,62931870000,62947594800,7200,1,'CEST',],[62947587600,62963917200,62947591200,62963920800,3600,0,'CET',],[62963917200,62982061200,62963924400,62982068400,7200,1,'CEST',],[62982061200,62995366800,62982064800,62995370400,3600,0,'CET',],[62995366800,63013510800,62995374000,63013518000,7200,1,'CEST',],[63013510800,63026816400,63013514400,63026820000,3600,0,'CET',],[63026816400,63044960400,63026823600,63044967600,7200,1,'CEST',],[63044960400,63058266000,63044964000,63058269600,3600,0,'CET',],[63058266000,63077014800,63058273200,63077022000,7200,1,'CEST',],[63077014800,63089715600,63077018400,63089719200,3600,0,'CET',],[63089715600,63108464400,63089722800,63108471600,7200,1,'CEST',],[63108464400,63121165200,63108468000,63121168800,3600,0,'CET',],[63121165200,63139914000,63121172400,63139921200,7200,1,'CEST',],[63139914000,63153219600,63139917600,63153223200,3600,0,'CET',],[63153219600,63171363600,63153226800,63171370800,7200,1,'CEST',],[63171363600,63184669200,63171367200,63184672800,3600,0,'CET',],[63184669200,63202813200,63184676400,63202820400,7200,1,'CEST',],[63202813200,63216118800,63202816800,63216122400,3600,0,'CET',],[63216118800,63234867600,63216126000,63234874800,7200,1,'CEST',],[63234867600,63247568400,63234871200,63247572000,3600,0,'CET',],[63247568400,63266317200,63247575600,63266324400,7200,1,'CEST',],[63266317200,63279018000,63266320800,63279021600,3600,0,'CET',],[63279018000,63297766800,63279025200,63297774000,7200,1,'CEST',],[63297766800,63310467600,63297770400,63310471200,3600,0,'CET',],[63310467600,63329216400,63310474800,63329223600,7200,1,'CEST',],[63329216400,63342522000,63329220000,63342525600,3600,0,'CET',],[63342522000,63360666000,63342529200,63360673200,7200,1,'CEST',],[63360666000,63373971600,63360669600,63373975200,3600,0,'CET',],[63373971600,63392115600,63373978800,63392122800,7200,1,'CEST',],[63392115600,63405421200,63392119200,63405424800,3600,0,'CET',],[63405421200,63424170000,63405428400,63424177200,7200,1,'CEST',],[63424170000,63436870800,63424173600,63436874400,3600,0,'CET',],[63436870800,63455619600,63436878000,63455626800,7200,1,'CEST',],[63455619600,63468320400,63455623200,63468324000,3600,0,'CET',],[63468320400,63487069200,63468327600,63487076400,7200,1,'CEST',],[63487069200,63500374800,63487072800,63500378400,3600,0,'CET',],[63500374800,63518518800,63500382000,63518526000,7200,1,'CEST',],[63518518800,63531824400,63518522400,63531828000,3600,0,'CET',],[63531824400,63549968400,63531831600,63549975600,7200,1,'CEST',],[63549968400,63563274000,63549972000,63563277600,3600,0,'CET',],[63563274000,63581418000,63563281200,63581425200,7200,1,'CEST',],[63581418000,63594723600,63581421600,63594727200,3600,0,'CET',],[63594723600,63613472400,63594730800,63613479600,7200,1,'CEST',],[63613472400,63626173200,63613476000,63626176800,3600,0,'CET',],[63626173200,63644922000,63626180400,63644929200,7200,1,'CEST',],[63644922000,63657622800,63644925600,63657626400,3600,0,'CET',],[63657622800,63676371600,63657630000,63676378800,7200,1,'CEST',],[63676371600,63689677200,63676375200,63689680800,3600,0,'CET',],[63689677200,63707821200,63689684400,63707828400,7200,1,'CEST',],[63707821200,63721126800,63707824800,63721130400,3600,0,'CET',],[63721126800,63739270800,63721134000,63739278000,7200,1,'CEST',],[63739270800,63752576400,63739274400,63752580000,3600,0,'CET',],[63752576400,63771325200,63752583600,63771332400,7200,1,'CEST',],[63771325200,63784026000,63771328800,63784029600,3600,0,'CET',],[63784026000,63802774800,63784033200,63802782000,7200,1,'CEST',],[63802774800,63815475600,63802778400,63815479200,3600,0,'CET',],[63815475600,63834224400,63815482800,63834231600,7200,1,'CEST',],[63834224400,63847530000,63834228000,63847533600,3600,0,'CET',],[63847530000,63865674000,63847537200,63865681200,7200,1,'CEST',],[63865674000,63878979600,63865677600,63878983200,3600,0,'CET',],[63878979600,63897123600,63878986800,63897130800,7200,1,'CEST',],[63897123600,63910429200,63897127200,63910432800,3600,0,'CET',],[63910429200,63928573200,63910436400,63928580400,7200,1,'CEST',],[63928573200,63941878800,63928576800,63941882400,3600,0,'CET',],[63941878800,63960627600,63941886000,63960634800,7200,1,'CEST',],];sub olson_version {'2016a'}sub has_dst_changes {60}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {3600}my$last_observance=bless({'format'=>'CE%sT','gmtoff'=>'1:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>722815,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>722815,'utc_rd_secs'=>0,'utc_year'=>1981 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>3600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>722814,'local_rd_secs'=>82800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>722814,'utc_rd_secs'=>82800,'utc_year'=>1980 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_OSLO

$fatpacked{"DateTime/TimeZone/Europe/Paris.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_PARIS';
  package DateTime::TimeZone::Europe::Paris;$DateTime::TimeZone::Europe::Paris::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Paris::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59649004299,DateTime::TimeZone::NEG_INFINITY,59649004860,561,0,'LMT',],[59649004299,60279724299,59649004860,60279724860,561,0,'PMT',],[60279724299,60445868400,60279724299,60445868400,0,0,'WET',],[60445868400,60455286000,60445872000,60455289600,3600,1,'WEST',],[60455286000,60470319600,60455286000,60470319600,0,0,'WET',],[60470319600,60487340400,60470323200,60487344000,3600,1,'WEST',],[60487340400,60500559600,60487340400,60500559600,0,0,'WET',],[60500559600,60518790000,60500563200,60518793600,3600,1,'WEST',],[60518790000,60531404400,60518790000,60531404400,0,0,'WET',],[60531404400,60550239600,60531408000,60550243200,3600,1,'WEST',],[60550239600,60561644400,60550239600,60561644400,0,0,'WET',],[60561644400,60583417200,60561648000,60583420800,3600,1,'WEST',],[60583417200,60595686000,60583417200,60595686000,0,0,'WET',],[60595686000,60615126000,60595689600,60615129600,3600,1,'WEST',],[60615126000,60628172400,60615126000,60628172400,0,0,'WET',],[60628172400,60645106800,60628176000,60645110400,3600,1,'WEST',],[60645106800,60665065200,60645106800,60665065200,0,0,'WET',],[60665065200,60676556400,60665068800,60676560000,3600,1,'WEST',],[60676556400,60691676400,60676556400,60691676400,0,0,'WET',],[60691676400,60708006000,60691680000,60708009600,3600,1,'WEST',],[60708006000,60723730800,60708006000,60723730800,0,0,'WET',],[60723730800,60739455600,60723734400,60739459200,3600,1,'WEST',],[60739455600,60756390000,60739455600,60756390000,0,0,'WET',],[60756390000,60770905200,60756393600,60770908800,3600,1,'WEST',],[60770905200,60787234800,60770905200,60787234800,0,0,'WET',],[60787234800,60802354800,60787238400,60802358400,3600,1,'WEST',],[60802354800,60819289200,60802354800,60819289200,0,0,'WET',],[60819289200,60834409200,60819292800,60834412800,3600,1,'WEST',],[60834409200,60851343600,60834409200,60851343600,0,0,'WET',],[60851343600,60865858800,60851347200,60865862400,3600,1,'WEST',],[60865858800,60882188400,60865858800,60882188400,0,0,'WET',],[60882188400,60897308400,60882192000,60897312000,3600,1,'WEST',],[60897308400,60914242800,60897308400,60914242800,0,0,'WET',],[60914242800,60928758000,60914246400,60928761600,3600,1,'WEST',],[60928758000,60944482800,60928758000,60944482800,0,0,'WET',],[60944482800,60960207600,60944486400,60960211200,3600,1,'WEST',],[60960207600,60975327600,60960207600,60975327600,0,0,'WET',],[60975327600,60992262000,60975331200,60992265600,3600,1,'WEST',],[60992262000,61007986800,60992262000,61007986800,0,0,'WET',],[61007986800,61023711600,61007990400,61023715200,3600,1,'WEST',],[61023711600,61038831600,61023711600,61038831600,0,0,'WET',],[61038831600,61055161200,61038835200,61055164800,3600,1,'WEST',],[61055161200,61072095600,61055161200,61072095600,0,0,'WET',],[61072095600,61086610800,61072099200,61086614400,3600,1,'WEST',],[61086610800,61102335600,61086610800,61102335600,0,0,'WET',],[61102335600,61118060400,61102339200,61118064000,3600,1,'WEST',],[61118060400,61133180400,61118060400,61133180400,0,0,'WET',],[61133180400,61149510000,61133184000,61149513600,3600,1,'WEST',],[61149510000,61166444400,61149510000,61166444400,0,0,'WET',],[61166444400,61185193200,61166448000,61185196800,3600,1,'WEST',],[61185193200,61193671200,61185193200,61193671200,0,0,'WET',],[61193671200,61203247200,61193674800,61203250800,3600,1,'WEST',],[61203247200,61278426000,61203254400,61278433200,7200,1,'CEST',],[61278426000,61291126800,61278429600,61291130400,3600,0,'CET',],[61291126800,61307456400,61291134000,61307463600,7200,1,'CEST',],[61307456400,61323181200,61307460000,61323184800,3600,0,'CET',],[61323181200,61335612000,61323188400,61335619200,7200,1,'CEST',],[61335612000,61339417200,61335619200,61339424400,7200,1,'WEMT',],[61339417200,61354630800,61339420800,61354634400,3600,1,'WEST',],[61354630800,61369059600,61354638000,61369066800,7200,1,'WEMT',],[61369059600,62332502400,61369063200,62332506000,3600,0,'CET',],[62332502400,62348223600,62332509600,62348230800,7200,1,'CEST',],[62348223600,62356604400,62348227200,62356608000,3600,0,'CET',],[62356604400,62364560400,62356608000,62364564000,3600,0,'CET',],[62364560400,62379680400,62364567600,62379687600,7200,1,'CEST',],[62379680400,62396010000,62379684000,62396013600,3600,0,'CET',],[62396010000,62411734800,62396017200,62411742000,7200,1,'CEST',],[62411734800,62427459600,62411738400,62427463200,3600,0,'CET',],[62427459600,62443184400,62427466800,62443191600,7200,1,'CEST',],[62443184400,62459514000,62443188000,62459517600,3600,0,'CET',],[62459514000,62474634000,62459521200,62474641200,7200,1,'CEST',],[62474634000,62490358800,62474637600,62490362400,3600,0,'CET',],[62490358800,62506083600,62490366000,62506090800,7200,1,'CEST',],[62506083600,62521808400,62506087200,62521812000,3600,0,'CET',],[62521808400,62537533200,62521815600,62537540400,7200,1,'CEST',],[62537533200,62553258000,62537536800,62553261600,3600,0,'CET',],[62553258000,62568982800,62553265200,62568990000,7200,1,'CEST',],[62568982800,62584707600,62568986400,62584711200,3600,0,'CET',],[62584707600,62601037200,62584714800,62601044400,7200,1,'CEST',],[62601037200,62616762000,62601040800,62616765600,3600,0,'CET',],[62616762000,62632486800,62616769200,62632494000,7200,1,'CEST',],[62632486800,62648211600,62632490400,62648215200,3600,0,'CET',],[62648211600,62663936400,62648218800,62663943600,7200,1,'CEST',],[62663936400,62679661200,62663940000,62679664800,3600,0,'CET',],[62679661200,62695386000,62679668400,62695393200,7200,1,'CEST',],[62695386000,62711110800,62695389600,62711114400,3600,0,'CET',],[62711110800,62726835600,62711118000,62726842800,7200,1,'CEST',],[62726835600,62742560400,62726839200,62742564000,3600,0,'CET',],[62742560400,62758285200,62742567600,62758292400,7200,1,'CEST',],[62758285200,62774010000,62758288800,62774013600,3600,0,'CET',],[62774010000,62790339600,62774017200,62790346800,7200,1,'CEST',],[62790339600,62806064400,62790343200,62806068000,3600,0,'CET',],[62806064400,62821789200,62806071600,62821796400,7200,1,'CEST',],[62821789200,62837514000,62821792800,62837517600,3600,0,'CET',],[62837514000,62853238800,62837521200,62853246000,7200,1,'CEST',],[62853238800,62868963600,62853242400,62868967200,3600,0,'CET',],[62868963600,62884688400,62868970800,62884695600,7200,1,'CEST',],[62884688400,62900413200,62884692000,62900416800,3600,0,'CET',],[62900413200,62916138000,62900420400,62916145200,7200,1,'CEST',],[62916138000,62931862800,62916141600,62931866400,3600,0,'CET',],[62931862800,62947587600,62931870000,62947594800,7200,1,'CEST',],[62947587600,62963917200,62947591200,62963920800,3600,0,'CET',],[62963917200,62982061200,62963924400,62982068400,7200,1,'CEST',],[62982061200,62995366800,62982064800,62995370400,3600,0,'CET',],[62995366800,63013510800,62995374000,63013518000,7200,1,'CEST',],[63013510800,63026816400,63013514400,63026820000,3600,0,'CET',],[63026816400,63044960400,63026823600,63044967600,7200,1,'CEST',],[63044960400,63058266000,63044964000,63058269600,3600,0,'CET',],[63058266000,63077014800,63058273200,63077022000,7200,1,'CEST',],[63077014800,63089715600,63077018400,63089719200,3600,0,'CET',],[63089715600,63108464400,63089722800,63108471600,7200,1,'CEST',],[63108464400,63121165200,63108468000,63121168800,3600,0,'CET',],[63121165200,63139914000,63121172400,63139921200,7200,1,'CEST',],[63139914000,63153219600,63139917600,63153223200,3600,0,'CET',],[63153219600,63171363600,63153226800,63171370800,7200,1,'CEST',],[63171363600,63184669200,63171367200,63184672800,3600,0,'CET',],[63184669200,63202813200,63184676400,63202820400,7200,1,'CEST',],[63202813200,63216118800,63202816800,63216122400,3600,0,'CET',],[63216118800,63234867600,63216126000,63234874800,7200,1,'CEST',],[63234867600,63247568400,63234871200,63247572000,3600,0,'CET',],[63247568400,63266317200,63247575600,63266324400,7200,1,'CEST',],[63266317200,63279018000,63266320800,63279021600,3600,0,'CET',],[63279018000,63297766800,63279025200,63297774000,7200,1,'CEST',],[63297766800,63310467600,63297770400,63310471200,3600,0,'CET',],[63310467600,63329216400,63310474800,63329223600,7200,1,'CEST',],[63329216400,63342522000,63329220000,63342525600,3600,0,'CET',],[63342522000,63360666000,63342529200,63360673200,7200,1,'CEST',],[63360666000,63373971600,63360669600,63373975200,3600,0,'CET',],[63373971600,63392115600,63373978800,63392122800,7200,1,'CEST',],[63392115600,63405421200,63392119200,63405424800,3600,0,'CET',],[63405421200,63424170000,63405428400,63424177200,7200,1,'CEST',],[63424170000,63436870800,63424173600,63436874400,3600,0,'CET',],[63436870800,63455619600,63436878000,63455626800,7200,1,'CEST',],[63455619600,63468320400,63455623200,63468324000,3600,0,'CET',],[63468320400,63487069200,63468327600,63487076400,7200,1,'CEST',],[63487069200,63500374800,63487072800,63500378400,3600,0,'CET',],[63500374800,63518518800,63500382000,63518526000,7200,1,'CEST',],[63518518800,63531824400,63518522400,63531828000,3600,0,'CET',],[63531824400,63549968400,63531831600,63549975600,7200,1,'CEST',],[63549968400,63563274000,63549972000,63563277600,3600,0,'CET',],[63563274000,63581418000,63563281200,63581425200,7200,1,'CEST',],[63581418000,63594723600,63581421600,63594727200,3600,0,'CET',],[63594723600,63613472400,63594730800,63613479600,7200,1,'CEST',],[63613472400,63626173200,63613476000,63626176800,3600,0,'CET',],[63626173200,63644922000,63626180400,63644929200,7200,1,'CEST',],[63644922000,63657622800,63644925600,63657626400,3600,0,'CET',],[63657622800,63676371600,63657630000,63676378800,7200,1,'CEST',],[63676371600,63689677200,63676375200,63689680800,3600,0,'CET',],[63689677200,63707821200,63689684400,63707828400,7200,1,'CEST',],[63707821200,63721126800,63707824800,63721130400,3600,0,'CET',],[63721126800,63739270800,63721134000,63739278000,7200,1,'CEST',],[63739270800,63752576400,63739274400,63752580000,3600,0,'CET',],[63752576400,63771325200,63752583600,63771332400,7200,1,'CEST',],[63771325200,63784026000,63771328800,63784029600,3600,0,'CET',],[63784026000,63802774800,63784033200,63802782000,7200,1,'CEST',],[63802774800,63815475600,63802778400,63815479200,3600,0,'CET',],[63815475600,63834224400,63815482800,63834231600,7200,1,'CEST',],[63834224400,63847530000,63834228000,63847533600,3600,0,'CET',],[63847530000,63865674000,63847537200,63865681200,7200,1,'CEST',],[63865674000,63878979600,63865677600,63878983200,3600,0,'CET',],[63878979600,63897123600,63878986800,63897130800,7200,1,'CEST',],[63897123600,63910429200,63897127200,63910432800,3600,0,'CET',],[63910429200,63928573200,63910436400,63928580400,7200,1,'CEST',],[63928573200,63941878800,63928576800,63941882400,3600,0,'CET',],[63941878800,63960627600,63941886000,63960634800,7200,1,'CEST',],];sub olson_version {'2016a'}sub has_dst_changes {83}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {3600}my$last_observance=bless({'format'=>'CE%sT','gmtoff'=>'1:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>721720,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>721720,'utc_rd_secs'=>0,'utc_year'=>1978 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>3600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>721719,'local_rd_secs'=>82800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>721719,'utc_rd_secs'=>82800,'utc_year'=>1977 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_PARIS

$fatpacked{"DateTime/TimeZone/Europe/Prague.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_PRAGUE';
  package DateTime::TimeZone::Europe::Prague;$DateTime::TimeZone::Europe::Prague::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Prague::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,58348854136,DateTime::TimeZone::NEG_INFINITY,58348857600,3464,0,'LMT',],[58348854136,59666281336,58348857600,59666284800,3464,0,'PMT',],[59666281336,60441976800,59666284936,60441980400,3600,0,'CET',],[60441976800,60455199600,60441984000,60455206800,7200,1,'CEST',],[60455199600,60472227600,60455203200,60472231200,3600,0,'CET',],[60472227600,60485533200,60472234800,60485540400,7200,1,'CEST',],[60485533200,60503677200,60485536800,60503680800,3600,0,'CET',],[60503677200,60516982800,60503684400,60516990000,7200,1,'CEST',],[60516982800,61196778000,60516986400,61196781600,3600,0,'CET',],[61196778000,61278426000,61196785200,61278433200,7200,1,'CEST',],[61278426000,61291126800,61278429600,61291130400,3600,0,'CET',],[61291126800,61307456400,61291134000,61307463600,7200,1,'CEST',],[61307456400,61323181200,61307460000,61323184800,3600,0,'CET',],[61323181200,61337610000,61323188400,61337617200,7200,1,'CEST',],[61337610000,61355149200,61337613600,61355152800,3600,0,'CET',],[61355149200,61374502800,61355156400,61374510000,7200,1,'CEST',],[61374502800,61389104400,61374506400,61389108000,3600,0,'CET',],[61389104400,61402323600,61389111600,61402330800,7200,1,'CEST',],[61402323600,61419258000,61402327200,61419261600,3600,0,'CET',],[61419258000,61433773200,61419265200,61433780400,7200,1,'CEST',],[61433773200,61450707600,61433776800,61450711200,3600,0,'CET',],[61450707600,61465222800,61450714800,61465230000,7200,1,'CEST',],[61465222800,61481466000,61465226400,61481469600,3600,0,'CET',],[61481466000,61496672400,61481473200,61496679600,7200,1,'CEST',],[61496672400,62419676400,61496676000,62419680000,3600,0,'CET',],[62419676400,62427459600,62419680000,62427463200,3600,0,'CET',],[62427459600,62443184400,62427466800,62443191600,7200,1,'CEST',],[62443184400,62459514000,62443188000,62459517600,3600,0,'CET',],[62459514000,62474634000,62459521200,62474641200,7200,1,'CEST',],[62474634000,62490358800,62474637600,62490362400,3600,0,'CET',],[62490358800,62506083600,62490366000,62506090800,7200,1,'CEST',],[62506083600,62521808400,62506087200,62521812000,3600,0,'CET',],[62521808400,62537533200,62521815600,62537540400,7200,1,'CEST',],[62537533200,62553258000,62537536800,62553261600,3600,0,'CET',],[62553258000,62568982800,62553265200,62568990000,7200,1,'CEST',],[62568982800,62584707600,62568986400,62584711200,3600,0,'CET',],[62584707600,62601037200,62584714800,62601044400,7200,1,'CEST',],[62601037200,62616762000,62601040800,62616765600,3600,0,'CET',],[62616762000,62632486800,62616769200,62632494000,7200,1,'CEST',],[62632486800,62648211600,62632490400,62648215200,3600,0,'CET',],[62648211600,62663936400,62648218800,62663943600,7200,1,'CEST',],[62663936400,62679661200,62663940000,62679664800,3600,0,'CET',],[62679661200,62695386000,62679668400,62695393200,7200,1,'CEST',],[62695386000,62711110800,62695389600,62711114400,3600,0,'CET',],[62711110800,62726835600,62711118000,62726842800,7200,1,'CEST',],[62726835600,62742560400,62726839200,62742564000,3600,0,'CET',],[62742560400,62758285200,62742567600,62758292400,7200,1,'CEST',],[62758285200,62774010000,62758288800,62774013600,3600,0,'CET',],[62774010000,62790339600,62774017200,62790346800,7200,1,'CEST',],[62790339600,62806064400,62790343200,62806068000,3600,0,'CET',],[62806064400,62821789200,62806071600,62821796400,7200,1,'CEST',],[62821789200,62837514000,62821792800,62837517600,3600,0,'CET',],[62837514000,62853238800,62837521200,62853246000,7200,1,'CEST',],[62853238800,62868963600,62853242400,62868967200,3600,0,'CET',],[62868963600,62884688400,62868970800,62884695600,7200,1,'CEST',],[62884688400,62900413200,62884692000,62900416800,3600,0,'CET',],[62900413200,62916138000,62900420400,62916145200,7200,1,'CEST',],[62916138000,62931862800,62916141600,62931866400,3600,0,'CET',],[62931862800,62947587600,62931870000,62947594800,7200,1,'CEST',],[62947587600,62963917200,62947591200,62963920800,3600,0,'CET',],[62963917200,62982061200,62963924400,62982068400,7200,1,'CEST',],[62982061200,62995366800,62982064800,62995370400,3600,0,'CET',],[62995366800,63013510800,62995374000,63013518000,7200,1,'CEST',],[63013510800,63026816400,63013514400,63026820000,3600,0,'CET',],[63026816400,63044960400,63026823600,63044967600,7200,1,'CEST',],[63044960400,63058266000,63044964000,63058269600,3600,0,'CET',],[63058266000,63077014800,63058273200,63077022000,7200,1,'CEST',],[63077014800,63089715600,63077018400,63089719200,3600,0,'CET',],[63089715600,63108464400,63089722800,63108471600,7200,1,'CEST',],[63108464400,63121165200,63108468000,63121168800,3600,0,'CET',],[63121165200,63139914000,63121172400,63139921200,7200,1,'CEST',],[63139914000,63153219600,63139917600,63153223200,3600,0,'CET',],[63153219600,63171363600,63153226800,63171370800,7200,1,'CEST',],[63171363600,63184669200,63171367200,63184672800,3600,0,'CET',],[63184669200,63202813200,63184676400,63202820400,7200,1,'CEST',],[63202813200,63216118800,63202816800,63216122400,3600,0,'CET',],[63216118800,63234867600,63216126000,63234874800,7200,1,'CEST',],[63234867600,63247568400,63234871200,63247572000,3600,0,'CET',],[63247568400,63266317200,63247575600,63266324400,7200,1,'CEST',],[63266317200,63279018000,63266320800,63279021600,3600,0,'CET',],[63279018000,63297766800,63279025200,63297774000,7200,1,'CEST',],[63297766800,63310467600,63297770400,63310471200,3600,0,'CET',],[63310467600,63329216400,63310474800,63329223600,7200,1,'CEST',],[63329216400,63342522000,63329220000,63342525600,3600,0,'CET',],[63342522000,63360666000,63342529200,63360673200,7200,1,'CEST',],[63360666000,63373971600,63360669600,63373975200,3600,0,'CET',],[63373971600,63392115600,63373978800,63392122800,7200,1,'CEST',],[63392115600,63405421200,63392119200,63405424800,3600,0,'CET',],[63405421200,63424170000,63405428400,63424177200,7200,1,'CEST',],[63424170000,63436870800,63424173600,63436874400,3600,0,'CET',],[63436870800,63455619600,63436878000,63455626800,7200,1,'CEST',],[63455619600,63468320400,63455623200,63468324000,3600,0,'CET',],[63468320400,63487069200,63468327600,63487076400,7200,1,'CEST',],[63487069200,63500374800,63487072800,63500378400,3600,0,'CET',],[63500374800,63518518800,63500382000,63518526000,7200,1,'CEST',],[63518518800,63531824400,63518522400,63531828000,3600,0,'CET',],[63531824400,63549968400,63531831600,63549975600,7200,1,'CEST',],[63549968400,63563274000,63549972000,63563277600,3600,0,'CET',],[63563274000,63581418000,63563281200,63581425200,7200,1,'CEST',],[63581418000,63594723600,63581421600,63594727200,3600,0,'CET',],[63594723600,63613472400,63594730800,63613479600,7200,1,'CEST',],[63613472400,63626173200,63613476000,63626176800,3600,0,'CET',],[63626173200,63644922000,63626180400,63644929200,7200,1,'CEST',],[63644922000,63657622800,63644925600,63657626400,3600,0,'CET',],[63657622800,63676371600,63657630000,63676378800,7200,1,'CEST',],[63676371600,63689677200,63676375200,63689680800,3600,0,'CET',],[63689677200,63707821200,63689684400,63707828400,7200,1,'CEST',],[63707821200,63721126800,63707824800,63721130400,3600,0,'CET',],[63721126800,63739270800,63721134000,63739278000,7200,1,'CEST',],[63739270800,63752576400,63739274400,63752580000,3600,0,'CET',],[63752576400,63771325200,63752583600,63771332400,7200,1,'CEST',],[63771325200,63784026000,63771328800,63784029600,3600,0,'CET',],[63784026000,63802774800,63784033200,63802782000,7200,1,'CEST',],[63802774800,63815475600,63802778400,63815479200,3600,0,'CET',],[63815475600,63834224400,63815482800,63834231600,7200,1,'CEST',],[63834224400,63847530000,63834228000,63847533600,3600,0,'CET',],[63847530000,63865674000,63847537200,63865681200,7200,1,'CEST',],[63865674000,63878979600,63865677600,63878983200,3600,0,'CET',],[63878979600,63897123600,63878986800,63897130800,7200,1,'CEST',],[63897123600,63910429200,63897127200,63910432800,3600,0,'CET',],[63910429200,63928573200,63910436400,63928580400,7200,1,'CEST',],[63928573200,63941878800,63928576800,63941882400,3600,0,'CET',],[63941878800,63960627600,63941886000,63960634800,7200,1,'CEST',],];sub olson_version {'2016a'}sub has_dst_changes {60}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {3600}my$last_observance=bless({'format'=>'CE%sT','gmtoff'=>'1:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>722450,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>722450,'utc_rd_secs'=>0,'utc_year'=>1980 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>3600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>722449,'local_rd_secs'=>82800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>722449,'utc_rd_secs'=>82800,'utc_year'=>1979 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_PRAGUE

$fatpacked{"DateTime/TimeZone/Europe/Riga.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_RIGA';
  package DateTime::TimeZone::Europe::Riga;$DateTime::TimeZone::Europe::Riga::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Riga::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59295536606,DateTime::TimeZone::NEG_INFINITY,59295542400,5794,0,'LMT',],[59295536606,60503675006,59295542400,60503680800,5794,0,'RMT',],[60503675006,60516980606,60503684400,60516990000,9394,1,'LST',],[60516980606,60534001406,60516986400,60534007200,5794,0,'RMT',],[60534001406,60538407806,60534010800,60538417200,9394,1,'LST',],[60538407806,60758375006,60538413600,60758380800,5794,0,'RMT',],[60758375006,61207653600,60758382206,61207660800,7200,0,'EET',],[61207653600,61236162000,61207664400,61236172800,10800,0,'MSK',],[61236162000,61278426000,61236169200,61278433200,7200,1,'CEST',],[61278426000,61291126800,61278429600,61291130400,3600,0,'CET',],[61291126800,61307456400,61291134000,61307463600,7200,1,'CEST',],[61307456400,61323181200,61307460000,61323184800,3600,0,'CET',],[61323181200,61338906000,61323188400,61338913200,7200,1,'CEST',],[61338906000,61339849200,61338909600,61339852800,3600,0,'CET',],[61339849200,62490603600,61339860000,62490614400,10800,0,'MSK',],[62490603600,62506411200,62490618000,62506425600,14400,1,'MSD',],[62506411200,62522139600,62506422000,62522150400,10800,0,'MSK',],[62522139600,62537947200,62522154000,62537961600,14400,1,'MSD',],[62537947200,62553675600,62537958000,62553686400,10800,0,'MSK',],[62553675600,62569483200,62553690000,62569497600,14400,1,'MSD',],[62569483200,62585298000,62569494000,62585308800,10800,0,'MSK',],[62585298000,62601030000,62585312400,62601044400,14400,1,'MSD',],[62601030000,62616754800,62601040800,62616765600,10800,0,'MSK',],[62616754800,62632479600,62616769200,62632494000,14400,1,'MSD',],[62632479600,62648204400,62632490400,62648215200,10800,0,'MSK',],[62648204400,62663929200,62648218800,62663943600,14400,1,'MSD',],[62663929200,62679654000,62663940000,62679664800,10800,0,'MSK',],[62679654000,62695378800,62679668400,62695393200,14400,1,'MSD',],[62695378800,62711103600,62695389600,62711114400,10800,0,'MSK',],[62711103600,62726828400,62711118000,62726842800,14400,1,'MSD',],[62726828400,62742553200,62726839200,62742564000,10800,0,'MSK',],[62742553200,62758281600,62742564000,62758292400,10800,1,'EEST',],[62758281600,62774006400,62758288800,62774013600,7200,0,'EET',],[62774006400,62790336000,62774017200,62790346800,10800,1,'EEST',],[62790336000,62806060800,62790343200,62806068000,7200,0,'EET',],[62806060800,62821785600,62806071600,62821796400,10800,1,'EEST',],[62821785600,62837510400,62821792800,62837517600,7200,0,'EET',],[62837510400,62853235200,62837521200,62853246000,10800,1,'EEST',],[62853235200,62868960000,62853242400,62868967200,7200,0,'EET',],[62868960000,62884684800,62868970800,62884695600,10800,1,'EEST',],[62884684800,62900409600,62884692000,62900416800,7200,0,'EET',],[62900409600,62916134400,62900420400,62916145200,10800,1,'EEST',],[62916134400,62931859200,62916141600,62931866400,7200,0,'EET',],[62931859200,62947584000,62931870000,62947594800,10800,1,'EEST',],[62947584000,62963913600,62947591200,62963920800,7200,0,'EET',],[62963913600,62979638400,62963924400,62979649200,10800,1,'EEST',],[62979638400,62989480800,62979645600,62989488000,7200,0,'EET',],[62989480800,62995366800,62989488000,62995374000,7200,0,'EET',],[62995366800,63013510800,62995377600,63013521600,10800,1,'EEST',],[63013510800,63026816400,63013518000,63026823600,7200,0,'EET',],[63026816400,63044960400,63026827200,63044971200,10800,1,'EEST',],[63044960400,63058266000,63044967600,63058273200,7200,0,'EET',],[63058266000,63077014800,63058276800,63077025600,10800,1,'EEST',],[63077014800,63087458400,63077022000,63087465600,7200,0,'EET',],[63087458400,63114069600,63087465600,63114076800,7200,0,'EET',],[63114069600,63121165200,63114076800,63121172400,7200,0,'EET',],[63121165200,63139914000,63121176000,63139924800,10800,1,'EEST',],[63139914000,63153219600,63139921200,63153226800,7200,0,'EET',],[63153219600,63171363600,63153230400,63171374400,10800,1,'EEST',],[63171363600,63184669200,63171370800,63184676400,7200,0,'EET',],[63184669200,63202813200,63184680000,63202824000,10800,1,'EEST',],[63202813200,63216118800,63202820400,63216126000,7200,0,'EET',],[63216118800,63234867600,63216129600,63234878400,10800,1,'EEST',],[63234867600,63247568400,63234874800,63247575600,7200,0,'EET',],[63247568400,63266317200,63247579200,63266328000,10800,1,'EEST',],[63266317200,63279018000,63266324400,63279025200,7200,0,'EET',],[63279018000,63297766800,63279028800,63297777600,10800,1,'EEST',],[63297766800,63310467600,63297774000,63310474800,7200,0,'EET',],[63310467600,63329216400,63310478400,63329227200,10800,1,'EEST',],[63329216400,63342522000,63329223600,63342529200,7200,0,'EET',],[63342522000,63360666000,63342532800,63360676800,10800,1,'EEST',],[63360666000,63373971600,63360673200,63373978800,7200,0,'EET',],[63373971600,63392115600,63373982400,63392126400,10800,1,'EEST',],[63392115600,63405421200,63392122800,63405428400,7200,0,'EET',],[63405421200,63424170000,63405432000,63424180800,10800,1,'EEST',],[63424170000,63436870800,63424177200,63436878000,7200,0,'EET',],[63436870800,63455619600,63436881600,63455630400,10800,1,'EEST',],[63455619600,63468320400,63455626800,63468327600,7200,0,'EET',],[63468320400,63487069200,63468331200,63487080000,10800,1,'EEST',],[63487069200,63500374800,63487076400,63500382000,7200,0,'EET',],[63500374800,63518518800,63500385600,63518529600,10800,1,'EEST',],[63518518800,63531824400,63518526000,63531831600,7200,0,'EET',],[63531824400,63549968400,63531835200,63549979200,10800,1,'EEST',],[63549968400,63563274000,63549975600,63563281200,7200,0,'EET',],[63563274000,63581418000,63563284800,63581428800,10800,1,'EEST',],[63581418000,63594723600,63581425200,63594730800,7200,0,'EET',],[63594723600,63613472400,63594734400,63613483200,10800,1,'EEST',],[63613472400,63626173200,63613479600,63626180400,7200,0,'EET',],[63626173200,63644922000,63626184000,63644932800,10800,1,'EEST',],[63644922000,63657622800,63644929200,63657630000,7200,0,'EET',],[63657622800,63676371600,63657633600,63676382400,10800,1,'EEST',],[63676371600,63689677200,63676378800,63689684400,7200,0,'EET',],[63689677200,63707821200,63689688000,63707832000,10800,1,'EEST',],[63707821200,63721126800,63707828400,63721134000,7200,0,'EET',],[63721126800,63739270800,63721137600,63739281600,10800,1,'EEST',],[63739270800,63752576400,63739278000,63752583600,7200,0,'EET',],[63752576400,63771325200,63752587200,63771336000,10800,1,'EEST',],[63771325200,63784026000,63771332400,63784033200,7200,0,'EET',],[63784026000,63802774800,63784036800,63802785600,10800,1,'EEST',],[63802774800,63815475600,63802782000,63815482800,7200,0,'EET',],[63815475600,63834224400,63815486400,63834235200,10800,1,'EEST',],[63834224400,63847530000,63834231600,63847537200,7200,0,'EET',],[63847530000,63865674000,63847540800,63865684800,10800,1,'EEST',],[63865674000,63878979600,63865681200,63878986800,7200,0,'EET',],[63878979600,63897123600,63878990400,63897134400,10800,1,'EEST',],[63897123600,63910429200,63897130800,63910436400,7200,0,'EET',],[63910429200,63928573200,63910440000,63928584000,10800,1,'EEST',],[63928573200,63941878800,63928580400,63941886000,7200,0,'EET',],[63941878800,63960627600,63941889600,63960638400,10800,1,'EEST',],];sub olson_version {'2016a'}sub has_dst_changes {51}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {7200}my$last_observance=bless({'format'=>'EE%sT','gmtoff'=>'2:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>730487,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>730487,'utc_rd_secs'=>0,'utc_year'=>2002 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>7200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>730486,'local_rd_secs'=>79200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>730486,'utc_rd_secs'=>79200,'utc_year'=>2002 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_RIGA

$fatpacked{"DateTime/TimeZone/Europe/Rome.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_ROME';
  package DateTime::TimeZone::Europe::Rome;$DateTime::TimeZone::Europe::Rome::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Rome::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,58876585804,DateTime::TimeZone::NEG_INFINITY,58876588800,2996,0,'LMT',],[58876585804,59732118604,58876588800,59732121600,2996,0,'RMT',],[59732118604,60444831600,59732122204,60444835200,3600,0,'CET',],[60444831600,60455199600,60444838800,60455206800,7200,1,'CEST',],[60455199600,60470924400,60455203200,60470928000,3600,0,'CET',],[60470924400,60486649200,60470931600,60486656400,7200,1,'CEST',],[60486649200,60500559600,60486652800,60500563200,3600,0,'CET',],[60500559600,60518703600,60500566800,60518710800,7200,1,'CEST',],[60518703600,60531404400,60518707200,60531408000,3600,0,'CET',],[60531404400,60550153200,60531411600,60550160400,7200,1,'CEST',],[60550153200,60564668400,60550156800,60564672000,3600,0,'CET',],[60564668400,60580393200,60564675600,60580400400,7200,1,'CEST',],[60580393200,61203250800,60580396800,61203254400,3600,0,'CET',],[61203250800,61278426000,61203258000,61278433200,7200,1,'CEST',],[61278426000,61291126800,61278429600,61291130400,3600,0,'CET',],[61291126800,61307456400,61291134000,61307463600,7200,1,'CEST',],[61307456400,61323181200,61307460000,61323184800,3600,0,'CET',],[61323181200,61330860000,61323188400,61330867200,7200,1,'CEST',],[61330860000,61337602800,61330867200,61337610000,7200,1,'CEST',],[61337602800,61354630800,61337606400,61354634400,3600,0,'CET',],[61354630800,61368966000,61354638000,61368973200,7200,1,'CEST',],[61368966000,61384784400,61368969600,61384788000,3600,0,'CET',],[61384784400,61402323600,61384791600,61402330800,7200,1,'CEST',],[61402323600,61416226800,61402327200,61416230400,3600,0,'CET',],[61416226800,61433766000,61416234000,61433773200,7200,1,'CEST',],[61433766000,61446474000,61433769600,61446477600,3600,0,'CET',],[61446474000,61465222800,61446481200,61465230000,7200,1,'CEST',],[61465222800,62021631600,61465226400,62021635200,3600,0,'CET',],[62021631600,62032514400,62021638800,62032521600,7200,1,'CEST',],[62032514400,62053686000,62032518000,62053689600,3600,0,'CET',],[62053686000,62063964000,62053693200,62063971200,7200,1,'CEST',],[62063964000,62085135600,62063967600,62085139200,3600,0,'CET',],[62085135600,62095413600,62085142800,62095420800,7200,1,'CEST',],[62095413600,62117190000,62095417200,62117193600,3600,0,'CET',],[62117190000,62127468000,62117197200,62127475200,7200,1,'CEST',],[62127468000,62148639600,62127471600,62148643200,3600,0,'CET',],[62148639600,62158917600,62148646800,62158924800,7200,1,'CEST',],[62158917600,62179484400,62158921200,62179488000,3600,0,'CET',],[62179484400,62190370800,62179491600,62190378000,7200,1,'CEST',],[62190370800,62211538800,62190374400,62211542400,3600,0,'CET',],[62211538800,62222421600,62211546000,62222428800,7200,1,'CEST',],[62222421600,62243593200,62222425200,62243596800,3600,0,'CET',],[62243593200,62253871200,62243600400,62253878400,7200,1,'CEST',],[62253871200,62274438000,62253874800,62274441600,3600,0,'CET',],[62274438000,62285320800,62274445200,62285328000,7200,1,'CEST',],[62285320800,62306492400,62285324400,62306496000,3600,0,'CET',],[62306492400,62316774000,62306499600,62316781200,7200,1,'CEST',],[62316774000,62337942000,62316777600,62337945600,3600,0,'CET',],[62337942000,62348223600,62337949200,62348230800,7200,1,'CEST',],[62348223600,62368786800,62348227200,62368790400,3600,0,'CET',],[62368786800,62379673200,62368794000,62379680400,7200,1,'CEST',],[62379673200,62400841200,62379676800,62400844800,3600,0,'CET',],[62400841200,62411727600,62400848400,62411734800,7200,1,'CEST',],[62411727600,62432290800,62411731200,62432294400,3600,0,'CET',],[62432290800,62443177200,62432298000,62443184400,7200,1,'CEST',],[62443177200,62451212400,62443180800,62451216000,3600,0,'CET',],[62451212400,62459514000,62451216000,62459517600,3600,0,'CET',],[62459514000,62474634000,62459521200,62474641200,7200,1,'CEST',],[62474634000,62490358800,62474637600,62490362400,3600,0,'CET',],[62490358800,62506083600,62490366000,62506090800,7200,1,'CEST',],[62506083600,62521808400,62506087200,62521812000,3600,0,'CET',],[62521808400,62537533200,62521815600,62537540400,7200,1,'CEST',],[62537533200,62553258000,62537536800,62553261600,3600,0,'CET',],[62553258000,62568982800,62553265200,62568990000,7200,1,'CEST',],[62568982800,62584707600,62568986400,62584711200,3600,0,'CET',],[62584707600,62601037200,62584714800,62601044400,7200,1,'CEST',],[62601037200,62616762000,62601040800,62616765600,3600,0,'CET',],[62616762000,62632486800,62616769200,62632494000,7200,1,'CEST',],[62632486800,62648211600,62632490400,62648215200,3600,0,'CET',],[62648211600,62663936400,62648218800,62663943600,7200,1,'CEST',],[62663936400,62679661200,62663940000,62679664800,3600,0,'CET',],[62679661200,62695386000,62679668400,62695393200,7200,1,'CEST',],[62695386000,62711110800,62695389600,62711114400,3600,0,'CET',],[62711110800,62726835600,62711118000,62726842800,7200,1,'CEST',],[62726835600,62742560400,62726839200,62742564000,3600,0,'CET',],[62742560400,62758285200,62742567600,62758292400,7200,1,'CEST',],[62758285200,62774010000,62758288800,62774013600,3600,0,'CET',],[62774010000,62790339600,62774017200,62790346800,7200,1,'CEST',],[62790339600,62806064400,62790343200,62806068000,3600,0,'CET',],[62806064400,62821789200,62806071600,62821796400,7200,1,'CEST',],[62821789200,62837514000,62821792800,62837517600,3600,0,'CET',],[62837514000,62853238800,62837521200,62853246000,7200,1,'CEST',],[62853238800,62868963600,62853242400,62868967200,3600,0,'CET',],[62868963600,62884688400,62868970800,62884695600,7200,1,'CEST',],[62884688400,62900413200,62884692000,62900416800,3600,0,'CET',],[62900413200,62916138000,62900420400,62916145200,7200,1,'CEST',],[62916138000,62931862800,62916141600,62931866400,3600,0,'CET',],[62931862800,62947587600,62931870000,62947594800,7200,1,'CEST',],[62947587600,62963917200,62947591200,62963920800,3600,0,'CET',],[62963917200,62982061200,62963924400,62982068400,7200,1,'CEST',],[62982061200,62995366800,62982064800,62995370400,3600,0,'CET',],[62995366800,63013510800,62995374000,63013518000,7200,1,'CEST',],[63013510800,63026816400,63013514400,63026820000,3600,0,'CET',],[63026816400,63044960400,63026823600,63044967600,7200,1,'CEST',],[63044960400,63058266000,63044964000,63058269600,3600,0,'CET',],[63058266000,63077014800,63058273200,63077022000,7200,1,'CEST',],[63077014800,63089715600,63077018400,63089719200,3600,0,'CET',],[63089715600,63108464400,63089722800,63108471600,7200,1,'CEST',],[63108464400,63121165200,63108468000,63121168800,3600,0,'CET',],[63121165200,63139914000,63121172400,63139921200,7200,1,'CEST',],[63139914000,63153219600,63139917600,63153223200,3600,0,'CET',],[63153219600,63171363600,63153226800,63171370800,7200,1,'CEST',],[63171363600,63184669200,63171367200,63184672800,3600,0,'CET',],[63184669200,63202813200,63184676400,63202820400,7200,1,'CEST',],[63202813200,63216118800,63202816800,63216122400,3600,0,'CET',],[63216118800,63234867600,63216126000,63234874800,7200,1,'CEST',],[63234867600,63247568400,63234871200,63247572000,3600,0,'CET',],[63247568400,63266317200,63247575600,63266324400,7200,1,'CEST',],[63266317200,63279018000,63266320800,63279021600,3600,0,'CET',],[63279018000,63297766800,63279025200,63297774000,7200,1,'CEST',],[63297766800,63310467600,63297770400,63310471200,3600,0,'CET',],[63310467600,63329216400,63310474800,63329223600,7200,1,'CEST',],[63329216400,63342522000,63329220000,63342525600,3600,0,'CET',],[63342522000,63360666000,63342529200,63360673200,7200,1,'CEST',],[63360666000,63373971600,63360669600,63373975200,3600,0,'CET',],[63373971600,63392115600,63373978800,63392122800,7200,1,'CEST',],[63392115600,63405421200,63392119200,63405424800,3600,0,'CET',],[63405421200,63424170000,63405428400,63424177200,7200,1,'CEST',],[63424170000,63436870800,63424173600,63436874400,3600,0,'CET',],[63436870800,63455619600,63436878000,63455626800,7200,1,'CEST',],[63455619600,63468320400,63455623200,63468324000,3600,0,'CET',],[63468320400,63487069200,63468327600,63487076400,7200,1,'CEST',],[63487069200,63500374800,63487072800,63500378400,3600,0,'CET',],[63500374800,63518518800,63500382000,63518526000,7200,1,'CEST',],[63518518800,63531824400,63518522400,63531828000,3600,0,'CET',],[63531824400,63549968400,63531831600,63549975600,7200,1,'CEST',],[63549968400,63563274000,63549972000,63563277600,3600,0,'CET',],[63563274000,63581418000,63563281200,63581425200,7200,1,'CEST',],[63581418000,63594723600,63581421600,63594727200,3600,0,'CET',],[63594723600,63613472400,63594730800,63613479600,7200,1,'CEST',],[63613472400,63626173200,63613476000,63626176800,3600,0,'CET',],[63626173200,63644922000,63626180400,63644929200,7200,1,'CEST',],[63644922000,63657622800,63644925600,63657626400,3600,0,'CET',],[63657622800,63676371600,63657630000,63676378800,7200,1,'CEST',],[63676371600,63689677200,63676375200,63689680800,3600,0,'CET',],[63689677200,63707821200,63689684400,63707828400,7200,1,'CEST',],[63707821200,63721126800,63707824800,63721130400,3600,0,'CET',],[63721126800,63739270800,63721134000,63739278000,7200,1,'CEST',],[63739270800,63752576400,63739274400,63752580000,3600,0,'CET',],[63752576400,63771325200,63752583600,63771332400,7200,1,'CEST',],[63771325200,63784026000,63771328800,63784029600,3600,0,'CET',],[63784026000,63802774800,63784033200,63802782000,7200,1,'CEST',],[63802774800,63815475600,63802778400,63815479200,3600,0,'CET',],[63815475600,63834224400,63815482800,63834231600,7200,1,'CEST',],[63834224400,63847530000,63834228000,63847533600,3600,0,'CET',],[63847530000,63865674000,63847537200,63865681200,7200,1,'CEST',],[63865674000,63878979600,63865677600,63878983200,3600,0,'CET',],[63878979600,63897123600,63878986800,63897130800,7200,1,'CEST',],[63897123600,63910429200,63897127200,63910432800,3600,0,'CET',],[63910429200,63928573200,63910436400,63928580400,7200,1,'CEST',],[63928573200,63941878800,63928576800,63941882400,3600,0,'CET',],[63941878800,63960627600,63941886000,63960634800,7200,1,'CEST',],];sub olson_version {'2016a'}sub has_dst_changes {75}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {3600}my$last_observance=bless({'format'=>'CE%sT','gmtoff'=>'1:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>722815,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>722815,'utc_rd_secs'=>0,'utc_year'=>1981 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>3600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>722814,'local_rd_secs'=>82800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>722814,'utc_rd_secs'=>82800,'utc_year'=>1980 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_ROME

$fatpacked{"DateTime/TimeZone/Europe/Samara.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_SAMARA';
  package DateTime::TimeZone::Europe::Samara;$DateTime::TimeZone::Europe::Samara::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Samara::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60541857580,DateTime::TimeZone::NEG_INFINITY,60541869600,12020,0,'LMT',],[60541857580,60888142800,60541868380,60888153600,10800,0,'SAMT',],[60888142800,61033377600,60888157200,61033392000,14400,0,'SAMT',],[61033377600,62490600000,61033392000,62490614400,14400,0,'KUYT',],[62490600000,62506407600,62490618000,62506425600,18000,1,'KUYST',],[62506407600,62522136000,62506422000,62522150400,14400,0,'KUYT',],[62522136000,62537943600,62522154000,62537961600,18000,1,'KUYST',],[62537943600,62553672000,62537958000,62553686400,14400,0,'KUYT',],[62553672000,62569479600,62553690000,62569497600,18000,1,'KUYST',],[62569479600,62585294400,62569494000,62585308800,14400,0,'KUYT',],[62585294400,62601026400,62585312400,62601044400,18000,1,'KUYST',],[62601026400,62616751200,62601040800,62616765600,14400,0,'KUYT',],[62616751200,62632476000,62616769200,62632494000,18000,1,'KUYST',],[62632476000,62648200800,62632490400,62648215200,14400,0,'KUYT',],[62648200800,62663925600,62648218800,62663943600,18000,1,'KUYST',],[62663925600,62679650400,62663940000,62679664800,14400,0,'KUYT',],[62679650400,62695375200,62679668400,62695393200,18000,1,'KUYST',],[62695375200,62711100000,62695389600,62711114400,14400,0,'KUYT',],[62711100000,62726824800,62711118000,62726842800,18000,1,'KUYST',],[62726824800,62742549600,62726839200,62742564000,14400,0,'KUYT',],[62742549600,62758278000,62742564000,62758292400,14400,1,'MSD',],[62758278000,62774002800,62758288800,62774013600,10800,0,'MSK',],[62774002800,62790332400,62774017200,62790346800,14400,1,'MSD',],[62790332400,62806057200,62790343200,62806068000,10800,0,'MSK',],[62806057200,62821785600,62806068000,62821796400,10800,1,'EEST',],[62821785600,62823600000,62821796400,62823610800,10800,0,'KUYT',],[62823600000,62837492400,62823614400,62837506800,14400,0,'SAMT',],[62837492400,62853213600,62837510400,62853231600,18000,1,'SAMST',],[62853213600,62868952800,62853228000,62868967200,14400,0,'SAMT',],[62868952800,62884677600,62868970800,62884695600,18000,1,'SAMST',],[62884677600,62900402400,62884692000,62900416800,14400,0,'SAMT',],[62900402400,62916127200,62900420400,62916145200,18000,1,'SAMST',],[62916127200,62931852000,62916141600,62931866400,14400,0,'SAMT',],[62931852000,62947576800,62931870000,62947594800,18000,1,'SAMST',],[62947576800,62963906400,62947591200,62963920800,14400,0,'SAMT',],[62963906400,62982050400,62963924400,62982068400,18000,1,'SAMST',],[62982050400,62995356000,62982064800,62995370400,14400,0,'SAMT',],[62995356000,63013500000,62995374000,63013518000,18000,1,'SAMST',],[63013500000,63026805600,63013514400,63026820000,14400,0,'SAMT',],[63026805600,63044949600,63026823600,63044967600,18000,1,'SAMST',],[63044949600,63058255200,63044964000,63058269600,14400,0,'SAMT',],[63058255200,63077004000,63058273200,63077022000,18000,1,'SAMST',],[63077004000,63089704800,63077018400,63089719200,14400,0,'SAMT',],[63089704800,63108453600,63089722800,63108471600,18000,1,'SAMST',],[63108453600,63121154400,63108468000,63121168800,14400,0,'SAMT',],[63121154400,63139903200,63121172400,63139921200,18000,1,'SAMST',],[63139903200,63153208800,63139917600,63153223200,14400,0,'SAMT',],[63153208800,63171352800,63153226800,63171370800,18000,1,'SAMST',],[63171352800,63184658400,63171367200,63184672800,14400,0,'SAMT',],[63184658400,63202802400,63184676400,63202820400,18000,1,'SAMST',],[63202802400,63216108000,63202816800,63216122400,14400,0,'SAMT',],[63216108000,63234856800,63216126000,63234874800,18000,1,'SAMST',],[63234856800,63247557600,63234871200,63247572000,14400,0,'SAMT',],[63247557600,63266306400,63247575600,63266324400,18000,1,'SAMST',],[63266306400,63279007200,63266320800,63279021600,14400,0,'SAMT',],[63279007200,63297756000,63279025200,63297774000,18000,1,'SAMST',],[63297756000,63310456800,63297770400,63310471200,14400,0,'SAMT',],[63310456800,63329205600,63310474800,63329223600,18000,1,'SAMST',],[63329205600,63342511200,63329220000,63342525600,14400,0,'SAMT',],[63342511200,63360655200,63342529200,63360673200,18000,1,'SAMST',],[63360655200,63373960800,63360669600,63373975200,14400,0,'SAMT',],[63373960800,63392104800,63373978800,63392122800,18000,1,'SAMST',],[63392104800,63405410400,63392119200,63405424800,14400,0,'SAMT',],[63405410400,63424162800,63405424800,63424177200,14400,1,'SAMST',],[63424162800,63436863600,63424173600,63436874400,10800,0,'SAMT',],[63436863600,DateTime::TimeZone::INFINITY,63436878000,DateTime::TimeZone::INFINITY,14400,0,'SAMT',],];sub olson_version {'2016a'}sub has_dst_changes {30}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_EUROPE_SAMARA

$fatpacked{"DateTime/TimeZone/Europe/Simferopol.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_SIMFEROPOL';
  package DateTime::TimeZone::Europe::Simferopol;$DateTime::TimeZone::Europe::Simferopol::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Simferopol::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59295534216,DateTime::TimeZone::NEG_INFINITY,59295542400,8184,0,'LMT',],[59295534216,60694523040,59295542376,60694531200,8160,0,'SMT',],[60694523040,60888146400,60694530240,60888153600,7200,0,'EET',],[60888146400,61246789200,60888157200,61246800000,10800,0,'MSK',],[61246789200,61278426000,61246796400,61278433200,7200,1,'CEST',],[61278426000,61291126800,61278429600,61291130400,3600,0,'CET',],[61291126800,61307456400,61291134000,61307463600,7200,1,'CEST',],[61307456400,61323181200,61307460000,61323184800,3600,0,'CET',],[61323181200,61324034400,61323188400,61324041600,7200,1,'CEST',],[61324034400,62490603600,61324045200,62490614400,10800,0,'MSK',],[62490603600,62506411200,62490618000,62506425600,14400,1,'MSD',],[62506411200,62522139600,62506422000,62522150400,10800,0,'MSK',],[62522139600,62537947200,62522154000,62537961600,14400,1,'MSD',],[62537947200,62553675600,62537958000,62553686400,10800,0,'MSK',],[62553675600,62569483200,62553690000,62569497600,14400,1,'MSD',],[62569483200,62585298000,62569494000,62585308800,10800,0,'MSK',],[62585298000,62601030000,62585312400,62601044400,14400,1,'MSD',],[62601030000,62616754800,62601040800,62616765600,10800,0,'MSK',],[62616754800,62632479600,62616769200,62632494000,14400,1,'MSD',],[62632479600,62648204400,62632490400,62648215200,10800,0,'MSK',],[62648204400,62663929200,62648218800,62663943600,14400,1,'MSD',],[62663929200,62679654000,62663940000,62679664800,10800,0,'MSK',],[62679654000,62695378800,62679668400,62695393200,14400,1,'MSD',],[62695378800,62711103600,62695389600,62711114400,10800,0,'MSK',],[62711103600,62726828400,62711118000,62726842800,14400,1,'MSD',],[62726828400,62742553200,62726839200,62742564000,10800,0,'MSK',],[62742553200,62758278000,62742567600,62758292400,14400,1,'MSD',],[62758278000,62766824400,62758288800,62766835200,10800,0,'MSK',],[62766824400,62782470000,62766835200,62782480800,10800,0,'MSK',],[62782470000,62829900000,62782477200,62829907200,7200,0,'EET',],[62829900000,62837503200,62829907200,62837510400,7200,0,'EET',],[62837503200,62853224400,62837514000,62853235200,10800,1,'EEST',],[62853224400,62868952800,62853231600,62868960000,7200,0,'EET',],[62868952800,62884674000,62868963600,62884684800,10800,1,'EEST',],[62884674000,62900402400,62884681200,62900409600,7200,0,'EET',],[62900402400,62903422800,62900413200,62903433600,10800,1,'EEST',],[62903422800,62916120000,62903437200,62916134400,14400,1,'MSD',],[62916120000,62931848400,62916130800,62931859200,10800,0,'MSK',],[62931848400,62947569600,62931862800,62947584000,14400,1,'MSD',],[62947569600,62963902800,62947580400,62963913600,10800,0,'MSK',],[62963902800,62982057600,62963917200,62982072000,14400,1,'MSD',],[62982057600,62987749200,62982068400,62987760000,10800,0,'MSK',],[62987749200,62995366800,62987760000,62995377600,10800,0,'MSK',],[62995366800,63013510800,62995377600,63013521600,10800,1,'EEST',],[63013510800,63026816400,63013518000,63026823600,7200,0,'EET',],[63026816400,63044960400,63026827200,63044971200,10800,1,'EEST',],[63044960400,63058266000,63044967600,63058273200,7200,0,'EET',],[63058266000,63077014800,63058276800,63077025600,10800,1,'EEST',],[63077014800,63089715600,63077022000,63089722800,7200,0,'EET',],[63089715600,63108464400,63089726400,63108475200,10800,1,'EEST',],[63108464400,63121165200,63108471600,63121172400,7200,0,'EET',],[63121165200,63139914000,63121176000,63139924800,10800,1,'EEST',],[63139914000,63153219600,63139921200,63153226800,7200,0,'EET',],[63153219600,63171363600,63153230400,63171374400,10800,1,'EEST',],[63171363600,63184669200,63171370800,63184676400,7200,0,'EET',],[63184669200,63202813200,63184680000,63202824000,10800,1,'EEST',],[63202813200,63216118800,63202820400,63216126000,7200,0,'EET',],[63216118800,63234867600,63216129600,63234878400,10800,1,'EEST',],[63234867600,63247568400,63234874800,63247575600,7200,0,'EET',],[63247568400,63266317200,63247579200,63266328000,10800,1,'EEST',],[63266317200,63279018000,63266324400,63279025200,7200,0,'EET',],[63279018000,63297766800,63279028800,63297777600,10800,1,'EEST',],[63297766800,63310467600,63297774000,63310474800,7200,0,'EET',],[63310467600,63329216400,63310478400,63329227200,10800,1,'EEST',],[63329216400,63342522000,63329223600,63342529200,7200,0,'EET',],[63342522000,63360666000,63342532800,63360676800,10800,1,'EEST',],[63360666000,63373971600,63360673200,63373978800,7200,0,'EET',],[63373971600,63392115600,63373982400,63392126400,10800,1,'EEST',],[63392115600,63405421200,63392122800,63405428400,7200,0,'EET',],[63405421200,63424170000,63405432000,63424180800,10800,1,'EEST',],[63424170000,63436870800,63424177200,63436878000,7200,0,'EET',],[63436870800,63455619600,63436881600,63455630400,10800,1,'EEST',],[63455619600,63468320400,63455626800,63468327600,7200,0,'EET',],[63468320400,63487069200,63468331200,63487080000,10800,1,'EEST',],[63487069200,63500374800,63487076400,63500382000,7200,0,'EET',],[63500374800,63518518800,63500385600,63518529600,10800,1,'EEST',],[63518518800,63531820800,63518526000,63531828000,7200,0,'EET',],[63531820800,63549957600,63531835200,63549972000,14400,0,'MSK',],[63549957600,DateTime::TimeZone::INFINITY,63549968400,DateTime::TimeZone::INFINITY,10800,0,'MSK',],];sub olson_version {'2016a'}sub has_dst_changes {35}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_EUROPE_SIMFEROPOL

$fatpacked{"DateTime/TimeZone/Europe/Sofia.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_SOFIA';
  package DateTime::TimeZone::Europe::Sofia;$DateTime::TimeZone::Europe::Sofia::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Sofia::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59295536804,DateTime::TimeZone::NEG_INFINITY,59295542400,5596,0,'LMT',],[59295536804,59766156184,59295543820,59766163200,7016,0,'IMT',],[59766156184,61278426000,59766163384,61278433200,7200,0,'EET',],[61278426000,61291126800,61278429600,61291130400,3600,0,'CET',],[61291126800,61307456400,61291134000,61307463600,7200,1,'CEST',],[61307456400,61323181200,61307460000,61323184800,3600,0,'CET',],[61323181200,61338906000,61323188400,61338913200,7200,1,'CEST',],[61338906000,61346761200,61338909600,61346764800,3600,0,'CET',],[61346761200,61354634400,61346764800,61354638000,3600,0,'CET',],[61354634400,62427445200,61354641600,62427452400,7200,0,'EET',],[62427445200,62443260000,62427456000,62443270800,10800,1,'EEST',],[62443260000,62459499600,62443267200,62459506800,7200,0,'EET',],[62459499600,62474709600,62459510400,62474720400,10800,1,'EEST',],[62474709600,62490949200,62474716800,62490956400,7200,0,'EET',],[62490949200,62506076400,62490960000,62506087200,10800,1,'EEST',],[62506076400,62522398800,62506083600,62522406000,7200,0,'EET',],[62522398800,62537529600,62522409600,62537540400,10800,1,'EEST',],[62537529600,62553254400,62537536800,62553261600,7200,0,'EET',],[62553254400,62568979200,62553265200,62568990000,10800,1,'EEST',],[62568979200,62584704000,62568986400,62584711200,7200,0,'EET',],[62584704000,62601033600,62584714800,62601044400,10800,1,'EEST',],[62601033600,62616758400,62601040800,62616765600,7200,0,'EET',],[62616758400,62632483200,62616769200,62632494000,10800,1,'EEST',],[62632483200,62648208000,62632490400,62648215200,7200,0,'EET',],[62648208000,62663932800,62648218800,62663943600,10800,1,'EEST',],[62663932800,62679657600,62663940000,62679664800,7200,0,'EET',],[62679657600,62695382400,62679668400,62695393200,10800,1,'EEST',],[62695382400,62711107200,62695389600,62711114400,7200,0,'EET',],[62711107200,62726832000,62711118000,62726842800,10800,1,'EEST',],[62726832000,62742556800,62726839200,62742564000,7200,0,'EET',],[62742556800,62758281600,62742567600,62758292400,10800,1,'EEST',],[62758281600,62774006400,62758288800,62774013600,7200,0,'EET',],[62774006400,62790336000,62774017200,62790346800,10800,1,'EEST',],[62790336000,62798364000,62790343200,62798371200,7200,0,'EET',],[62798364000,62806053600,62798371200,62806060800,7200,0,'EET',],[62806053600,62821774800,62806064400,62821785600,10800,1,'EEST',],[62821774800,62837503200,62821782000,62837510400,7200,0,'EET',],[62837503200,62853224400,62837514000,62853235200,10800,1,'EEST',],[62853224400,62868952800,62853231600,62868960000,7200,0,'EET',],[62868952800,62884674000,62868963600,62884684800,10800,1,'EEST',],[62884674000,62900402400,62884681200,62900409600,7200,0,'EET',],[62900402400,62916123600,62900413200,62916134400,10800,1,'EEST',],[62916123600,62931852000,62916130800,62931859200,7200,0,'EET',],[62931852000,62947573200,62931862800,62947584000,10800,1,'EEST',],[62947573200,62963906400,62947580400,62963913600,7200,0,'EET',],[62963906400,62982046800,62963917200,62982057600,10800,1,'EEST',],[62982046800,62987752800,62982054000,62987760000,7200,0,'EET',],[62987752800,62995366800,62987760000,62995374000,7200,0,'EET',],[62995366800,63013510800,62995377600,63013521600,10800,1,'EEST',],[63013510800,63026816400,63013518000,63026823600,7200,0,'EET',],[63026816400,63044960400,63026827200,63044971200,10800,1,'EEST',],[63044960400,63058266000,63044967600,63058273200,7200,0,'EET',],[63058266000,63077014800,63058276800,63077025600,10800,1,'EEST',],[63077014800,63089715600,63077022000,63089722800,7200,0,'EET',],[63089715600,63108464400,63089726400,63108475200,10800,1,'EEST',],[63108464400,63121165200,63108471600,63121172400,7200,0,'EET',],[63121165200,63139914000,63121176000,63139924800,10800,1,'EEST',],[63139914000,63153219600,63139921200,63153226800,7200,0,'EET',],[63153219600,63171363600,63153230400,63171374400,10800,1,'EEST',],[63171363600,63184669200,63171370800,63184676400,7200,0,'EET',],[63184669200,63202813200,63184680000,63202824000,10800,1,'EEST',],[63202813200,63216118800,63202820400,63216126000,7200,0,'EET',],[63216118800,63234867600,63216129600,63234878400,10800,1,'EEST',],[63234867600,63247568400,63234874800,63247575600,7200,0,'EET',],[63247568400,63266317200,63247579200,63266328000,10800,1,'EEST',],[63266317200,63279018000,63266324400,63279025200,7200,0,'EET',],[63279018000,63297766800,63279028800,63297777600,10800,1,'EEST',],[63297766800,63310467600,63297774000,63310474800,7200,0,'EET',],[63310467600,63329216400,63310478400,63329227200,10800,1,'EEST',],[63329216400,63342522000,63329223600,63342529200,7200,0,'EET',],[63342522000,63360666000,63342532800,63360676800,10800,1,'EEST',],[63360666000,63373971600,63360673200,63373978800,7200,0,'EET',],[63373971600,63392115600,63373982400,63392126400,10800,1,'EEST',],[63392115600,63405421200,63392122800,63405428400,7200,0,'EET',],[63405421200,63424170000,63405432000,63424180800,10800,1,'EEST',],[63424170000,63436870800,63424177200,63436878000,7200,0,'EET',],[63436870800,63455619600,63436881600,63455630400,10800,1,'EEST',],[63455619600,63468320400,63455626800,63468327600,7200,0,'EET',],[63468320400,63487069200,63468331200,63487080000,10800,1,'EEST',],[63487069200,63500374800,63487076400,63500382000,7200,0,'EET',],[63500374800,63518518800,63500385600,63518529600,10800,1,'EEST',],[63518518800,63531824400,63518526000,63531831600,7200,0,'EET',],[63531824400,63549968400,63531835200,63549979200,10800,1,'EEST',],[63549968400,63563274000,63549975600,63563281200,7200,0,'EET',],[63563274000,63581418000,63563284800,63581428800,10800,1,'EEST',],[63581418000,63594723600,63581425200,63594730800,7200,0,'EET',],[63594723600,63613472400,63594734400,63613483200,10800,1,'EEST',],[63613472400,63626173200,63613479600,63626180400,7200,0,'EET',],[63626173200,63644922000,63626184000,63644932800,10800,1,'EEST',],[63644922000,63657622800,63644929200,63657630000,7200,0,'EET',],[63657622800,63676371600,63657633600,63676382400,10800,1,'EEST',],[63676371600,63689677200,63676378800,63689684400,7200,0,'EET',],[63689677200,63707821200,63689688000,63707832000,10800,1,'EEST',],[63707821200,63721126800,63707828400,63721134000,7200,0,'EET',],[63721126800,63739270800,63721137600,63739281600,10800,1,'EEST',],[63739270800,63752576400,63739278000,63752583600,7200,0,'EET',],[63752576400,63771325200,63752587200,63771336000,10800,1,'EEST',],[63771325200,63784026000,63771332400,63784033200,7200,0,'EET',],[63784026000,63802774800,63784036800,63802785600,10800,1,'EEST',],[63802774800,63815475600,63802782000,63815482800,7200,0,'EET',],[63815475600,63834224400,63815486400,63834235200,10800,1,'EEST',],[63834224400,63847530000,63834231600,63847537200,7200,0,'EET',],[63847530000,63865674000,63847540800,63865684800,10800,1,'EEST',],[63865674000,63878979600,63865681200,63878986800,7200,0,'EET',],[63878979600,63897123600,63878990400,63897134400,10800,1,'EEST',],[63897123600,63910429200,63897130800,63910436400,7200,0,'EET',],[63910429200,63928573200,63910440000,63928584000,10800,1,'EEST',],[63928573200,63941878800,63928580400,63941886000,7200,0,'EET',],[63941878800,63960627600,63941889600,63960638400,10800,1,'EEST',],];sub olson_version {'2016a'}sub has_dst_changes {51}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {7200}my$last_observance=bless({'format'=>'EE%sT','gmtoff'=>'2:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>729025,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>729025,'utc_rd_secs'=>0,'utc_year'=>1998 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>7200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>729024,'local_rd_secs'=>79200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>729024,'utc_rd_secs'=>79200,'utc_year'=>1997 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_SOFIA

$fatpacked{"DateTime/TimeZone/Europe/Stockholm.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_STOCKHOLM';
  package DateTime::TimeZone::Europe::Stockholm;$DateTime::TimeZone::Europe::Stockholm::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Stockholm::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59264002068,DateTime::TimeZone::NEG_INFINITY,59264006400,4332,0,'LMT',],[59264002068,59926690786,59264005682,59926694400,3614,0,'SET',],[59926690786,60443186400,59926694386,60443190000,3600,0,'CET',],[60443186400,60455199600,60443193600,60455206800,7200,1,'CEST',],[60455199600,62451212400,60455203200,62451216000,3600,0,'CET',],[62451212400,62459514000,62451216000,62459517600,3600,0,'CET',],[62459514000,62474634000,62459521200,62474641200,7200,1,'CEST',],[62474634000,62490358800,62474637600,62490362400,3600,0,'CET',],[62490358800,62506083600,62490366000,62506090800,7200,1,'CEST',],[62506083600,62521808400,62506087200,62521812000,3600,0,'CET',],[62521808400,62537533200,62521815600,62537540400,7200,1,'CEST',],[62537533200,62553258000,62537536800,62553261600,3600,0,'CET',],[62553258000,62568982800,62553265200,62568990000,7200,1,'CEST',],[62568982800,62584707600,62568986400,62584711200,3600,0,'CET',],[62584707600,62601037200,62584714800,62601044400,7200,1,'CEST',],[62601037200,62616762000,62601040800,62616765600,3600,0,'CET',],[62616762000,62632486800,62616769200,62632494000,7200,1,'CEST',],[62632486800,62648211600,62632490400,62648215200,3600,0,'CET',],[62648211600,62663936400,62648218800,62663943600,7200,1,'CEST',],[62663936400,62679661200,62663940000,62679664800,3600,0,'CET',],[62679661200,62695386000,62679668400,62695393200,7200,1,'CEST',],[62695386000,62711110800,62695389600,62711114400,3600,0,'CET',],[62711110800,62726835600,62711118000,62726842800,7200,1,'CEST',],[62726835600,62742560400,62726839200,62742564000,3600,0,'CET',],[62742560400,62758285200,62742567600,62758292400,7200,1,'CEST',],[62758285200,62774010000,62758288800,62774013600,3600,0,'CET',],[62774010000,62790339600,62774017200,62790346800,7200,1,'CEST',],[62790339600,62806064400,62790343200,62806068000,3600,0,'CET',],[62806064400,62821789200,62806071600,62821796400,7200,1,'CEST',],[62821789200,62837514000,62821792800,62837517600,3600,0,'CET',],[62837514000,62853238800,62837521200,62853246000,7200,1,'CEST',],[62853238800,62868963600,62853242400,62868967200,3600,0,'CET',],[62868963600,62884688400,62868970800,62884695600,7200,1,'CEST',],[62884688400,62900413200,62884692000,62900416800,3600,0,'CET',],[62900413200,62916138000,62900420400,62916145200,7200,1,'CEST',],[62916138000,62931862800,62916141600,62931866400,3600,0,'CET',],[62931862800,62947587600,62931870000,62947594800,7200,1,'CEST',],[62947587600,62963917200,62947591200,62963920800,3600,0,'CET',],[62963917200,62982061200,62963924400,62982068400,7200,1,'CEST',],[62982061200,62995366800,62982064800,62995370400,3600,0,'CET',],[62995366800,63013510800,62995374000,63013518000,7200,1,'CEST',],[63013510800,63026816400,63013514400,63026820000,3600,0,'CET',],[63026816400,63044960400,63026823600,63044967600,7200,1,'CEST',],[63044960400,63058266000,63044964000,63058269600,3600,0,'CET',],[63058266000,63077014800,63058273200,63077022000,7200,1,'CEST',],[63077014800,63089715600,63077018400,63089719200,3600,0,'CET',],[63089715600,63108464400,63089722800,63108471600,7200,1,'CEST',],[63108464400,63121165200,63108468000,63121168800,3600,0,'CET',],[63121165200,63139914000,63121172400,63139921200,7200,1,'CEST',],[63139914000,63153219600,63139917600,63153223200,3600,0,'CET',],[63153219600,63171363600,63153226800,63171370800,7200,1,'CEST',],[63171363600,63184669200,63171367200,63184672800,3600,0,'CET',],[63184669200,63202813200,63184676400,63202820400,7200,1,'CEST',],[63202813200,63216118800,63202816800,63216122400,3600,0,'CET',],[63216118800,63234867600,63216126000,63234874800,7200,1,'CEST',],[63234867600,63247568400,63234871200,63247572000,3600,0,'CET',],[63247568400,63266317200,63247575600,63266324400,7200,1,'CEST',],[63266317200,63279018000,63266320800,63279021600,3600,0,'CET',],[63279018000,63297766800,63279025200,63297774000,7200,1,'CEST',],[63297766800,63310467600,63297770400,63310471200,3600,0,'CET',],[63310467600,63329216400,63310474800,63329223600,7200,1,'CEST',],[63329216400,63342522000,63329220000,63342525600,3600,0,'CET',],[63342522000,63360666000,63342529200,63360673200,7200,1,'CEST',],[63360666000,63373971600,63360669600,63373975200,3600,0,'CET',],[63373971600,63392115600,63373978800,63392122800,7200,1,'CEST',],[63392115600,63405421200,63392119200,63405424800,3600,0,'CET',],[63405421200,63424170000,63405428400,63424177200,7200,1,'CEST',],[63424170000,63436870800,63424173600,63436874400,3600,0,'CET',],[63436870800,63455619600,63436878000,63455626800,7200,1,'CEST',],[63455619600,63468320400,63455623200,63468324000,3600,0,'CET',],[63468320400,63487069200,63468327600,63487076400,7200,1,'CEST',],[63487069200,63500374800,63487072800,63500378400,3600,0,'CET',],[63500374800,63518518800,63500382000,63518526000,7200,1,'CEST',],[63518518800,63531824400,63518522400,63531828000,3600,0,'CET',],[63531824400,63549968400,63531831600,63549975600,7200,1,'CEST',],[63549968400,63563274000,63549972000,63563277600,3600,0,'CET',],[63563274000,63581418000,63563281200,63581425200,7200,1,'CEST',],[63581418000,63594723600,63581421600,63594727200,3600,0,'CET',],[63594723600,63613472400,63594730800,63613479600,7200,1,'CEST',],[63613472400,63626173200,63613476000,63626176800,3600,0,'CET',],[63626173200,63644922000,63626180400,63644929200,7200,1,'CEST',],[63644922000,63657622800,63644925600,63657626400,3600,0,'CET',],[63657622800,63676371600,63657630000,63676378800,7200,1,'CEST',],[63676371600,63689677200,63676375200,63689680800,3600,0,'CET',],[63689677200,63707821200,63689684400,63707828400,7200,1,'CEST',],[63707821200,63721126800,63707824800,63721130400,3600,0,'CET',],[63721126800,63739270800,63721134000,63739278000,7200,1,'CEST',],[63739270800,63752576400,63739274400,63752580000,3600,0,'CET',],[63752576400,63771325200,63752583600,63771332400,7200,1,'CEST',],[63771325200,63784026000,63771328800,63784029600,3600,0,'CET',],[63784026000,63802774800,63784033200,63802782000,7200,1,'CEST',],[63802774800,63815475600,63802778400,63815479200,3600,0,'CET',],[63815475600,63834224400,63815482800,63834231600,7200,1,'CEST',],[63834224400,63847530000,63834228000,63847533600,3600,0,'CET',],[63847530000,63865674000,63847537200,63865681200,7200,1,'CEST',],[63865674000,63878979600,63865677600,63878983200,3600,0,'CET',],[63878979600,63897123600,63878986800,63897130800,7200,1,'CEST',],[63897123600,63910429200,63897127200,63910432800,3600,0,'CET',],[63910429200,63928573200,63910436400,63928580400,7200,1,'CEST',],[63928573200,63941878800,63928576800,63941882400,3600,0,'CET',],[63941878800,63960627600,63941886000,63960634800,7200,1,'CEST',],];sub olson_version {'2016a'}sub has_dst_changes {49}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {3600}my$last_observance=bless({'format'=>'CE%sT','gmtoff'=>'1:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>722815,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>722815,'utc_rd_secs'=>0,'utc_year'=>1981 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>3600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>722814,'local_rd_secs'=>82800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>722814,'utc_rd_secs'=>82800,'utc_year'=>1980 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_STOCKHOLM

$fatpacked{"DateTime/TimeZone/Europe/Tallinn.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_TALLINN';
  package DateTime::TimeZone::Europe::Tallinn;$DateTime::TimeZone::Europe::Tallinn::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Tallinn::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59295536460,DateTime::TimeZone::NEG_INFINITY,59295542400,5940,0,'LMT',],[59295536460,60497360460,59295542400,60497366400,5940,0,'TMT',],[60497360460,60503677200,60497364060,60503680800,3600,0,'CET',],[60503677200,60516982800,60503684400,60516990000,7200,1,'CEST',],[60516982800,60541858800,60516986400,60541862400,3600,0,'CET',],[60541858800,60599744460,60541864740,60599750400,5940,0,'TMT',],[60599744460,61207740000,60599751660,61207747200,7200,0,'EET',],[61207740000,61242728400,61207750800,61242739200,10800,0,'MSK',],[61242728400,61278426000,61242735600,61278433200,7200,1,'CEST',],[61278426000,61291126800,61278429600,61291130400,3600,0,'CET',],[61291126800,61307456400,61291134000,61307463600,7200,1,'CEST',],[61307456400,61323181200,61307460000,61323184800,3600,0,'CET',],[61323181200,61338031200,61323188400,61338038400,7200,1,'CEST',],[61338031200,62490603600,61338042000,62490614400,10800,0,'MSK',],[62490603600,62506411200,62490618000,62506425600,14400,1,'MSD',],[62506411200,62522139600,62506422000,62522150400,10800,0,'MSK',],[62522139600,62537947200,62522154000,62537961600,14400,1,'MSD',],[62537947200,62553675600,62537958000,62553686400,10800,0,'MSK',],[62553675600,62569483200,62553690000,62569497600,14400,1,'MSD',],[62569483200,62585298000,62569494000,62585308800,10800,0,'MSK',],[62585298000,62601030000,62585312400,62601044400,14400,1,'MSD',],[62601030000,62616754800,62601040800,62616765600,10800,0,'MSK',],[62616754800,62632479600,62616769200,62632494000,14400,1,'MSD',],[62632479600,62648204400,62632490400,62648215200,10800,0,'MSK',],[62648204400,62663929200,62648218800,62663943600,14400,1,'MSD',],[62663929200,62679654000,62663940000,62679664800,10800,0,'MSK',],[62679654000,62695378800,62679668400,62695393200,14400,1,'MSD',],[62695378800,62711103600,62695389600,62711114400,10800,0,'MSK',],[62711103600,62726828400,62711118000,62726842800,14400,1,'MSD',],[62726828400,62742553200,62726839200,62742564000,10800,0,'MSK',],[62742553200,62758281600,62742564000,62758292400,10800,1,'EEST',],[62758281600,62774006400,62758288800,62774013600,7200,0,'EET',],[62774006400,62790336000,62774017200,62790346800,10800,1,'EEST',],[62790336000,62806060800,62790343200,62806068000,7200,0,'EET',],[62806060800,62821785600,62806071600,62821796400,10800,1,'EEST',],[62821785600,62837510400,62821792800,62837517600,7200,0,'EET',],[62837510400,62853235200,62837521200,62853246000,10800,1,'EEST',],[62853235200,62868960000,62853242400,62868967200,7200,0,'EET',],[62868960000,62884684800,62868970800,62884695600,10800,1,'EEST',],[62884684800,62900409600,62884692000,62900416800,7200,0,'EET',],[62900409600,62916134400,62900420400,62916145200,10800,1,'EEST',],[62916134400,62931859200,62916141600,62931866400,7200,0,'EET',],[62931859200,62947584000,62931870000,62947594800,10800,1,'EEST',],[62947584000,62963913600,62947591200,62963920800,7200,0,'EET',],[62963913600,62982057600,62963924400,62982068400,10800,1,'EEST',],[62982057600,62995363200,62982064800,62995370400,7200,0,'EET',],[62995363200,63013507200,62995374000,63013518000,10800,1,'EEST',],[63013507200,63026812800,63013514400,63026820000,7200,0,'EET',],[63026812800,63042094800,63026823600,63042105600,10800,1,'EEST',],[63042094800,63044960400,63042105600,63044971200,10800,1,'EEST',],[63044960400,63058266000,63044967600,63058273200,7200,0,'EET',],[63058266000,63077014800,63058276800,63077025600,10800,1,'EEST',],[63077014800,63149925600,63077022000,63149932800,7200,0,'EET',],[63149925600,63153219600,63149932800,63153226800,7200,0,'EET',],[63153219600,63171363600,63153230400,63171374400,10800,1,'EEST',],[63171363600,63184669200,63171370800,63184676400,7200,0,'EET',],[63184669200,63202813200,63184680000,63202824000,10800,1,'EEST',],[63202813200,63216118800,63202820400,63216126000,7200,0,'EET',],[63216118800,63234867600,63216129600,63234878400,10800,1,'EEST',],[63234867600,63247568400,63234874800,63247575600,7200,0,'EET',],[63247568400,63266317200,63247579200,63266328000,10800,1,'EEST',],[63266317200,63279018000,63266324400,63279025200,7200,0,'EET',],[63279018000,63297766800,63279028800,63297777600,10800,1,'EEST',],[63297766800,63310467600,63297774000,63310474800,7200,0,'EET',],[63310467600,63329216400,63310478400,63329227200,10800,1,'EEST',],[63329216400,63342522000,63329223600,63342529200,7200,0,'EET',],[63342522000,63360666000,63342532800,63360676800,10800,1,'EEST',],[63360666000,63373971600,63360673200,63373978800,7200,0,'EET',],[63373971600,63392115600,63373982400,63392126400,10800,1,'EEST',],[63392115600,63405421200,63392122800,63405428400,7200,0,'EET',],[63405421200,63424170000,63405432000,63424180800,10800,1,'EEST',],[63424170000,63436870800,63424177200,63436878000,7200,0,'EET',],[63436870800,63455619600,63436881600,63455630400,10800,1,'EEST',],[63455619600,63468320400,63455626800,63468327600,7200,0,'EET',],[63468320400,63487069200,63468331200,63487080000,10800,1,'EEST',],[63487069200,63500374800,63487076400,63500382000,7200,0,'EET',],[63500374800,63518518800,63500385600,63518529600,10800,1,'EEST',],[63518518800,63531824400,63518526000,63531831600,7200,0,'EET',],[63531824400,63549968400,63531835200,63549979200,10800,1,'EEST',],[63549968400,63563274000,63549975600,63563281200,7200,0,'EET',],[63563274000,63581418000,63563284800,63581428800,10800,1,'EEST',],[63581418000,63594723600,63581425200,63594730800,7200,0,'EET',],[63594723600,63613472400,63594734400,63613483200,10800,1,'EEST',],[63613472400,63626173200,63613479600,63626180400,7200,0,'EET',],[63626173200,63644922000,63626184000,63644932800,10800,1,'EEST',],[63644922000,63657622800,63644929200,63657630000,7200,0,'EET',],[63657622800,63676371600,63657633600,63676382400,10800,1,'EEST',],[63676371600,63689677200,63676378800,63689684400,7200,0,'EET',],[63689677200,63707821200,63689688000,63707832000,10800,1,'EEST',],[63707821200,63721126800,63707828400,63721134000,7200,0,'EET',],[63721126800,63739270800,63721137600,63739281600,10800,1,'EEST',],[63739270800,63752576400,63739278000,63752583600,7200,0,'EET',],[63752576400,63771325200,63752587200,63771336000,10800,1,'EEST',],[63771325200,63784026000,63771332400,63784033200,7200,0,'EET',],[63784026000,63802774800,63784036800,63802785600,10800,1,'EEST',],[63802774800,63815475600,63802782000,63815482800,7200,0,'EET',],[63815475600,63834224400,63815486400,63834235200,10800,1,'EEST',],[63834224400,63847530000,63834231600,63847537200,7200,0,'EET',],[63847530000,63865674000,63847540800,63865684800,10800,1,'EEST',],[63865674000,63878979600,63865681200,63878986800,7200,0,'EET',],[63878979600,63897123600,63878990400,63897134400,10800,1,'EEST',],[63897123600,63910429200,63897130800,63910436400,7200,0,'EET',],[63910429200,63928573200,63910440000,63928584000,10800,1,'EEST',],[63928573200,63941878800,63928580400,63941886000,7200,0,'EET',],[63941878800,63960627600,63941889600,63960638400,10800,1,'EEST',],];sub olson_version {'2016a'}sub has_dst_changes {50}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {7200}my$last_observance=bless({'format'=>'EE%sT','gmtoff'=>'2:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>730902,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>730902,'utc_rd_secs'=>0,'utc_year'=>2003 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>7200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>730901,'local_rd_secs'=>79200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>730901,'utc_rd_secs'=>79200,'utc_year'=>2003 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_TALLINN

$fatpacked{"DateTime/TimeZone/Europe/Tirane.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_TIRANE';
  package DateTime::TimeZone::Europe::Tirane;$DateTime::TimeZone::Europe::Tirane::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Tirane::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60368452840,DateTime::TimeZone::NEG_INFINITY,60368457600,4760,0,'LMT',],[60368452840,61203337200,60368456440,61203340800,3600,0,'CET',],[61203337200,61278426000,61203344400,61278433200,7200,1,'CEST',],[61278426000,61291126800,61278429600,61291130400,3600,0,'CET',],[61291126800,61292163600,61291134000,61292170800,7200,1,'CEST',],[61292163600,62272537200,61292167200,62272540800,3600,0,'CET',],[62272537200,62285580000,62272544400,62285587200,7200,1,'CEST',],[62285580000,62303814000,62285583600,62303817600,3600,0,'CET',],[62303814000,62317116000,62303821200,62317123200,7200,1,'CEST',],[62317116000,62335522800,62317119600,62335526400,3600,0,'CET',],[62335522800,62348824800,62335530000,62348832000,7200,1,'CEST',],[62348824800,62367577200,62348828400,62367580800,3600,0,'CET',],[62367577200,62380274400,62367584400,62380281600,7200,1,'CEST',],[62380274400,62398940400,62380278000,62398944000,3600,0,'CET',],[62398940400,62411724000,62398947600,62411731200,7200,1,'CEST',],[62411724000,62430390000,62411727600,62430393600,3600,0,'CET',],[62430390000,62443173600,62430397200,62443180800,7200,1,'CEST',],[62443173600,62461839600,62443177200,62461843200,3600,0,'CET',],[62461839600,62475141600,62461846800,62475148800,7200,1,'CEST',],[62475141600,62492770800,62475145200,62492774400,3600,0,'CET',],[62492770800,62506072800,62492778000,62506080000,7200,1,'CEST',],[62506072800,62524825200,62506076400,62524828800,3600,0,'CET',],[62524825200,62538127200,62524832400,62538134400,7200,1,'CEST',],[62538127200,62555151600,62538130800,62555155200,3600,0,'CET',],[62555151600,62569490400,62555158800,62569497600,7200,1,'CEST',],[62569490400,62585305200,62569494000,62585308800,3600,0,'CET',],[62585305200,62593164000,62585312400,62593171200,7200,1,'CEST',],[62593164000,62601037200,62593171200,62601044400,7200,1,'CEST',],[62601037200,62616762000,62601040800,62616765600,3600,0,'CET',],[62616762000,62632486800,62616769200,62632494000,7200,1,'CEST',],[62632486800,62648211600,62632490400,62648215200,3600,0,'CET',],[62648211600,62663936400,62648218800,62663943600,7200,1,'CEST',],[62663936400,62679661200,62663940000,62679664800,3600,0,'CET',],[62679661200,62695386000,62679668400,62695393200,7200,1,'CEST',],[62695386000,62711110800,62695389600,62711114400,3600,0,'CET',],[62711110800,62726835600,62711118000,62726842800,7200,1,'CEST',],[62726835600,62742560400,62726839200,62742564000,3600,0,'CET',],[62742560400,62758285200,62742567600,62758292400,7200,1,'CEST',],[62758285200,62774010000,62758288800,62774013600,3600,0,'CET',],[62774010000,62790339600,62774017200,62790346800,7200,1,'CEST',],[62790339600,62806064400,62790343200,62806068000,3600,0,'CET',],[62806064400,62821789200,62806071600,62821796400,7200,1,'CEST',],[62821789200,62837514000,62821792800,62837517600,3600,0,'CET',],[62837514000,62853238800,62837521200,62853246000,7200,1,'CEST',],[62853238800,62868963600,62853242400,62868967200,3600,0,'CET',],[62868963600,62884688400,62868970800,62884695600,7200,1,'CEST',],[62884688400,62900413200,62884692000,62900416800,3600,0,'CET',],[62900413200,62916138000,62900420400,62916145200,7200,1,'CEST',],[62916138000,62931862800,62916141600,62931866400,3600,0,'CET',],[62931862800,62947587600,62931870000,62947594800,7200,1,'CEST',],[62947587600,62963917200,62947591200,62963920800,3600,0,'CET',],[62963917200,62982061200,62963924400,62982068400,7200,1,'CEST',],[62982061200,62995366800,62982064800,62995370400,3600,0,'CET',],[62995366800,63013510800,62995374000,63013518000,7200,1,'CEST',],[63013510800,63026816400,63013514400,63026820000,3600,0,'CET',],[63026816400,63044960400,63026823600,63044967600,7200,1,'CEST',],[63044960400,63058266000,63044964000,63058269600,3600,0,'CET',],[63058266000,63077014800,63058273200,63077022000,7200,1,'CEST',],[63077014800,63089715600,63077018400,63089719200,3600,0,'CET',],[63089715600,63108464400,63089722800,63108471600,7200,1,'CEST',],[63108464400,63121165200,63108468000,63121168800,3600,0,'CET',],[63121165200,63139914000,63121172400,63139921200,7200,1,'CEST',],[63139914000,63153219600,63139917600,63153223200,3600,0,'CET',],[63153219600,63171363600,63153226800,63171370800,7200,1,'CEST',],[63171363600,63184669200,63171367200,63184672800,3600,0,'CET',],[63184669200,63202813200,63184676400,63202820400,7200,1,'CEST',],[63202813200,63216118800,63202816800,63216122400,3600,0,'CET',],[63216118800,63234867600,63216126000,63234874800,7200,1,'CEST',],[63234867600,63247568400,63234871200,63247572000,3600,0,'CET',],[63247568400,63266317200,63247575600,63266324400,7200,1,'CEST',],[63266317200,63279018000,63266320800,63279021600,3600,0,'CET',],[63279018000,63297766800,63279025200,63297774000,7200,1,'CEST',],[63297766800,63310467600,63297770400,63310471200,3600,0,'CET',],[63310467600,63329216400,63310474800,63329223600,7200,1,'CEST',],[63329216400,63342522000,63329220000,63342525600,3600,0,'CET',],[63342522000,63360666000,63342529200,63360673200,7200,1,'CEST',],[63360666000,63373971600,63360669600,63373975200,3600,0,'CET',],[63373971600,63392115600,63373978800,63392122800,7200,1,'CEST',],[63392115600,63405421200,63392119200,63405424800,3600,0,'CET',],[63405421200,63424170000,63405428400,63424177200,7200,1,'CEST',],[63424170000,63436870800,63424173600,63436874400,3600,0,'CET',],[63436870800,63455619600,63436878000,63455626800,7200,1,'CEST',],[63455619600,63468320400,63455623200,63468324000,3600,0,'CET',],[63468320400,63487069200,63468327600,63487076400,7200,1,'CEST',],[63487069200,63500374800,63487072800,63500378400,3600,0,'CET',],[63500374800,63518518800,63500382000,63518526000,7200,1,'CEST',],[63518518800,63531824400,63518522400,63531828000,3600,0,'CET',],[63531824400,63549968400,63531831600,63549975600,7200,1,'CEST',],[63549968400,63563274000,63549972000,63563277600,3600,0,'CET',],[63563274000,63581418000,63563281200,63581425200,7200,1,'CEST',],[63581418000,63594723600,63581421600,63594727200,3600,0,'CET',],[63594723600,63613472400,63594730800,63613479600,7200,1,'CEST',],[63613472400,63626173200,63613476000,63626176800,3600,0,'CET',],[63626173200,63644922000,63626180400,63644929200,7200,1,'CEST',],[63644922000,63657622800,63644925600,63657626400,3600,0,'CET',],[63657622800,63676371600,63657630000,63676378800,7200,1,'CEST',],[63676371600,63689677200,63676375200,63689680800,3600,0,'CET',],[63689677200,63707821200,63689684400,63707828400,7200,1,'CEST',],[63707821200,63721126800,63707824800,63721130400,3600,0,'CET',],[63721126800,63739270800,63721134000,63739278000,7200,1,'CEST',],[63739270800,63752576400,63739274400,63752580000,3600,0,'CET',],[63752576400,63771325200,63752583600,63771332400,7200,1,'CEST',],[63771325200,63784026000,63771328800,63784029600,3600,0,'CET',],[63784026000,63802774800,63784033200,63802782000,7200,1,'CEST',],[63802774800,63815475600,63802778400,63815479200,3600,0,'CET',],[63815475600,63834224400,63815482800,63834231600,7200,1,'CEST',],[63834224400,63847530000,63834228000,63847533600,3600,0,'CET',],[63847530000,63865674000,63847537200,63865681200,7200,1,'CEST',],[63865674000,63878979600,63865677600,63878983200,3600,0,'CET',],[63878979600,63897123600,63878986800,63897130800,7200,1,'CEST',],[63897123600,63910429200,63897127200,63910432800,3600,0,'CET',],[63910429200,63928573200,63910436400,63928580400,7200,1,'CEST',],[63928573200,63941878800,63928576800,63941882400,3600,0,'CET',],[63941878800,63960627600,63941886000,63960634800,7200,1,'CEST',],];sub olson_version {'2016a'}sub has_dst_changes {57}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {3600}my$last_observance=bless({'format'=>'CE%sT','gmtoff'=>'1:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>724458,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>724458,'utc_rd_secs'=>0,'utc_year'=>1985 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>3600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>724457,'local_rd_secs'=>79200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>724457,'utc_rd_secs'=>79200,'utc_year'=>1985 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_TIRANE

$fatpacked{"DateTime/TimeZone/Europe/Uzhgorod.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_UZHGOROD';
  package DateTime::TimeZone::Europe::Uzhgorod;$DateTime::TimeZone::Europe::Uzhgorod::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Uzhgorod::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59634743448,DateTime::TimeZone::NEG_INFINITY,59634748800,5352,0,'LMT',],[59634743448,61188908400,59634747048,61188912000,3600,0,'CET',],[61188908400,61196778000,61188912000,61196781600,3600,0,'CET',],[61196778000,61278426000,61196785200,61278433200,7200,1,'CEST',],[61278426000,61291126800,61278429600,61291130400,3600,0,'CET',],[61291126800,61307456400,61291134000,61307463600,7200,1,'CEST',],[61307456400,61323181200,61307460000,61323184800,3600,0,'CET',],[61323181200,61338808800,61323188400,61338816000,7200,1,'CEST',],[61338808800,61340968800,61338816000,61340976000,7200,1,'CEST',],[61340968800,61362226800,61340972400,61362230400,3600,0,'CET',],[61362226800,62490603600,61362237600,62490614400,10800,0,'MSK',],[62490603600,62506411200,62490618000,62506425600,14400,1,'MSD',],[62506411200,62522139600,62506422000,62522150400,10800,0,'MSK',],[62522139600,62537947200,62522154000,62537961600,14400,1,'MSD',],[62537947200,62553675600,62537958000,62553686400,10800,0,'MSK',],[62553675600,62569483200,62553690000,62569497600,14400,1,'MSD',],[62569483200,62585298000,62569494000,62585308800,10800,0,'MSK',],[62585298000,62601030000,62585312400,62601044400,14400,1,'MSD',],[62601030000,62616754800,62601040800,62616765600,10800,0,'MSK',],[62616754800,62632479600,62616769200,62632494000,14400,1,'MSD',],[62632479600,62648204400,62632490400,62648215200,10800,0,'MSK',],[62648204400,62663929200,62648218800,62663943600,14400,1,'MSD',],[62663929200,62679654000,62663940000,62679664800,10800,0,'MSK',],[62679654000,62695378800,62679668400,62695393200,14400,1,'MSD',],[62695378800,62711103600,62695389600,62711114400,10800,0,'MSK',],[62711103600,62726828400,62711118000,62726842800,14400,1,'MSD',],[62726828400,62742553200,62726839200,62742564000,10800,0,'MSK',],[62742553200,62758278000,62742567600,62758292400,14400,1,'MSD',],[62758278000,62766824400,62758288800,62766835200,10800,0,'MSK',],[62766824400,62782470000,62766835200,62782480800,10800,0,'MSK',],[62782470000,62806068000,62782473600,62806071600,3600,0,'CET',],[62806068000,62829900000,62806075200,62829907200,7200,0,'EET',],[62829900000,62837503200,62829907200,62837510400,7200,0,'EET',],[62837503200,62853224400,62837514000,62853235200,10800,1,'EEST',],[62853224400,62868952800,62853231600,62868960000,7200,0,'EET',],[62868952800,62884674000,62868963600,62884684800,10800,1,'EEST',],[62884674000,62900402400,62884681200,62900409600,7200,0,'EET',],[62900402400,62916123600,62900413200,62916134400,10800,1,'EEST',],[62916123600,62924594400,62916130800,62924601600,7200,0,'EET',],[62924594400,62931862800,62924601600,62931870000,7200,0,'EET',],[62931862800,62947587600,62931873600,62947598400,10800,1,'EEST',],[62947587600,62963917200,62947594800,62963924400,7200,0,'EET',],[62963917200,62982061200,62963928000,62982072000,10800,1,'EEST',],[62982061200,62995366800,62982068400,62995374000,7200,0,'EET',],[62995366800,63013510800,62995377600,63013521600,10800,1,'EEST',],[63013510800,63026816400,63013518000,63026823600,7200,0,'EET',],[63026816400,63044960400,63026827200,63044971200,10800,1,'EEST',],[63044960400,63058266000,63044967600,63058273200,7200,0,'EET',],[63058266000,63077014800,63058276800,63077025600,10800,1,'EEST',],[63077014800,63089715600,63077022000,63089722800,7200,0,'EET',],[63089715600,63108464400,63089726400,63108475200,10800,1,'EEST',],[63108464400,63121165200,63108471600,63121172400,7200,0,'EET',],[63121165200,63139914000,63121176000,63139924800,10800,1,'EEST',],[63139914000,63153219600,63139921200,63153226800,7200,0,'EET',],[63153219600,63171363600,63153230400,63171374400,10800,1,'EEST',],[63171363600,63184669200,63171370800,63184676400,7200,0,'EET',],[63184669200,63202813200,63184680000,63202824000,10800,1,'EEST',],[63202813200,63216118800,63202820400,63216126000,7200,0,'EET',],[63216118800,63234867600,63216129600,63234878400,10800,1,'EEST',],[63234867600,63247568400,63234874800,63247575600,7200,0,'EET',],[63247568400,63266317200,63247579200,63266328000,10800,1,'EEST',],[63266317200,63279018000,63266324400,63279025200,7200,0,'EET',],[63279018000,63297766800,63279028800,63297777600,10800,1,'EEST',],[63297766800,63310467600,63297774000,63310474800,7200,0,'EET',],[63310467600,63329216400,63310478400,63329227200,10800,1,'EEST',],[63329216400,63342522000,63329223600,63342529200,7200,0,'EET',],[63342522000,63360666000,63342532800,63360676800,10800,1,'EEST',],[63360666000,63373971600,63360673200,63373978800,7200,0,'EET',],[63373971600,63392115600,63373982400,63392126400,10800,1,'EEST',],[63392115600,63405421200,63392122800,63405428400,7200,0,'EET',],[63405421200,63424170000,63405432000,63424180800,10800,1,'EEST',],[63424170000,63436870800,63424177200,63436878000,7200,0,'EET',],[63436870800,63455619600,63436881600,63455630400,10800,1,'EEST',],[63455619600,63468320400,63455626800,63468327600,7200,0,'EET',],[63468320400,63487069200,63468331200,63487080000,10800,1,'EEST',],[63487069200,63500374800,63487076400,63500382000,7200,0,'EET',],[63500374800,63518518800,63500385600,63518529600,10800,1,'EEST',],[63518518800,63531824400,63518526000,63531831600,7200,0,'EET',],[63531824400,63549968400,63531835200,63549979200,10800,1,'EEST',],[63549968400,63563274000,63549975600,63563281200,7200,0,'EET',],[63563274000,63581418000,63563284800,63581428800,10800,1,'EEST',],[63581418000,63594723600,63581425200,63594730800,7200,0,'EET',],[63594723600,63613472400,63594734400,63613483200,10800,1,'EEST',],[63613472400,63626173200,63613479600,63626180400,7200,0,'EET',],[63626173200,63644922000,63626184000,63644932800,10800,1,'EEST',],[63644922000,63657622800,63644929200,63657630000,7200,0,'EET',],[63657622800,63676371600,63657633600,63676382400,10800,1,'EEST',],[63676371600,63689677200,63676378800,63689684400,7200,0,'EET',],[63689677200,63707821200,63689688000,63707832000,10800,1,'EEST',],[63707821200,63721126800,63707828400,63721134000,7200,0,'EET',],[63721126800,63739270800,63721137600,63739281600,10800,1,'EEST',],[63739270800,63752576400,63739278000,63752583600,7200,0,'EET',],[63752576400,63771325200,63752587200,63771336000,10800,1,'EEST',],[63771325200,63784026000,63771332400,63784033200,7200,0,'EET',],[63784026000,63802774800,63784036800,63802785600,10800,1,'EEST',],[63802774800,63815475600,63802782000,63815482800,7200,0,'EET',],[63815475600,63834224400,63815486400,63834235200,10800,1,'EEST',],[63834224400,63847530000,63834231600,63847537200,7200,0,'EET',],[63847530000,63865674000,63847540800,63865684800,10800,1,'EEST',],[63865674000,63878979600,63865681200,63878986800,7200,0,'EET',],[63878979600,63897123600,63878990400,63897134400,10800,1,'EEST',],[63897123600,63910429200,63897130800,63910436400,7200,0,'EET',],[63910429200,63928573200,63910440000,63928584000,10800,1,'EEST',],[63928573200,63941878800,63928580400,63941886000,7200,0,'EET',],[63941878800,63960627600,63941889600,63960638400,10800,1,'EEST',],];sub olson_version {'2016a'}sub has_dst_changes {49}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {7200}my$last_observance=bless({'format'=>'EE%sT','gmtoff'=>'2:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>728294,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>728294,'utc_rd_secs'=>0,'utc_year'=>1996 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>7200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>728293,'local_rd_secs'=>79200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>728293,'utc_rd_secs'=>79200,'utc_year'=>1995 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_UZHGOROD

$fatpacked{"DateTime/TimeZone/Europe/Vienna.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_VIENNA';
  package DateTime::TimeZone::Europe::Vienna;$DateTime::TimeZone::Europe::Vienna::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Vienna::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59713628079,DateTime::TimeZone::NEG_INFINITY,59713632000,3921,0,'LMT',],[59713628079,60441976800,59713631679,60441980400,3600,0,'CET',],[60441976800,60455199600,60441984000,60455206800,7200,1,'CEST',],[60455199600,60472227600,60455203200,60472231200,3600,0,'CET',],[60472227600,60485533200,60472234800,60485540400,7200,1,'CEST',],[60485533200,60503677200,60485536800,60503680800,3600,0,'CET',],[60503677200,60516982800,60503684400,60516990000,7200,1,'CEST',],[60516982800,60557756400,60516986400,60557760000,3600,0,'CET',],[60557756400,60565971600,60557760000,60565975200,3600,0,'CET',],[60565971600,60579882000,60565978800,60579889200,7200,1,'CEST',],[60579882000,61196778000,60579885600,61196781600,3600,0,'CET',],[61196778000,61278426000,61196785200,61278433200,7200,1,'CEST',],[61278426000,61291126800,61278429600,61291130400,3600,0,'CET',],[61291126800,61307456400,61291134000,61307463600,7200,1,'CEST',],[61307456400,61323181200,61307460000,61323184800,3600,0,'CET',],[61323181200,61338906000,61323188400,61338913200,7200,1,'CEST',],[61338906000,61354630800,61338909600,61354634400,3600,0,'CET',],[61354630800,61355494800,61354638000,61355502000,7200,1,'CEST',],[61355494800,61378297200,61355498400,61378300800,3600,0,'CET',],[61378297200,61387203600,61378300800,61387207200,3600,0,'CET',],[61387203600,61402323600,61387210800,61402330800,7200,1,'CEST',],[61402323600,61418048400,61402327200,61418052000,3600,0,'CET',],[61418048400,61433773200,61418055600,61433780400,7200,1,'CEST',],[61433773200,61450707600,61433776800,61450711200,3600,0,'CET',],[61450707600,61465222800,61450714800,61465230000,7200,1,'CEST',],[61465222800,62459506800,61465226400,62459510400,3600,0,'CET',],[62459506800,62474623200,62459514000,62474630400,7200,1,'CEST',],[62474623200,62482834800,62474626800,62482838400,3600,0,'CET',],[62482834800,62490358800,62482838400,62490362400,3600,0,'CET',],[62490358800,62506083600,62490366000,62506090800,7200,1,'CEST',],[62506083600,62521808400,62506087200,62521812000,3600,0,'CET',],[62521808400,62537533200,62521815600,62537540400,7200,1,'CEST',],[62537533200,62553258000,62537536800,62553261600,3600,0,'CET',],[62553258000,62568982800,62553265200,62568990000,7200,1,'CEST',],[62568982800,62584707600,62568986400,62584711200,3600,0,'CET',],[62584707600,62601037200,62584714800,62601044400,7200,1,'CEST',],[62601037200,62616762000,62601040800,62616765600,3600,0,'CET',],[62616762000,62632486800,62616769200,62632494000,7200,1,'CEST',],[62632486800,62648211600,62632490400,62648215200,3600,0,'CET',],[62648211600,62663936400,62648218800,62663943600,7200,1,'CEST',],[62663936400,62679661200,62663940000,62679664800,3600,0,'CET',],[62679661200,62695386000,62679668400,62695393200,7200,1,'CEST',],[62695386000,62711110800,62695389600,62711114400,3600,0,'CET',],[62711110800,62726835600,62711118000,62726842800,7200,1,'CEST',],[62726835600,62742560400,62726839200,62742564000,3600,0,'CET',],[62742560400,62758285200,62742567600,62758292400,7200,1,'CEST',],[62758285200,62774010000,62758288800,62774013600,3600,0,'CET',],[62774010000,62790339600,62774017200,62790346800,7200,1,'CEST',],[62790339600,62806064400,62790343200,62806068000,3600,0,'CET',],[62806064400,62821789200,62806071600,62821796400,7200,1,'CEST',],[62821789200,62837514000,62821792800,62837517600,3600,0,'CET',],[62837514000,62853238800,62837521200,62853246000,7200,1,'CEST',],[62853238800,62868963600,62853242400,62868967200,3600,0,'CET',],[62868963600,62884688400,62868970800,62884695600,7200,1,'CEST',],[62884688400,62900413200,62884692000,62900416800,3600,0,'CET',],[62900413200,62916138000,62900420400,62916145200,7200,1,'CEST',],[62916138000,62931862800,62916141600,62931866400,3600,0,'CET',],[62931862800,62947587600,62931870000,62947594800,7200,1,'CEST',],[62947587600,62963917200,62947591200,62963920800,3600,0,'CET',],[62963917200,62982061200,62963924400,62982068400,7200,1,'CEST',],[62982061200,62995366800,62982064800,62995370400,3600,0,'CET',],[62995366800,63013510800,62995374000,63013518000,7200,1,'CEST',],[63013510800,63026816400,63013514400,63026820000,3600,0,'CET',],[63026816400,63044960400,63026823600,63044967600,7200,1,'CEST',],[63044960400,63058266000,63044964000,63058269600,3600,0,'CET',],[63058266000,63077014800,63058273200,63077022000,7200,1,'CEST',],[63077014800,63089715600,63077018400,63089719200,3600,0,'CET',],[63089715600,63108464400,63089722800,63108471600,7200,1,'CEST',],[63108464400,63121165200,63108468000,63121168800,3600,0,'CET',],[63121165200,63139914000,63121172400,63139921200,7200,1,'CEST',],[63139914000,63153219600,63139917600,63153223200,3600,0,'CET',],[63153219600,63171363600,63153226800,63171370800,7200,1,'CEST',],[63171363600,63184669200,63171367200,63184672800,3600,0,'CET',],[63184669200,63202813200,63184676400,63202820400,7200,1,'CEST',],[63202813200,63216118800,63202816800,63216122400,3600,0,'CET',],[63216118800,63234867600,63216126000,63234874800,7200,1,'CEST',],[63234867600,63247568400,63234871200,63247572000,3600,0,'CET',],[63247568400,63266317200,63247575600,63266324400,7200,1,'CEST',],[63266317200,63279018000,63266320800,63279021600,3600,0,'CET',],[63279018000,63297766800,63279025200,63297774000,7200,1,'CEST',],[63297766800,63310467600,63297770400,63310471200,3600,0,'CET',],[63310467600,63329216400,63310474800,63329223600,7200,1,'CEST',],[63329216400,63342522000,63329220000,63342525600,3600,0,'CET',],[63342522000,63360666000,63342529200,63360673200,7200,1,'CEST',],[63360666000,63373971600,63360669600,63373975200,3600,0,'CET',],[63373971600,63392115600,63373978800,63392122800,7200,1,'CEST',],[63392115600,63405421200,63392119200,63405424800,3600,0,'CET',],[63405421200,63424170000,63405428400,63424177200,7200,1,'CEST',],[63424170000,63436870800,63424173600,63436874400,3600,0,'CET',],[63436870800,63455619600,63436878000,63455626800,7200,1,'CEST',],[63455619600,63468320400,63455623200,63468324000,3600,0,'CET',],[63468320400,63487069200,63468327600,63487076400,7200,1,'CEST',],[63487069200,63500374800,63487072800,63500378400,3600,0,'CET',],[63500374800,63518518800,63500382000,63518526000,7200,1,'CEST',],[63518518800,63531824400,63518522400,63531828000,3600,0,'CET',],[63531824400,63549968400,63531831600,63549975600,7200,1,'CEST',],[63549968400,63563274000,63549972000,63563277600,3600,0,'CET',],[63563274000,63581418000,63563281200,63581425200,7200,1,'CEST',],[63581418000,63594723600,63581421600,63594727200,3600,0,'CET',],[63594723600,63613472400,63594730800,63613479600,7200,1,'CEST',],[63613472400,63626173200,63613476000,63626176800,3600,0,'CET',],[63626173200,63644922000,63626180400,63644929200,7200,1,'CEST',],[63644922000,63657622800,63644925600,63657626400,3600,0,'CET',],[63657622800,63676371600,63657630000,63676378800,7200,1,'CEST',],[63676371600,63689677200,63676375200,63689680800,3600,0,'CET',],[63689677200,63707821200,63689684400,63707828400,7200,1,'CEST',],[63707821200,63721126800,63707824800,63721130400,3600,0,'CET',],[63721126800,63739270800,63721134000,63739278000,7200,1,'CEST',],[63739270800,63752576400,63739274400,63752580000,3600,0,'CET',],[63752576400,63771325200,63752583600,63771332400,7200,1,'CEST',],[63771325200,63784026000,63771328800,63784029600,3600,0,'CET',],[63784026000,63802774800,63784033200,63802782000,7200,1,'CEST',],[63802774800,63815475600,63802778400,63815479200,3600,0,'CET',],[63815475600,63834224400,63815482800,63834231600,7200,1,'CEST',],[63834224400,63847530000,63834228000,63847533600,3600,0,'CET',],[63847530000,63865674000,63847537200,63865681200,7200,1,'CEST',],[63865674000,63878979600,63865677600,63878983200,3600,0,'CET',],[63878979600,63897123600,63878986800,63897130800,7200,1,'CEST',],[63897123600,63910429200,63897127200,63910432800,3600,0,'CET',],[63910429200,63928573200,63910436400,63928580400,7200,1,'CEST',],[63928573200,63941878800,63928576800,63941882400,3600,0,'CET',],[63941878800,63960627600,63941886000,63960634800,7200,1,'CEST',],];sub olson_version {'2016a'}sub has_dst_changes {59}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {3600}my$last_observance=bless({'format'=>'CE%sT','gmtoff'=>'1:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>723181,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>723181,'utc_rd_secs'=>0,'utc_year'=>1982 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>3600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>723180,'local_rd_secs'=>82800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>723180,'utc_rd_secs'=>82800,'utc_year'=>1981 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_VIENNA

$fatpacked{"DateTime/TimeZone/Europe/Vilnius.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_VILNIUS';
  package DateTime::TimeZone::Europe::Vilnius;$DateTime::TimeZone::Europe::Vilnius::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Vilnius::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59295536324,DateTime::TimeZone::NEG_INFINITY,59295542400,6076,0,'LMT',],[59295536324,60463146960,59295541364,60463152000,5040,0,'WMT',],[60463146960,60550583064,60463152696,60550588800,5736,0,'KMT',],[60550583064,60574431600,60550586664,60574435200,3600,0,'CET',],[60574431600,60582117600,60574438800,60582124800,7200,0,'EET',],[60582117600,61207484400,60582121200,61207488000,3600,0,'CET',],[61207484400,61235557200,61207495200,61235568000,10800,0,'MSK',],[61235557200,61278426000,61235564400,61278433200,7200,1,'CEST',],[61278426000,61291126800,61278429600,61291130400,3600,0,'CET',],[61291126800,61307456400,61291134000,61307463600,7200,1,'CEST',],[61307456400,61323181200,61307460000,61323184800,3600,0,'CET',],[61323181200,61333538400,61323188400,61333545600,7200,1,'CEST',],[61333538400,62490603600,61333549200,62490614400,10800,0,'MSK',],[62490603600,62506411200,62490618000,62506425600,14400,1,'MSD',],[62506411200,62522139600,62506422000,62522150400,10800,0,'MSK',],[62522139600,62537947200,62522154000,62537961600,14400,1,'MSD',],[62537947200,62553675600,62537958000,62553686400,10800,0,'MSK',],[62553675600,62569483200,62553690000,62569497600,14400,1,'MSD',],[62569483200,62585298000,62569494000,62585308800,10800,0,'MSK',],[62585298000,62601030000,62585312400,62601044400,14400,1,'MSD',],[62601030000,62616754800,62601040800,62616765600,10800,0,'MSK',],[62616754800,62632479600,62616769200,62632494000,14400,1,'MSD',],[62632479600,62648204400,62632490400,62648215200,10800,0,'MSK',],[62648204400,62663929200,62648218800,62663943600,14400,1,'MSD',],[62663929200,62679654000,62663940000,62679664800,10800,0,'MSK',],[62679654000,62695378800,62679668400,62695393200,14400,1,'MSD',],[62695378800,62711103600,62695389600,62711114400,10800,0,'MSK',],[62711103600,62726828400,62711118000,62726842800,14400,1,'MSD',],[62726828400,62742553200,62726839200,62742564000,10800,0,'MSK',],[62742553200,62758278000,62742567600,62758292400,14400,1,'MSD',],[62758278000,62774002800,62758288800,62774013600,10800,0,'MSK',],[62774002800,62790332400,62774017200,62790346800,14400,1,'MSD',],[62790332400,62806057200,62790343200,62806068000,10800,0,'MSK',],[62806057200,62821785600,62806068000,62821796400,10800,1,'EEST',],[62821785600,62837510400,62821792800,62837517600,7200,0,'EET',],[62837510400,62853235200,62837521200,62853246000,10800,1,'EEST',],[62853235200,62868960000,62853242400,62868967200,7200,0,'EET',],[62868960000,62884684800,62868970800,62884695600,10800,1,'EEST',],[62884684800,62900409600,62884692000,62900416800,7200,0,'EET',],[62900409600,62916134400,62900420400,62916145200,10800,1,'EEST',],[62916134400,62931859200,62916141600,62931866400,7200,0,'EET',],[62931859200,62947584000,62931870000,62947594800,10800,1,'EEST',],[62947584000,62963913600,62947591200,62963920800,7200,0,'EET',],[62963913600,62982057600,62963924400,62982068400,10800,1,'EEST',],[62982057600,62995363200,62982064800,62995370400,7200,0,'EET',],[62995363200,63013507200,62995374000,63013518000,10800,1,'EEST',],[63013507200,63019288800,63013514400,63019296000,7200,0,'EET',],[63019288800,63026816400,63019296000,63026823600,7200,0,'EET',],[63026816400,63044960400,63026823600,63044967600,7200,1,'CEST',],[63044960400,63058266000,63044964000,63058269600,3600,0,'CET',],[63058266000,63077014800,63058273200,63077022000,7200,1,'CEST',],[63077014800,63177055200,63077022000,63177062400,7200,0,'EET',],[63177055200,63184669200,63177062400,63184676400,7200,0,'EET',],[63184669200,63202813200,63184680000,63202824000,10800,1,'EEST',],[63202813200,63216118800,63202820400,63216126000,7200,0,'EET',],[63216118800,63234867600,63216129600,63234878400,10800,1,'EEST',],[63234867600,63247568400,63234874800,63247575600,7200,0,'EET',],[63247568400,63266317200,63247579200,63266328000,10800,1,'EEST',],[63266317200,63279018000,63266324400,63279025200,7200,0,'EET',],[63279018000,63297766800,63279028800,63297777600,10800,1,'EEST',],[63297766800,63310467600,63297774000,63310474800,7200,0,'EET',],[63310467600,63329216400,63310478400,63329227200,10800,1,'EEST',],[63329216400,63342522000,63329223600,63342529200,7200,0,'EET',],[63342522000,63360666000,63342532800,63360676800,10800,1,'EEST',],[63360666000,63373971600,63360673200,63373978800,7200,0,'EET',],[63373971600,63392115600,63373982400,63392126400,10800,1,'EEST',],[63392115600,63405421200,63392122800,63405428400,7200,0,'EET',],[63405421200,63424170000,63405432000,63424180800,10800,1,'EEST',],[63424170000,63436870800,63424177200,63436878000,7200,0,'EET',],[63436870800,63455619600,63436881600,63455630400,10800,1,'EEST',],[63455619600,63468320400,63455626800,63468327600,7200,0,'EET',],[63468320400,63487069200,63468331200,63487080000,10800,1,'EEST',],[63487069200,63500374800,63487076400,63500382000,7200,0,'EET',],[63500374800,63518518800,63500385600,63518529600,10800,1,'EEST',],[63518518800,63531824400,63518526000,63531831600,7200,0,'EET',],[63531824400,63549968400,63531835200,63549979200,10800,1,'EEST',],[63549968400,63563274000,63549975600,63563281200,7200,0,'EET',],[63563274000,63581418000,63563284800,63581428800,10800,1,'EEST',],[63581418000,63594723600,63581425200,63594730800,7200,0,'EET',],[63594723600,63613472400,63594734400,63613483200,10800,1,'EEST',],[63613472400,63626173200,63613479600,63626180400,7200,0,'EET',],[63626173200,63644922000,63626184000,63644932800,10800,1,'EEST',],[63644922000,63657622800,63644929200,63657630000,7200,0,'EET',],[63657622800,63676371600,63657633600,63676382400,10800,1,'EEST',],[63676371600,63689677200,63676378800,63689684400,7200,0,'EET',],[63689677200,63707821200,63689688000,63707832000,10800,1,'EEST',],[63707821200,63721126800,63707828400,63721134000,7200,0,'EET',],[63721126800,63739270800,63721137600,63739281600,10800,1,'EEST',],[63739270800,63752576400,63739278000,63752583600,7200,0,'EET',],[63752576400,63771325200,63752587200,63771336000,10800,1,'EEST',],[63771325200,63784026000,63771332400,63784033200,7200,0,'EET',],[63784026000,63802774800,63784036800,63802785600,10800,1,'EEST',],[63802774800,63815475600,63802782000,63815482800,7200,0,'EET',],[63815475600,63834224400,63815486400,63834235200,10800,1,'EEST',],[63834224400,63847530000,63834231600,63847537200,7200,0,'EET',],[63847530000,63865674000,63847540800,63865684800,10800,1,'EEST',],[63865674000,63878979600,63865681200,63878986800,7200,0,'EET',],[63878979600,63897123600,63878990400,63897134400,10800,1,'EEST',],[63897123600,63910429200,63897130800,63910436400,7200,0,'EET',],[63910429200,63928573200,63910440000,63928584000,10800,1,'EEST',],[63928573200,63941878800,63928580400,63941886000,7200,0,'EET',],[63941878800,63960627600,63941889600,63960638400,10800,1,'EEST',],];sub olson_version {'2016a'}sub has_dst_changes {47}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {7200}my$last_observance=bless({'format'=>'EE%sT','gmtoff'=>'2:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>731216,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>731216,'utc_rd_secs'=>0,'utc_year'=>2004 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>7200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>731215,'local_rd_secs'=>79200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>731215,'utc_rd_secs'=>79200,'utc_year'=>2003 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_VILNIUS

$fatpacked{"DateTime/TimeZone/Europe/Volgograd.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_VOLGOGRAD';
  package DateTime::TimeZone::Europe::Volgograd;$DateTime::TimeZone::Europe::Volgograd::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Volgograd::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60557922140,DateTime::TimeZone::NEG_INFINITY,60557932800,10660,0,'LMT',],[60557922140,60723810000,60557932940,60723820800,10800,0,'TSAT',],[60723810000,60888142800,60723820800,60888153600,10800,0,'STAT',],[60888142800,61878801600,60888157200,61878816000,14400,0,'STAT',],[61878801600,62490600000,61878816000,62490614400,14400,0,'VOLT',],[62490600000,62506407600,62490618000,62506425600,18000,1,'VOLST',],[62506407600,62522136000,62506422000,62522150400,14400,0,'VOLT',],[62522136000,62537943600,62522154000,62537961600,18000,1,'VOLST',],[62537943600,62553672000,62537958000,62553686400,14400,0,'VOLT',],[62553672000,62569479600,62553690000,62569497600,18000,1,'VOLST',],[62569479600,62585294400,62569494000,62585308800,14400,0,'VOLT',],[62585294400,62601026400,62585312400,62601044400,18000,1,'VOLST',],[62601026400,62616751200,62601040800,62616765600,14400,0,'VOLT',],[62616751200,62632476000,62616769200,62632494000,18000,1,'VOLST',],[62632476000,62648200800,62632490400,62648215200,14400,0,'VOLT',],[62648200800,62663925600,62648218800,62663943600,18000,1,'VOLST',],[62663925600,62679650400,62663940000,62679664800,14400,0,'VOLT',],[62679650400,62695375200,62679668400,62695393200,18000,1,'VOLST',],[62695375200,62711100000,62695389600,62711114400,14400,0,'VOLT',],[62711100000,62726824800,62711118000,62726842800,18000,1,'VOLST',],[62726824800,62742549600,62726839200,62742564000,14400,0,'VOLT',],[62742549600,62758278000,62742564000,62758292400,14400,1,'VOLST',],[62758278000,62774002800,62758288800,62774013600,10800,0,'VOLT',],[62774002800,62790332400,62774017200,62790346800,14400,1,'VOLST',],[62790332400,62806057200,62790343200,62806068000,10800,0,'VOLT',],[62806057200,62837503200,62806071600,62837517600,14400,0,'VOLT',],[62837503200,62853217200,62837517600,62853231600,14400,1,'MSD',],[62853217200,62868956400,62853228000,62868967200,10800,0,'MSK',],[62868956400,62884681200,62868970800,62884695600,14400,1,'MSD',],[62884681200,62900406000,62884692000,62900416800,10800,0,'MSK',],[62900406000,62916130800,62900420400,62916145200,14400,1,'MSD',],[62916130800,62931855600,62916141600,62931866400,10800,0,'MSK',],[62931855600,62947580400,62931870000,62947594800,14400,1,'MSD',],[62947580400,62963910000,62947591200,62963920800,10800,0,'MSK',],[62963910000,62982054000,62963924400,62982068400,14400,1,'MSD',],[62982054000,62995359600,62982064800,62995370400,10800,0,'MSK',],[62995359600,63013503600,62995374000,63013518000,14400,1,'MSD',],[63013503600,63026809200,63013514400,63026820000,10800,0,'MSK',],[63026809200,63044953200,63026823600,63044967600,14400,1,'MSD',],[63044953200,63058258800,63044964000,63058269600,10800,0,'MSK',],[63058258800,63077007600,63058273200,63077022000,14400,1,'MSD',],[63077007600,63089708400,63077018400,63089719200,10800,0,'MSK',],[63089708400,63108457200,63089722800,63108471600,14400,1,'MSD',],[63108457200,63121158000,63108468000,63121168800,10800,0,'MSK',],[63121158000,63139906800,63121172400,63139921200,14400,1,'MSD',],[63139906800,63153212400,63139917600,63153223200,10800,0,'MSK',],[63153212400,63171356400,63153226800,63171370800,14400,1,'MSD',],[63171356400,63184662000,63171367200,63184672800,10800,0,'MSK',],[63184662000,63202806000,63184676400,63202820400,14400,1,'MSD',],[63202806000,63216111600,63202816800,63216122400,10800,0,'MSK',],[63216111600,63234860400,63216126000,63234874800,14400,1,'MSD',],[63234860400,63247561200,63234871200,63247572000,10800,0,'MSK',],[63247561200,63266310000,63247575600,63266324400,14400,1,'MSD',],[63266310000,63279010800,63266320800,63279021600,10800,0,'MSK',],[63279010800,63297759600,63279025200,63297774000,14400,1,'MSD',],[63297759600,63310460400,63297770400,63310471200,10800,0,'MSK',],[63310460400,63329209200,63310474800,63329223600,14400,1,'MSD',],[63329209200,63342514800,63329220000,63342525600,10800,0,'MSK',],[63342514800,63360658800,63342529200,63360673200,14400,1,'MSD',],[63360658800,63373964400,63360669600,63373975200,10800,0,'MSK',],[63373964400,63392108400,63373978800,63392122800,14400,1,'MSD',],[63392108400,63405414000,63392119200,63405424800,10800,0,'MSK',],[63405414000,63424162800,63405428400,63424177200,14400,1,'MSD',],[63424162800,63436863600,63424173600,63436874400,10800,0,'MSK',],[63436863600,63549957600,63436878000,63549972000,14400,0,'MSK',],[63549957600,DateTime::TimeZone::INFINITY,63549968400,DateTime::TimeZone::INFINITY,10800,0,'MSK',],];sub olson_version {'2016a'}sub has_dst_changes {29}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_EUROPE_VOLGOGRAD

$fatpacked{"DateTime/TimeZone/Europe/Warsaw.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_WARSAW';
  package DateTime::TimeZone::Europe::Warsaw;$DateTime::TimeZone::Europe::Warsaw::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Warsaw::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59295537360,DateTime::TimeZone::NEG_INFINITY,59295542400,5040,0,'LMT',],[59295537360,60418650960,59295542400,60418656000,5040,0,'WMT',],[60418650960,60441976800,60418654560,60441980400,3600,0,'CET',],[60441976800,60455199600,60441984000,60455206800,7200,1,'CEST',],[60455199600,60472227600,60455203200,60472231200,3600,0,'CET',],[60472227600,60485533200,60472234800,60485540400,7200,1,'CEST',],[60485533200,60503677200,60485536800,60503680800,3600,0,'CET',],[60503677200,60516982800,60503684400,60516990000,7200,1,'CEST',],[60516982800,60535209600,60516990000,60535216800,7200,0,'EET',],[60535209600,60548515200,60535220400,60548526000,10800,1,'EEST',],[60548515200,60633957600,60548522400,60633964800,7200,0,'EET',],[60633957600,61203949200,60633961200,61203952800,3600,0,'CET',],[61203949200,61278426000,61203956400,61278433200,7200,1,'CEST',],[61278426000,61291126800,61278429600,61291130400,3600,0,'CET',],[61291126800,61307456400,61291134000,61307463600,7200,1,'CEST',],[61307456400,61323181200,61307460000,61323184800,3600,0,'CET',],[61323181200,61338808800,61323188400,61338816000,7200,1,'CEST',],[61338808800,61339075200,61338816000,61339082400,7200,1,'CEST',],[61339075200,61356956400,61339078800,61356960000,3600,0,'CET',],[61356956400,61373023200,61356963600,61373030400,7200,1,'CEST',],[61373023200,61387196400,61373026800,61387200000,3600,0,'CET',],[61387196400,61402410000,61387203600,61402417200,7200,1,'CEST',],[61402410000,61420467600,61402413600,61420471200,3600,0,'CET',],[61420467600,61433773200,61420474800,61433780400,7200,1,'CEST',],[61433773200,61450707600,61433776800,61450711200,3600,0,'CET',],[61450707600,61465222800,61450714800,61465230000,7200,1,'CEST',],[61465222800,61481552400,61465226400,61481556000,3600,0,'CET',],[61481552400,61496672400,61481559600,61496679600,7200,1,'CEST',],[61496672400,61738588800,61496676000,61738592400,3600,0,'CET',],[61738588800,61748870400,61738596000,61748877600,7200,1,'CEST',],[61748870400,61764595200,61748874000,61764598800,3600,0,'CET',],[61764595200,61780320000,61764602400,61780327200,7200,1,'CEST',],[61780320000,61801488000,61780323600,61801491600,3600,0,'CET',],[61801488000,61812374400,61801495200,61812381600,7200,1,'CEST',],[61812374400,61828099200,61812378000,61828102800,3600,0,'CET',],[61828099200,61843824000,61828106400,61843831200,7200,1,'CEST',],[61843824000,61864387200,61843827600,61864390800,3600,0,'CET',],[61864387200,61875273600,61864394400,61875280800,7200,1,'CEST',],[61875273600,61895836800,61875277200,61895840400,3600,0,'CET',],[61895836800,61906723200,61895844000,61906730400,7200,1,'CEST',],[61906723200,61927286400,61906726800,61927290000,3600,0,'CET',],[61927286400,61938172800,61927293600,61938180000,7200,1,'CEST',],[61938172800,61959340800,61938176400,61959344400,3600,0,'CET',],[61959340800,61969622400,61959348000,61969629600,7200,1,'CEST',],[61969622400,62356604400,61969626000,62356608000,3600,0,'CET',],[62356604400,62364556800,62356608000,62364560400,3600,0,'CET',],[62364556800,62379676800,62364564000,62379684000,7200,1,'CEST',],[62379676800,62396006400,62379680400,62396010000,3600,0,'CET',],[62396006400,62411731200,62396013600,62411738400,7200,1,'CEST',],[62411731200,62427456000,62411734800,62427459600,3600,0,'CET',],[62427456000,62443180800,62427463200,62443188000,7200,1,'CEST',],[62443180800,62459510400,62443184400,62459514000,3600,0,'CET',],[62459510400,62474630400,62459517600,62474637600,7200,1,'CEST',],[62474630400,62490355200,62474634000,62490358800,3600,0,'CET',],[62490355200,62506080000,62490362400,62506087200,7200,1,'CEST',],[62506080000,62521804800,62506083600,62521808400,3600,0,'CET',],[62521804800,62537529600,62521812000,62537536800,7200,1,'CEST',],[62537529600,62553254400,62537533200,62553258000,3600,0,'CET',],[62553254400,62568979200,62553261600,62568986400,7200,1,'CEST',],[62568979200,62584704000,62568982800,62584707600,3600,0,'CET',],[62584704000,62601033600,62584711200,62601040800,7200,1,'CEST',],[62601033600,62616758400,62601037200,62616762000,3600,0,'CET',],[62616758400,62632483200,62616765600,62632490400,7200,1,'CEST',],[62632483200,62648208000,62632486800,62648211600,3600,0,'CET',],[62648208000,62663932800,62648215200,62663940000,7200,1,'CEST',],[62663932800,62679657600,62663936400,62679661200,3600,0,'CET',],[62679657600,62695382400,62679664800,62695389600,7200,1,'CEST',],[62695382400,62703673200,62695386000,62703676800,3600,0,'CET',],[62703673200,62711110800,62703676800,62711114400,3600,0,'CET',],[62711110800,62726835600,62711118000,62726842800,7200,1,'CEST',],[62726835600,62742560400,62726839200,62742564000,3600,0,'CET',],[62742560400,62758285200,62742567600,62758292400,7200,1,'CEST',],[62758285200,62774010000,62758288800,62774013600,3600,0,'CET',],[62774010000,62790339600,62774017200,62790346800,7200,1,'CEST',],[62790339600,62806064400,62790343200,62806068000,3600,0,'CET',],[62806064400,62821789200,62806071600,62821796400,7200,1,'CEST',],[62821789200,62837514000,62821792800,62837517600,3600,0,'CET',],[62837514000,62853238800,62837521200,62853246000,7200,1,'CEST',],[62853238800,62868963600,62853242400,62868967200,3600,0,'CET',],[62868963600,62884688400,62868970800,62884695600,7200,1,'CEST',],[62884688400,62900413200,62884692000,62900416800,3600,0,'CET',],[62900413200,62916138000,62900420400,62916145200,7200,1,'CEST',],[62916138000,62931862800,62916141600,62931866400,3600,0,'CET',],[62931862800,62947587600,62931870000,62947594800,7200,1,'CEST',],[62947587600,62963917200,62947591200,62963920800,3600,0,'CET',],[62963917200,62982061200,62963924400,62982068400,7200,1,'CEST',],[62982061200,62995366800,62982064800,62995370400,3600,0,'CET',],[62995366800,63013510800,62995374000,63013518000,7200,1,'CEST',],[63013510800,63026816400,63013514400,63026820000,3600,0,'CET',],[63026816400,63044960400,63026823600,63044967600,7200,1,'CEST',],[63044960400,63058266000,63044964000,63058269600,3600,0,'CET',],[63058266000,63077014800,63058273200,63077022000,7200,1,'CEST',],[63077014800,63089715600,63077018400,63089719200,3600,0,'CET',],[63089715600,63108464400,63089722800,63108471600,7200,1,'CEST',],[63108464400,63121165200,63108468000,63121168800,3600,0,'CET',],[63121165200,63139914000,63121172400,63139921200,7200,1,'CEST',],[63139914000,63153219600,63139917600,63153223200,3600,0,'CET',],[63153219600,63171363600,63153226800,63171370800,7200,1,'CEST',],[63171363600,63184669200,63171367200,63184672800,3600,0,'CET',],[63184669200,63202813200,63184676400,63202820400,7200,1,'CEST',],[63202813200,63216118800,63202816800,63216122400,3600,0,'CET',],[63216118800,63234867600,63216126000,63234874800,7200,1,'CEST',],[63234867600,63247568400,63234871200,63247572000,3600,0,'CET',],[63247568400,63266317200,63247575600,63266324400,7200,1,'CEST',],[63266317200,63279018000,63266320800,63279021600,3600,0,'CET',],[63279018000,63297766800,63279025200,63297774000,7200,1,'CEST',],[63297766800,63310467600,63297770400,63310471200,3600,0,'CET',],[63310467600,63329216400,63310474800,63329223600,7200,1,'CEST',],[63329216400,63342522000,63329220000,63342525600,3600,0,'CET',],[63342522000,63360666000,63342529200,63360673200,7200,1,'CEST',],[63360666000,63373971600,63360669600,63373975200,3600,0,'CET',],[63373971600,63392115600,63373978800,63392122800,7200,1,'CEST',],[63392115600,63405421200,63392119200,63405424800,3600,0,'CET',],[63405421200,63424170000,63405428400,63424177200,7200,1,'CEST',],[63424170000,63436870800,63424173600,63436874400,3600,0,'CET',],[63436870800,63455619600,63436878000,63455626800,7200,1,'CEST',],[63455619600,63468320400,63455623200,63468324000,3600,0,'CET',],[63468320400,63487069200,63468327600,63487076400,7200,1,'CEST',],[63487069200,63500374800,63487072800,63500378400,3600,0,'CET',],[63500374800,63518518800,63500382000,63518526000,7200,1,'CEST',],[63518518800,63531824400,63518522400,63531828000,3600,0,'CET',],[63531824400,63549968400,63531831600,63549975600,7200,1,'CEST',],[63549968400,63563274000,63549972000,63563277600,3600,0,'CET',],[63563274000,63581418000,63563281200,63581425200,7200,1,'CEST',],[63581418000,63594723600,63581421600,63594727200,3600,0,'CET',],[63594723600,63613472400,63594730800,63613479600,7200,1,'CEST',],[63613472400,63626173200,63613476000,63626176800,3600,0,'CET',],[63626173200,63644922000,63626180400,63644929200,7200,1,'CEST',],[63644922000,63657622800,63644925600,63657626400,3600,0,'CET',],[63657622800,63676371600,63657630000,63676378800,7200,1,'CEST',],[63676371600,63689677200,63676375200,63689680800,3600,0,'CET',],[63689677200,63707821200,63689684400,63707828400,7200,1,'CEST',],[63707821200,63721126800,63707824800,63721130400,3600,0,'CET',],[63721126800,63739270800,63721134000,63739278000,7200,1,'CEST',],[63739270800,63752576400,63739274400,63752580000,3600,0,'CET',],[63752576400,63771325200,63752583600,63771332400,7200,1,'CEST',],[63771325200,63784026000,63771328800,63784029600,3600,0,'CET',],[63784026000,63802774800,63784033200,63802782000,7200,1,'CEST',],[63802774800,63815475600,63802778400,63815479200,3600,0,'CET',],[63815475600,63834224400,63815482800,63834231600,7200,1,'CEST',],[63834224400,63847530000,63834228000,63847533600,3600,0,'CET',],[63847530000,63865674000,63847537200,63865681200,7200,1,'CEST',],[63865674000,63878979600,63865677600,63878983200,3600,0,'CET',],[63878979600,63897123600,63878986800,63897130800,7200,1,'CEST',],[63897123600,63910429200,63897127200,63910432800,3600,0,'CET',],[63910429200,63928573200,63910436400,63928580400,7200,1,'CEST',],[63928573200,63941878800,63928576800,63941882400,3600,0,'CET',],[63941878800,63960627600,63941886000,63960634800,7200,1,'CEST',],];sub olson_version {'2016a'}sub has_dst_changes {72}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {3600}my$last_observance=bless({'format'=>'CE%sT','gmtoff'=>'1:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>725737,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>725737,'utc_rd_secs'=>0,'utc_year'=>1989 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>3600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>725736,'local_rd_secs'=>82800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>725736,'utc_rd_secs'=>82800,'utc_year'=>1988 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_WARSAW

$fatpacked{"DateTime/TimeZone/Europe/Zaporozhye.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_ZAPOROZHYE';
  package DateTime::TimeZone::Europe::Zaporozhye;$DateTime::TimeZone::Europe::Zaporozhye::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Zaporozhye::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59295533960,DateTime::TimeZone::NEG_INFINITY,59295542400,8440,0,'LMT',],[59295533960,60694522800,59295542360,60694531200,8400,0,'CUT',],[60694522800,60888146400,60694530000,60888153600,7200,0,'EET',],[60888146400,61240914000,60888157200,61240924800,10800,0,'MSK',],[61240914000,61278426000,61240921200,61278433200,7200,1,'CEST',],[61278426000,61291126800,61278429600,61291130400,3600,0,'CET',],[61291126800,61307456400,61291134000,61307463600,7200,1,'CEST',],[61307456400,61309263600,61307460000,61309267200,3600,0,'CET',],[61309263600,62490603600,61309274400,62490614400,10800,0,'MSK',],[62490603600,62506411200,62490618000,62506425600,14400,1,'MSD',],[62506411200,62522139600,62506422000,62522150400,10800,0,'MSK',],[62522139600,62537947200,62522154000,62537961600,14400,1,'MSD',],[62537947200,62553675600,62537958000,62553686400,10800,0,'MSK',],[62553675600,62569483200,62553690000,62569497600,14400,1,'MSD',],[62569483200,62585298000,62569494000,62585308800,10800,0,'MSK',],[62585298000,62601030000,62585312400,62601044400,14400,1,'MSD',],[62601030000,62616754800,62601040800,62616765600,10800,0,'MSK',],[62616754800,62632479600,62616769200,62632494000,14400,1,'MSD',],[62632479600,62648204400,62632490400,62648215200,10800,0,'MSK',],[62648204400,62663929200,62648218800,62663943600,14400,1,'MSD',],[62663929200,62679654000,62663940000,62679664800,10800,0,'MSK',],[62679654000,62695378800,62679668400,62695393200,14400,1,'MSD',],[62695378800,62711103600,62695389600,62711114400,10800,0,'MSK',],[62711103600,62726828400,62711118000,62726842800,14400,1,'MSD',],[62726828400,62742553200,62726839200,62742564000,10800,0,'MSK',],[62742553200,62758278000,62742567600,62758292400,14400,1,'MSD',],[62758278000,62774002800,62758288800,62774013600,10800,0,'MSK',],[62774002800,62790332400,62774017200,62790346800,14400,1,'MSD',],[62790332400,62806057200,62790343200,62806068000,10800,0,'MSK',],[62806057200,62821774800,62806068000,62821785600,10800,1,'EEST',],[62821774800,62837503200,62821782000,62837510400,7200,0,'EET',],[62837503200,62853224400,62837514000,62853235200,10800,1,'EEST',],[62853224400,62868952800,62853231600,62868960000,7200,0,'EET',],[62868952800,62884674000,62868963600,62884684800,10800,1,'EEST',],[62884674000,62900402400,62884681200,62900409600,7200,0,'EET',],[62900402400,62916123600,62900413200,62916134400,10800,1,'EEST',],[62916123600,62924594400,62916130800,62924601600,7200,0,'EET',],[62924594400,62931862800,62924601600,62931870000,7200,0,'EET',],[62931862800,62947587600,62931873600,62947598400,10800,1,'EEST',],[62947587600,62963917200,62947594800,62963924400,7200,0,'EET',],[62963917200,62982061200,62963928000,62982072000,10800,1,'EEST',],[62982061200,62995366800,62982068400,62995374000,7200,0,'EET',],[62995366800,63013510800,62995377600,63013521600,10800,1,'EEST',],[63013510800,63026816400,63013518000,63026823600,7200,0,'EET',],[63026816400,63044960400,63026827200,63044971200,10800,1,'EEST',],[63044960400,63058266000,63044967600,63058273200,7200,0,'EET',],[63058266000,63077014800,63058276800,63077025600,10800,1,'EEST',],[63077014800,63089715600,63077022000,63089722800,7200,0,'EET',],[63089715600,63108464400,63089726400,63108475200,10800,1,'EEST',],[63108464400,63121165200,63108471600,63121172400,7200,0,'EET',],[63121165200,63139914000,63121176000,63139924800,10800,1,'EEST',],[63139914000,63153219600,63139921200,63153226800,7200,0,'EET',],[63153219600,63171363600,63153230400,63171374400,10800,1,'EEST',],[63171363600,63184669200,63171370800,63184676400,7200,0,'EET',],[63184669200,63202813200,63184680000,63202824000,10800,1,'EEST',],[63202813200,63216118800,63202820400,63216126000,7200,0,'EET',],[63216118800,63234867600,63216129600,63234878400,10800,1,'EEST',],[63234867600,63247568400,63234874800,63247575600,7200,0,'EET',],[63247568400,63266317200,63247579200,63266328000,10800,1,'EEST',],[63266317200,63279018000,63266324400,63279025200,7200,0,'EET',],[63279018000,63297766800,63279028800,63297777600,10800,1,'EEST',],[63297766800,63310467600,63297774000,63310474800,7200,0,'EET',],[63310467600,63329216400,63310478400,63329227200,10800,1,'EEST',],[63329216400,63342522000,63329223600,63342529200,7200,0,'EET',],[63342522000,63360666000,63342532800,63360676800,10800,1,'EEST',],[63360666000,63373971600,63360673200,63373978800,7200,0,'EET',],[63373971600,63392115600,63373982400,63392126400,10800,1,'EEST',],[63392115600,63405421200,63392122800,63405428400,7200,0,'EET',],[63405421200,63424170000,63405432000,63424180800,10800,1,'EEST',],[63424170000,63436870800,63424177200,63436878000,7200,0,'EET',],[63436870800,63455619600,63436881600,63455630400,10800,1,'EEST',],[63455619600,63468320400,63455626800,63468327600,7200,0,'EET',],[63468320400,63487069200,63468331200,63487080000,10800,1,'EEST',],[63487069200,63500374800,63487076400,63500382000,7200,0,'EET',],[63500374800,63518518800,63500385600,63518529600,10800,1,'EEST',],[63518518800,63531824400,63518526000,63531831600,7200,0,'EET',],[63531824400,63549968400,63531835200,63549979200,10800,1,'EEST',],[63549968400,63563274000,63549975600,63563281200,7200,0,'EET',],[63563274000,63581418000,63563284800,63581428800,10800,1,'EEST',],[63581418000,63594723600,63581425200,63594730800,7200,0,'EET',],[63594723600,63613472400,63594734400,63613483200,10800,1,'EEST',],[63613472400,63626173200,63613479600,63626180400,7200,0,'EET',],[63626173200,63644922000,63626184000,63644932800,10800,1,'EEST',],[63644922000,63657622800,63644929200,63657630000,7200,0,'EET',],[63657622800,63676371600,63657633600,63676382400,10800,1,'EEST',],[63676371600,63689677200,63676378800,63689684400,7200,0,'EET',],[63689677200,63707821200,63689688000,63707832000,10800,1,'EEST',],[63707821200,63721126800,63707828400,63721134000,7200,0,'EET',],[63721126800,63739270800,63721137600,63739281600,10800,1,'EEST',],[63739270800,63752576400,63739278000,63752583600,7200,0,'EET',],[63752576400,63771325200,63752587200,63771336000,10800,1,'EEST',],[63771325200,63784026000,63771332400,63784033200,7200,0,'EET',],[63784026000,63802774800,63784036800,63802785600,10800,1,'EEST',],[63802774800,63815475600,63802782000,63815482800,7200,0,'EET',],[63815475600,63834224400,63815486400,63834235200,10800,1,'EEST',],[63834224400,63847530000,63834231600,63847537200,7200,0,'EET',],[63847530000,63865674000,63847540800,63865684800,10800,1,'EEST',],[63865674000,63878979600,63865681200,63878986800,7200,0,'EET',],[63878979600,63897123600,63878990400,63897134400,10800,1,'EEST',],[63897123600,63910429200,63897130800,63910436400,7200,0,'EET',],[63910429200,63928573200,63910440000,63928584000,10800,1,'EEST',],[63928573200,63941878800,63928580400,63941886000,7200,0,'EET',],[63941878800,63960627600,63941889600,63960638400,10800,1,'EEST',],];sub olson_version {'2016a'}sub has_dst_changes {49}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {7200}my$last_observance=bless({'format'=>'EE%sT','gmtoff'=>'2:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>728294,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>728294,'utc_rd_secs'=>0,'utc_year'=>1996 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>7200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>728293,'local_rd_secs'=>79200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>728293,'utc_rd_secs'=>79200,'utc_year'=>1995 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_ZAPOROZHYE

$fatpacked{"DateTime/TimeZone/Europe/Zurich.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_EUROPE_ZURICH';
  package DateTime::TimeZone::Europe::Zurich;$DateTime::TimeZone::Europe::Zurich::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Europe::Zurich::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,58460484352,DateTime::TimeZone::NEG_INFINITY,58460486400,2048,0,'LMT',],[58460484352,59750436614,58460486138,59750438400,1786,0,'BMT',],[59750436614,61231248000,59750440214,61231251600,3600,0,'CET',],[61231248000,61244553600,61231255200,61244560800,7200,1,'CEST',],[61244553600,61262697600,61244557200,61262701200,3600,0,'CET',],[61262697600,61276003200,61262704800,61276010400,7200,1,'CEST',],[61276003200,62482834800,61276006800,62482838400,3600,0,'CET',],[62482834800,62490358800,62482838400,62490362400,3600,0,'CET',],[62490358800,62506083600,62490366000,62506090800,7200,1,'CEST',],[62506083600,62521808400,62506087200,62521812000,3600,0,'CET',],[62521808400,62537533200,62521815600,62537540400,7200,1,'CEST',],[62537533200,62553258000,62537536800,62553261600,3600,0,'CET',],[62553258000,62568982800,62553265200,62568990000,7200,1,'CEST',],[62568982800,62584707600,62568986400,62584711200,3600,0,'CET',],[62584707600,62601037200,62584714800,62601044400,7200,1,'CEST',],[62601037200,62616762000,62601040800,62616765600,3600,0,'CET',],[62616762000,62632486800,62616769200,62632494000,7200,1,'CEST',],[62632486800,62648211600,62632490400,62648215200,3600,0,'CET',],[62648211600,62663936400,62648218800,62663943600,7200,1,'CEST',],[62663936400,62679661200,62663940000,62679664800,3600,0,'CET',],[62679661200,62695386000,62679668400,62695393200,7200,1,'CEST',],[62695386000,62711110800,62695389600,62711114400,3600,0,'CET',],[62711110800,62726835600,62711118000,62726842800,7200,1,'CEST',],[62726835600,62742560400,62726839200,62742564000,3600,0,'CET',],[62742560400,62758285200,62742567600,62758292400,7200,1,'CEST',],[62758285200,62774010000,62758288800,62774013600,3600,0,'CET',],[62774010000,62790339600,62774017200,62790346800,7200,1,'CEST',],[62790339600,62806064400,62790343200,62806068000,3600,0,'CET',],[62806064400,62821789200,62806071600,62821796400,7200,1,'CEST',],[62821789200,62837514000,62821792800,62837517600,3600,0,'CET',],[62837514000,62853238800,62837521200,62853246000,7200,1,'CEST',],[62853238800,62868963600,62853242400,62868967200,3600,0,'CET',],[62868963600,62884688400,62868970800,62884695600,7200,1,'CEST',],[62884688400,62900413200,62884692000,62900416800,3600,0,'CET',],[62900413200,62916138000,62900420400,62916145200,7200,1,'CEST',],[62916138000,62931862800,62916141600,62931866400,3600,0,'CET',],[62931862800,62947587600,62931870000,62947594800,7200,1,'CEST',],[62947587600,62963917200,62947591200,62963920800,3600,0,'CET',],[62963917200,62982061200,62963924400,62982068400,7200,1,'CEST',],[62982061200,62995366800,62982064800,62995370400,3600,0,'CET',],[62995366800,63013510800,62995374000,63013518000,7200,1,'CEST',],[63013510800,63026816400,63013514400,63026820000,3600,0,'CET',],[63026816400,63044960400,63026823600,63044967600,7200,1,'CEST',],[63044960400,63058266000,63044964000,63058269600,3600,0,'CET',],[63058266000,63077014800,63058273200,63077022000,7200,1,'CEST',],[63077014800,63089715600,63077018400,63089719200,3600,0,'CET',],[63089715600,63108464400,63089722800,63108471600,7200,1,'CEST',],[63108464400,63121165200,63108468000,63121168800,3600,0,'CET',],[63121165200,63139914000,63121172400,63139921200,7200,1,'CEST',],[63139914000,63153219600,63139917600,63153223200,3600,0,'CET',],[63153219600,63171363600,63153226800,63171370800,7200,1,'CEST',],[63171363600,63184669200,63171367200,63184672800,3600,0,'CET',],[63184669200,63202813200,63184676400,63202820400,7200,1,'CEST',],[63202813200,63216118800,63202816800,63216122400,3600,0,'CET',],[63216118800,63234867600,63216126000,63234874800,7200,1,'CEST',],[63234867600,63247568400,63234871200,63247572000,3600,0,'CET',],[63247568400,63266317200,63247575600,63266324400,7200,1,'CEST',],[63266317200,63279018000,63266320800,63279021600,3600,0,'CET',],[63279018000,63297766800,63279025200,63297774000,7200,1,'CEST',],[63297766800,63310467600,63297770400,63310471200,3600,0,'CET',],[63310467600,63329216400,63310474800,63329223600,7200,1,'CEST',],[63329216400,63342522000,63329220000,63342525600,3600,0,'CET',],[63342522000,63360666000,63342529200,63360673200,7200,1,'CEST',],[63360666000,63373971600,63360669600,63373975200,3600,0,'CET',],[63373971600,63392115600,63373978800,63392122800,7200,1,'CEST',],[63392115600,63405421200,63392119200,63405424800,3600,0,'CET',],[63405421200,63424170000,63405428400,63424177200,7200,1,'CEST',],[63424170000,63436870800,63424173600,63436874400,3600,0,'CET',],[63436870800,63455619600,63436878000,63455626800,7200,1,'CEST',],[63455619600,63468320400,63455623200,63468324000,3600,0,'CET',],[63468320400,63487069200,63468327600,63487076400,7200,1,'CEST',],[63487069200,63500374800,63487072800,63500378400,3600,0,'CET',],[63500374800,63518518800,63500382000,63518526000,7200,1,'CEST',],[63518518800,63531824400,63518522400,63531828000,3600,0,'CET',],[63531824400,63549968400,63531831600,63549975600,7200,1,'CEST',],[63549968400,63563274000,63549972000,63563277600,3600,0,'CET',],[63563274000,63581418000,63563281200,63581425200,7200,1,'CEST',],[63581418000,63594723600,63581421600,63594727200,3600,0,'CET',],[63594723600,63613472400,63594730800,63613479600,7200,1,'CEST',],[63613472400,63626173200,63613476000,63626176800,3600,0,'CET',],[63626173200,63644922000,63626180400,63644929200,7200,1,'CEST',],[63644922000,63657622800,63644925600,63657626400,3600,0,'CET',],[63657622800,63676371600,63657630000,63676378800,7200,1,'CEST',],[63676371600,63689677200,63676375200,63689680800,3600,0,'CET',],[63689677200,63707821200,63689684400,63707828400,7200,1,'CEST',],[63707821200,63721126800,63707824800,63721130400,3600,0,'CET',],[63721126800,63739270800,63721134000,63739278000,7200,1,'CEST',],[63739270800,63752576400,63739274400,63752580000,3600,0,'CET',],[63752576400,63771325200,63752583600,63771332400,7200,1,'CEST',],[63771325200,63784026000,63771328800,63784029600,3600,0,'CET',],[63784026000,63802774800,63784033200,63802782000,7200,1,'CEST',],[63802774800,63815475600,63802778400,63815479200,3600,0,'CET',],[63815475600,63834224400,63815482800,63834231600,7200,1,'CEST',],[63834224400,63847530000,63834228000,63847533600,3600,0,'CET',],[63847530000,63865674000,63847537200,63865681200,7200,1,'CEST',],[63865674000,63878979600,63865677600,63878983200,3600,0,'CET',],[63878979600,63897123600,63878986800,63897130800,7200,1,'CEST',],[63897123600,63910429200,63897127200,63910432800,3600,0,'CET',],[63910429200,63928573200,63910436400,63928580400,7200,1,'CEST',],[63928573200,63941878800,63928576800,63941882400,3600,0,'CET',],[63941878800,63960627600,63941886000,63960634800,7200,1,'CEST',],];sub olson_version {'2016a'}sub has_dst_changes {49}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {3600}my$last_observance=bless({'format'=>'CE%sT','gmtoff'=>'1:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>723181,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>723181,'utc_rd_secs'=>0,'utc_year'=>1982 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>3600,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>723180,'local_rd_secs'=>82800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>723180,'utc_rd_secs'=>82800,'utc_year'=>1981 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_EUROPE_ZURICH

$fatpacked{"DateTime/TimeZone/Floating.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_FLOATING';
  package DateTime::TimeZone::Floating;$DateTime::TimeZone::Floating::VERSION='1.95';use strict;use warnings;use parent 'Class::Singleton','DateTime::TimeZone::OffsetOnly';sub new {return shift->instance}sub _new_instance {my$class=shift;return bless {name=>'floating',offset=>0 },$class}sub is_floating {1}sub STORABLE_thaw {my$self=shift;my$cloning=shift;my$serialized=shift;my$class=ref$self || $self;my$obj;if ($class->isa(__PACKAGE__)){$obj=__PACKAGE__->new()}else {$obj=$class->new()}%$self=%$obj;return$self}1;
DATETIME_TIMEZONE_FLOATING

$fatpacked{"DateTime/TimeZone/HST.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_HST';
  package DateTime::TimeZone::HST;$DateTime::TimeZone::HST::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::HST::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,DateTime::TimeZone::INFINITY,DateTime::TimeZone::NEG_INFINITY,DateTime::TimeZone::INFINITY,-36000,0,'HST',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_HST

$fatpacked{"DateTime/TimeZone/Indian/Chagos.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_INDIAN_CHAGOS';
  package DateTime::TimeZone::Indian::Chagos;$DateTime::TimeZone::Indian::Chagos::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Indian::Chagos::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60147515420,DateTime::TimeZone::NEG_INFINITY,60147532800,17380,0,'LMT',],[60147515420,62956119600,60147533420,62956137600,18000,0,'IOT',],[62956119600,DateTime::TimeZone::INFINITY,62956141200,DateTime::TimeZone::INFINITY,21600,0,'IOT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_INDIAN_CHAGOS

$fatpacked{"DateTime/TimeZone/Indian/Christmas.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_INDIAN_CHRISTMAS';
  package DateTime::TimeZone::Indian::Christmas;$DateTime::TimeZone::Indian::Christmas::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Indian::Christmas::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59771581028,DateTime::TimeZone::NEG_INFINITY,59771606400,25372,0,'LMT',],[59771581028,DateTime::TimeZone::INFINITY,59771606228,DateTime::TimeZone::INFINITY,25200,0,'CXT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_INDIAN_CHRISTMAS

$fatpacked{"DateTime/TimeZone/Indian/Cocos.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_INDIAN_COCOS';
  package DateTime::TimeZone::Indian::Cocos;$DateTime::TimeZone::Indian::Cocos::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Indian::Cocos::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59926671140,DateTime::TimeZone::NEG_INFINITY,59926694400,23260,0,'LMT',],[59926671140,DateTime::TimeZone::INFINITY,59926694540,DateTime::TimeZone::INFINITY,23400,0,'CCT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_INDIAN_COCOS

$fatpacked{"DateTime/TimeZone/Indian/Kerguelen.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_INDIAN_KERGUELEN';
  package DateTime::TimeZone::Indian::Kerguelen;$DateTime::TimeZone::Indian::Kerguelen::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Indian::Kerguelen::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,61504531200,DateTime::TimeZone::NEG_INFINITY,61504531200,0,0,'zzz',],[61504531200,DateTime::TimeZone::INFINITY,61504549200,DateTime::TimeZone::INFINITY,18000,0,'TFT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_INDIAN_KERGUELEN

$fatpacked{"DateTime/TimeZone/Indian/Mahe.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_INDIAN_MAHE';
  package DateTime::TimeZone::Indian::Mahe;$DateTime::TimeZone::Indian::Mahe::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Indian::Mahe::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60129029892,DateTime::TimeZone::NEG_INFINITY,60129043200,13308,0,'LMT',],[60129029892,DateTime::TimeZone::INFINITY,60129044292,DateTime::TimeZone::INFINITY,14400,0,'SCT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_INDIAN_MAHE

$fatpacked{"DateTime/TimeZone/Indian/Maldives.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_INDIAN_MALDIVES';
  package DateTime::TimeZone::Indian::Maldives;$DateTime::TimeZone::Indian::Maldives::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Indian::Maldives::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59295524760,DateTime::TimeZone::NEG_INFINITY,59295542400,17640,0,'LMT',],[59295524760,61820046360,59295542400,61820064000,17640,0,'MMT',],[61820046360,DateTime::TimeZone::INFINITY,61820064360,DateTime::TimeZone::INFINITY,18000,0,'MVT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_INDIAN_MALDIVES

$fatpacked{"DateTime/TimeZone/Indian/Mauritius.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_INDIAN_MAURITIUS';
  package DateTime::TimeZone::Indian::Mauritius;$DateTime::TimeZone::Indian::Mauritius::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Indian::Mauritius::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60147519000,DateTime::TimeZone::NEG_INFINITY,60147532800,13800,0,'LMT',],[60147519000,62538724800,60147533400,62538739200,14400,0,'MUT',],[62538724800,62552718000,62538742800,62552736000,18000,1,'MUST',],[62552718000,63360655200,62552732400,63360669600,14400,0,'MUT',],[63360655200,63373957200,63360673200,63373975200,18000,1,'MUST',],[63373957200,DateTime::TimeZone::INFINITY,63373971600,DateTime::TimeZone::INFINITY,14400,0,'MUT',],];sub olson_version {'2016a'}sub has_dst_changes {2}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_INDIAN_MAURITIUS

$fatpacked{"DateTime/TimeZone/Indian/Reunion.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_INDIAN_REUNION';
  package DateTime::TimeZone::Indian::Reunion;$DateTime::TimeZone::Indian::Reunion::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Indian::Reunion::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60286796288,DateTime::TimeZone::NEG_INFINITY,60286809600,13312,0,'LMT',],[60286796288,DateTime::TimeZone::INFINITY,60286810688,DateTime::TimeZone::INFINITY,14400,0,'RET',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_INDIAN_REUNION

$fatpacked{"DateTime/TimeZone/Local.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_LOCAL';
  package DateTime::TimeZone::Local;$DateTime::TimeZone::Local::VERSION='1.95';use strict;use warnings;use DateTime::TimeZone;use File::Spec;use Module::Runtime qw(require_module);use Try::Tiny;sub TimeZone {my$class=shift;my$subclass=$class->_load_subclass();for my$meth ($subclass->Methods()){my$tz=$subclass->$meth();return$tz if$tz}die "Cannot determine local time zone\n"}{my%subclass=(MSWin32=>'Win32',VMS=>'VMS',MacOS=>'Mac',os2=>'OS2',epoc=>'Epoc',NetWare=>'Win32',symbian=>'Win32',dos=>'OS2',android=>'Android',cygwin=>'Unix',);sub _load_subclass {my$class=shift;my$os_name=$subclass{$^O}|| $^O;my$subclass=$class .'::' .$os_name;return$subclass if$subclass->can('Methods');return$subclass if try {local$SIG{__DIE__};require_module($subclass)};$subclass=$class .'::Unix';require_module($subclass);return$subclass}}sub FromEnv {my$class=shift;for my$var ($class->EnvVars()){if ($class->_IsValidName($ENV{$var})){my$tz=try {local$SIG{__DIE__};DateTime::TimeZone->new(name=>$ENV{$var})};return$tz if$tz}}return}sub _IsValidName {shift;return 0 unless defined $_[0];return 0 if $_[0]eq 'local';return $_[0]=~ m{^[\w/\-\+]+$}}1;
DATETIME_TIMEZONE_LOCAL

$fatpacked{"DateTime/TimeZone/Local/Android.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_LOCAL_ANDROID';
  package DateTime::TimeZone::Local::Android;$DateTime::TimeZone::Local::Android::VERSION='1.95';use strict;use warnings;use Try::Tiny;use parent 'DateTime::TimeZone::Local';sub Methods {return qw(FromEnv FromGetProp FromDefault)}sub EnvVars {return 'TZ'}sub FromGetProp {my$name=`getprop persist.sys.timezone`;chomp$name;my$tz=try {local$SIG{__DIE__};DateTime::TimeZone->new(name=>$name)};return$tz if$tz}sub FromDefault {return try {local$SIG{__DIE__};DateTime::TimeZone->new(name=>'UTC')}}1;
DATETIME_TIMEZONE_LOCAL_ANDROID

$fatpacked{"DateTime/TimeZone/Local/Unix.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_LOCAL_UNIX';
  package DateTime::TimeZone::Local::Unix;$DateTime::TimeZone::Local::Unix::VERSION='1.95';use strict;use warnings;use Cwd 3;use Try::Tiny;use parent 'DateTime::TimeZone::Local';sub Methods {return qw(FromEnv FromEtcTimezone FromEtcLocaltime FromEtcTIMEZONE FromEtcSysconfigClock FromEtcDefaultInit)}sub EnvVars {return 'TZ'}our$EtcDir='/etc';sub _EtcFile {shift;return File::Spec->catfile($EtcDir,@_)}sub FromEtcLocaltime {my$class=shift;my$lt_file=$class->_EtcFile('localtime');return unless -r $lt_file && -s _;my$real_name;if (-l $lt_file){$real_name=$class->_Readlink($lt_file)}$real_name ||= $class->_FindMatchingZoneinfoFile($lt_file);if (defined$real_name){my ($vol,$dirs,$file)=File::Spec->splitpath($real_name);my@parts =grep {defined && length}File::Spec->splitdir($dirs),$file;for my$x (reverse 0 .. $#parts){my$name=($x < $#parts ? join '/',@parts[$x .. $#parts ]: $parts[$x]);my$tz=try {local$SIG{__DIE__};DateTime::TimeZone->new(name=>$name)};return$tz if$tz}}}sub _Readlink {my$link=$_[1];return Cwd::abs_path($link)}our$ZoneinfoDir='/usr/share/zoneinfo';sub _FindMatchingZoneinfoFile {my$class=shift;my$file_to_match=shift;return unless -d $ZoneinfoDir;require File::Basename;require File::Compare;require File::Find;my$size=-s $file_to_match;my$real_name;try {local$SIG{__DIE__};local $_;File::Find::find({wanted=>sub {if (!defined$real_name && -f $_ &&!-l $_ && $size==-s _ && File::Basename::basename($_)ne 'posixrules' && File::Compare::compare($_,$file_to_match)==0){$real_name=$_;die {found=>1}}},no_chdir=>1,},$ZoneinfoDir,)}catch {die $_ unless ref $_ && $_->{found}};return$real_name}sub FromEtcTimezone {my$class=shift;my$tz_file=$class->_EtcFile('timezone');return unless -f $tz_file && -r _;open my$fh,'<',$tz_file or die "Cannot read $tz_file: $!";my$name=join '',<$fh>;close$fh;$name =~ s/^\s+|\s+$//g;return unless$class->_IsValidName($name);return try {local$SIG{__DIE__};DateTime::TimeZone->new(name=>$name)}}sub FromEtcTIMEZONE {my$class=shift;my$tz_file=$class->_EtcFile('TIMEZONE');return unless -f $tz_file && -r _;open my$fh,'<',$tz_file or die "Cannot read $tz_file: $!";my$name;while (defined($name=<$fh>)){if ($name =~ /\A\s*TZ\s*=\s*(\S+)/){$name=$1;last}}close$fh;return unless$class->_IsValidName($name);return try {local$SIG{__DIE__};DateTime::TimeZone->new(name=>$name)}}sub FromEtcSysconfigClock {my$class=shift;my$clock_file=$class->_EtcFile('sysconfig/clock');return unless -r $clock_file && -f _;my$name=$class->_ReadEtcSysconfigClock($clock_file);return unless$class->_IsValidName($name);return try {local$SIG{__DIE__};DateTime::TimeZone->new(name=>$name)}}sub _ReadEtcSysconfigClock {my$class=shift;my$clock_file=shift;open my$fh,'<',$clock_file or die "Cannot read $clock_file: $!";local $_;while (<$fh>){return $1 if /^(?:TIME)?ZONE="([^"]+)"/}}sub FromEtcDefaultInit {my$class=shift;my$init_file=$class->_EtcFile('default/init');return unless -r $init_file && -f _;my$name=$class->_ReadEtcDefaultInit($init_file);return unless$class->_IsValidName($name);return try {local$SIG{__DIE__};DateTime::TimeZone->new(name=>$name)}}sub _ReadEtcDefaultInit {my$class=shift;my$init_file=shift;open my$fh,'<',$init_file or die "Cannot read $init_file: $!";local $_;while (<$fh>){return $1 if /^TZ=(.+)/}}1;
DATETIME_TIMEZONE_LOCAL_UNIX

$fatpacked{"DateTime/TimeZone/Local/VMS.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_LOCAL_VMS';
  package DateTime::TimeZone::Local::VMS;$DateTime::TimeZone::Local::VMS::VERSION='1.95';use strict;use warnings;use parent 'DateTime::TimeZone::Local';sub Methods {return qw(FromEnv)}sub EnvVars {return qw(TZ SYS$TIMEZONE_RULE SYS$TIMEZONE_NAME UCX$TZ TCPIP$TZ)}1;
DATETIME_TIMEZONE_LOCAL_VMS

$fatpacked{"DateTime/TimeZone/MET.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_MET';
  package DateTime::TimeZone::MET;$DateTime::TimeZone::MET::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::MET::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60441976800,DateTime::TimeZone::NEG_INFINITY,60441980400,3600,0,'MET',],[60441976800,60455199600,60441984000,60455206800,7200,1,'MEST',],[60455199600,60472227600,60455203200,60472231200,3600,0,'MET',],[60472227600,60485533200,60472234800,60485540400,7200,1,'MEST',],[60485533200,60503677200,60485536800,60503680800,3600,0,'MET',],[60503677200,60516982800,60503684400,60516990000,7200,1,'MEST',],[60516982800,61196778000,60516986400,61196781600,3600,0,'MET',],[61196778000,61278426000,61196785200,61278433200,7200,1,'MEST',],[61278426000,61291126800,61278429600,61291130400,3600,0,'MET',],[61291126800,61307456400,61291134000,61307463600,7200,1,'MEST',],[61307456400,61323181200,61307460000,61323184800,3600,0,'MET',],[61323181200,61338906000,61323188400,61338913200,7200,1,'MEST',],[61338906000,61354630800,61338909600,61354634400,3600,0,'MET',],[61354630800,61369059600,61354638000,61369066800,7200,1,'MEST',],[61369059600,62364560400,61369063200,62364564000,3600,0,'MET',],[62364560400,62379680400,62364567600,62379687600,7200,1,'MEST',],[62379680400,62396010000,62379684000,62396013600,3600,0,'MET',],[62396010000,62411734800,62396017200,62411742000,7200,1,'MEST',],[62411734800,62427459600,62411738400,62427463200,3600,0,'MET',],[62427459600,62443184400,62427466800,62443191600,7200,1,'MEST',],[62443184400,62459514000,62443188000,62459517600,3600,0,'MET',],[62459514000,62474634000,62459521200,62474641200,7200,1,'MEST',],[62474634000,62490358800,62474637600,62490362400,3600,0,'MET',],[62490358800,62506083600,62490366000,62506090800,7200,1,'MEST',],[62506083600,62521808400,62506087200,62521812000,3600,0,'MET',],[62521808400,62537533200,62521815600,62537540400,7200,1,'MEST',],[62537533200,62553258000,62537536800,62553261600,3600,0,'MET',],[62553258000,62568982800,62553265200,62568990000,7200,1,'MEST',],[62568982800,62584707600,62568986400,62584711200,3600,0,'MET',],[62584707600,62601037200,62584714800,62601044400,7200,1,'MEST',],[62601037200,62616762000,62601040800,62616765600,3600,0,'MET',],[62616762000,62632486800,62616769200,62632494000,7200,1,'MEST',],[62632486800,62648211600,62632490400,62648215200,3600,0,'MET',],[62648211600,62663936400,62648218800,62663943600,7200,1,'MEST',],[62663936400,62679661200,62663940000,62679664800,3600,0,'MET',],[62679661200,62695386000,62679668400,62695393200,7200,1,'MEST',],[62695386000,62711110800,62695389600,62711114400,3600,0,'MET',],[62711110800,62726835600,62711118000,62726842800,7200,1,'MEST',],[62726835600,62742560400,62726839200,62742564000,3600,0,'MET',],[62742560400,62758285200,62742567600,62758292400,7200,1,'MEST',],[62758285200,62774010000,62758288800,62774013600,3600,0,'MET',],[62774010000,62790339600,62774017200,62790346800,7200,1,'MEST',],[62790339600,62806064400,62790343200,62806068000,3600,0,'MET',],[62806064400,62821789200,62806071600,62821796400,7200,1,'MEST',],[62821789200,62837514000,62821792800,62837517600,3600,0,'MET',],[62837514000,62853238800,62837521200,62853246000,7200,1,'MEST',],[62853238800,62868963600,62853242400,62868967200,3600,0,'MET',],[62868963600,62884688400,62868970800,62884695600,7200,1,'MEST',],[62884688400,62900413200,62884692000,62900416800,3600,0,'MET',],[62900413200,62916138000,62900420400,62916145200,7200,1,'MEST',],[62916138000,62931862800,62916141600,62931866400,3600,0,'MET',],[62931862800,62947587600,62931870000,62947594800,7200,1,'MEST',],[62947587600,62963917200,62947591200,62963920800,3600,0,'MET',],[62963917200,62982061200,62963924400,62982068400,7200,1,'MEST',],[62982061200,62995366800,62982064800,62995370400,3600,0,'MET',],[62995366800,63013510800,62995374000,63013518000,7200,1,'MEST',],[63013510800,63026816400,63013514400,63026820000,3600,0,'MET',],[63026816400,63044960400,63026823600,63044967600,7200,1,'MEST',],[63044960400,63058266000,63044964000,63058269600,3600,0,'MET',],[63058266000,63077014800,63058273200,63077022000,7200,1,'MEST',],[63077014800,63089715600,63077018400,63089719200,3600,0,'MET',],[63089715600,63108464400,63089722800,63108471600,7200,1,'MEST',],[63108464400,63121165200,63108468000,63121168800,3600,0,'MET',],[63121165200,63139914000,63121172400,63139921200,7200,1,'MEST',],[63139914000,63153219600,63139917600,63153223200,3600,0,'MET',],[63153219600,63171363600,63153226800,63171370800,7200,1,'MEST',],[63171363600,63184669200,63171367200,63184672800,3600,0,'MET',],[63184669200,63202813200,63184676400,63202820400,7200,1,'MEST',],[63202813200,63216118800,63202816800,63216122400,3600,0,'MET',],[63216118800,63234867600,63216126000,63234874800,7200,1,'MEST',],[63234867600,63247568400,63234871200,63247572000,3600,0,'MET',],[63247568400,63266317200,63247575600,63266324400,7200,1,'MEST',],[63266317200,63279018000,63266320800,63279021600,3600,0,'MET',],[63279018000,63297766800,63279025200,63297774000,7200,1,'MEST',],[63297766800,63310467600,63297770400,63310471200,3600,0,'MET',],[63310467600,63329216400,63310474800,63329223600,7200,1,'MEST',],[63329216400,63342522000,63329220000,63342525600,3600,0,'MET',],[63342522000,63360666000,63342529200,63360673200,7200,1,'MEST',],[63360666000,63373971600,63360669600,63373975200,3600,0,'MET',],[63373971600,63392115600,63373978800,63392122800,7200,1,'MEST',],[63392115600,63405421200,63392119200,63405424800,3600,0,'MET',],[63405421200,63424170000,63405428400,63424177200,7200,1,'MEST',],[63424170000,63436870800,63424173600,63436874400,3600,0,'MET',],[63436870800,63455619600,63436878000,63455626800,7200,1,'MEST',],[63455619600,63468320400,63455623200,63468324000,3600,0,'MET',],[63468320400,63487069200,63468327600,63487076400,7200,1,'MEST',],[63487069200,63500374800,63487072800,63500378400,3600,0,'MET',],[63500374800,63518518800,63500382000,63518526000,7200,1,'MEST',],[63518518800,63531824400,63518522400,63531828000,3600,0,'MET',],[63531824400,63549968400,63531831600,63549975600,7200,1,'MEST',],[63549968400,63563274000,63549972000,63563277600,3600,0,'MET',],[63563274000,63581418000,63563281200,63581425200,7200,1,'MEST',],[63581418000,63594723600,63581421600,63594727200,3600,0,'MET',],[63594723600,63613472400,63594730800,63613479600,7200,1,'MEST',],[63613472400,63626173200,63613476000,63626176800,3600,0,'MET',],[63626173200,63644922000,63626180400,63644929200,7200,1,'MEST',],[63644922000,63657622800,63644925600,63657626400,3600,0,'MET',],[63657622800,63676371600,63657630000,63676378800,7200,1,'MEST',],[63676371600,63689677200,63676375200,63689680800,3600,0,'MET',],[63689677200,63707821200,63689684400,63707828400,7200,1,'MEST',],[63707821200,63721126800,63707824800,63721130400,3600,0,'MET',],[63721126800,63739270800,63721134000,63739278000,7200,1,'MEST',],[63739270800,63752576400,63739274400,63752580000,3600,0,'MET',],[63752576400,63771325200,63752583600,63771332400,7200,1,'MEST',],[63771325200,63784026000,63771328800,63784029600,3600,0,'MET',],[63784026000,63802774800,63784033200,63802782000,7200,1,'MEST',],[63802774800,63815475600,63802778400,63815479200,3600,0,'MET',],[63815475600,63834224400,63815482800,63834231600,7200,1,'MEST',],[63834224400,63847530000,63834228000,63847533600,3600,0,'MET',],[63847530000,63865674000,63847537200,63865681200,7200,1,'MEST',],[63865674000,63878979600,63865677600,63878983200,3600,0,'MET',],[63878979600,63897123600,63878986800,63897130800,7200,1,'MEST',],[63897123600,63910429200,63897127200,63910432800,3600,0,'MET',],[63910429200,63928573200,63910436400,63928580400,7200,1,'MEST',],[63928573200,63941878800,63928576800,63941882400,3600,0,'MET',],[63941878800,63960627600,63941886000,63960634800,7200,1,'MEST',],];sub olson_version {'2016a'}sub has_dst_changes {58}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {3600}my$last_observance=bless({'format'=>'ME%sT','gmtoff'=>'1:00','local_start_datetime'=>{},'offset_from_std'=>0,'offset_from_utc'=>3600,'until'=>[],'utc_start_datetime'=>{}},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00s','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'C-Eur','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00s','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'C-Eur','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_MET

$fatpacked{"DateTime/TimeZone/MST.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_MST';
  package DateTime::TimeZone::MST;$DateTime::TimeZone::MST::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::MST::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,DateTime::TimeZone::INFINITY,DateTime::TimeZone::NEG_INFINITY,DateTime::TimeZone::INFINITY,-25200,0,'MST',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_MST

$fatpacked{"DateTime/TimeZone/MST7MDT.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_MST7MDT';
  package DateTime::TimeZone::MST7MDT;$DateTime::TimeZone::MST7MDT::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::MST7MDT::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60502410000,DateTime::TimeZone::NEG_INFINITY,60502384800,-25200,0,'MST',],[60502410000,60520550400,60502388400,60520528800,-21600,1,'MDT',],[60520550400,60533859600,60520525200,60533834400,-25200,0,'MST',],[60533859600,60552000000,60533838000,60551978400,-21600,1,'MDT',],[60552000000,61255472400,60551974800,61255447200,-25200,0,'MST',],[61255472400,61366287600,61255450800,61366266000,-21600,1,'MWT',],[61366287600,61370294400,61366266000,61370272800,-21600,1,'MPT',],[61370294400,62051302800,61370269200,62051277600,-25200,0,'MST',],[62051302800,62067024000,62051281200,62067002400,-21600,1,'MDT',],[62067024000,62082752400,62066998800,62082727200,-25200,0,'MST',],[62082752400,62098473600,62082730800,62098452000,-21600,1,'MDT',],[62098473600,62114202000,62098448400,62114176800,-25200,0,'MST',],[62114202000,62129923200,62114180400,62129901600,-21600,1,'MDT',],[62129923200,62145651600,62129898000,62145626400,-25200,0,'MST',],[62145651600,62161372800,62145630000,62161351200,-21600,1,'MDT',],[62161372800,62177101200,62161347600,62177076000,-25200,0,'MST',],[62177101200,62193427200,62177079600,62193405600,-21600,1,'MDT',],[62193427200,62209155600,62193402000,62209130400,-25200,0,'MST',],[62209155600,62224876800,62209134000,62224855200,-21600,1,'MDT',],[62224876800,62240605200,62224851600,62240580000,-25200,0,'MST',],[62240605200,62256326400,62240583600,62256304800,-21600,1,'MDT',],[62256326400,62262378000,62256301200,62262352800,-25200,0,'MST',],[62262378000,62287776000,62262356400,62287754400,-21600,1,'MDT',],[62287776000,62298061200,62287750800,62298036000,-25200,0,'MST',],[62298061200,62319225600,62298039600,62319204000,-21600,1,'MDT',],[62319225600,62334954000,62319200400,62334928800,-25200,0,'MST',],[62334954000,62351280000,62334932400,62351258400,-21600,1,'MDT',],[62351280000,62366403600,62351254800,62366378400,-25200,0,'MST',],[62366403600,62382729600,62366382000,62382708000,-21600,1,'MDT',],[62382729600,62398458000,62382704400,62398432800,-25200,0,'MST',],[62398458000,62414179200,62398436400,62414157600,-21600,1,'MDT',],[62414179200,62429907600,62414154000,62429882400,-25200,0,'MST',],[62429907600,62445628800,62429886000,62445607200,-21600,1,'MDT',],[62445628800,62461357200,62445603600,62461332000,-25200,0,'MST',],[62461357200,62477078400,62461335600,62477056800,-21600,1,'MDT',],[62477078400,62492806800,62477053200,62492781600,-25200,0,'MST',],[62492806800,62508528000,62492785200,62508506400,-21600,1,'MDT',],[62508528000,62524256400,62508502800,62524231200,-25200,0,'MST',],[62524256400,62540582400,62524234800,62540560800,-21600,1,'MDT',],[62540582400,62555706000,62540557200,62555680800,-25200,0,'MST',],[62555706000,62572032000,62555684400,62572010400,-21600,1,'MDT',],[62572032000,62587760400,62572006800,62587735200,-25200,0,'MST',],[62587760400,62603481600,62587738800,62603460000,-21600,1,'MDT',],[62603481600,62619210000,62603456400,62619184800,-25200,0,'MST',],[62619210000,62634931200,62619188400,62634909600,-21600,1,'MDT',],[62634931200,62650659600,62634906000,62650634400,-25200,0,'MST',],[62650659600,62666380800,62650638000,62666359200,-21600,1,'MDT',],[62666380800,62680294800,62666355600,62680269600,-25200,0,'MST',],[62680294800,62697830400,62680273200,62697808800,-21600,1,'MDT',],[62697830400,62711744400,62697805200,62711719200,-25200,0,'MST',],[62711744400,62729884800,62711722800,62729863200,-21600,1,'MDT',],[62729884800,62743194000,62729859600,62743168800,-25200,0,'MST',],[62743194000,62761334400,62743172400,62761312800,-21600,1,'MDT',],[62761334400,62774643600,62761309200,62774618400,-25200,0,'MST',],[62774643600,62792784000,62774622000,62792762400,-21600,1,'MDT',],[62792784000,62806698000,62792758800,62806672800,-25200,0,'MST',],[62806698000,62824233600,62806676400,62824212000,-21600,1,'MDT',],[62824233600,62838147600,62824208400,62838122400,-25200,0,'MST',],[62838147600,62855683200,62838126000,62855661600,-21600,1,'MDT',],[62855683200,62869597200,62855658000,62869572000,-25200,0,'MST',],[62869597200,62887737600,62869575600,62887716000,-21600,1,'MDT',],[62887737600,62901046800,62887712400,62901021600,-25200,0,'MST',],[62901046800,62919187200,62901025200,62919165600,-21600,1,'MDT',],[62919187200,62932496400,62919162000,62932471200,-25200,0,'MST',],[62932496400,62950636800,62932474800,62950615200,-21600,1,'MDT',],[62950636800,62964550800,62950611600,62964525600,-25200,0,'MST',],[62964550800,62982086400,62964529200,62982064800,-21600,1,'MDT',],[62982086400,62996000400,62982061200,62995975200,-25200,0,'MST',],[62996000400,63013536000,62995978800,63013514400,-21600,1,'MDT',],[63013536000,63027450000,63013510800,63027424800,-25200,0,'MST',],[63027450000,63044985600,63027428400,63044964000,-21600,1,'MDT',],[63044985600,63058899600,63044960400,63058874400,-25200,0,'MST',],[63058899600,63077040000,63058878000,63077018400,-21600,1,'MDT',],[63077040000,63090349200,63077014800,63090324000,-25200,0,'MST',],[63090349200,63108489600,63090327600,63108468000,-21600,1,'MDT',],[63108489600,63121798800,63108464400,63121773600,-25200,0,'MST',],[63121798800,63139939200,63121777200,63139917600,-21600,1,'MDT',],[63139939200,63153853200,63139914000,63153828000,-25200,0,'MST',],[63153853200,63171388800,63153831600,63171367200,-21600,1,'MDT',],[63171388800,63185302800,63171363600,63185277600,-25200,0,'MST',],[63185302800,63202838400,63185281200,63202816800,-21600,1,'MDT',],[63202838400,63216752400,63202813200,63216727200,-25200,0,'MST',],[63216752400,63234892800,63216730800,63234871200,-21600,1,'MDT',],[63234892800,63248202000,63234867600,63248176800,-25200,0,'MST',],[63248202000,63266342400,63248180400,63266320800,-21600,1,'MDT',],[63266342400,63279651600,63266317200,63279626400,-25200,0,'MST',],[63279651600,63297792000,63279630000,63297770400,-21600,1,'MDT',],[63297792000,63309286800,63297766800,63309261600,-25200,0,'MST',],[63309286800,63329846400,63309265200,63329824800,-21600,1,'MDT',],[63329846400,63340736400,63329821200,63340711200,-25200,0,'MST',],[63340736400,63361296000,63340714800,63361274400,-21600,1,'MDT',],[63361296000,63372186000,63361270800,63372160800,-25200,0,'MST',],[63372186000,63392745600,63372164400,63392724000,-21600,1,'MDT',],[63392745600,63404240400,63392720400,63404215200,-25200,0,'MST',],[63404240400,63424800000,63404218800,63424778400,-21600,1,'MDT',],[63424800000,63435690000,63424774800,63435664800,-25200,0,'MST',],[63435690000,63456249600,63435668400,63456228000,-21600,1,'MDT',],[63456249600,63467139600,63456224400,63467114400,-25200,0,'MST',],[63467139600,63487699200,63467118000,63487677600,-21600,1,'MDT',],[63487699200,63498589200,63487674000,63498564000,-25200,0,'MST',],[63498589200,63519148800,63498567600,63519127200,-21600,1,'MDT',],[63519148800,63530038800,63519123600,63530013600,-25200,0,'MST',],[63530038800,63550598400,63530017200,63550576800,-21600,1,'MDT',],[63550598400,63561488400,63550573200,63561463200,-25200,0,'MST',],[63561488400,63582048000,63561466800,63582026400,-21600,1,'MDT',],[63582048000,63593542800,63582022800,63593517600,-25200,0,'MST',],[63593542800,63614102400,63593521200,63614080800,-21600,1,'MDT',],[63614102400,63624992400,63614077200,63624967200,-25200,0,'MST',],[63624992400,63645552000,63624970800,63645530400,-21600,1,'MDT',],[63645552000,63656442000,63645526800,63656416800,-25200,0,'MST',],[63656442000,63677001600,63656420400,63676980000,-21600,1,'MDT',],[63677001600,63687891600,63676976400,63687866400,-25200,0,'MST',],[63687891600,63708451200,63687870000,63708429600,-21600,1,'MDT',],[63708451200,63719341200,63708426000,63719316000,-25200,0,'MST',],[63719341200,63739900800,63719319600,63739879200,-21600,1,'MDT',],[63739900800,63751395600,63739875600,63751370400,-25200,0,'MST',],[63751395600,63771955200,63751374000,63771933600,-21600,1,'MDT',],[63771955200,63782845200,63771930000,63782820000,-25200,0,'MST',],[63782845200,63803404800,63782823600,63803383200,-21600,1,'MDT',],[63803404800,63814294800,63803379600,63814269600,-25200,0,'MST',],[63814294800,63834854400,63814273200,63834832800,-21600,1,'MDT',],[63834854400,63845744400,63834829200,63845719200,-25200,0,'MST',],[63845744400,63866304000,63845722800,63866282400,-21600,1,'MDT',],[63866304000,63877194000,63866278800,63877168800,-25200,0,'MST',],[63877194000,63897753600,63877172400,63897732000,-21600,1,'MDT',],[63897753600,63908643600,63897728400,63908618400,-25200,0,'MST',],[63908643600,63929203200,63908622000,63929181600,-21600,1,'MDT',],[63929203200,63940698000,63929178000,63940672800,-25200,0,'MST',],[63940698000,63961257600,63940676400,63961236000,-21600,1,'MDT',],];sub olson_version {'2016a'}sub has_dst_changes {65}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-25200}my$last_observance=bless({'format'=>'M%sT','gmtoff'=>'-7:00','local_start_datetime'=>{},'offset_from_std'=>0,'offset_from_utc'=>-25200,'until'=>[],'utc_start_datetime'=>{}},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_MST7MDT

$fatpacked{"DateTime/TimeZone/OffsetOnly.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_OFFSETONLY';
  package DateTime::TimeZone::OffsetOnly;$DateTime::TimeZone::OffsetOnly::VERSION='1.95';use strict;use warnings;use parent 'DateTime::TimeZone';use DateTime::TimeZone::UTC;use Params::Validate qw(validate SCALAR);sub new {my$class=shift;my%p=validate(@_,{offset=>{type=>SCALAR },});my$offset=DateTime::TimeZone::offset_as_seconds($p{offset});die "Invalid offset: $p{offset}\n" unless defined$offset;return DateTime::TimeZone::UTC->new unless$offset;my$self={name=>DateTime::TimeZone::offset_as_string($offset),offset=>$offset,};return bless$self,$class}sub is_dst_for_datetime {0}sub offset_for_datetime {$_[0]->{offset}}sub offset_for_local_datetime {$_[0]->{offset}}sub is_utc {0}sub short_name_for_datetime {$_[0]->name}sub category {undef}sub STORABLE_freeze {my$self=shift;return$self->name}sub STORABLE_thaw {my$self=shift;my$cloning=shift;my$serialized=shift;my$class=ref$self || $self;my$obj;if ($class->isa(__PACKAGE__)){$obj=__PACKAGE__->new(offset=>$serialized)}else {$obj=$class->new(offset=>$serialized)}%$self=%$obj;return$self}1;
DATETIME_TIMEZONE_OFFSETONLY

$fatpacked{"DateTime/TimeZone/OlsonDB.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_OLSONDB';
  package DateTime::TimeZone::OlsonDB;$DateTime::TimeZone::OlsonDB::VERSION='1.95';use strict;use warnings;use vars qw(%MONTHS %DAYS $PLUS_ONE_DAY_DUR $MINUS_ONE_DAY_DUR);use DateTime::TimeZone::OlsonDB::Rule;use DateTime::TimeZone::OlsonDB::Zone;use Params::Validate qw(validate SCALAR);my$x=1;%MONTHS=map {$_=>$x++}qw(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec);$x=1;%DAYS=map {$_=>$x++}qw(Mon Tue Wed Thu Fri Sat Sun);$PLUS_ONE_DAY_DUR=DateTime::Duration->new(days=>1);$MINUS_ONE_DAY_DUR=DateTime::Duration->new(days=>-1);sub new {my$class=shift;return bless {rules=>{},zones=>{},links=>{},},$class}sub parse_file {my$self=shift;my$file=shift;open my$fh,'<',$file or die "Cannot read $file: $!";while (<$fh>){chomp;$self->_parse_line($_)}}sub _parse_line {my$self=shift;my$line=shift;return if$line =~ /^\s+$/;return if$line =~ /^#/;$line =~ s/\s*#.+$//;if ($self->{in_zone}&& $line =~ /^[ \t]/){$self->_parse_zone($line,$self->{in_zone});return}for (qw(Rule Zone Link)){if (substr($line,0,4)eq $_){my$m='_parse_' .lc $_;$self->$m($line)}}}sub _parse_rule {my$self=shift;my$rule=shift;my@items=split /\s+/,$rule,10;shift@items;my$name=shift@items;my%rule;@rule{qw(from to type in on at save letter)}=@items;delete$rule{letter}if$rule{letter}eq '-';delete$rule{type}if$rule{type}eq '-';push @{$self->{rules}{$name}},DateTime::TimeZone::OlsonDB::Rule->new(name=>$name,%rule);undef$self->{in_zone}}sub _parse_zone {my$self=shift;my$zone=shift;my$name=shift;my$expect=$name ? 5 : 6;my@items=grep {defined && length}split /\s+/,$zone,$expect;my%obs;unless ($name){shift@items;$name=shift@items}@obs{qw(gmtoff rules format until)}=@items;if ($obs{rules}=~ /\d\d?:\d\d/){$obs{offset_from_std}=delete$obs{rules}}else {delete$obs{rules}if$obs{rules}eq '-'}delete$obs{until}unless defined$obs{until};push @{$self->{zones}{$name}},\%obs;$self->{in_zone}=$name}sub _parse_link {my$self=shift;my$link=shift;my@items=split /\s+/,$link,3;$self->{links}{$items[2]}=$items[1];undef$self->{in_zone}}sub links {%{$_[0]->{links}}}sub zone_names {keys %{$_[0]->{zones}}}sub zone {my$self=shift;my$name=shift;die "Invalid zone name $name" unless exists$self->{zones}{$name};return DateTime::TimeZone::OlsonDB::Zone->new(name=>$name,observances=>$self->{zones}{$name},olson_db=>$self,)}sub expanded_zone {my$self=shift;my%p=validate(@_,{name=>{type=>SCALAR },expand_to_year=>{type=>SCALAR,default=>(localtime)[5]+ 1910 },});my$zone=$self->zone($p{name});$zone->expand_observances($self,$p{expand_to_year});return$zone}sub rules_by_name {my$self=shift;my$name=shift;return unless defined$name;die "Invalid rule name $name" unless exists$self->{rules}{$name};return @{$self->{rules}{$name}}}sub parse_day_spec {my ($day,$month,$year)=@_;return$day if$day =~ /^\d+$/;if ($day =~ /^last(\w\w\w)$/){my$dow=$DAYS{$1};my$last_day=DateTime->last_day_of_month(year=>$year,month=>$month,time_zone=>'floating',);my$dt=DateTime->new(year=>$year,month=>$month,day=>$last_day->day,time_zone=>'floating',);while ($dt->day_of_week!=$dow){$dt -= $PLUS_ONE_DAY_DUR}return$dt->day}elsif ($day =~ /^(\w\w\w)([><])=(\d\d?)$/){my$dow=$DAYS{$1};my$dt=DateTime->new(year=>$year,month=>$month,day=>$3,time_zone=>'floating',);my$dur=$2 eq '<' ? $MINUS_ONE_DAY_DUR : $PLUS_ONE_DAY_DUR;while ($dt->day_of_week!=$dow){$dt += $dur}return$dt->day}else {die "Invalid on spec for rule: $day\n"}}sub utc_datetime_for_time_spec {my%p=validate(@_,{spec=>{type=>SCALAR },year=>{type=>SCALAR },month=>{type=>SCALAR },day=>{type=>SCALAR },offset_from_utc=>{type=>SCALAR },offset_from_std=>{type=>SCALAR },},);$p{spec}=~ s/w$//;my$is_utc=$p{spec}=~ s/[guz]$//;my$is_std=$p{spec}=~ s/s$//;my ($hour,$minute,$second)=split /:/,$p{spec};$minute=0 unless defined$minute;$second=0 unless defined$second;my$add_day=0;if ($hour==24){$hour=0;$add_day=1}my$utc;if ($is_utc){$utc=DateTime->new(year=>$p{year},month=>$p{month},day=>$p{day},hour=>$hour,minute=>$minute,second=>$second,time_zone=>'floating',)}else {my$local=DateTime->new(year=>$p{year},month=>$p{month},day=>$p{day},hour=>$hour,minute=>$minute,second=>$second,time_zone=>'floating',);$p{offset_from_std}=0 if$is_std;my$dur=DateTime::Duration->new(seconds=>$p{offset_from_utc}+ $p{offset_from_std});$utc=$local - $dur}$utc->add(days=>1)if$add_day;return$utc}1;
DATETIME_TIMEZONE_OLSONDB

$fatpacked{"DateTime/TimeZone/OlsonDB/Change.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_OLSONDB_CHANGE';
  package DateTime::TimeZone::OlsonDB::Change;$DateTime::TimeZone::OlsonDB::Change::VERSION='1.95';use strict;use warnings;use Params::Validate qw(validate SCALAR UNDEF OBJECT);sub new {my$class=shift;my%p=validate(@_,{utc_start_datetime=>{type=>UNDEF | OBJECT },local_start_datetime=>{type=>UNDEF | OBJECT },short_name=>{type=>SCALAR },observance=>{type=>OBJECT },rule=>{type=>OBJECT,default=>undef },type=>{type=>SCALAR,regex=>qr/^(?:observance|rule)$/ },});if ($p{type}eq 'observance'){$p{offset_from_std}=$p{rule}->offset_from_std if defined$p{rule};$p{offset_from_std}=$p{observance}->offset_from_std if$p{observance}->offset_from_std;$p{offset_from_std}||= 0}else {$p{offset_from_std}=$p{observance}->offset_from_std;$p{offset_from_std}=$p{rule}->offset_from_std if defined$p{rule}}$p{offset_from_utc}=$p{observance}->offset_from_utc;$p{is_dst}=0;$p{is_dst}=1 if$p{rule}&& $p{rule}->offset_from_std;$p{is_dst}=1 if$p{observance}->offset_from_std;if ($p{short_name}=~ m{(\w+)/(\w+)}){$p{short_name}=$p{is_dst}? $2 : $1}return bless \%p,$class}sub utc_start_datetime {$_[0]->{utc_start_datetime}}sub local_start_datetime {$_[0]->{local_start_datetime}}sub short_name {$_[0]->{short_name}}sub is_dst {$_[0]->{is_dst}}sub observance {$_[0]->{observance}}sub rule {$_[0]->{rule}}sub offset_from_utc {$_[0]->{offset_from_utc}}sub offset_from_std {$_[0]->{offset_from_std}}sub total_offset {$_[0]->offset_from_utc + $_[0]->offset_from_std}sub two_changes_as_span {my ($c1,$c2,$last_total_offset)=@_;my ($utc_start,$local_start);if (defined$c1->utc_start_datetime){$utc_start=$c1->utc_start_datetime->utc_rd_as_seconds;$local_start=$c1->local_start_datetime->utc_rd_as_seconds}else {$utc_start=$local_start='-inf'}my$utc_end=$c2->utc_start_datetime->utc_rd_as_seconds;my$local_end=$utc_end + $c1->total_offset;return {utc_start=>$utc_start,utc_end=>$utc_end,local_start=>$local_start,local_end=>$local_end,short_name=>$c1->short_name,offset=>$c1->total_offset,is_dst=>$c1->is_dst,}}sub _debug_output {my$self=shift;my$obs=$self->observance;if ($self->utc_start_datetime){print " UTC:        ",$self->utc_start_datetime->datetime,"\n";print " Local:      ",$self->local_start_datetime->datetime,"\n"}else {print " First change (starts at -inf)\n"}print " Short name: ",$self->short_name,"\n";print " UTC offset: ",$obs->offset_from_utc,"\n";if ($obs->offset_from_std || $self->rule){if ($obs->offset_from_std){print " Std offset: ",$obs->offset_from_std,"\n"}if ($self->rule){print " Std offset: ",$self->rule->offset_from_std,' - ',$self->rule->name," rule\n"}}else {print " Std offset: 0 - no rule\n"}print "\n"}1;
DATETIME_TIMEZONE_OLSONDB_CHANGE

$fatpacked{"DateTime/TimeZone/OlsonDB/Observance.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_OLSONDB_OBSERVANCE';
  package DateTime::TimeZone::OlsonDB::Observance;$DateTime::TimeZone::OlsonDB::Observance::VERSION='1.95';use strict;use warnings;use DateTime::Duration;use DateTime::TimeZone::OlsonDB;use DateTime::TimeZone::OlsonDB::Change;use List::Util 1.33 qw(any first);use Params::Validate qw(validate SCALAR ARRAYREF UNDEF OBJECT);sub new {my$class=shift;my%p=validate(@_,{gmtoff=>{type=>SCALAR },rules=>{type=>ARRAYREF },format=>{type=>SCALAR },until=>{type=>SCALAR,default=>'' },utc_start_datetime=>{type=>OBJECT | UNDEF },offset_from_std=>{type=>SCALAR,default=>0 },last_offset_from_utc=>{type=>SCALAR,default=>0 },last_offset_from_std=>{type=>SCALAR,default=>0 },});my$offset_from_utc;if ($p{gmtoff}=~ /^([\+\-]?\d\d?)$/){$offset_from_utc=3600 * $1 * -1}else {$offset_from_utc =DateTime::TimeZone::offset_as_seconds($p{gmtoff})}my$offset_from_std =DateTime::TimeZone::offset_as_seconds($p{offset_from_std});my$last_offset_from_utc=delete$p{last_offset_from_utc};my$last_offset_from_std=delete$p{last_offset_from_std};my$self=bless {%p,offset_from_utc=>$offset_from_utc,offset_from_std=>$offset_from_std,until=>[split /\s+/,$p{until}],},$class;$self->{first_rule}=$self->_first_rule($last_offset_from_utc,$last_offset_from_std);if ($p{utc_start_datetime}){$offset_from_std += $self->{first_rule}->offset_from_std if$self->{first_rule};my$local_start_datetime=$p{utc_start_datetime}->clone;$local_start_datetime += DateTime::Duration->new(seconds=>$offset_from_utc + $offset_from_std);$self->{local_start_datetime}=$local_start_datetime}return$self}sub offset_from_utc {$_[0]->{offset_from_utc}|| 0}sub offset_from_std {$_[0]->{offset_from_std}|| 0}sub total_offset {$_[0]->offset_from_utc + $_[0]->offset_from_std}sub rules {@{$_[0]->{rules}}}sub first_rule {$_[0]->{first_rule}}sub format {$_[0]->{format}}sub utc_start_datetime {$_[0]->{utc_start_datetime}}sub local_start_datetime {$_[0]->{local_start_datetime}}sub formatted_short_name {my$self=shift;my$letter=shift;my$format=$self->format;return$format unless$format =~ /%/;return sprintf($format,$letter)}sub expand_from_rules {my$self=shift;my$zone=shift;my$max_year=(shift)+ 1;my$min_year;if ($self->utc_start_datetime){$min_year=$self->utc_start_datetime->year}else {$min_year =(sort {$a <=> $b}map {$_->min_year}$self->rules)[0]}my$until=$self->until($zone->last_change->offset_from_std);if ($until){$max_year=$until->year}else {my$max_rule_year=0;for my$rule ($self->rules){$max_rule_year=$rule->max_year if$rule->max_year && $rule->max_year > $max_rule_year}$max_year=$max_rule_year if$max_rule_year > $max_year}for my$year ($min_year .. $max_year){my@rules=$self->_sorted_rules_for_year($year);for my$rule (@rules){my$dt=$rule->utc_start_datetime_for_year($year,$self->offset_from_utc,$zone->last_change->offset_from_std);next if$self->utc_start_datetime && $dt <= $self->utc_start_datetime;my$until=$self->until($zone->last_change->offset_from_std);next if$until && $dt >= $until;my$change=DateTime::TimeZone::OlsonDB::Change->new(type=>'rule',utc_start_datetime=>$dt,local_start_datetime=>$dt + DateTime::Duration->new(seconds=>$self->total_offset + $rule->offset_from_std),short_name=>$self->formatted_short_name($rule->letter),observance=>$self,rule=>$rule,);if ($DateTime::TimeZone::OlsonDB::DEBUG){print "Adding rule change ...\n";$change->_debug_output}$zone->add_change($change)}}}sub _sorted_rules_for_year {my$self=shift;my$year=shift;my@rules=(map {$_->[0]}sort {$a->[1]<=> $b->[1]}map {my$dt=$_->utc_start_datetime_for_year($year,$self->offset_from_utc,0);[$_,$dt ]}grep {$_->min_year <= $year && ((!$_->max_year)|| $_->max_year >= $year)}$self->rules);my%rules_by_month;for my$rule (@rules){push @{$rules_by_month{$rule->month()}},$rule}my@final_rules;for my$month (sort {$a <=> $b}keys%rules_by_month){my@r=@{$rules_by_month{$month}};if (@r==2){my ($repeating)=grep {!defined $_->max_year()}@r;my ($this_year)=grep {$_->max_year()&& $_->max_year()==$year}@r;if ($repeating && $this_year){if ($year==2037){if ($DateTime::TimeZone::OlsonDB::DEBUG){print "Found two rules for the same month, picking the max year one because this year is 2037\n"}push@final_rules,$repeating}else {if ($DateTime::TimeZone::OlsonDB::DEBUG){print "Found two rules for the same month, picking the one for this year\n"}push@final_rules,$this_year}next}push@final_rules,@r}else {push@final_rules,@r}}return@final_rules}sub until {my$self=shift;my$offset_from_std=shift || $self->offset_from_std;return unless defined$self->until_year;my$utc=DateTime::TimeZone::OlsonDB::utc_datetime_for_time_spec(spec=>$self->until_time_spec,year=>$self->until_year,month=>$self->until_month,day=>$self->until_day,offset_from_utc=>$self->offset_from_utc,offset_from_std=>$offset_from_std,);return$utc}sub until_year {$_[0]->{until}[0]}sub until_month {(defined $_[0]->{until}[1]? $DateTime::TimeZone::OlsonDB::MONTHS{$_[0]->{until}[1]}: 1)}sub until_day {(defined $_[0]->{until}[2]? DateTime::TimeZone::OlsonDB::parse_day_spec($_[0]->{until}[2],$_[0]->until_month,$_[0]->until_year): 1)}sub until_time_spec {defined $_[0]->{until}[3]? $_[0]->{until}[3]: '00:00:00'}sub _first_rule {my$self=shift;my$last_offset_from_utc=shift;my$last_offset_from_std=shift;return unless$self->rules;my$date=$self->utc_start_datetime or return$self->_first_no_dst_rule;my@rules=$self->rules;my%possible_rules;my$year=$date->year;for my$rule (@rules){my$temp_year =$date->clone->add(seconds=>$self->offset_from_utc + $rule->offset_from_std)->year;$year=$temp_year if$temp_year > $year;next if$rule->min_year > $temp_year;$possible_rules{$rule}=$rule}my$earliest_year=$year - 1;for my$rule (@rules){$earliest_year=$rule->min_year if$rule->min_year < $earliest_year}my@rule_dates;for my$y ($earliest_year .. $year){RULE: foreach my$rule (values%possible_rules){if ($rule->min_year > $y){print "Skipping rule beginning in ",$rule->min_year,".  Year is $y.\n" if$DateTime::TimeZone::OlsonDB::DEBUG;next RULE}if ($rule->max_year && $rule->max_year < $y){print "Skipping rule ending in ",$rule->max_year,".     Year is $y.\n" if$DateTime::TimeZone::OlsonDB::DEBUG;next RULE}my$rule_start=$rule->utc_start_datetime_for_year($y,$last_offset_from_utc,$last_offset_from_std);push@rule_dates,[$rule_start,$rule ]}}@rule_dates=sort {$a->[0]<=> $b->[0]}@rule_dates;print "Looking for first rule ...\n" if$DateTime::TimeZone::OlsonDB::DEBUG;print " Observance starts: ",$date->datetime,"\n\n" if$DateTime::TimeZone::OlsonDB::DEBUG;for (my$x=0;$x < @rule_dates;$x++ ){my ($dt,$rule)=@{$rule_dates[$x]};my ($next_dt,$next_rule)=$x < @rule_dates - 1 ? @{$rule_dates[$x + 1 ]}: undef;next if$next_dt && $next_dt < $date;print " This rule starts:  ",$dt->datetime,"\n" if$DateTime::TimeZone::OlsonDB::DEBUG;print " Next rule starts:  ",$next_dt->datetime,"\n" if$next_dt && $DateTime::TimeZone::OlsonDB::DEBUG;print " No next rule\n\n" if!$next_dt && $DateTime::TimeZone::OlsonDB::DEBUG;if ($dt <= $date){if ($next_dt){return$rule if$date < $next_dt;return$next_rule if$date==$next_dt}else {return$rule}}}my$std_time_rule=$self->_first_no_dst_rule;die "Cannot find a rule that applies to the observance's date range and cannot find a rule without DST to apply" unless$std_time_rule;return$std_time_rule}sub _first_no_dst_rule {my$self=shift;return first {!$_->offset_from_std}sort {$a->min_year <=> $b->min_year}$self->rules}1;
DATETIME_TIMEZONE_OLSONDB_OBSERVANCE

$fatpacked{"DateTime/TimeZone/OlsonDB/Rule.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_OLSONDB_RULE';
  package DateTime::TimeZone::OlsonDB::Rule;$DateTime::TimeZone::OlsonDB::Rule::VERSION='1.95';use strict;use warnings;use DateTime;use DateTime::Duration;use DateTime::TimeZone::OlsonDB;use Params::Validate qw(validate SCALAR);sub new {my$class=shift;my%p=validate(@_,{name=>{type=>SCALAR },from=>{type=>SCALAR },to=>{type=>SCALAR },type=>{type=>SCALAR,default=>undef },in=>{type=>SCALAR },on=>{type=>SCALAR },at=>{type=>SCALAR },save=>{type=>SCALAR },letter=>{type=>SCALAR,default=>'' },},);my$save=$p{save};if ($save && $save ne q{-}){if ($save =~ /^\d+$/){$p{offset_from_std}=3600 * $save}else {$p{offset_from_std}=DateTime::TimeZone::offset_as_seconds($save)}}else {$p{offset_from_std}=0}return bless \%p,$class}sub name {$_[0]->{name}}sub offset_from_std {$_[0]->{offset_from_std}}sub letter {$_[0]->{letter}}sub min_year {$_[0]->{from}}sub max_year {$_[0]->{to}eq 'only' ? $_[0]->min_year : $_[0]->{to}eq 'max' ? undef : $_[0]->{to}}sub is_infinite {$_[0]->{to}eq 'max' ? 1 : 0}sub month {$DateTime::TimeZone::OlsonDB::MONTHS{$_[0]->{in}}}sub on {$_[0]->{on}}sub at {$_[0]->{at}}sub utc_start_datetime_for_year {my$self=shift;my$year=shift;my$offset_from_utc=shift;my$offset_from_std=shift;my$day=DateTime::TimeZone::OlsonDB::parse_day_spec($self->on,$self->month,$year);my$utc=DateTime::TimeZone::OlsonDB::utc_datetime_for_time_spec(spec=>$self->at,year=>$year,month=>$self->month,day=>$day,offset_from_utc=>$offset_from_utc,offset_from_std=>$offset_from_std,);return$utc}1;
DATETIME_TIMEZONE_OLSONDB_RULE

$fatpacked{"DateTime/TimeZone/OlsonDB/Zone.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_OLSONDB_ZONE';
  package DateTime::TimeZone::OlsonDB::Zone;$DateTime::TimeZone::OlsonDB::Zone::VERSION='1.95';use strict;use warnings;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;use DateTime::TimeZone::OlsonDB::Change;use DateTime::TimeZone::OlsonDB::Observance;use List::Util qw(first max);use Params::Validate qw(validate SCALAR ARRAYREF);sub new {my$class=shift;my%p=validate(@_,{name=>{type=>SCALAR },observances=>{type=>ARRAYREF },olson_db=>1,});my$self={name=>$p{name},observances=>$p{observances},changes=>[],infinite_rules=>{},};return bless$self,$class}sub name {$_[0]->{name}}sub last_rules_year {my$self=shift;my$odb=shift;my$last_rule=$self->{observances}[-1]{rules};return unless$last_rule;my@rules=$odb->rules_by_name($last_rule);return$rules[-1]->min_year()}sub expand_observances {my$self=shift;my$odb=shift;my$max_year=shift;my$prev_until;for (my$x=0;$x < @{$self->{observances}};$x++ ){my%p=%{$self->{observances}[$x]};my$rules_name=delete$p{rules};my$last_offset_from_std =$self->last_change ? $self->last_change->offset_from_std : 0;my$last_offset_from_utc =$self->last_change ? $self->last_change->offset_from_utc : 0;my$obs=DateTime::TimeZone::OlsonDB::Observance->new(%p,utc_start_datetime=>$prev_until,rules=>[$odb->rules_by_name($rules_name)],last_offset_from_utc=>$last_offset_from_utc,last_offset_from_std=>$last_offset_from_std,);my$rule=$obs->first_rule;my$letter=$rule ? $rule->letter : '';my$change=DateTime::TimeZone::OlsonDB::Change->new(type=>'observance',utc_start_datetime=>$obs->utc_start_datetime,local_start_datetime=>$obs->local_start_datetime,short_name=>$obs->formatted_short_name($letter),observance=>$obs,$rule ? (rule=>$rule): (),);if ($DateTime::TimeZone::OlsonDB::DEBUG){print "Adding observance change ...\n";$change->_debug_output}$self->add_change($change);if ($obs->rules){$obs->expand_from_rules($self,$max_year)}$prev_until=$obs->until($self->last_change ? $self->last_change->offset_from_std : 0);if ($x==$#{$self->{observances}}){for my$rule ($obs->rules){if ($rule->is_infinite){$self->add_infinite_rule($rule)}}}}}sub add_change {my$self=shift;my$change=shift;if (defined$change->utc_start_datetime){if (@{$self->{changes}}&& $self->{changes}[-1]->utc_start_datetime && $self->{changes}[-1]->utc_start_datetime ==$change->utc_start_datetime){if ($self->{changes}[-1]->rule && $change->observance){print " Ignoring previous rule change, that starts the same time as current observance change\n\n" if$DateTime::TimeZone::OlsonDB::DEBUG;$self->{changes}[-1]=$change;return}die "Cannot add two different changes that have the same UTC start datetime!\n"}my$last_change=$self->last_change;if ($last_change->short_name eq $change->short_name && $last_change->total_offset==$change->total_offset && $last_change->is_dst==$change->is_dst && $last_change->observance eq $change->observance){my$last_rule=$last_change->rule || '';my$new_rule=$change->rule || '';if ($last_rule eq $new_rule){print "Skipping identical change\n" if$DateTime::TimeZone::OlsonDB::DEBUG;return}}push @{$self->{changes}},$change}else {if ($self->{earliest}){die "There can only be one earliest time zone change!"}else {$self->{earliest}=$change}}}sub add_infinite_rule {$_[0]->{infinite_rules}{$_[1]}=$_[1]}sub last_change {return unless @{$_[0]->{changes}}|| $_[0]->{earliest};return (@{$_[0]->{changes}}? $_[0]->{changes}[-1]: $_[0]->{earliest})}sub sorted_changes {((defined $_[0]->{earliest}? $_[0]->{earliest}: ()),sort {$a->utc_start_datetime <=> $b->utc_start_datetime}@{$_[0]->{changes}})}sub infinite_rules {values %{$_[0]->{infinite_rules}}}1;
DATETIME_TIMEZONE_OLSONDB_ZONE

$fatpacked{"DateTime/TimeZone/PST8PDT.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PST8PDT';
  package DateTime::TimeZone::PST8PDT;$DateTime::TimeZone::PST8PDT::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::PST8PDT::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60502413600,DateTime::TimeZone::NEG_INFINITY,60502384800,-28800,0,'PST',],[60502413600,60520554000,60502388400,60520528800,-25200,1,'PDT',],[60520554000,60533863200,60520525200,60533834400,-28800,0,'PST',],[60533863200,60552003600,60533838000,60551978400,-25200,1,'PDT',],[60552003600,61255476000,60551974800,61255447200,-28800,0,'PST',],[61255476000,61366287600,61255450800,61366262400,-25200,1,'PWT',],[61366287600,61370298000,61366262400,61370272800,-25200,1,'PPT',],[61370298000,62051306400,61370269200,62051277600,-28800,0,'PST',],[62051306400,62067027600,62051281200,62067002400,-25200,1,'PDT',],[62067027600,62082756000,62066998800,62082727200,-28800,0,'PST',],[62082756000,62098477200,62082730800,62098452000,-25200,1,'PDT',],[62098477200,62114205600,62098448400,62114176800,-28800,0,'PST',],[62114205600,62129926800,62114180400,62129901600,-25200,1,'PDT',],[62129926800,62145655200,62129898000,62145626400,-28800,0,'PST',],[62145655200,62161376400,62145630000,62161351200,-25200,1,'PDT',],[62161376400,62177104800,62161347600,62177076000,-28800,0,'PST',],[62177104800,62193430800,62177079600,62193405600,-25200,1,'PDT',],[62193430800,62209159200,62193402000,62209130400,-28800,0,'PST',],[62209159200,62224880400,62209134000,62224855200,-25200,1,'PDT',],[62224880400,62240608800,62224851600,62240580000,-28800,0,'PST',],[62240608800,62256330000,62240583600,62256304800,-25200,1,'PDT',],[62256330000,62262381600,62256301200,62262352800,-28800,0,'PST',],[62262381600,62287779600,62262356400,62287754400,-25200,1,'PDT',],[62287779600,62298064800,62287750800,62298036000,-28800,0,'PST',],[62298064800,62319229200,62298039600,62319204000,-25200,1,'PDT',],[62319229200,62334957600,62319200400,62334928800,-28800,0,'PST',],[62334957600,62351283600,62334932400,62351258400,-25200,1,'PDT',],[62351283600,62366407200,62351254800,62366378400,-28800,0,'PST',],[62366407200,62382733200,62366382000,62382708000,-25200,1,'PDT',],[62382733200,62398461600,62382704400,62398432800,-28800,0,'PST',],[62398461600,62414182800,62398436400,62414157600,-25200,1,'PDT',],[62414182800,62429911200,62414154000,62429882400,-28800,0,'PST',],[62429911200,62445632400,62429886000,62445607200,-25200,1,'PDT',],[62445632400,62461360800,62445603600,62461332000,-28800,0,'PST',],[62461360800,62477082000,62461335600,62477056800,-25200,1,'PDT',],[62477082000,62492810400,62477053200,62492781600,-28800,0,'PST',],[62492810400,62508531600,62492785200,62508506400,-25200,1,'PDT',],[62508531600,62524260000,62508502800,62524231200,-28800,0,'PST',],[62524260000,62540586000,62524234800,62540560800,-25200,1,'PDT',],[62540586000,62555709600,62540557200,62555680800,-28800,0,'PST',],[62555709600,62572035600,62555684400,62572010400,-25200,1,'PDT',],[62572035600,62587764000,62572006800,62587735200,-28800,0,'PST',],[62587764000,62603485200,62587738800,62603460000,-25200,1,'PDT',],[62603485200,62619213600,62603456400,62619184800,-28800,0,'PST',],[62619213600,62634934800,62619188400,62634909600,-25200,1,'PDT',],[62634934800,62650663200,62634906000,62650634400,-28800,0,'PST',],[62650663200,62666384400,62650638000,62666359200,-25200,1,'PDT',],[62666384400,62680298400,62666355600,62680269600,-28800,0,'PST',],[62680298400,62697834000,62680273200,62697808800,-25200,1,'PDT',],[62697834000,62711748000,62697805200,62711719200,-28800,0,'PST',],[62711748000,62729888400,62711722800,62729863200,-25200,1,'PDT',],[62729888400,62743197600,62729859600,62743168800,-28800,0,'PST',],[62743197600,62761338000,62743172400,62761312800,-25200,1,'PDT',],[62761338000,62774647200,62761309200,62774618400,-28800,0,'PST',],[62774647200,62792787600,62774622000,62792762400,-25200,1,'PDT',],[62792787600,62806701600,62792758800,62806672800,-28800,0,'PST',],[62806701600,62824237200,62806676400,62824212000,-25200,1,'PDT',],[62824237200,62838151200,62824208400,62838122400,-28800,0,'PST',],[62838151200,62855686800,62838126000,62855661600,-25200,1,'PDT',],[62855686800,62869600800,62855658000,62869572000,-28800,0,'PST',],[62869600800,62887741200,62869575600,62887716000,-25200,1,'PDT',],[62887741200,62901050400,62887712400,62901021600,-28800,0,'PST',],[62901050400,62919190800,62901025200,62919165600,-25200,1,'PDT',],[62919190800,62932500000,62919162000,62932471200,-28800,0,'PST',],[62932500000,62950640400,62932474800,62950615200,-25200,1,'PDT',],[62950640400,62964554400,62950611600,62964525600,-28800,0,'PST',],[62964554400,62982090000,62964529200,62982064800,-25200,1,'PDT',],[62982090000,62996004000,62982061200,62995975200,-28800,0,'PST',],[62996004000,63013539600,62995978800,63013514400,-25200,1,'PDT',],[63013539600,63027453600,63013510800,63027424800,-28800,0,'PST',],[63027453600,63044989200,63027428400,63044964000,-25200,1,'PDT',],[63044989200,63058903200,63044960400,63058874400,-28800,0,'PST',],[63058903200,63077043600,63058878000,63077018400,-25200,1,'PDT',],[63077043600,63090352800,63077014800,63090324000,-28800,0,'PST',],[63090352800,63108493200,63090327600,63108468000,-25200,1,'PDT',],[63108493200,63121802400,63108464400,63121773600,-28800,0,'PST',],[63121802400,63139942800,63121777200,63139917600,-25200,1,'PDT',],[63139942800,63153856800,63139914000,63153828000,-28800,0,'PST',],[63153856800,63171392400,63153831600,63171367200,-25200,1,'PDT',],[63171392400,63185306400,63171363600,63185277600,-28800,0,'PST',],[63185306400,63202842000,63185281200,63202816800,-25200,1,'PDT',],[63202842000,63216756000,63202813200,63216727200,-28800,0,'PST',],[63216756000,63234896400,63216730800,63234871200,-25200,1,'PDT',],[63234896400,63248205600,63234867600,63248176800,-28800,0,'PST',],[63248205600,63266346000,63248180400,63266320800,-25200,1,'PDT',],[63266346000,63279655200,63266317200,63279626400,-28800,0,'PST',],[63279655200,63297795600,63279630000,63297770400,-25200,1,'PDT',],[63297795600,63309290400,63297766800,63309261600,-28800,0,'PST',],[63309290400,63329850000,63309265200,63329824800,-25200,1,'PDT',],[63329850000,63340740000,63329821200,63340711200,-28800,0,'PST',],[63340740000,63361299600,63340714800,63361274400,-25200,1,'PDT',],[63361299600,63372189600,63361270800,63372160800,-28800,0,'PST',],[63372189600,63392749200,63372164400,63392724000,-25200,1,'PDT',],[63392749200,63404244000,63392720400,63404215200,-28800,0,'PST',],[63404244000,63424803600,63404218800,63424778400,-25200,1,'PDT',],[63424803600,63435693600,63424774800,63435664800,-28800,0,'PST',],[63435693600,63456253200,63435668400,63456228000,-25200,1,'PDT',],[63456253200,63467143200,63456224400,63467114400,-28800,0,'PST',],[63467143200,63487702800,63467118000,63487677600,-25200,1,'PDT',],[63487702800,63498592800,63487674000,63498564000,-28800,0,'PST',],[63498592800,63519152400,63498567600,63519127200,-25200,1,'PDT',],[63519152400,63530042400,63519123600,63530013600,-28800,0,'PST',],[63530042400,63550602000,63530017200,63550576800,-25200,1,'PDT',],[63550602000,63561492000,63550573200,63561463200,-28800,0,'PST',],[63561492000,63582051600,63561466800,63582026400,-25200,1,'PDT',],[63582051600,63593546400,63582022800,63593517600,-28800,0,'PST',],[63593546400,63614106000,63593521200,63614080800,-25200,1,'PDT',],[63614106000,63624996000,63614077200,63624967200,-28800,0,'PST',],[63624996000,63645555600,63624970800,63645530400,-25200,1,'PDT',],[63645555600,63656445600,63645526800,63656416800,-28800,0,'PST',],[63656445600,63677005200,63656420400,63676980000,-25200,1,'PDT',],[63677005200,63687895200,63676976400,63687866400,-28800,0,'PST',],[63687895200,63708454800,63687870000,63708429600,-25200,1,'PDT',],[63708454800,63719344800,63708426000,63719316000,-28800,0,'PST',],[63719344800,63739904400,63719319600,63739879200,-25200,1,'PDT',],[63739904400,63751399200,63739875600,63751370400,-28800,0,'PST',],[63751399200,63771958800,63751374000,63771933600,-25200,1,'PDT',],[63771958800,63782848800,63771930000,63782820000,-28800,0,'PST',],[63782848800,63803408400,63782823600,63803383200,-25200,1,'PDT',],[63803408400,63814298400,63803379600,63814269600,-28800,0,'PST',],[63814298400,63834858000,63814273200,63834832800,-25200,1,'PDT',],[63834858000,63845748000,63834829200,63845719200,-28800,0,'PST',],[63845748000,63866307600,63845722800,63866282400,-25200,1,'PDT',],[63866307600,63877197600,63866278800,63877168800,-28800,0,'PST',],[63877197600,63897757200,63877172400,63897732000,-25200,1,'PDT',],[63897757200,63908647200,63897728400,63908618400,-28800,0,'PST',],[63908647200,63929206800,63908622000,63929181600,-25200,1,'PDT',],[63929206800,63940701600,63929178000,63940672800,-28800,0,'PST',],[63940701600,63961261200,63940676400,63961236000,-25200,1,'PDT',],];sub olson_version {'2016a'}sub has_dst_changes {65}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {-28800}my$last_observance=bless({'format'=>'P%sT','gmtoff'=>'-8:00','local_start_datetime'=>{},'offset_from_std'=>0,'offset_from_utc'=>-28800,'until'=>[],'utc_start_datetime'=>{}},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2007','in'=>'Nov','letter'=>'S','name'=>'US','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00','from'=>'2007','in'=>'Mar','letter'=>'D','name'=>'US','offset_from_std'=>3600,'on'=>'Sun>=8','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_PST8PDT

$fatpacked{"DateTime/TimeZone/Pacific/Apia.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_APIA';
  package DateTime::TimeZone::Pacific::Apia;$DateTime::TimeZone::Pacific::Apia::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Apia::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59279945216,DateTime::TimeZone::NEG_INFINITY,59279990400,45184,0,'LMT',],[59279945216,60273804416,59279904000,60273763200,-41216,0,'LMT',],[60273804416,61504572600,60273763016,61504531200,-41400,0,'WSST',],[61504572600,63421182000,61504533000,63421142400,-39600,0,'SST',],[63421182000,63437436000,63421146000,63437400000,-36000,1,'SDT',],[63437436000,63452556000,63437396400,63452516400,-39600,0,'SST',],[63452556000,63460922400,63452520000,63460886400,-36000,1,'SDT',],[63460922400,63468885600,63460972800,63468936000,50400,1,'WSDT',],[63468885600,63484610400,63468932400,63484657200,46800,0,'WSST',],[63484610400,63500940000,63484660800,63500990400,50400,1,'WSDT',],[63500940000,63516060000,63500986800,63516106800,46800,0,'WSST',],[63516060000,63532389600,63516110400,63532440000,50400,1,'WSDT',],[63532389600,63547509600,63532436400,63547556400,46800,0,'WSST',],[63547509600,63563839200,63547560000,63563889600,50400,1,'WSDT',],[63563839200,63578959200,63563886000,63579006000,46800,0,'WSST',],[63578959200,63595288800,63579009600,63595339200,50400,1,'WSDT',],[63595288800,63610408800,63595335600,63610455600,46800,0,'WSST',],[63610408800,63626738400,63610459200,63626788800,50400,1,'WSDT',],[63626738400,63641858400,63626785200,63641905200,46800,0,'WSST',],[63641858400,63658188000,63641908800,63658238400,50400,1,'WSDT',],[63658188000,63673912800,63658234800,63673959600,46800,0,'WSST',],[63673912800,63690242400,63673963200,63690292800,50400,1,'WSDT',],[63690242400,63705362400,63690289200,63705409200,46800,0,'WSST',],[63705362400,63721692000,63705412800,63721742400,50400,1,'WSDT',],[63721692000,63736812000,63721738800,63736858800,46800,0,'WSST',],[63736812000,63753141600,63736862400,63753192000,50400,1,'WSDT',],[63753141600,63768261600,63753188400,63768308400,46800,0,'WSST',],[63768261600,63784591200,63768312000,63784641600,50400,1,'WSDT',],[63784591200,63799711200,63784638000,63799758000,46800,0,'WSST',],[63799711200,63816040800,63799761600,63816091200,50400,1,'WSDT',],[63816040800,63831160800,63816087600,63831207600,46800,0,'WSST',],[63831160800,63848095200,63831211200,63848145600,50400,1,'WSDT',],[63848095200,63863215200,63848142000,63863262000,46800,0,'WSST',],[63863215200,63879544800,63863265600,63879595200,50400,1,'WSDT',],[63879544800,63894664800,63879591600,63894711600,46800,0,'WSST',],[63894664800,63910994400,63894715200,63911044800,50400,1,'WSDT',],[63910994400,63926114400,63911041200,63926161200,46800,0,'WSST',],[63926114400,63942444000,63926164800,63942494400,50400,1,'WSDT',],[63942444000,63957564000,63942490800,63957610800,46800,0,'WSST',],];sub olson_version {'2016a'}sub has_dst_changes {19}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {46800}my$last_observance=bless({'format'=>'WS%sT','gmtoff'=>'13:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>734502,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>734502,'utc_rd_secs'=>0,'utc_year'=>2012 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>46800,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>734501,'local_rd_secs'=>36000,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>734501,'utc_rd_secs'=>36000,'utc_year'=>2012 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'3:00','from'=>'2012','in'=>'Sep','letter'=>'D','name'=>'WS','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'4:00','from'=>'2012','in'=>'Apr','letter'=>'S','name'=>'WS','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_PACIFIC_APIA

$fatpacked{"DateTime/TimeZone/Pacific/Auckland.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_AUCKLAND';
  package DateTime::TimeZone::Pacific::Auckland;$DateTime::TimeZone::Pacific::Auckland::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Auckland::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,58943247656,DateTime::TimeZone::NEG_INFINITY,58943289600,41944,0,'LMT',],[58943247656,60805348200,58943289056,60805389600,41400,0,'NZMT',],[60805348200,60815626200,60805393200,60815671200,45000,1,'NZST',],[60815626200,60834983400,60815667600,60835024800,41400,0,'NZMT',],[60834983400,60848287200,60835026600,60848330400,43200,1,'NZST',],[60848287200,60866433000,60848328600,60866474400,41400,0,'NZMT',],[60866433000,60879736800,60866476200,60879780000,43200,1,'NZST',],[60879736800,60897882600,60879778200,60897924000,41400,0,'NZMT',],[60897882600,60911186400,60897925800,60911229600,43200,1,'NZST',],[60911186400,60929332200,60911227800,60929373600,41400,0,'NZMT',],[60929332200,60943240800,60929375400,60943284000,43200,1,'NZST',],[60943240800,60960781800,60943282200,60960823200,41400,0,'NZMT',],[60960781800,60974690400,60960825000,60974733600,43200,1,'NZST',],[60974690400,60992231400,60974731800,60992272800,41400,0,'NZMT',],[60992231400,61009768800,60992274600,61009812000,43200,1,'NZST',],[61009768800,61023076200,61009810200,61023117600,41400,0,'NZMT',],[61023076200,61041218400,61023119400,61041261600,43200,1,'NZST',],[61041218400,61054525800,61041259800,61054567200,41400,0,'NZMT',],[61054525800,61072668000,61054569000,61072711200,43200,1,'NZST',],[61072668000,61085975400,61072709400,61086016800,41400,0,'NZMT',],[61085975400,61104117600,61086018600,61104160800,43200,1,'NZST',],[61104117600,61117425000,61104159000,61117466400,41400,0,'NZMT',],[61117425000,61135567200,61117468200,61135610400,43200,1,'NZST',],[61135567200,61148874600,61135608600,61148916000,41400,0,'NZMT',],[61148874600,61167621600,61148917800,61167664800,43200,1,'NZST',],[61167621600,61180324200,61167663000,61180365600,41400,0,'NZMT',],[61180324200,61199071200,61180367400,61199114400,43200,1,'NZST',],[61199071200,61212378600,61199112600,61212420000,41400,0,'NZMT',],[61212378600,61378257600,61212421800,61378300800,43200,1,'NZST',],[61378257600,62288316000,61378300800,62288359200,43200,0,'NZST',],[62288316000,62297992800,62288362800,62298039600,46800,1,'NZDT',],[62297992800,62319160800,62298036000,62319204000,43200,0,'NZST',],[62319160800,62330652000,62319207600,62330698800,46800,1,'NZDT',],[62330652000,62351215200,62330695200,62351258400,43200,0,'NZST',],[62351215200,62362101600,62351262000,62362148400,46800,1,'NZDT',],[62362101600,62382664800,62362144800,62382708000,43200,0,'NZST',],[62382664800,62393551200,62382711600,62393598000,46800,1,'NZDT',],[62393551200,62414114400,62393594400,62414157600,43200,0,'NZST',],[62414114400,62425000800,62414161200,62425047600,46800,1,'NZDT',],[62425000800,62445564000,62425044000,62445607200,43200,0,'NZST',],[62445564000,62456450400,62445610800,62456497200,46800,1,'NZDT',],[62456450400,62477013600,62456493600,62477056800,43200,0,'NZST',],[62477013600,62487900000,62477060400,62487946800,46800,1,'NZDT',],[62487900000,62508463200,62487943200,62508506400,43200,0,'NZST',],[62508463200,62519954400,62508510000,62520001200,46800,1,'NZDT',],[62519954400,62540517600,62519997600,62540560800,43200,0,'NZST',],[62540517600,62551404000,62540564400,62551450800,46800,1,'NZDT',],[62551404000,62571967200,62551447200,62572010400,43200,0,'NZST',],[62571967200,62582853600,62572014000,62582900400,46800,1,'NZDT',],[62582853600,62603416800,62582896800,62603460000,43200,0,'NZST',],[62603416800,62614303200,62603463600,62614350000,46800,1,'NZDT',],[62614303200,62634866400,62614346400,62634909600,43200,0,'NZST',],[62634866400,62645752800,62634913200,62645799600,46800,1,'NZDT',],[62645752800,62666316000,62645796000,62666359200,43200,0,'NZST',],[62666316000,62677202400,62666362800,62677249200,46800,1,'NZDT',],[62677202400,62697765600,62677245600,62697808800,43200,0,'NZST',],[62697765600,62709256800,62697812400,62709303600,46800,1,'NZDT',],[62709256800,62729820000,62709300000,62729863200,43200,0,'NZST',],[62729820000,62740706400,62729866800,62740753200,46800,1,'NZDT',],[62740706400,62759455200,62740749600,62759498400,43200,0,'NZST',],[62759455200,62773365600,62759502000,62773412400,46800,1,'NZDT',],[62773365600,62790904800,62773408800,62790948000,43200,0,'NZST',],[62790904800,62804815200,62790951600,62804862000,46800,1,'NZDT',],[62804815200,62822354400,62804858400,62822397600,43200,0,'NZST',],[62822354400,62836264800,62822401200,62836311600,46800,1,'NZDT',],[62836264800,62853804000,62836308000,62853847200,43200,0,'NZST',],[62853804000,62868319200,62853850800,62868366000,46800,1,'NZDT',],[62868319200,62885253600,62868362400,62885296800,43200,0,'NZST',],[62885253600,62899768800,62885300400,62899815600,46800,1,'NZDT',],[62899768800,62916703200,62899812000,62916746400,43200,0,'NZST',],[62916703200,62931218400,62916750000,62931265200,46800,1,'NZDT',],[62931218400,62948152800,62931261600,62948196000,43200,0,'NZST',],[62948152800,62962668000,62948199600,62962714800,46800,1,'NZDT',],[62962668000,62980207200,62962711200,62980250400,43200,0,'NZST',],[62980207200,62994117600,62980254000,62994164400,46800,1,'NZDT',],[62994117600,63011656800,62994160800,63011700000,43200,0,'NZST',],[63011656800,63025567200,63011703600,63025614000,46800,1,'NZDT',],[63025567200,63043106400,63025610400,63043149600,43200,0,'NZST',],[63043106400,63057621600,63043153200,63057668400,46800,1,'NZDT',],[63057621600,63074556000,63057664800,63074599200,43200,0,'NZST',],[63074556000,63089071200,63074602800,63089118000,46800,1,'NZDT',],[63089071200,63106005600,63089114400,63106048800,43200,0,'NZST',],[63106005600,63120520800,63106052400,63120567600,46800,1,'NZDT',],[63120520800,63138060000,63120564000,63138103200,43200,0,'NZST',],[63138060000,63151970400,63138106800,63152017200,46800,1,'NZDT',],[63151970400,63169509600,63152013600,63169552800,43200,0,'NZST',],[63169509600,63183420000,63169556400,63183466800,46800,1,'NZDT',],[63183420000,63200959200,63183463200,63201002400,43200,0,'NZST',],[63200959200,63215474400,63201006000,63215521200,46800,1,'NZDT',],[63215474400,63232408800,63215517600,63232452000,43200,0,'NZST',],[63232408800,63246924000,63232455600,63246970800,46800,1,'NZDT',],[63246924000,63263858400,63246967200,63263901600,43200,0,'NZST',],[63263858400,63278373600,63263905200,63278420400,46800,1,'NZDT',],[63278373600,63295308000,63278416800,63295351200,43200,0,'NZST',],[63295308000,63309823200,63295354800,63309870000,46800,1,'NZDT',],[63309823200,63326757600,63309866400,63326800800,43200,0,'NZST',],[63326757600,63343087200,63326804400,63343134000,46800,1,'NZDT',],[63343087200,63358207200,63343130400,63358250400,43200,0,'NZST',],[63358207200,63374536800,63358254000,63374583600,46800,1,'NZDT',],[63374536800,63389656800,63374580000,63389700000,43200,0,'NZST',],[63389656800,63405986400,63389703600,63406033200,46800,1,'NZDT',],[63405986400,63421106400,63406029600,63421149600,43200,0,'NZST',],[63421106400,63437436000,63421153200,63437482800,46800,1,'NZDT',],[63437436000,63452556000,63437479200,63452599200,43200,0,'NZST',],[63452556000,63468885600,63452602800,63468932400,46800,1,'NZDT',],[63468885600,63484610400,63468928800,63484653600,43200,0,'NZST',],[63484610400,63500940000,63484657200,63500986800,46800,1,'NZDT',],[63500940000,63516060000,63500983200,63516103200,43200,0,'NZST',],[63516060000,63532389600,63516106800,63532436400,46800,1,'NZDT',],[63532389600,63547509600,63532432800,63547552800,43200,0,'NZST',],[63547509600,63563839200,63547556400,63563886000,46800,1,'NZDT',],[63563839200,63578959200,63563882400,63579002400,43200,0,'NZST',],[63578959200,63595288800,63579006000,63595335600,46800,1,'NZDT',],[63595288800,63610408800,63595332000,63610452000,43200,0,'NZST',],[63610408800,63626738400,63610455600,63626785200,46800,1,'NZDT',],[63626738400,63641858400,63626781600,63641901600,43200,0,'NZST',],[63641858400,63658188000,63641905200,63658234800,46800,1,'NZDT',],[63658188000,63673912800,63658231200,63673956000,43200,0,'NZST',],[63673912800,63690242400,63673959600,63690289200,46800,1,'NZDT',],[63690242400,63705362400,63690285600,63705405600,43200,0,'NZST',],[63705362400,63721692000,63705409200,63721738800,46800,1,'NZDT',],[63721692000,63736812000,63721735200,63736855200,43200,0,'NZST',],[63736812000,63753141600,63736858800,63753188400,46800,1,'NZDT',],[63753141600,63768261600,63753184800,63768304800,43200,0,'NZST',],[63768261600,63784591200,63768308400,63784638000,46800,1,'NZDT',],[63784591200,63799711200,63784634400,63799754400,43200,0,'NZST',],[63799711200,63816040800,63799758000,63816087600,46800,1,'NZDT',],[63816040800,63831160800,63816084000,63831204000,43200,0,'NZST',],[63831160800,63848095200,63831207600,63848142000,46800,1,'NZDT',],[63848095200,63863215200,63848138400,63863258400,43200,0,'NZST',],[63863215200,63879544800,63863262000,63879591600,46800,1,'NZDT',],[63879544800,63894664800,63879588000,63894708000,43200,0,'NZST',],[63894664800,63910994400,63894711600,63911041200,46800,1,'NZDT',],[63910994400,63926114400,63911037600,63926157600,43200,0,'NZST',],[63926114400,63942444000,63926161200,63942490800,46800,1,'NZDT',],[63942444000,63957564000,63942487200,63957607200,43200,0,'NZST',],];sub olson_version {'2016a'}sub has_dst_changes {68}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {43200}my$last_observance=bless({'format'=>'NZ%sT','gmtoff'=>'12:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>710397,'local_rd_secs'=>0,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>710397,'utc_rd_secs'=>0,'utc_year'=>1947 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>43200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>710396,'local_rd_secs'=>43200,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>710396,'utc_rd_secs'=>43200,'utc_year'=>1946 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00s','from'=>'2007','in'=>'Sep','letter'=>'D','name'=>'NZ','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:00s','from'=>'2008','in'=>'Apr','letter'=>'S','name'=>'NZ','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_PACIFIC_AUCKLAND

$fatpacked{"DateTime/TimeZone/Pacific/Bougainville.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_BOUGAINVILLE';
  package DateTime::TimeZone::Pacific::Bougainville;$DateTime::TimeZone::Pacific::Bougainville::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Bougainville::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59295505064,DateTime::TimeZone::NEG_INFINITY,59295542400,37336,0,'LMT',],[59295505064,59768892688,59295540376,59768928000,35312,0,'PMMT',],[59768892688,61267672800,59768928688,61267708800,36000,0,'PGT',],[61267672800,61366777200,61267705200,61366809600,32400,0,'JST',],[61366777200,63555379200,61366813200,63555415200,36000,0,'PGT',],[63555379200,DateTime::TimeZone::INFINITY,63555418800,DateTime::TimeZone::INFINITY,39600,0,'BST',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_BOUGAINVILLE

$fatpacked{"DateTime/TimeZone/Pacific/Chatham.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_CHATHAM';
  package DateTime::TimeZone::Pacific::Chatham;$DateTime::TimeZone::Pacific::Chatham::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Chatham::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,58943245572,DateTime::TimeZone::NEG_INFINITY,58943289600,44028,0,'LMT',],[58943245572,61378256700,58943289672,61378300800,44100,0,'CHAST',],[61378256700,62288316000,61378302600,62288361900,45900,0,'CHAST',],[62288316000,62297992800,62288365500,62298042300,49500,1,'CHADT',],[62297992800,62319160800,62298038700,62319206700,45900,0,'CHAST',],[62319160800,62330652000,62319210300,62330701500,49500,1,'CHADT',],[62330652000,62351215200,62330697900,62351261100,45900,0,'CHAST',],[62351215200,62362101600,62351264700,62362151100,49500,1,'CHADT',],[62362101600,62382664800,62362147500,62382710700,45900,0,'CHAST',],[62382664800,62393551200,62382714300,62393600700,49500,1,'CHADT',],[62393551200,62414114400,62393597100,62414160300,45900,0,'CHAST',],[62414114400,62425000800,62414163900,62425050300,49500,1,'CHADT',],[62425000800,62445564000,62425046700,62445609900,45900,0,'CHAST',],[62445564000,62456450400,62445613500,62456499900,49500,1,'CHADT',],[62456450400,62477013600,62456496300,62477059500,45900,0,'CHAST',],[62477013600,62487900000,62477063100,62487949500,49500,1,'CHADT',],[62487900000,62508463200,62487945900,62508509100,45900,0,'CHAST',],[62508463200,62519954400,62508512700,62520003900,49500,1,'CHADT',],[62519954400,62540517600,62520000300,62540563500,45900,0,'CHAST',],[62540517600,62551404000,62540567100,62551453500,49500,1,'CHADT',],[62551404000,62571967200,62551449900,62572013100,45900,0,'CHAST',],[62571967200,62582853600,62572016700,62582903100,49500,1,'CHADT',],[62582853600,62603416800,62582899500,62603462700,45900,0,'CHAST',],[62603416800,62614303200,62603466300,62614352700,49500,1,'CHADT',],[62614303200,62634866400,62614349100,62634912300,45900,0,'CHAST',],[62634866400,62645752800,62634915900,62645802300,49500,1,'CHADT',],[62645752800,62666316000,62645798700,62666361900,45900,0,'CHAST',],[62666316000,62677202400,62666365500,62677251900,49500,1,'CHADT',],[62677202400,62697765600,62677248300,62697811500,45900,0,'CHAST',],[62697765600,62709256800,62697815100,62709306300,49500,1,'CHADT',],[62709256800,62729820000,62709302700,62729865900,45900,0,'CHAST',],[62729820000,62740706400,62729869500,62740755900,49500,1,'CHADT',],[62740706400,62759455200,62740752300,62759501100,45900,0,'CHAST',],[62759455200,62773365600,62759504700,62773415100,49500,1,'CHADT',],[62773365600,62790904800,62773411500,62790950700,45900,0,'CHAST',],[62790904800,62804815200,62790954300,62804864700,49500,1,'CHADT',],[62804815200,62822354400,62804861100,62822400300,45900,0,'CHAST',],[62822354400,62836264800,62822403900,62836314300,49500,1,'CHADT',],[62836264800,62853804000,62836310700,62853849900,45900,0,'CHAST',],[62853804000,62868319200,62853853500,62868368700,49500,1,'CHADT',],[62868319200,62885253600,62868365100,62885299500,45900,0,'CHAST',],[62885253600,62899768800,62885303100,62899818300,49500,1,'CHADT',],[62899768800,62916703200,62899814700,62916749100,45900,0,'CHAST',],[62916703200,62931218400,62916752700,62931267900,49500,1,'CHADT',],[62931218400,62948152800,62931264300,62948198700,45900,0,'CHAST',],[62948152800,62962668000,62948202300,62962717500,49500,1,'CHADT',],[62962668000,62980207200,62962713900,62980253100,45900,0,'CHAST',],[62980207200,62994117600,62980256700,62994167100,49500,1,'CHADT',],[62994117600,63011656800,62994163500,63011702700,45900,0,'CHAST',],[63011656800,63025567200,63011706300,63025616700,49500,1,'CHADT',],[63025567200,63043106400,63025613100,63043152300,45900,0,'CHAST',],[63043106400,63057621600,63043155900,63057671100,49500,1,'CHADT',],[63057621600,63074556000,63057667500,63074601900,45900,0,'CHAST',],[63074556000,63089071200,63074605500,63089120700,49500,1,'CHADT',],[63089071200,63106005600,63089117100,63106051500,45900,0,'CHAST',],[63106005600,63120520800,63106055100,63120570300,49500,1,'CHADT',],[63120520800,63138060000,63120566700,63138105900,45900,0,'CHAST',],[63138060000,63151970400,63138109500,63152019900,49500,1,'CHADT',],[63151970400,63169509600,63152016300,63169555500,45900,0,'CHAST',],[63169509600,63183420000,63169559100,63183469500,49500,1,'CHADT',],[63183420000,63200959200,63183465900,63201005100,45900,0,'CHAST',],[63200959200,63215474400,63201008700,63215523900,49500,1,'CHADT',],[63215474400,63232408800,63215520300,63232454700,45900,0,'CHAST',],[63232408800,63246924000,63232458300,63246973500,49500,1,'CHADT',],[63246924000,63263858400,63246969900,63263904300,45900,0,'CHAST',],[63263858400,63278373600,63263907900,63278423100,49500,1,'CHADT',],[63278373600,63295308000,63278419500,63295353900,45900,0,'CHAST',],[63295308000,63309823200,63295357500,63309872700,49500,1,'CHADT',],[63309823200,63326757600,63309869100,63326803500,45900,0,'CHAST',],[63326757600,63343087200,63326807100,63343136700,49500,1,'CHADT',],[63343087200,63358207200,63343133100,63358253100,45900,0,'CHAST',],[63358207200,63374536800,63358256700,63374586300,49500,1,'CHADT',],[63374536800,63389656800,63374582700,63389702700,45900,0,'CHAST',],[63389656800,63405986400,63389706300,63406035900,49500,1,'CHADT',],[63405986400,63421106400,63406032300,63421152300,45900,0,'CHAST',],[63421106400,63437436000,63421155900,63437485500,49500,1,'CHADT',],[63437436000,63452556000,63437481900,63452601900,45900,0,'CHAST',],[63452556000,63468885600,63452605500,63468935100,49500,1,'CHADT',],[63468885600,63484610400,63468931500,63484656300,45900,0,'CHAST',],[63484610400,63500940000,63484659900,63500989500,49500,1,'CHADT',],[63500940000,63516060000,63500985900,63516105900,45900,0,'CHAST',],[63516060000,63532389600,63516109500,63532439100,49500,1,'CHADT',],[63532389600,63547509600,63532435500,63547555500,45900,0,'CHAST',],[63547509600,63563839200,63547559100,63563888700,49500,1,'CHADT',],[63563839200,63578959200,63563885100,63579005100,45900,0,'CHAST',],[63578959200,63595288800,63579008700,63595338300,49500,1,'CHADT',],[63595288800,63610408800,63595334700,63610454700,45900,0,'CHAST',],[63610408800,63626738400,63610458300,63626787900,49500,1,'CHADT',],[63626738400,63641858400,63626784300,63641904300,45900,0,'CHAST',],[63641858400,63658188000,63641907900,63658237500,49500,1,'CHADT',],[63658188000,63673912800,63658233900,63673958700,45900,0,'CHAST',],[63673912800,63690242400,63673962300,63690291900,49500,1,'CHADT',],[63690242400,63705362400,63690288300,63705408300,45900,0,'CHAST',],[63705362400,63721692000,63705411900,63721741500,49500,1,'CHADT',],[63721692000,63736812000,63721737900,63736857900,45900,0,'CHAST',],[63736812000,63753141600,63736861500,63753191100,49500,1,'CHADT',],[63753141600,63768261600,63753187500,63768307500,45900,0,'CHAST',],[63768261600,63784591200,63768311100,63784640700,49500,1,'CHADT',],[63784591200,63799711200,63784637100,63799757100,45900,0,'CHAST',],[63799711200,63816040800,63799760700,63816090300,49500,1,'CHADT',],[63816040800,63831160800,63816086700,63831206700,45900,0,'CHAST',],[63831160800,63848095200,63831210300,63848144700,49500,1,'CHADT',],[63848095200,63863215200,63848141100,63863261100,45900,0,'CHAST',],[63863215200,63879544800,63863264700,63879594300,49500,1,'CHADT',],[63879544800,63894664800,63879590700,63894710700,45900,0,'CHAST',],[63894664800,63910994400,63894714300,63911043900,49500,1,'CHADT',],[63910994400,63926114400,63911040300,63926160300,45900,0,'CHAST',],[63926114400,63942444000,63926163900,63942493500,49500,1,'CHADT',],[63942444000,63957564000,63942489900,63957609900,45900,0,'CHAST',],];sub olson_version {'2016a'}sub has_dst_changes {54}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {45900}my$last_observance=bless({'format'=>'CHA%sT','gmtoff'=>'12:45','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>710397,'local_rd_secs'=>1800,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>710397,'utc_rd_secs'=>1800,'utc_year'=>1947 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>45900,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>710396,'local_rd_secs'=>42300,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>710396,'utc_rd_secs'=>42300,'utc_year'=>1946 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:45s','from'=>'2008','in'=>'Apr','letter'=>'S','name'=>'Chatham','offset_from_std'=>0,'on'=>'Sun>=1','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'2:45s','from'=>'2007','in'=>'Sep','letter'=>'D','name'=>'Chatham','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_PACIFIC_CHATHAM

$fatpacked{"DateTime/TimeZone/Pacific/Chuuk.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_CHUUK';
  package DateTime::TimeZone::Pacific::Chuuk;$DateTime::TimeZone::Pacific::Chuuk::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Chuuk::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59958193972,DateTime::TimeZone::NEG_INFINITY,59958230400,36428,0,'LMT',],[59958193972,DateTime::TimeZone::INFINITY,59958229972,DateTime::TimeZone::INFINITY,36000,0,'CHUT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_CHUUK

$fatpacked{"DateTime/TimeZone/Pacific/Easter.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_EASTER';
  package DateTime::TimeZone::Pacific::Easter;$DateTime::TimeZone::Pacific::Easter::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Easter::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59611187848,DateTime::TimeZone::NEG_INFINITY,59611161600,-26248,0,'LMT',],[59611187848,60957559048,59611161600,60957532800,-26248,0,'EMT',],[60957559048,62099064000,60957533848,62099038800,-25200,0,'EAST',],[62099064000,62111761200,62099042400,62111739600,-21600,1,'EASST',],[62111761200,62132328000,62111736000,62132302800,-25200,0,'EAST',],[62132328000,62143210800,62132306400,62143189200,-21600,1,'EASST',],[62143210800,62160148800,62143185600,62160123600,-25200,0,'EAST',],[62160148800,62173450800,62160127200,62173429200,-21600,1,'EASST',],[62173450800,62191598400,62173425600,62191573200,-25200,0,'EAST',],[62191598400,62204900400,62191576800,62204878800,-21600,1,'EASST',],[62204900400,62223652800,62204875200,62223627600,-25200,0,'EAST',],[62223652800,62236350000,62223631200,62236328400,-21600,1,'EASST',],[62236350000,62253892800,62236324800,62253867600,-25200,0,'EAST',],[62253892800,62267799600,62253871200,62267778000,-21600,1,'EASST',],[62267799600,62286552000,62267774400,62286526800,-25200,0,'EAST',],[62286552000,62299249200,62286530400,62299227600,-21600,1,'EASST',],[62299249200,62318001600,62299224000,62317976400,-25200,0,'EAST',],[62318001600,62331303600,62317980000,62331282000,-21600,1,'EASST',],[62331303600,62349451200,62331278400,62349426000,-25200,0,'EAST',],[62349451200,62362753200,62349429600,62362731600,-21600,1,'EASST',],[62362753200,62380900800,62362728000,62380875600,-25200,0,'EAST',],[62380900800,62394202800,62380879200,62394181200,-21600,1,'EASST',],[62394202800,62412955200,62394177600,62412930000,-25200,0,'EAST',],[62412955200,62425652400,62412933600,62425630800,-21600,1,'EASST',],[62425652400,62444404800,62425627200,62444379600,-25200,0,'EAST',],[62444404800,62457102000,62444383200,62457080400,-21600,1,'EASST',],[62457102000,62475854400,62457076800,62475829200,-25200,0,'EAST',],[62475854400,62489156400,62475832800,62489134800,-21600,1,'EASST',],[62489156400,62507304000,62489131200,62507278800,-25200,0,'EAST',],[62507304000,62520606000,62507282400,62520584400,-21600,1,'EASST',],[62520606000,62538753600,62520584400,62538732000,-21600,0,'EAST',],[62538753600,62552055600,62538735600,62552037600,-18000,1,'EASST',],[62552055600,62570203200,62552034000,62570181600,-21600,0,'EAST',],[62570203200,62583505200,62570185200,62583487200,-18000,1,'EASST',],[62583505200,62602257600,62583483600,62602236000,-21600,0,'EAST',],[62602257600,62614954800,62602239600,62614936800,-18000,1,'EASST',],[62614954800,62633707200,62614933200,62633685600,-21600,0,'EAST',],[62633707200,62646404400,62633689200,62646386400,-18000,1,'EASST',],[62646404400,62665156800,62646382800,62665135200,-21600,0,'EAST',],[62665156800,62680878000,62665138800,62680860000,-18000,1,'EASST',],[62680878000,62696606400,62680856400,62696584800,-21600,0,'EAST',],[62696606400,62709908400,62696588400,62709890400,-18000,1,'EASST',],[62709908400,62728056000,62709886800,62728034400,-21600,0,'EAST',],[62728056000,62741358000,62728038000,62741340000,-18000,1,'EASST',],[62741358000,62760110400,62741336400,62760088800,-21600,0,'EAST',],[62760110400,62772807600,62760092400,62772789600,-18000,1,'EASST',],[62772807600,62789140800,62772786000,62789119200,-21600,0,'EAST',],[62789140800,62804257200,62789122800,62804239200,-18000,1,'EASST',],[62804257200,62823009600,62804235600,62822988000,-21600,0,'EAST',],[62823009600,62836311600,62822991600,62836293600,-18000,1,'EASST',],[62836311600,62854459200,62836290000,62854437600,-21600,0,'EAST',],[62854459200,62867761200,62854441200,62867743200,-18000,1,'EASST',],[62867761200,62885908800,62867739600,62885887200,-21600,0,'EAST',],[62885908800,62899210800,62885890800,62899192800,-18000,1,'EASST',],[62899210800,62917358400,62899189200,62917336800,-21600,0,'EAST',],[62917358400,62930660400,62917340400,62930642400,-18000,1,'EASST',],[62930660400,62949412800,62930638800,62949391200,-21600,0,'EAST',],[62949412800,62962110000,62949394800,62962092000,-18000,1,'EASST',],[62962110000,62980862400,62962088400,62980840800,-21600,0,'EAST',],[62980862400,62995374000,62980844400,62995356000,-18000,1,'EASST',],[62995374000,63012312000,62995352400,63012290400,-21600,0,'EAST',],[63012312000,63025614000,63012294000,63025596000,-18000,1,'EASST',],[63025614000,63042552000,63025592400,63042530400,-21600,0,'EAST',],[63042552000,63058878000,63042534000,63058860000,-18000,1,'EASST',],[63058878000,63075211200,63058856400,63075189600,-21600,0,'EAST',],[63075211200,63088513200,63075193200,63088495200,-18000,1,'EASST',],[63088513200,63107265600,63088491600,63107244000,-21600,0,'EAST',],[63107265600,63119962800,63107247600,63119944800,-18000,1,'EASST',],[63119962800,63138715200,63119941200,63138693600,-21600,0,'EAST',],[63138715200,63151412400,63138697200,63151394400,-18000,1,'EASST',],[63151412400,63170164800,63151390800,63170143200,-21600,0,'EAST',],[63170164800,63182862000,63170146800,63182844000,-18000,1,'EASST',],[63182862000,63201614400,63182840400,63201592800,-21600,0,'EAST',],[63201614400,63214916400,63201596400,63214898400,-18000,1,'EASST',],[63214916400,63233064000,63214894800,63233042400,-21600,0,'EAST',],[63233064000,63246366000,63233046000,63246348000,-18000,1,'EASST',],[63246366000,63264513600,63246344400,63264492000,-21600,0,'EAST',],[63264513600,63277815600,63264495600,63277797600,-18000,1,'EASST',],[63277815600,63296568000,63277794000,63296546400,-21600,0,'EAST',],[63296568000,63309265200,63296550000,63309247200,-18000,1,'EASST',],[63309265200,63328017600,63309243600,63327996000,-21600,0,'EAST',],[63328017600,63342529200,63327999600,63342511200,-18000,1,'EASST',],[63342529200,63359467200,63342507600,63359445600,-21600,0,'EAST',],[63359467200,63372769200,63359449200,63372751200,-18000,1,'EASST',],[63372769200,63390916800,63372747600,63390895200,-21600,0,'EAST',],[63390916800,63406033200,63390898800,63406015200,-18000,1,'EASST',],[63406033200,63422366400,63406011600,63422344800,-21600,0,'EAST',],[63422366400,63440506800,63422348400,63440488800,-18000,1,'EASST',],[63440506800,63449582400,63440485200,63449560800,-21600,0,'EAST',],[63449582400,63471351600,63449564400,63471333600,-18000,1,'EASST',],[63471351600,63482241600,63471330000,63482220000,-21600,0,'EAST',],[63482241600,63502801200,63482223600,63502783200,-18000,1,'EASST',],[63502801200,63514296000,63502779600,63514274400,-21600,0,'EAST',],[63514296000,63534250800,63514278000,63534232800,-18000,1,'EASST',],[63534250800,63545745600,63534229200,63545724000,-21600,0,'EAST',],[63545745600,63565700400,63545727600,63565682400,-18000,1,'EASST',],[63565700400,DateTime::TimeZone::INFINITY,63565682400,DateTime::TimeZone::INFINITY,-18000,0,'EAST',],];sub olson_version {'2016a'}sub has_dst_changes {47}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_EASTER

$fatpacked{"DateTime/TimeZone/Pacific/Efate.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_EFATE';
  package DateTime::TimeZone::Pacific::Efate;$DateTime::TimeZone::Pacific::Efate::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Efate::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60306295604,DateTime::TimeZone::NEG_INFINITY,60306336000,40396,0,'LMT',],[60306295604,62568939600,60306335204,62568979200,39600,0,'VUT',],[62568939600,62584660800,62568982800,62584704000,43200,1,'VUST',],[62584660800,62602981200,62584700400,62603020800,39600,0,'VUT',],[62602981200,62616110400,62603024400,62616153600,43200,1,'VUST',],[62616110400,62632443600,62616150000,62632483200,39600,0,'VUT',],[62632443600,62647560000,62632486800,62647603200,43200,1,'VUST',],[62647560000,62663893200,62647599600,62663932800,39600,0,'VUT',],[62663893200,62679614400,62663936400,62679657600,43200,1,'VUST',],[62679614400,62695342800,62679654000,62695382400,39600,0,'VUT',],[62695342800,62711064000,62695386000,62711107200,43200,1,'VUST',],[62711064000,62726792400,62711103600,62726832000,39600,0,'VUT',],[62726792400,62742513600,62726835600,62742556800,43200,1,'VUST',],[62742513600,62758242000,62742553200,62758281600,39600,0,'VUT',],[62758242000,62773963200,62758285200,62774006400,43200,1,'VUST',],[62773963200,62789691600,62774002800,62789731200,39600,0,'VUT',],[62789691600,62805412800,62789734800,62805456000,43200,1,'VUST',],[62805412800,62821746000,62805452400,62821785600,39600,0,'VUT',],[62821746000,62832024000,62821789200,62832067200,43200,1,'VUST',],[62832024000,62855614800,62832063600,62855654400,39600,0,'VUT',],[62855614800,62863473600,62855658000,62863516800,43200,1,'VUST',],[62863473600,DateTime::TimeZone::INFINITY,62863513200,DateTime::TimeZone::INFINITY,39600,0,'VUT',],];sub olson_version {'2016a'}sub has_dst_changes {10}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_EFATE

$fatpacked{"DateTime/TimeZone/Pacific/Enderbury.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_ENDERBURY';
  package DateTime::TimeZone::Pacific::Enderbury;$DateTime::TimeZone::Pacific::Enderbury::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Enderbury::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59958271460,DateTime::TimeZone::NEG_INFINITY,59958230400,-41060,0,'LMT',],[59958271460,62443310400,59958228260,62443267200,-43200,0,'PHOT',],[62443310400,62924641200,62443270800,62924601600,-39600,0,'PHOT',],[62924641200,DateTime::TimeZone::INFINITY,62924688000,DateTime::TimeZone::INFINITY,46800,0,'PHOT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_ENDERBURY

$fatpacked{"DateTime/TimeZone/Pacific/Fakaofo.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_FAKAOFO';
  package DateTime::TimeZone::Pacific::Fakaofo;$DateTime::TimeZone::Pacific::Fakaofo::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Fakaofo::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59958271496,DateTime::TimeZone::NEG_INFINITY,59958230400,-41096,0,'LMT',],[59958271496,63460926000,59958231896,63460886400,-39600,0,'TKT',],[63460926000,DateTime::TimeZone::INFINITY,63460972800,DateTime::TimeZone::INFINITY,46800,0,'TKT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_FAKAOFO

$fatpacked{"DateTime/TimeZone/Pacific/Fiji.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_FIJI';
  package DateTime::TimeZone::Pacific::Fiji;$DateTime::TimeZone::Pacific::Fiji::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Fiji::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60425697856,DateTime::TimeZone::NEG_INFINITY,60425740800,42944,0,'LMT',],[60425697856,63045525600,60425741056,63045568800,43200,0,'FJT',],[63045525600,63055807200,63045572400,63055854000,46800,1,'FJST',],[63055807200,63077580000,63055850400,63077623200,43200,0,'FJT',],[63077580000,63087256800,63077626800,63087303600,46800,1,'FJST',],[63087256800,63395100000,63087300000,63395143200,43200,0,'FJT',],[63395100000,63405381600,63395146800,63405428400,46800,1,'FJST',],[63405381600,63423525600,63405424800,63423568800,43200,0,'FJT',],[63423525600,63435016800,63423572400,63435063600,46800,1,'FJST',],[63435016800,63454975200,63435060000,63455018400,43200,0,'FJT',],[63454975200,63462837600,63455022000,63462884400,46800,1,'FJST',],[63462837600,63486424800,63462880800,63486468000,43200,0,'FJT',],[63486424800,63494287200,63486471600,63494334000,46800,1,'FJST',],[63494287200,63518479200,63494330400,63518522400,43200,0,'FJT',],[63518479200,63525733200,63518526000,63525780000,46800,1,'FJST',],[63525733200,63550533600,63525776400,63550576800,43200,0,'FJT',],[63550533600,63557186400,63550580400,63557233200,46800,1,'FJST',],[63557186400,63581983200,63557229600,63582026400,43200,0,'FJT',],[63581983200,63588636000,63582030000,63588682800,46800,1,'FJST',],[63588636000,63614037600,63588679200,63614080800,43200,0,'FJT',],[63614037600,63620085600,63614084400,63620132400,46800,1,'FJST',],[63620085600,63645487200,63620128800,63645530400,43200,0,'FJT',],[63645487200,63652140000,63645534000,63652186800,46800,1,'FJST',],[63652140000,63676936800,63652183200,63676980000,43200,0,'FJT',],[63676936800,63683589600,63676983600,63683636400,46800,1,'FJST',],[63683589600,63708386400,63683632800,63708429600,43200,0,'FJT',],[63708386400,63715039200,63708433200,63715086000,46800,1,'FJST',],[63715039200,63739836000,63715082400,63739879200,43200,0,'FJT',],[63739836000,63746488800,63739882800,63746535600,46800,1,'FJST',],[63746488800,63771890400,63746532000,63771933600,43200,0,'FJT',],[63771890400,63777938400,63771937200,63777985200,46800,1,'FJST',],[63777938400,63803340000,63777981600,63803383200,43200,0,'FJT',],[63803340000,63809388000,63803386800,63809434800,46800,1,'FJST',],[63809388000,63834789600,63809431200,63834832800,43200,0,'FJT',],[63834789600,63841442400,63834836400,63841489200,46800,1,'FJST',],[63841442400,63866239200,63841485600,63866282400,43200,0,'FJT',],[63866239200,63872892000,63866286000,63872938800,46800,1,'FJST',],[63872892000,63897688800,63872935200,63897732000,43200,0,'FJT',],[63897688800,63904341600,63897735600,63904388400,46800,1,'FJST',],[63904341600,63929138400,63904384800,63929181600,43200,0,'FJT',],[63929138400,63935791200,63929185200,63935838000,46800,1,'FJST',],[63935791200,63961192800,63935834400,63961236000,43200,0,'FJT',],];sub olson_version {'2016a'}sub has_dst_changes {21}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {43200}my$last_observance=bless({'format'=>'FJ%sT','gmtoff'=>'12:00','local_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>699372,'local_rd_secs'=>256,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>699372,'utc_rd_secs'=>256,'utc_year'=>1916 },'DateTime'),'offset_from_std'=>0,'offset_from_utc'=>43200,'until'=>[],'utc_start_datetime'=>bless({'formatter'=>undef,'local_rd_days'=>699371,'local_rd_secs'=>43456,'offset_modifier'=>0,'rd_nanosecs'=>0,'tz'=>bless({'name'=>'floating','offset'=>0 },'DateTime::TimeZone::Floating'),'utc_rd_days'=>699371,'utc_rd_secs'=>43456,'utc_year'=>1916 },'DateTime')},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'2:00','from'=>'2014','in'=>'Nov','letter'=>'S','name'=>'Fiji','offset_from_std'=>3600,'on'=>'Sun>=1','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'3:00','from'=>'2015','in'=>'Jan','letter'=>'','name'=>'Fiji','offset_from_std'=>0,'on'=>'Sun>=15','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_PACIFIC_FIJI

$fatpacked{"DateTime/TimeZone/Pacific/Funafuti.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_FUNAFUTI';
  package DateTime::TimeZone::Pacific::Funafuti;$DateTime::TimeZone::Pacific::Funafuti::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Funafuti::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59958187388,DateTime::TimeZone::NEG_INFINITY,59958230400,43012,0,'LMT',],[59958187388,DateTime::TimeZone::INFINITY,59958230588,DateTime::TimeZone::INFINITY,43200,0,'TVT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_FUNAFUTI

$fatpacked{"DateTime/TimeZone/Pacific/Galapagos.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_GALAPAGOS';
  package DateTime::TimeZone::Pacific::Galapagos;$DateTime::TimeZone::Pacific::Galapagos::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Galapagos::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60904936704,DateTime::TimeZone::NEG_INFINITY,60904915200,-21504,0,'LMT',],[60904936704,62640622800,60904918704,62640604800,-18000,0,'ECT',],[62640622800,DateTime::TimeZone::INFINITY,62640601200,DateTime::TimeZone::INFINITY,-21600,0,'GALT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_GALAPAGOS

$fatpacked{"DateTime/TimeZone/Pacific/Gambier.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_GAMBIER';
  package DateTime::TimeZone::Pacific::Gambier;$DateTime::TimeZone::Pacific::Gambier::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Gambier::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60329005188,DateTime::TimeZone::NEG_INFINITY,60328972800,-32388,0,'LMT',],[60329005188,DateTime::TimeZone::INFINITY,60328972788,DateTime::TimeZone::INFINITY,-32400,0,'GAMT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_GAMBIER

$fatpacked{"DateTime/TimeZone/Pacific/Guadalcanal.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_GUADALCANAL';
  package DateTime::TimeZone::Pacific::Guadalcanal;$DateTime::TimeZone::Pacific::Guadalcanal::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Guadalcanal::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60328934412,DateTime::TimeZone::NEG_INFINITY,60328972800,38388,0,'LMT',],[60328934412,DateTime::TimeZone::INFINITY,60328974012,DateTime::TimeZone::INFINITY,39600,0,'SBT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_GUADALCANAL

$fatpacked{"DateTime/TimeZone/Pacific/Guam.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_GUAM';
  package DateTime::TimeZone::Pacific::Guam;$DateTime::TimeZone::Pacific::Guam::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Guam::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,58191056460,DateTime::TimeZone::NEG_INFINITY,58191004800,-51660,0,'LMT',],[58191056460,59958195660,58191091200,59958230400,34740,0,'LMT',],[59958195660,63113176800,59958231660,63113212800,36000,0,'GST',],[63113176800,DateTime::TimeZone::INFINITY,63113212800,DateTime::TimeZone::INFINITY,36000,0,'ChST',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_GUAM

$fatpacked{"DateTime/TimeZone/Pacific/Honolulu.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_HONOLULU';
  package DateTime::TimeZone::Pacific::Honolulu;$DateTime::TimeZone::Pacific::Honolulu::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Honolulu::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59801581886,DateTime::TimeZone::NEG_INFINITY,59801544000,-37886,0,'LMT',],[59801581886,60978400200,59801544086,60978362400,-37800,0,'HST',],[60978400200,60980247000,60978366000,60980212800,-34200,1,'HDT',],[60980247000,61255485000,60980209200,61255447200,-37800,0,'HST',],[61255485000,61370307000,61255450800,61370272800,-34200,1,'HDT',],[61370307000,61423533000,61370269200,61423495200,-37800,0,'HST',],[61423533000,DateTime::TimeZone::INFINITY,61423497000,DateTime::TimeZone::INFINITY,-36000,0,'HST',],];sub olson_version {'2016a'}sub has_dst_changes {2}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_HONOLULU

$fatpacked{"DateTime/TimeZone/Pacific/Kiritimati.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_KIRITIMATI';
  package DateTime::TimeZone::Pacific::Kiritimati;$DateTime::TimeZone::Pacific::Kiritimati::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Kiritimati::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59958268160,DateTime::TimeZone::NEG_INFINITY,59958230400,-37760,0,'LMT',],[59958268160,62443305600,59958229760,62443267200,-38400,0,'LINT',],[62443305600,62924637600,62443269600,62924601600,-36000,0,'LINT',],[62924637600,DateTime::TimeZone::INFINITY,62924688000,DateTime::TimeZone::INFINITY,50400,0,'LINT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_KIRITIMATI

$fatpacked{"DateTime/TimeZone/Pacific/Kosrae.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_KOSRAE';
  package DateTime::TimeZone::Pacific::Kosrae;$DateTime::TimeZone::Pacific::Kosrae::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Kosrae::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59958191284,DateTime::TimeZone::NEG_INFINITY,59958230400,39116,0,'LMT',],[59958191284,62127694800,59958230884,62127734400,39600,0,'KOST',],[62127694800,63050788800,62127738000,63050832000,43200,0,'KOST',],[63050788800,DateTime::TimeZone::INFINITY,63050828400,DateTime::TimeZone::INFINITY,39600,0,'KOST',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_KOSRAE

$fatpacked{"DateTime/TimeZone/Pacific/Kwajalein.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_KWAJALEIN';
  package DateTime::TimeZone::Pacific::Kwajalein;$DateTime::TimeZone::Pacific::Kwajalein::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Kwajalein::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59958190240,DateTime::TimeZone::NEG_INFINITY,59958230400,40160,0,'LMT',],[59958190240,62127694800,59958229840,62127734400,39600,0,'MHT',],[62127694800,62881531200,62127651600,62881488000,-43200,0,'KWAT',],[62881531200,DateTime::TimeZone::INFINITY,62881574400,DateTime::TimeZone::INFINITY,43200,0,'MHT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_KWAJALEIN

$fatpacked{"DateTime/TimeZone/Pacific/Majuro.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_MAJURO';
  package DateTime::TimeZone::Pacific::Majuro;$DateTime::TimeZone::Pacific::Majuro::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Majuro::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59958189312,DateTime::TimeZone::NEG_INFINITY,59958230400,41088,0,'LMT',],[59958189312,62127694800,59958228912,62127734400,39600,0,'MHT',],[62127694800,DateTime::TimeZone::INFINITY,62127738000,DateTime::TimeZone::INFINITY,43200,0,'MHT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_MAJURO

$fatpacked{"DateTime/TimeZone/Pacific/Marquesas.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_MARQUESAS';
  package DateTime::TimeZone::Pacific::Marquesas;$DateTime::TimeZone::Pacific::Marquesas::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Marquesas::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60329006280,DateTime::TimeZone::NEG_INFINITY,60328972800,-33480,0,'LMT',],[60329006280,DateTime::TimeZone::INFINITY,60328972080,DateTime::TimeZone::INFINITY,-34200,0,'MART',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_MARQUESAS

$fatpacked{"DateTime/TimeZone/Pacific/Nauru.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_NAURU';
  package DateTime::TimeZone::Pacific::Nauru;$DateTime::TimeZone::Pacific::Nauru::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Nauru::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60590551940,DateTime::TimeZone::NEG_INFINITY,60590592000,40060,0,'LMT',],[60590551940,61258336200,60590593340,61258377600,41400,0,'NRT',],[61258336200,61334722800,61258368600,61334755200,32400,0,'JST',],[61334722800,62430006600,61334764200,62430048000,41400,0,'NRT',],[62430006600,DateTime::TimeZone::INFINITY,62430049800,DateTime::TimeZone::INFINITY,43200,0,'NRT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_NAURU

$fatpacked{"DateTime/TimeZone/Pacific/Niue.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_NIUE';
  package DateTime::TimeZone::Pacific::Niue;$DateTime::TimeZone::Pacific::Niue::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Niue::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59958271180,DateTime::TimeZone::NEG_INFINITY,59958230400,-40780,0,'LMT',],[59958271180,61536108000,59958230380,61536067200,-40800,0,'NUT',],[61536108000,62411772600,61536066600,62411731200,-41400,0,'NUT',],[62411772600,DateTime::TimeZone::INFINITY,62411733000,DateTime::TimeZone::INFINITY,-39600,0,'NUT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_NIUE

$fatpacked{"DateTime/TimeZone/Pacific/Norfolk.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_NORFOLK';
  package DateTime::TimeZone::Pacific::Norfolk;$DateTime::TimeZone::Pacific::Norfolk::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Norfolk::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59958190088,DateTime::TimeZone::NEG_INFINITY,59958230400,40312,0,'LMT',],[59958190088,61536026880,59958230408,61536067200,40320,0,'NMT',],[61536026880,62287713000,61536068280,62287754400,41400,0,'NFT',],[62287713000,62298595800,62287758000,62298640800,45000,1,'NFST',],[62298595800,63579565800,62298637200,63579607200,41400,0,'NFT',],[63579565800,DateTime::TimeZone::INFINITY,63579605400,DateTime::TimeZone::INFINITY,39600,0,'NFT',],];sub olson_version {'2016a'}sub has_dst_changes {1}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_NORFOLK

$fatpacked{"DateTime/TimeZone/Pacific/Noumea.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_NOUMEA';
  package DateTime::TimeZone::Pacific::Noumea;$DateTime::TimeZone::Pacific::Noumea::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Noumea::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60306296052,DateTime::TimeZone::NEG_INFINITY,60306336000,39948,0,'LMT',],[60306296052,62385685200,60306335652,62385724800,39600,0,'NCT',],[62385685200,62393025600,62385728400,62393068800,43200,1,'NCST',],[62393025600,62417134800,62393065200,62417174400,39600,0,'NCT',],[62417134800,62424561600,62417178000,62424604800,43200,1,'NCST',],[62424561600,62985049200,62424601200,62985088800,39600,0,'NCT',],[62985049200,62992911600,62985092400,62992954800,43200,1,'NCST',],[62992911600,DateTime::TimeZone::INFINITY,62992951200,DateTime::TimeZone::INFINITY,39600,0,'NCT',],];sub olson_version {'2016a'}sub has_dst_changes {3}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_NOUMEA

$fatpacked{"DateTime/TimeZone/Pacific/Pago_Pago.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_PAGO_PAGO';
  package DateTime::TimeZone::Pacific::Pago_Pago;$DateTime::TimeZone::Pacific::Pago_Pago::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Pago_Pago::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59279944968,DateTime::TimeZone::NEG_INFINITY,59279990400,45432,0,'LMT',],[59279944968,60273804168,59279904000,60273763200,-40968,0,'LMT',],[60273804168,62048804400,60273764568,62048764800,-39600,0,'NST',],[62048804400,62574721200,62048764800,62574681600,-39600,0,'BST',],[62574721200,DateTime::TimeZone::INFINITY,62574681600,DateTime::TimeZone::INFINITY,-39600,0,'SST',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_PAGO_PAGO

$fatpacked{"DateTime/TimeZone/Pacific/Palau.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_PALAU';
  package DateTime::TimeZone::Pacific::Palau;$DateTime::TimeZone::Pacific::Palau::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Palau::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59958198124,DateTime::TimeZone::NEG_INFINITY,59958230400,32276,0,'LMT',],[59958198124,DateTime::TimeZone::INFINITY,59958230524,DateTime::TimeZone::INFINITY,32400,0,'PWT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_PALAU

$fatpacked{"DateTime/TimeZone/Pacific/Pitcairn.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_PITCAIRN';
  package DateTime::TimeZone::Pacific::Pitcairn;$DateTime::TimeZone::Pacific::Pitcairn::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Pitcairn::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59958261620,DateTime::TimeZone::NEG_INFINITY,59958230400,-31220,0,'LMT',],[59958261620,63029349000,59958231020,63029318400,-30600,0,'PNT',],[63029349000,DateTime::TimeZone::INFINITY,63029320200,DateTime::TimeZone::INFINITY,-28800,0,'PST',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_PITCAIRN

$fatpacked{"DateTime/TimeZone/Pacific/Pohnpei.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_POHNPEI';
  package DateTime::TimeZone::Pacific::Pohnpei;$DateTime::TimeZone::Pacific::Pohnpei::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Pohnpei::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59958192428,DateTime::TimeZone::NEG_INFINITY,59958230400,37972,0,'LMT',],[59958192428,DateTime::TimeZone::INFINITY,59958232028,DateTime::TimeZone::INFINITY,39600,0,'PONT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_POHNPEI

$fatpacked{"DateTime/TimeZone/Pacific/Port_Moresby.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_PORT_MORESBY';
  package DateTime::TimeZone::Pacific::Port_Moresby;$DateTime::TimeZone::Pacific::Port_Moresby::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Port_Moresby::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59295507080,DateTime::TimeZone::NEG_INFINITY,59295542400,35320,0,'LMT',],[59295507080,59768892688,59295542392,59768928000,35312,0,'PMMT',],[59768892688,DateTime::TimeZone::INFINITY,59768928688,DateTime::TimeZone::INFINITY,36000,0,'PGT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_PORT_MORESBY

$fatpacked{"DateTime/TimeZone/Pacific/Rarotonga.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_RAROTONGA';
  package DateTime::TimeZone::Pacific::Rarotonga;$DateTime::TimeZone::Pacific::Rarotonga::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Rarotonga::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59958268744,DateTime::TimeZone::NEG_INFINITY,59958230400,-38344,0,'LMT',],[59958268744,62415397800,59958230944,62415360000,-37800,0,'CKT',],[62415397800,62425071000,62415363600,62425036800,-34200,1,'CKHST',],[62425071000,62445636000,62425035000,62445600000,-36000,0,'CKT',],[62445636000,62456520600,62445601800,62456486400,-34200,1,'CKHST',],[62456520600,62477085600,62456484600,62477049600,-36000,0,'CKT',],[62477085600,62487970200,62477051400,62487936000,-34200,1,'CKHST',],[62487970200,62508535200,62487934200,62508499200,-36000,0,'CKT',],[62508535200,62520024600,62508501000,62519990400,-34200,1,'CKHST',],[62520024600,62540589600,62519988600,62540553600,-36000,0,'CKT',],[62540589600,62551474200,62540555400,62551440000,-34200,1,'CKHST',],[62551474200,62572039200,62551438200,62572003200,-36000,0,'CKT',],[62572039200,62582923800,62572005000,62582889600,-34200,1,'CKHST',],[62582923800,62603488800,62582887800,62603452800,-36000,0,'CKT',],[62603488800,62614373400,62603454600,62614339200,-34200,1,'CKHST',],[62614373400,62634938400,62614337400,62634902400,-36000,0,'CKT',],[62634938400,62645823000,62634904200,62645788800,-34200,1,'CKHST',],[62645823000,62666388000,62645787000,62666352000,-36000,0,'CKT',],[62666388000,62677272600,62666353800,62677238400,-34200,1,'CKHST',],[62677272600,62697837600,62677236600,62697801600,-36000,0,'CKT',],[62697837600,62709327000,62697803400,62709292800,-34200,1,'CKHST',],[62709327000,62729892000,62709291000,62729856000,-36000,0,'CKT',],[62729892000,62740776600,62729857800,62740742400,-34200,1,'CKHST',],[62740776600,62761341600,62740740600,62761305600,-36000,0,'CKT',],[62761341600,62772226200,62761307400,62772192000,-34200,1,'CKHST',],[62772226200,62792791200,62772190200,62792755200,-36000,0,'CKT',],[62792791200,62803675800,62792757000,62803641600,-34200,1,'CKHST',],[62803675800,DateTime::TimeZone::INFINITY,62803639800,DateTime::TimeZone::INFINITY,-36000,0,'CKT',],];sub olson_version {'2016a'}sub has_dst_changes {13}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_RAROTONGA

$fatpacked{"DateTime/TimeZone/Pacific/Tahiti.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_TAHITI';
  package DateTime::TimeZone::Pacific::Tahiti;$DateTime::TimeZone::Pacific::Tahiti::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Tahiti::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,60329008696,DateTime::TimeZone::NEG_INFINITY,60328972800,-35896,0,'LMT',],[60329008696,DateTime::TimeZone::INFINITY,60328972696,DateTime::TimeZone::INFINITY,-36000,0,'TAHT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_TAHITI

$fatpacked{"DateTime/TimeZone/Pacific/Tarawa.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_TARAWA';
  package DateTime::TimeZone::Pacific::Tarawa;$DateTime::TimeZone::Pacific::Tarawa::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Tarawa::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59958188876,DateTime::TimeZone::NEG_INFINITY,59958230400,41524,0,'LMT',],[59958188876,DateTime::TimeZone::INFINITY,59958232076,DateTime::TimeZone::INFINITY,43200,0,'GILT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_TARAWA

$fatpacked{"DateTime/TimeZone/Pacific/Tongatapu.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_TONGATAPU';
  package DateTime::TimeZone::Pacific::Tongatapu;$DateTime::TimeZone::Pacific::Tongatapu::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Tongatapu::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59958186040,DateTime::TimeZone::NEG_INFINITY,59958230400,44360,0,'LMT',],[59958186040,61220490000,59958230440,61220534400,44400,0,'TOT',],[61220490000,63050785200,61220536800,63050832000,46800,0,'TOT',],[63050785200,63074898000,63050832000,63074944800,46800,0,'TOT',],[63074898000,63089067600,63074948400,63089118000,50400,1,'TOST',],[63089067600,63109026000,63089114400,63109072800,46800,0,'TOT',],[63109026000,63116280000,63109076400,63116330400,50400,1,'TOST',],[63116280000,63140475600,63116326800,63140522400,46800,0,'TOT',],[63140475600,63147729600,63140526000,63147780000,50400,1,'TOST',],[63147729600,DateTime::TimeZone::INFINITY,63147776400,DateTime::TimeZone::INFINITY,46800,0,'TOT',],];sub olson_version {'2016a'}sub has_dst_changes {3}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_TONGATAPU

$fatpacked{"DateTime/TimeZone/Pacific/Wake.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_WAKE';
  package DateTime::TimeZone::Pacific::Wake;$DateTime::TimeZone::Pacific::Wake::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Wake::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59958190412,DateTime::TimeZone::NEG_INFINITY,59958230400,39988,0,'LMT',],[59958190412,DateTime::TimeZone::INFINITY,59958233612,DateTime::TimeZone::INFINITY,43200,0,'WAKT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_WAKE

$fatpacked{"DateTime/TimeZone/Pacific/Wallis.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_PACIFIC_WALLIS';
  package DateTime::TimeZone::Pacific::Wallis;$DateTime::TimeZone::Pacific::Wallis::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::Pacific::Wallis::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,59958186280,DateTime::TimeZone::NEG_INFINITY,59958230400,44120,0,'LMT',],[59958186280,DateTime::TimeZone::INFINITY,59958229480,DateTime::TimeZone::INFINITY,43200,0,'WFT',],];sub olson_version {'2016a'}sub has_dst_changes {0}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}1;
DATETIME_TIMEZONE_PACIFIC_WALLIS

$fatpacked{"DateTime/TimeZone/UTC.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_UTC';
  package DateTime::TimeZone::UTC;$DateTime::TimeZone::UTC::VERSION='1.95';use strict;use warnings;use parent 'Class::Singleton','DateTime::TimeZone';sub new {return shift->instance}sub _new_instance {my$class=shift;return bless {name=>'UTC' },$class}sub is_dst_for_datetime {0}sub offset_for_datetime {0}sub offset_for_local_datetime {0}sub short_name_for_datetime {'UTC'}sub category {undef}sub is_utc {1}1;
DATETIME_TIMEZONE_UTC

$fatpacked{"DateTime/TimeZone/WET.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATETIME_TIMEZONE_WET';
  package DateTime::TimeZone::WET;$DateTime::TimeZone::WET::VERSION='1.95';use strict;use Class::Singleton 1.03;use DateTime::TimeZone;use DateTime::TimeZone::OlsonDB;@DateTime::TimeZone::WET::ISA=('Class::Singleton','DateTime::TimeZone');my$spans=[[DateTime::TimeZone::NEG_INFINITY,62364560400,DateTime::TimeZone::NEG_INFINITY,62364560400,0,0,'WET',],[62364560400,62379680400,62364564000,62379684000,3600,1,'WEST',],[62379680400,62396010000,62379680400,62396010000,0,0,'WET',],[62396010000,62411734800,62396013600,62411738400,3600,1,'WEST',],[62411734800,62427459600,62411734800,62427459600,0,0,'WET',],[62427459600,62443184400,62427463200,62443188000,3600,1,'WEST',],[62443184400,62459514000,62443184400,62459514000,0,0,'WET',],[62459514000,62474634000,62459517600,62474637600,3600,1,'WEST',],[62474634000,62490358800,62474634000,62490358800,0,0,'WET',],[62490358800,62506083600,62490362400,62506087200,3600,1,'WEST',],[62506083600,62521808400,62506083600,62521808400,0,0,'WET',],[62521808400,62537533200,62521812000,62537536800,3600,1,'WEST',],[62537533200,62553258000,62537533200,62553258000,0,0,'WET',],[62553258000,62568982800,62553261600,62568986400,3600,1,'WEST',],[62568982800,62584707600,62568982800,62584707600,0,0,'WET',],[62584707600,62601037200,62584711200,62601040800,3600,1,'WEST',],[62601037200,62616762000,62601037200,62616762000,0,0,'WET',],[62616762000,62632486800,62616765600,62632490400,3600,1,'WEST',],[62632486800,62648211600,62632486800,62648211600,0,0,'WET',],[62648211600,62663936400,62648215200,62663940000,3600,1,'WEST',],[62663936400,62679661200,62663936400,62679661200,0,0,'WET',],[62679661200,62695386000,62679664800,62695389600,3600,1,'WEST',],[62695386000,62711110800,62695386000,62711110800,0,0,'WET',],[62711110800,62726835600,62711114400,62726839200,3600,1,'WEST',],[62726835600,62742560400,62726835600,62742560400,0,0,'WET',],[62742560400,62758285200,62742564000,62758288800,3600,1,'WEST',],[62758285200,62774010000,62758285200,62774010000,0,0,'WET',],[62774010000,62790339600,62774013600,62790343200,3600,1,'WEST',],[62790339600,62806064400,62790339600,62806064400,0,0,'WET',],[62806064400,62821789200,62806068000,62821792800,3600,1,'WEST',],[62821789200,62837514000,62821789200,62837514000,0,0,'WET',],[62837514000,62853238800,62837517600,62853242400,3600,1,'WEST',],[62853238800,62868963600,62853238800,62868963600,0,0,'WET',],[62868963600,62884688400,62868967200,62884692000,3600,1,'WEST',],[62884688400,62900413200,62884688400,62900413200,0,0,'WET',],[62900413200,62916138000,62900416800,62916141600,3600,1,'WEST',],[62916138000,62931862800,62916138000,62931862800,0,0,'WET',],[62931862800,62947587600,62931866400,62947591200,3600,1,'WEST',],[62947587600,62963917200,62947587600,62963917200,0,0,'WET',],[62963917200,62982061200,62963920800,62982064800,3600,1,'WEST',],[62982061200,62995366800,62982061200,62995366800,0,0,'WET',],[62995366800,63013510800,62995370400,63013514400,3600,1,'WEST',],[63013510800,63026816400,63013510800,63026816400,0,0,'WET',],[63026816400,63044960400,63026820000,63044964000,3600,1,'WEST',],[63044960400,63058266000,63044960400,63058266000,0,0,'WET',],[63058266000,63077014800,63058269600,63077018400,3600,1,'WEST',],[63077014800,63089715600,63077014800,63089715600,0,0,'WET',],[63089715600,63108464400,63089719200,63108468000,3600,1,'WEST',],[63108464400,63121165200,63108464400,63121165200,0,0,'WET',],[63121165200,63139914000,63121168800,63139917600,3600,1,'WEST',],[63139914000,63153219600,63139914000,63153219600,0,0,'WET',],[63153219600,63171363600,63153223200,63171367200,3600,1,'WEST',],[63171363600,63184669200,63171363600,63184669200,0,0,'WET',],[63184669200,63202813200,63184672800,63202816800,3600,1,'WEST',],[63202813200,63216118800,63202813200,63216118800,0,0,'WET',],[63216118800,63234867600,63216122400,63234871200,3600,1,'WEST',],[63234867600,63247568400,63234867600,63247568400,0,0,'WET',],[63247568400,63266317200,63247572000,63266320800,3600,1,'WEST',],[63266317200,63279018000,63266317200,63279018000,0,0,'WET',],[63279018000,63297766800,63279021600,63297770400,3600,1,'WEST',],[63297766800,63310467600,63297766800,63310467600,0,0,'WET',],[63310467600,63329216400,63310471200,63329220000,3600,1,'WEST',],[63329216400,63342522000,63329216400,63342522000,0,0,'WET',],[63342522000,63360666000,63342525600,63360669600,3600,1,'WEST',],[63360666000,63373971600,63360666000,63373971600,0,0,'WET',],[63373971600,63392115600,63373975200,63392119200,3600,1,'WEST',],[63392115600,63405421200,63392115600,63405421200,0,0,'WET',],[63405421200,63424170000,63405424800,63424173600,3600,1,'WEST',],[63424170000,63436870800,63424170000,63436870800,0,0,'WET',],[63436870800,63455619600,63436874400,63455623200,3600,1,'WEST',],[63455619600,63468320400,63455619600,63468320400,0,0,'WET',],[63468320400,63487069200,63468324000,63487072800,3600,1,'WEST',],[63487069200,63500374800,63487069200,63500374800,0,0,'WET',],[63500374800,63518518800,63500378400,63518522400,3600,1,'WEST',],[63518518800,63531824400,63518518800,63531824400,0,0,'WET',],[63531824400,63549968400,63531828000,63549972000,3600,1,'WEST',],[63549968400,63563274000,63549968400,63563274000,0,0,'WET',],[63563274000,63581418000,63563277600,63581421600,3600,1,'WEST',],[63581418000,63594723600,63581418000,63594723600,0,0,'WET',],[63594723600,63613472400,63594727200,63613476000,3600,1,'WEST',],[63613472400,63626173200,63613472400,63626173200,0,0,'WET',],[63626173200,63644922000,63626176800,63644925600,3600,1,'WEST',],[63644922000,63657622800,63644922000,63657622800,0,0,'WET',],[63657622800,63676371600,63657626400,63676375200,3600,1,'WEST',],[63676371600,63689677200,63676371600,63689677200,0,0,'WET',],[63689677200,63707821200,63689680800,63707824800,3600,1,'WEST',],[63707821200,63721126800,63707821200,63721126800,0,0,'WET',],[63721126800,63739270800,63721130400,63739274400,3600,1,'WEST',],[63739270800,63752576400,63739270800,63752576400,0,0,'WET',],[63752576400,63771325200,63752580000,63771328800,3600,1,'WEST',],[63771325200,63784026000,63771325200,63784026000,0,0,'WET',],[63784026000,63802774800,63784029600,63802778400,3600,1,'WEST',],[63802774800,63815475600,63802774800,63815475600,0,0,'WET',],[63815475600,63834224400,63815479200,63834228000,3600,1,'WEST',],[63834224400,63847530000,63834224400,63847530000,0,0,'WET',],[63847530000,63865674000,63847533600,63865677600,3600,1,'WEST',],[63865674000,63878979600,63865674000,63878979600,0,0,'WET',],[63878979600,63897123600,63878983200,63897127200,3600,1,'WEST',],[63897123600,63910429200,63897123600,63910429200,0,0,'WET',],[63910429200,63928573200,63910432800,63928576800,3600,1,'WEST',],[63928573200,63941878800,63928573200,63941878800,0,0,'WET',],[63941878800,63960627600,63941882400,63960631200,3600,1,'WEST',],];sub olson_version {'2016a'}sub has_dst_changes {51}sub _max_year {2026}sub _new_instance {return shift->_init(@_,spans=>$spans)}sub _last_offset {0}my$last_observance=bless({'format'=>'WE%sT','gmtoff'=>'0:00','local_start_datetime'=>{},'offset_from_std'=>0,'offset_from_utc'=>0,'until'=>[],'utc_start_datetime'=>{}},'DateTime::TimeZone::OlsonDB::Observance');sub _last_observance {$last_observance}my$rules=[bless({'at'=>'1:00u','from'=>'1981','in'=>'Mar','letter'=>'S','name'=>'EU','offset_from_std'=>3600,'on'=>'lastSun','save'=>'1:00','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule'),bless({'at'=>'1:00u','from'=>'1996','in'=>'Oct','letter'=>'','name'=>'EU','offset_from_std'=>0,'on'=>'lastSun','save'=>'0','to'=>'max','type'=>undef },'DateTime::TimeZone::OlsonDB::Rule')];sub _rules {$rules}1;
DATETIME_TIMEZONE_WET

$fatpacked{"Devel/InnerPackage.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DEVEL_INNERPACKAGE';
  package Devel::InnerPackage;use strict;use Exporter 5.57 'import';use vars qw($VERSION @EXPORT_OK);use if $] > 5.017,'deprecate';$VERSION='0.4';@EXPORT_OK=qw(list_packages);sub list_packages {my$pack=shift;$pack .= "::" unless$pack =~ m!::$!;no strict 'refs';my@packs;my@stuff=grep!/^(main|)::$/,keys %{$pack};for my$cand (grep /::$/,@stuff){$cand =~ s!::$!!;my@children=list_packages($pack.$cand);push@packs,"$pack$cand" unless$cand =~ /^::/ || !__PACKAGE__->_loaded($pack.$cand);push@packs,@children}return grep {$_ !~ /::(::ISA::CACHE|SUPER)/}@packs}sub _loaded {my ($class,$name)=@_;no strict 'refs';return 1 if defined ${"${name}::VERSION"};return 1 if @{"${name}::ISA"};for (keys %{"${name}::"}){next if substr($_,-2,2)eq '::';return 1 if defined &{"${name}::$_"}}my$filename=join('/',split /(?:'|::)/,$name).'.pm';return 1 if defined$INC{$filename};''}1;
DEVEL_INNERPACKAGE

$fatpacked{"Dist/CheckConflicts.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DIST_CHECKCONFLICTS';
  package Dist::CheckConflicts;BEGIN {$Dist::CheckConflicts::AUTHORITY='cpan:DOY'}$Dist::CheckConflicts::VERSION='0.11';use strict;use warnings;use 5.006;use base 'Exporter';our@EXPORT=our@EXPORT_OK=(qw(conflicts check_conflicts calculate_conflicts dist));use Carp;use Module::Runtime 0.009 'module_notional_filename','require_module';my%CONFLICTS;my%HAS_CONFLICTS;my%DISTS;sub import {my$pkg=shift;my$for=caller;my ($conflicts,$alsos,$dist);($conflicts,@_)=_strip_opt('-conflicts'=>@_);($alsos,@_)=_strip_opt('-also'=>@_);($dist,@_)=_strip_opt('-dist'=>@_);my%conflicts=%{$conflicts || {}};for my$also (@{$alsos || []}){eval {require_module($also)}or next;if (!exists$CONFLICTS{$also}){$also .= '::Conflicts';eval {require_module($also)}or next}if (!exists$CONFLICTS{$also}){next}my%also_confs=$also->conflicts;for my$also_conf (keys%also_confs){$conflicts{$also_conf}=$also_confs{$also_conf}if!exists$conflicts{$also_conf}|| $conflicts{$also_conf}lt $also_confs{$also_conf}}}$CONFLICTS{$for}=\%conflicts;$DISTS{$for}=$dist || $for;if (grep {$_ eq ':runtime'}@_){for my$conflict (keys%conflicts){$HAS_CONFLICTS{$conflict}||= [];push @{$HAS_CONFLICTS{$conflict}},$for}for my$conflict (keys%conflicts){if (exists$INC{module_notional_filename($conflict)}){_check_version([$for],$conflict)}}@INC=grep {!(ref($_)eq 'ARRAY' && @$_ > 1 && $_->[1]==\%CONFLICTS)}@INC;unshift@INC,[sub {my ($sub,$file)=@_;(my$mod=$file)=~ s{\.pm$}{};$mod =~ s{/}{::}g;return unless$mod =~ /[\w:]+/;return unless defined$HAS_CONFLICTS{$mod};{local$HAS_CONFLICTS{$mod};require$file}_check_version($HAS_CONFLICTS{$mod},$mod);my$called;return sub {return 0 if$called;$_="1;";$called=1;return 1}},\%CONFLICTS,]}$pkg->export_to_level(1,@_)}sub _strip_opt {my ($opt,@args)=@_;my$val;for my$idx (0 .. $#args - 1){if (defined$args[$idx]&& $args[$idx]eq $opt){$val=(splice@args,$idx,2)[1];last}}return ($val,@args)}sub _check_version {my ($fors,$mod)=@_;for my$for (@$fors){my$conflict_ver=$CONFLICTS{$for}{$mod};my$version=do {no strict 'refs';${${$mod .'::'}{VERSION}}};if ($version le $conflict_ver){warn <<EOF;return}}}sub conflicts {my$package=shift;return %{$CONFLICTS{$package }}}sub dist {my$package=shift;return$DISTS{$package }}sub check_conflicts {my$package=shift;my$dist=$package->dist;my@conflicts=$package->calculate_conflicts;return unless@conflicts;my$err="Conflicts detected for $dist:\n";for my$conflict (@conflicts){$err .= "  $conflict->{package} is version " ."$conflict->{installed}, but must be greater than version " ."$conflict->{required}\n"}die$err}sub calculate_conflicts {my$package=shift;my%conflicts=$package->conflicts;my@ret;CONFLICT: for my$conflict (keys%conflicts){my$success=do {local$SIG{__WARN__}=sub {};eval {require_module($conflict)}};my$error=$@;my$file=module_notional_filename($conflict);next if not $success and $error =~ /Can't locate \Q$file\E in \@INC/;warn "Warning: $conflict did not compile" if not $success;my$installed=$success ? $conflict->VERSION : 'unknown';push@ret,{package=>$conflict,installed=>$installed,required=>$conflicts{$conflict},}if not $success or $installed le $conflicts{$conflict}}return sort {$a->{package}cmp $b->{package}}@ret}1;
  Conflict detected for $DISTS{$for}:
    $mod is version $version, but must be greater than version $conflict_ver
  EOF
DIST_CHECKCONFLICTS

$fatpacked{"Exporter/Shiny.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'EXPORTER_SHINY';
  package Exporter::Shiny;use 5.006001;use strict;use warnings;use Exporter::Tiny ();our$AUTHORITY='cpan:TOBYINK';our$VERSION='0.042';sub import {my$me=shift;my$caller=caller;(my$nominal_file=$caller)=~ s(::)(/)g;$INC{"$nominal_file\.pm"}||= __FILE__;if (@_==2 and $_[0]eq -setup){my (undef,$opts)=@_;@_=@{delete($opts->{exports})|| []};if (%$opts){Exporter::Tiny::_croak('Unsupported Sub::Exporter-style options: %s',join(q[, ],sort keys %$opts),)}}ref($_)&& Exporter::Tiny::_croak('Expected sub name, got ref %s',$_)for @_;no strict qw(refs);push @{"$caller\::ISA"},'Exporter::Tiny';push @{"$caller\::EXPORT_OK"},@_}1;
EXPORTER_SHINY

$fatpacked{"Exporter/Tiny.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'EXPORTER_TINY';
  package Exporter::Tiny;use 5.006001;use strict;use warnings;no warnings qw(void once uninitialized numeric redefine);our$AUTHORITY='cpan:TOBYINK';our$VERSION='0.042';our@EXPORT_OK=qw<mkopt mkopt_hash _croak _carp>;sub _croak ($;@) {require Carp;my$fmt=shift;@_=sprintf($fmt,@_);goto \&Carp::croak}sub _carp ($;@) {require Carp;my$fmt=shift;@_=sprintf($fmt,@_);goto \&Carp::carp}my$_process_optlist=sub {my$class=shift;my ($global_opts,$opts,$want,$not_want)=@_;while (@$opts){my$opt=shift @{$opts};my ($name,$value)=@$opt;($name =~ m{\A\!(/.+/[msixpodual]+)\z})? do {my@not=$class->_exporter_expand_regexp($1,$value,$global_opts);++$not_want->{$_->[0]}for@not}: ($name =~ m{\A\!(.+)\z})? (++$not_want->{$1}): ($name =~ m{\A[:-](.+)\z})? push(@$opts,$class->_exporter_expand_tag($1,$value,$global_opts)): ($name =~ m{\A/.+/[msixpodual]+\z})? push(@$opts,$class->_exporter_expand_regexp($name,$value,$global_opts)): push(@$want,$opt)}};sub import {my$class=shift;my$global_opts=+{@_ && ref($_[0])eq q(HASH) ? %{+shift}: ()};$global_opts->{into}=caller unless exists$global_opts->{into};my@want;my%not_want;$global_opts->{not}=\%not_want;my@args=do {no strict qw(refs);@_ ? @_ : @{"$class\::EXPORT"}};my$opts=mkopt(\@args);$class->$_process_optlist($global_opts,$opts,\@want,\%not_want);my$permitted=$class->_exporter_permitted_regexp($global_opts);$class->_exporter_validate_opts($global_opts);for my$wanted (@want){next if$not_want{$wanted->[0]};my%symbols=$class->_exporter_expand_sub(@$wanted,$global_opts,$permitted);$class->_exporter_install_sub($_,$wanted->[1],$global_opts,$symbols{$_})for keys%symbols}}sub unimport {my$class=shift;my$global_opts=+{@_ && ref($_[0])eq q(HASH) ? %{+shift}: ()};$global_opts->{into}=caller unless exists$global_opts->{into};$global_opts->{is_unimport}=1;my@want;my%not_want;$global_opts->{not}=\%not_want;my@args=do {our%TRACKED;@_ ? @_ : keys(%{$TRACKED{$class}{$global_opts->{into}}})};my$opts=mkopt(\@args);$class->$_process_optlist($global_opts,$opts,\@want,\%not_want);my$permitted=$class->_exporter_permitted_regexp($global_opts);$class->_exporter_validate_unimport_opts($global_opts);my$expando=$class->can('_exporter_expand_sub');$expando=undef if$expando==\&_exporter_expand_sub;for my$wanted (@want){next if$not_want{$wanted->[0]};if ($wanted->[1]){_carp("Passing options to unimport '%s' makes no sense",$wanted->[0])unless (ref($wanted->[1])eq 'HASH' and not keys %{$wanted->[1]})}my%symbols=defined($expando)? $class->$expando(@$wanted,$global_opts,$permitted): ($wanted->[0]=>sub {"dummy"});$class->_exporter_uninstall_sub($_,$wanted->[1],$global_opts)for keys%symbols}}sub _exporter_validate_opts {1}sub _exporter_validate_unimport_opts {1}sub _exporter_merge_opts {my$class=shift;my ($tag_opts,$global_opts,@stuff)=@_;$tag_opts={}unless ref($tag_opts)eq q(HASH);_croak('Cannot provide an -as option for tags')if exists$tag_opts->{-as};my$optlist=mkopt(\@stuff);for my$export (@$optlist){next if defined($export->[1])&& ref($export->[1])ne q(HASH);my%sub_opts=(%{$export->[1]or {}},%$tag_opts);$sub_opts{-prefix}=sprintf('%s%s',$tag_opts->{-prefix},$export->[1]{-prefix})if exists($export->[1]{-prefix})&& exists($tag_opts->{-prefix});$sub_opts{-suffix}=sprintf('%s%s',$export->[1]{-suffix},$tag_opts->{-suffix})if exists($export->[1]{-suffix})&& exists($tag_opts->{-suffix});$export->[1]=\%sub_opts}return @$optlist}sub _exporter_expand_tag {no strict qw(refs);my$class=shift;my ($name,$value,$globals)=@_;my$tags=\%{"$class\::EXPORT_TAGS"};return$class->_exporter_merge_opts($value,$globals,$tags->{$name}->($class,@_))if ref($tags->{$name})eq q(CODE);return$class->_exporter_merge_opts($value,$globals,@{$tags->{$name}})if exists$tags->{$name};return$class->_exporter_merge_opts($value,$globals,@{"$class\::EXPORT"},@{"$class\::EXPORT_OK"})if$name eq 'all';return$class->_exporter_merge_opts($value,$globals,@{"$class\::EXPORT"})if$name eq 'default';$globals->{$name}=$value || 1;return}sub _exporter_expand_regexp {no strict qw(refs);our%TRACKED;my$class=shift;my ($name,$value,$globals)=@_;my$compiled=eval("qr$name");my@possible=$globals->{is_unimport}? keys(%{$TRACKED{$class}{$globals->{into}}}): @{"$class\::EXPORT_OK"};$class->_exporter_merge_opts($value,$globals,grep /$compiled/,@possible)}sub _exporter_permitted_regexp {no strict qw(refs);my$class=shift;my$re=join "|",map quotemeta,sort {length($b)<=> length($a)or $a cmp $b}@{"$class\::EXPORT"},@{"$class\::EXPORT_OK"};qr{^(?:$re)$}ms}sub _exporter_expand_sub {my$class=shift;my ($name,$value,$globals,$permitted)=@_;$permitted ||= $class->_exporter_permitted_regexp($globals);no strict qw(refs);if ($name =~ $permitted){my$generator=$class->can("_generate_$name");return$name=>$class->$generator($name,$value,$globals)if$generator;my$sub=$class->can($name);return$name=>$sub if$sub}$class->_exporter_fail(@_)}sub _exporter_fail {my$class=shift;my ($name,$value,$globals)=@_;return if$globals->{is_unimport};_croak("Could not find sub '%s' exported by %s",$name,$class)}sub _exporter_install_sub {my$class=shift;my ($name,$value,$globals,$sym)=@_;my$into=$globals->{into};my$installer=$globals->{installer}|| $globals->{exporter};$name=$value->{-as}|| $name;unless (ref($name)eq q(SCALAR)){my ($prefix)=grep defined,$value->{-prefix},$globals->{prefix},q();my ($suffix)=grep defined,$value->{-suffix},$globals->{suffix},q();$name="$prefix$name$suffix"}return ($$name=$sym)if ref($name)eq q(SCALAR);return ($into->{$name}=$sym)if ref($into)eq q(HASH);no strict qw(refs);if (exists &{"$into\::$name"}and \&{"$into\::$name"}!=$sym){my ($level)=grep defined,$value->{-replace},$globals->{replace},q(0);my$action={carp=>\&_carp,0=>\&_carp,''=>\&_carp,warn=>\&_carp,nonfatal=>\&_carp,croak=>\&_croak,fatal=>\&_croak,die=>\&_croak,}->{$level}|| sub {};$action->($action==\&_croak ? "Refusing to overwrite existing sub '%s::%s' with sub '%s' exported by %s" : "Overwriting existing sub '%s::%s' with sub '%s' exported by %s",$into,$name,$_[0],$class,)}our%TRACKED;$TRACKED{$class}{$into}{$name}=$sym;no warnings qw(prototype);$installer ? $installer->($globals,[$name,$sym]): (*{"$into\::$name"}=$sym)}sub _exporter_uninstall_sub {our%TRACKED;my$class=shift;my ($name,$value,$globals,$sym)=@_;my$into=$globals->{into};ref$into and return;no strict qw(refs);my$our_coderef=$TRACKED{$class}{$into}{$name};my$cur_coderef=exists(&{"$into\::$name"})? \&{"$into\::$name"}: -1;return unless$our_coderef==$cur_coderef;my$stash=\%{"$into\::"};my$old=delete$stash->{$name};my$full_name=join('::',$into,$name);for my$type (qw(SCALAR HASH ARRAY IO)){next unless defined(*{$old}{$type});*$full_name=*{$old}{$type}}delete$TRACKED{$class}{$into}{$name}}sub mkopt {my$in=shift or return [];my@out;$in=[map(($_=>ref($in->{$_})? $in->{$_}: ()),sort keys %$in)]if ref($in)eq q(HASH);for (my$i=0;$i < @$in;$i++){my$k=$in->[$i];my$v;($i==$#$in)? ($v=undef): !defined($in->[$i+1])? (++$i,($v=undef)): !ref($in->[$i+1])? ($v=undef): ($v=$in->[++$i]);push@out,[$k=>$v ]}\@out}sub mkopt_hash {my$in=shift or return;my%out=map +($_->[0]=>$_->[1]),@{mkopt($in)};\%out}1;
EXPORTER_TINY

$fatpacked{"ExtUtils/MakeMaker/CPANfile.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'EXTUTILS_MAKEMAKER_CPANFILE';
  package ExtUtils::MakeMaker::CPANfile;use strict;use warnings;use ExtUtils::MakeMaker ();use File::Spec::Functions qw/catfile rel2abs/;use Module::CPANfile;use version;our$VERSION="0.07";sub import {my$class=shift;my$orig=\&ExtUtils::MakeMaker::WriteMakefile;my$writer=sub {my%params=@_;my ($caller,$file,$line)=caller;(my$root=rel2abs($file))=~ s/Makefile\.PL$//i or return;if (my$file=eval {Module::CPANfile->load(catfile($root,"cpanfile"))}){my$prereqs=$file->prereqs;_merge(\%params,_get($prereqs,'runtime','requires'),'PREREQ_PM',);_merge(\%params,_get($prereqs,'build','requires'),_eumm('6.56')? 'BUILD_REQUIRES' : 'PREREQ_PM',);_merge(\%params,_get($prereqs,'test','requires'),_eumm('6.63_03')? 'TEST_REQUIRES' : _eumm('6.56')? 'BUILD_REQUIRES' : 'PREREQ_PM',);_merge(\%params,_get($prereqs,'configure','requires'),_eumm('6.52')? 'CONFIGURE_REQUIRES' : undef,);_merge(\%params,{'ExtUtils::MakeMaker::CPANfile'=>$VERSION},_eumm('6.52')? 'CONFIGURE_REQUIRES' : undef,);if (!exists$params{META_ADD}{dynamic_config}&& !exists$params{META_MERGE}{dynamic_config}){$params{META_MERGE}{dynamic_config}=0}my$requires_2_0;for my$type (qw/recommends suggests conflicts/){for my$phase (qw/configure build test runtime develop/){my%tmp=%{$params{META_MERGE}{prereqs}{$phase}|| {}};_merge(\%tmp,_get($prereqs,$phase,$type),$type,);if ($tmp{$type}){$params{META_MERGE}{prereqs}{$phase}=\%tmp;$requires_2_0=1}}}if ($requires_2_0){$params{META_MERGE}{"meta-spec"}||= {version=>2}}{last if _eumm('6.66_03');if (my$r=delete$params{TEST_REQUIRES}){_merge(\%params,$r,'BUILD_REQUIRES')}last if _eumm('6.56');if (my$r=delete$params{BUILD_REQUIRES}){_merge(\%params,$r,'PREREQ_PM')}last if _eumm('6.52');delete$params{CONFIGURE_REQUIRES};last if _eumm('6.47_01');delete$params{MIN_PERL_VERSION};last if _eumm('6.45_01');delete$params{META_ADD};delete$params{META_MERGE};last if _eumm('6.30_01');delete$params{LICENSE}}}else {print "cpanfile is not available: $@\n";exit 0}$orig->(%params)};{no warnings 'redefine';*main::WriteMakefile=*ExtUtils::MakeMaker::WriteMakefile=$writer}}sub _eumm {my$version=shift;eval {ExtUtils::MakeMaker->VERSION($version)}? 1 : 0}sub _get {my$prereqs=shift;eval {$prereqs->requirements_for(@_)->as_string_hash}}sub _merge {my ($params,$requires,$key)=@_;return unless$key;for (keys %{$requires || {}}){my$version=_normalize_version($requires->{$_});next unless defined$version;if (not exists$params->{$key}{$_}){$params->{$key}{$_}=$version}else {my$prev=$params->{$key}{$_};if (version->parse($prev)< version->parse($version)){$params->{$key}{$_}=$version}}}}sub _normalize_version {my$version=shift;return unless defined$version;return$version unless$version =~ /\s/;$version =~ s/(?:>=|==)\s*//;$version =~ s/,.+$//;return$version unless$version =~ /\s/;return}1;
EXTUTILS_MAKEMAKER_CPANFILE

$fatpacked{"JSON/PP.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'JSON_PP';
  package JSON::PP;use 5.005;use strict;use base qw(Exporter);use overload ();use Carp ();use B ();$JSON::PP::VERSION='2.27300';@JSON::PP::EXPORT=qw(encode_json decode_json from_json to_json);use constant P_ASCII=>0;use constant P_LATIN1=>1;use constant P_UTF8=>2;use constant P_INDENT=>3;use constant P_CANONICAL=>4;use constant P_SPACE_BEFORE=>5;use constant P_SPACE_AFTER=>6;use constant P_ALLOW_NONREF=>7;use constant P_SHRINK=>8;use constant P_ALLOW_BLESSED=>9;use constant P_CONVERT_BLESSED=>10;use constant P_RELAXED=>11;use constant P_LOOSE=>12;use constant P_ALLOW_BIGNUM=>13;use constant P_ALLOW_BAREKEY=>14;use constant P_ALLOW_SINGLEQUOTE=>15;use constant P_ESCAPE_SLASH=>16;use constant P_AS_NONBLESSED=>17;use constant P_ALLOW_UNKNOWN=>18;use constant OLD_PERL=>$] < 5.008 ? 1 : 0;BEGIN {my@xs_compati_bit_properties=qw(latin1 ascii utf8 indent canonical space_before space_after allow_nonref shrink allow_blessed convert_blessed relaxed allow_unknown);my@pp_bit_properties=qw(allow_singlequote allow_bignum loose allow_barekey escape_slash as_nonblessed);if ($] < 5.008){my$helper=$] >= 5.006 ? 'JSON::PP::Compat5006' : 'JSON::PP::Compat5005';eval qq| require $helper |;if ($@){Carp::croak $@}}for my$name (@xs_compati_bit_properties,@pp_bit_properties){my$flag_name='P_' .uc($name);eval qq/
              sub $name {
                  my \$enable = defined \$_[1] ? \$_[1] : 1;
  
                  if (\$enable) {
                      \$_[0]->{PROPS}->[$flag_name] = 1;
                  }
                  else {
                      \$_[0]->{PROPS}->[$flag_name] = 0;
                  }
  
                  \$_[0];
              }
  
              sub get_$name {
                  \$_[0]->{PROPS}->[$flag_name] ? 1 : '';
              }
          /}}my%encode_allow_method =map {($_=>1)}qw/utf8 pretty allow_nonref latin1 self_encode escape_slash allow_blessed convert_blessed indent indent_length allow_bignum as_nonblessed/;my%decode_allow_method =map {($_=>1)}qw/utf8 allow_nonref loose allow_singlequote allow_bignum allow_barekey max_size relaxed/;my$JSON;sub encode_json ($) {($JSON ||= __PACKAGE__->new->utf8)->encode(@_)}sub decode_json {($JSON ||= __PACKAGE__->new->utf8)->decode(@_)}sub to_json($) {Carp::croak ("JSON::PP::to_json has been renamed to encode_json.")}sub from_json($) {Carp::croak ("JSON::PP::from_json has been renamed to decode_json.")}sub new {my$class=shift;my$self={max_depth=>512,max_size=>0,indent=>0,FLAGS=>0,fallback=>sub {encode_error('Invalid value. JSON can only reference.')},indent_length=>3,};bless$self,$class}sub encode {return $_[0]->PP_encode_json($_[1])}sub decode {return $_[0]->PP_decode_json($_[1],0x00000000)}sub decode_prefix {return $_[0]->PP_decode_json($_[1],0x00000001)}sub pretty {my ($self,$v)=@_;my$enable=defined$v ? $v : 1;if ($enable){$self->indent(1)->indent_length(3)->space_before(1)->space_after(1)}else {$self->indent(0)->space_before(0)->space_after(0)}$self}sub max_depth {my$max=defined $_[1]? $_[1]: 0x80000000;$_[0]->{max_depth}=$max;$_[0]}sub get_max_depth {$_[0]->{max_depth}}sub max_size {my$max=defined $_[1]? $_[1]: 0;$_[0]->{max_size}=$max;$_[0]}sub get_max_size {$_[0]->{max_size}}sub filter_json_object {$_[0]->{cb_object}=defined $_[1]? $_[1]: 0;$_[0]->{F_HOOK}=($_[0]->{cb_object}or $_[0]->{cb_sk_object})? 1 : 0;$_[0]}sub filter_json_single_key_object {if (@_ > 1){$_[0]->{cb_sk_object}->{$_[1]}=$_[2]}$_[0]->{F_HOOK}=($_[0]->{cb_object}or $_[0]->{cb_sk_object})? 1 : 0;$_[0]}sub indent_length {if (!defined $_[1]or $_[1]> 15 or $_[1]< 0){Carp::carp "The acceptable range of indent_length() is 0 to 15."}else {$_[0]->{indent_length}=$_[1]}$_[0]}sub get_indent_length {$_[0]->{indent_length}}sub sort_by {$_[0]->{sort_by}=defined $_[1]? $_[1]: 1;$_[0]}sub allow_bigint {Carp::carp("allow_bigint() is obsoleted. use allow_bignum() insted.")}{my$max_depth;my$indent;my$ascii;my$latin1;my$utf8;my$space_before;my$space_after;my$canonical;my$allow_blessed;my$convert_blessed;my$indent_length;my$escape_slash;my$bignum;my$as_nonblessed;my$depth;my$indent_count;my$keysort;sub PP_encode_json {my$self=shift;my$obj=shift;$indent_count=0;$depth=0;my$idx=$self->{PROPS};($ascii,$latin1,$utf8,$indent,$canonical,$space_before,$space_after,$allow_blessed,$convert_blessed,$escape_slash,$bignum,$as_nonblessed)=@{$idx}[P_ASCII .. P_SPACE_AFTER,P_ALLOW_BLESSED,P_CONVERT_BLESSED,P_ESCAPE_SLASH,P_ALLOW_BIGNUM,P_AS_NONBLESSED];($max_depth,$indent_length)=@{$self}{qw/max_depth indent_length/};$keysort=$canonical ? sub {$a cmp $b}: undef;if ($self->{sort_by}){$keysort=ref($self->{sort_by})eq 'CODE' ? $self->{sort_by}: $self->{sort_by}=~ /\D+/ ? $self->{sort_by}: sub {$a cmp $b}}encode_error("hash- or arrayref expected (not a simple scalar, use allow_nonref to allow this)")if(!ref$obj and!$idx->[P_ALLOW_NONREF ]);my$str=$self->object_to_json($obj);$str .= "\n" if ($indent);unless ($ascii or $latin1 or $utf8){utf8::upgrade($str)}if ($idx->[P_SHRINK ]){utf8::downgrade($str,1)}return$str}sub object_to_json {my ($self,$obj)=@_;my$type=ref($obj);if($type eq 'HASH'){return$self->hash_to_json($obj)}elsif($type eq 'ARRAY'){return$self->array_to_json($obj)}elsif ($type){if (blessed($obj)){return$self->value_to_json($obj)if ($obj->isa('JSON::PP::Boolean'));if ($convert_blessed and $obj->can('TO_JSON')){my$result=$obj->TO_JSON();if (defined$result and ref($result)){if (refaddr($obj)eq refaddr($result)){encode_error(sprintf("%s::TO_JSON method returned same object as was passed instead of a new one",ref$obj))}}return$self->object_to_json($result)}return "$obj" if ($bignum and _is_bignum($obj));return$self->blessed_to_json($obj)if ($allow_blessed and $as_nonblessed);encode_error(sprintf("encountered object '%s', but neither allow_blessed " ."nor convert_blessed settings are enabled",$obj))unless ($allow_blessed);return 'null'}else {return$self->value_to_json($obj)}}else{return$self->value_to_json($obj)}}sub hash_to_json {my ($self,$obj)=@_;my@res;encode_error("json text or perl structure exceeds maximum nesting level (max_depth set too low?)")if (++$depth > $max_depth);my ($pre,$post)=$indent ? $self->_up_indent(): ('','');my$del=($space_before ? ' ' : '').':' .($space_after ? ' ' : '');for my$k (_sort($obj)){if (OLD_PERL){utf8::decode($k)}push@res,string_to_json($self,$k).$del .($self->object_to_json($obj->{$k})|| $self->value_to_json($obj->{$k}))}--$depth;$self->_down_indent()if ($indent);return '{' .(@res ? $pre : '').(@res ? join(",$pre",@res).$post : '').'}'}sub array_to_json {my ($self,$obj)=@_;my@res;encode_error("json text or perl structure exceeds maximum nesting level (max_depth set too low?)")if (++$depth > $max_depth);my ($pre,$post)=$indent ? $self->_up_indent(): ('','');for my$v (@$obj){push@res,$self->object_to_json($v)|| $self->value_to_json($v)}--$depth;$self->_down_indent()if ($indent);return '[' .(@res ? $pre : '').(@res ? join(",$pre",@res).$post : '').']'}sub value_to_json {my ($self,$value)=@_;return 'null' if(!defined$value);my$b_obj=B::svref_2object(\$value);my$flags=$b_obj->FLAGS;return$value if$flags & (B::SVp_IOK | B::SVp_NOK)and!($flags & B::SVp_POK);my$type=ref($value);if(!$type){return string_to_json($self,$value)}elsif(blessed($value)and $value->isa('JSON::PP::Boolean')){return $$value==1 ? 'true' : 'false'}elsif ($type){if ((overload::StrVal($value)=~ /=(\w+)/)[0]){return$self->value_to_json("$value")}if ($type eq 'SCALAR' and defined $$value){return $$value eq '1' ? 'true' : $$value eq '0' ? 'false' : $self->{PROPS}->[P_ALLOW_UNKNOWN ]? 'null' : encode_error("cannot encode reference to scalar")}if ($self->{PROPS}->[P_ALLOW_UNKNOWN ]){return 'null'}else {if ($type eq 'SCALAR' or $type eq 'REF'){encode_error("cannot encode reference to scalar")}else {encode_error("encountered $value, but JSON can only represent references to arrays or hashes")}}}else {return$self->{fallback}->($value)if ($self->{fallback}and ref($self->{fallback})eq 'CODE');return 'null'}}my%esc=("\n"=>'\n',"\r"=>'\r',"\t"=>'\t',"\f"=>'\f',"\b"=>'\b',"\""=>'\"',"\\"=>'\\\\',"\'"=>'\\\'',);sub string_to_json {my ($self,$arg)=@_;$arg =~ s/([\x22\x5c\n\r\t\f\b])/$esc{$1}/g;$arg =~ s/\//\\\//g if ($escape_slash);$arg =~ s/([\x00-\x08\x0b\x0e-\x1f])/'\\u00' . unpack('H2', $1)/eg;if ($ascii){$arg=JSON_PP_encode_ascii($arg)}if ($latin1){$arg=JSON_PP_encode_latin1($arg)}if ($utf8){utf8::encode($arg)}return '"' .$arg .'"'}sub blessed_to_json {my$reftype=reftype($_[1])|| '';if ($reftype eq 'HASH'){return $_[0]->hash_to_json($_[1])}elsif ($reftype eq 'ARRAY'){return $_[0]->array_to_json($_[1])}else {return 'null'}}sub encode_error {my$error=shift;Carp::croak "$error"}sub _sort {defined$keysort ? (sort$keysort (keys %{$_[0]})): keys %{$_[0]}}sub _up_indent {my$self=shift;my$space=' ' x $indent_length;my ($pre,$post)=('','');$post="\n" .$space x $indent_count;$indent_count++;$pre="\n" .$space x $indent_count;return ($pre,$post)}sub _down_indent {$indent_count--}sub PP_encode_box {{depth=>$depth,indent_count=>$indent_count,}}}sub _encode_ascii {join('',map {$_ <= 127 ? chr($_): $_ <= 65535 ? sprintf('\u%04x',$_): sprintf('\u%x\u%x',_encode_surrogates($_))}unpack('U*',$_[0]))}sub _encode_latin1 {join('',map {$_ <= 255 ? chr($_): $_ <= 65535 ? sprintf('\u%04x',$_): sprintf('\u%x\u%x',_encode_surrogates($_))}unpack('U*',$_[0]))}sub _encode_surrogates {my$uni=$_[0]- 0x10000;return ($uni / 0x400 + 0xD800,$uni % 0x400 + 0xDC00)}sub _is_bignum {$_[0]->isa('Math::BigInt')or $_[0]->isa('Math::BigFloat')}my$max_intsize;BEGIN {my$checkint=1111;for my$d (5..64){$checkint .= 1;my$int=eval qq| $checkint |;if ($int =~ /[eE]/){$max_intsize=$d - 1;last}}}{my%escapes=(b=>"\x8",t=>"\x9",n=>"\xA",f=>"\xC",r=>"\xD",'\\'=>'\\','"'=>'"','/'=>'/',);my$text;my$at;my$ch;my$len;my$depth;my$encoding;my$is_valid_utf8;my$utf8_len;my$utf8;my$max_depth;my$max_size;my$relaxed;my$cb_object;my$cb_sk_object;my$F_HOOK;my$allow_bigint;my$singlequote;my$loose;my$allow_barekey;sub PP_decode_json {my ($self,$opt);($self,$text,$opt)=@_;($at,$ch,$depth)=(0,'',0);if (!defined$text or ref$text){decode_error("malformed JSON string, neither array, object, number, string or atom")}my$idx=$self->{PROPS};($utf8,$relaxed,$loose,$allow_bigint,$allow_barekey,$singlequote)=@{$idx}[P_UTF8,P_RELAXED,P_LOOSE .. P_ALLOW_SINGLEQUOTE];if ($utf8){utf8::downgrade($text,1)or Carp::croak("Wide character in subroutine entry")}else {utf8::upgrade($text);utf8::encode($text)}$len=length$text;($max_depth,$max_size,$cb_object,$cb_sk_object,$F_HOOK)=@{$self}{qw/max_depth max_size cb_object cb_sk_object F_HOOK/};if ($max_size > 1){use bytes;my$bytes=length$text;decode_error(sprintf("attempted decode of JSON text of %s bytes size, but max_size is set to %s" ,$bytes,$max_size),1)if ($bytes > $max_size)}my@octets=unpack('C4',$text);$encoding=($octets[0]and $octets[1])? 'UTF-8' : (!$octets[0]and $octets[1])? 'UTF-16BE' : (!$octets[0]and!$octets[1])? 'UTF-32BE' : ($octets[2])? 'UTF-16LE' : (!$octets[2])? 'UTF-32LE' : 'unknown';white();my$valid_start=defined$ch;my$result=value();return undef if (!$result && ($opt & 0x10000000));decode_error("malformed JSON string, neither array, object, number, string or atom")unless$valid_start;if (!$idx->[P_ALLOW_NONREF ]and!ref$result){decode_error('JSON text must be an object or array (but found number, string, true, false or null,' .' use allow_nonref to allow this)',1)}Carp::croak('something wrong.')if$len < $at;my$consumed=defined$ch ? $at - 1 : $at;white();if ($ch){return ($result,$consumed)if ($opt & 0x00000001);decode_error("garbage after JSON object")}($opt & 0x00000001)? ($result,$consumed): $result}sub next_chr {return$ch=undef if($at >= $len);$ch=substr($text,$at++,1)}sub value {white();return if(!defined$ch);return object()if($ch eq '{');return array()if($ch eq '[');return string()if($ch eq '"' or ($singlequote and $ch eq "'"));return number()if($ch =~ /[0-9]/ or $ch eq '-');return word()}sub string {my ($i,$s,$t,$u);my$utf16;my$is_utf8;($is_valid_utf8,$utf8_len)=('',0);$s='';if($ch eq '"' or ($singlequote and $ch eq "'")){my$boundChar=$ch;OUTER: while(defined(next_chr())){if($ch eq $boundChar){next_chr();if ($utf16){decode_error("missing low surrogate character in surrogate pair")}utf8::decode($s)if($is_utf8);return$s}elsif($ch eq '\\'){next_chr();if(exists$escapes{$ch}){$s .= $escapes{$ch}}elsif($ch eq 'u'){my$u='';for(1..4){$ch=next_chr();last OUTER if($ch !~ /[0-9a-fA-F]/);$u .= $ch}if ($u =~ /^[dD][89abAB][0-9a-fA-F]{2}/){$utf16=$u}elsif ($u =~ /^[dD][c-fC-F][0-9a-fA-F]{2}/){unless (defined$utf16){decode_error("missing high surrogate character in surrogate pair")}$is_utf8=1;$s .= JSON_PP_decode_surrogates($utf16,$u)|| next;$utf16=undef}else {if (defined$utf16){decode_error("surrogate pair expected")}if ((my$hex=hex($u))> 127){$is_utf8=1;$s .= JSON_PP_decode_unicode($u)|| next}else {$s .= chr$hex}}}else{unless ($loose){$at -= 2;decode_error('illegal backslash escape sequence in string')}$s .= $ch}}else{if (ord$ch > 127){unless($ch=is_valid_utf8($ch)){$at -= 1;decode_error("malformed UTF-8 character in JSON string")}else {$at += $utf8_len - 1}$is_utf8=1}if (!$loose){if ($ch =~ /[\x00-\x1f\x22\x5c]/){$at--;decode_error('invalid character encountered while parsing JSON string')}}$s .= $ch}}}decode_error("unexpected end of string while parsing JSON string")}sub white {while(defined$ch){if($ch le ' '){next_chr()}elsif($ch eq '/'){next_chr();if(defined$ch and $ch eq '/'){1 while(defined(next_chr())and $ch ne "\n" and $ch ne "\r")}elsif(defined$ch and $ch eq '*'){next_chr();while(1){if(defined$ch){if($ch eq '*'){if(defined(next_chr())and $ch eq '/'){next_chr();last}}else{next_chr()}}else{decode_error("Unterminated comment")}}next}else{$at--;decode_error("malformed JSON string, neither array, object, number, string or atom")}}else{if ($relaxed and $ch eq '#'){pos($text)=$at;$text =~ /\G([^\n]*(?:\r\n|\r|\n|$))/g;$at=pos($text);next_chr;next}last}}}sub array {my$a=$_[0]|| [];decode_error('json text or perl structure exceeds maximum nesting level (max_depth set too low?)')if (++$depth > $max_depth);next_chr();white();if(defined$ch and $ch eq ']'){--$depth;next_chr();return$a}else {while(defined($ch)){push @$a,value();white();if (!defined$ch){last}if($ch eq ']'){--$depth;next_chr();return$a}if($ch ne ','){last}next_chr();white();if ($relaxed and $ch eq ']'){--$depth;next_chr();return$a}}}decode_error(", or ] expected while parsing array")}sub object {my$o=$_[0]|| {};my$k;decode_error('json text or perl structure exceeds maximum nesting level (max_depth set too low?)')if (++$depth > $max_depth);next_chr();white();if(defined$ch and $ch eq '}'){--$depth;next_chr();if ($F_HOOK){return _json_object_hook($o)}return$o}else {while (defined$ch){$k=($allow_barekey and $ch ne '"' and $ch ne "'")? bareKey(): string();white();if(!defined$ch or $ch ne ':'){$at--;decode_error("':' expected")}next_chr();$o->{$k}=value();white();last if (!defined$ch);if($ch eq '}'){--$depth;next_chr();if ($F_HOOK){return _json_object_hook($o)}return$o}if($ch ne ','){last}next_chr();white();if ($relaxed and $ch eq '}'){--$depth;next_chr();if ($F_HOOK){return _json_object_hook($o)}return$o}}}$at--;decode_error(", or } expected while parsing object/hash")}sub bareKey {my$key;while($ch =~ /[^\x00-\x23\x25-\x2F\x3A-\x40\x5B-\x5E\x60\x7B-\x7F]/){$key .= $ch;next_chr()}return$key}sub word {my$word=substr($text,$at-1,4);if($word eq 'true'){$at += 3;next_chr;return$JSON::PP::true}elsif($word eq 'null'){$at += 3;next_chr;return undef}elsif($word eq 'fals'){$at += 3;if(substr($text,$at,1)eq 'e'){$at++;next_chr;return$JSON::PP::false}}$at--;decode_error("'null' expected")if ($word =~ /^n/);decode_error("'true' expected")if ($word =~ /^t/);decode_error("'false' expected")if ($word =~ /^f/);decode_error("malformed JSON string, neither array, object, number, string or atom")}sub number {my$n='';my$v;if($ch eq '0'){my$peek=substr($text,$at,1);my$hex=$peek =~ /[xX]/;if($hex){decode_error("malformed number (leading zero must not be followed by another digit)");($n)=(substr($text,$at+1)=~ /^([0-9a-fA-F]+)/)}else{($n)=(substr($text,$at)=~ /^([0-7]+)/);if (defined$n and length$n > 1){decode_error("malformed number (leading zero must not be followed by another digit)")}}if(defined$n and length($n)){if (!$hex and length($n)==1){decode_error("malformed number (leading zero must not be followed by another digit)")}$at += length($n)+ $hex;next_chr;return$hex ? hex($n): oct($n)}}if($ch eq '-'){$n='-';next_chr;if (!defined$ch or $ch !~ /\d/){decode_error("malformed number (no digits after initial minus)")}}while(defined$ch and $ch =~ /\d/){$n .= $ch;next_chr}if(defined$ch and $ch eq '.'){$n .= '.';next_chr;if (!defined$ch or $ch !~ /\d/){decode_error("malformed number (no digits after decimal point)")}else {$n .= $ch}while(defined(next_chr)and $ch =~ /\d/){$n .= $ch}}if(defined$ch and ($ch eq 'e' or $ch eq 'E')){$n .= $ch;next_chr;if(defined($ch)and ($ch eq '+' or $ch eq '-')){$n .= $ch;next_chr;if (!defined$ch or $ch =~ /\D/){decode_error("malformed number (no digits after exp sign)")}$n .= $ch}elsif(defined($ch)and $ch =~ /\d/){$n .= $ch}else {decode_error("malformed number (no digits after exp sign)")}while(defined(next_chr)and $ch =~ /\d/){$n .= $ch}}$v .= $n;if ($v !~ /[.eE]/ and length$v > $max_intsize){if ($allow_bigint){require Math::BigInt;return Math::BigInt->new($v)}else {return "$v"}}elsif ($allow_bigint){require Math::BigFloat;return Math::BigFloat->new($v)}return 0+$v}sub is_valid_utf8 {$utf8_len=$_[0]=~ /[\x00-\x7F]/ ? 1 : $_[0]=~ /[\xC2-\xDF]/ ? 2 : $_[0]=~ /[\xE0-\xEF]/ ? 3 : $_[0]=~ /[\xF0-\xF4]/ ? 4 : 0 ;return unless$utf8_len;my$is_valid_utf8=substr($text,$at - 1,$utf8_len);return ($is_valid_utf8 =~ /^(?:
               [\x00-\x7F]
              |[\xC2-\xDF][\x80-\xBF]
              |[\xE0][\xA0-\xBF][\x80-\xBF]
              |[\xE1-\xEC][\x80-\xBF][\x80-\xBF]
              |[\xED][\x80-\x9F][\x80-\xBF]
              |[\xEE-\xEF][\x80-\xBF][\x80-\xBF]
              |[\xF0][\x90-\xBF][\x80-\xBF][\x80-\xBF]
              |[\xF1-\xF3][\x80-\xBF][\x80-\xBF][\x80-\xBF]
              |[\xF4][\x80-\x8F][\x80-\xBF][\x80-\xBF]
          )$/x)? $is_valid_utf8 : ''}sub decode_error {my$error=shift;my$no_rep=shift;my$str=defined$text ? substr($text,$at): '';my$mess='';my$type=$] >= 5.008 ? 'U*' : $] < 5.006 ? 'C*' : utf8::is_utf8($str)? 'U*' : 'C*' ;for my$c (unpack($type,$str)){$mess .= $c==0x07 ? '\a' : $c==0x09 ? '\t' : $c==0x0a ? '\n' : $c==0x0d ? '\r' : $c==0x0c ? '\f' : $c < 0x20 ? sprintf('\x{%x}',$c): $c==0x5c ? '\\\\' : $c < 0x80 ? chr($c): sprintf('\x{%x}',$c);if (length$mess >= 20){$mess .= '...';last}}unless (length$mess){$mess='(end of string)'}Carp::croak ($no_rep ? "$error" : "$error, at character offset $at (before \"$mess\")")}sub _json_object_hook {my$o=$_[0];my@ks=keys %{$o};if ($cb_sk_object and @ks==1 and exists$cb_sk_object->{$ks[0]}and ref$cb_sk_object->{$ks[0]}){my@val=$cb_sk_object->{$ks[0]}->($o->{$ks[0]});if (@val==1){return$val[0]}}my@val=$cb_object->($o)if ($cb_object);if (@val==0 or @val > 1){return$o}else {return$val[0]}}sub PP_decode_box {{text=>$text,at=>$at,ch=>$ch,len=>$len,depth=>$depth,encoding=>$encoding,is_valid_utf8=>$is_valid_utf8,}}}sub _decode_surrogates {my$uni=0x10000 + (hex($_[0])- 0xD800)* 0x400 + (hex($_[1])- 0xDC00);my$un=pack('U*',$uni);utf8::encode($un);return$un}sub _decode_unicode {my$un=pack('U',hex shift);utf8::encode($un);return$un}BEGIN {unless (defined&utf8::is_utf8){require Encode;*utf8::is_utf8=*Encode::is_utf8}if ($] >= 5.008){*JSON::PP::JSON_PP_encode_ascii=\&_encode_ascii;*JSON::PP::JSON_PP_encode_latin1=\&_encode_latin1;*JSON::PP::JSON_PP_decode_surrogates=\&_decode_surrogates;*JSON::PP::JSON_PP_decode_unicode=\&_decode_unicode}if ($] >= 5.008 and $] < 5.008003){package JSON::PP;require subs;subs->import('join');eval q|
              sub join {
                  return '' if (@_ < 2);
                  my $j   = shift;
                  my $str = shift;
                  for (@_) { $str .= $j . $_; }
                  return $str;
              }
          |}sub JSON::PP::incr_parse {local$Carp::CarpLevel=1;($_[0]->{_incr_parser}||= JSON::PP::IncrParser->new)->incr_parse(@_)}sub JSON::PP::incr_skip {($_[0]->{_incr_parser}||= JSON::PP::IncrParser->new)->incr_skip}sub JSON::PP::incr_reset {($_[0]->{_incr_parser}||= JSON::PP::IncrParser->new)->incr_reset}eval q{
          sub JSON::PP::incr_text : lvalue {
              $_[0]->{_incr_parser} ||= JSON::PP::IncrParser->new;
  
              if ( $_[0]->{_incr_parser}->{incr_parsing} ) {
                  Carp::croak("incr_text can not be called when the incremental parser already started parsing");
              }
              $_[0]->{_incr_parser}->{incr_text};
          }
      } if ($] >= 5.006)}BEGIN {eval 'require Scalar::Util';unless($@){*JSON::PP::blessed=\&Scalar::Util::blessed;*JSON::PP::reftype=\&Scalar::Util::reftype;*JSON::PP::refaddr=\&Scalar::Util::refaddr}else{eval 'sub UNIVERSAL::a_sub_not_likely_to_be_here { ref($_[0]) }';*JSON::PP::blessed=sub {local($@,$SIG{__DIE__},$SIG{__WARN__});ref($_[0])? eval {$_[0]->a_sub_not_likely_to_be_here}: undef};my%tmap=qw(B::NULL SCALAR B::HV HASH B::AV ARRAY B::CV CODE B::IO IO B::GV GLOB B::REGEXP REGEXP);*JSON::PP::reftype=sub {my$r=shift;return undef unless length(ref($r));my$t=ref(B::svref_2object($r));return exists$tmap{$t}? $tmap{$t}: length(ref($$r))? 'REF' : 'SCALAR'};*JSON::PP::refaddr=sub {return undef unless length(ref($_[0]));my$addr;if(defined(my$pkg=blessed($_[0]))){$addr .= bless $_[0],'Scalar::Util::Fake';bless $_[0],$pkg}else {$addr .= $_[0]}$addr =~ /0x(\w+)/;local $^W;hex($1)}}}$JSON::PP::true=do {bless \(my$dummy=1),"JSON::PP::Boolean"};$JSON::PP::false=do {bless \(my$dummy=0),"JSON::PP::Boolean"};sub is_bool {defined $_[0]and UNIVERSAL::isa($_[0],"JSON::PP::Boolean")}sub true {$JSON::PP::true}sub false {$JSON::PP::false}sub null {undef}package JSON::PP::Boolean;use overload ("0+"=>sub {${$_[0]}},"++"=>sub {$_[0]=${$_[0]}+ 1},"--"=>sub {$_[0]=${$_[0]}- 1},fallback=>1,);package JSON::PP::IncrParser;use strict;use constant INCR_M_WS=>0;use constant INCR_M_STR=>1;use constant INCR_M_BS=>2;use constant INCR_M_JSON=>3;use constant INCR_M_C0=>4;use constant INCR_M_C1=>5;$JSON::PP::IncrParser::VERSION='1.01';my$unpack_format=$] < 5.006 ? 'C*' : 'U*';sub new {my ($class)=@_;bless {incr_nest=>0,incr_text=>undef,incr_parsing=>0,incr_p=>0,},$class}sub incr_parse {my ($self,$coder,$text)=@_;$self->{incr_text}='' unless (defined$self->{incr_text});if (defined$text){if (utf8::is_utf8($text)and!utf8::is_utf8($self->{incr_text})){utf8::upgrade($self->{incr_text});utf8::decode($self->{incr_text})}$self->{incr_text}.= $text}my$max_size=$coder->get_max_size;if (defined wantarray){$self->{incr_mode}=INCR_M_WS unless defined$self->{incr_mode};if (wantarray){my@ret;$self->{incr_parsing}=1;do {push@ret,$self->_incr_parse($coder,$self->{incr_text});unless (!$self->{incr_nest}and $self->{incr_mode}==INCR_M_JSON){$self->{incr_mode}=INCR_M_WS if$self->{incr_mode}!=INCR_M_STR}}until (length$self->{incr_text}>= $self->{incr_p});$self->{incr_parsing}=0;return@ret}else {$self->{incr_parsing}=1;my$obj=$self->_incr_parse($coder,$self->{incr_text});$self->{incr_parsing}=0 if defined$obj;return$obj ? $obj : undef}}}sub _incr_parse {my ($self,$coder,$text,$skip)=@_;my$p=$self->{incr_p};my$restore=$p;my@obj;my$len=length$text;if ($self->{incr_mode}==INCR_M_WS){while ($len > $p){my$s=substr($text,$p,1);$p++ and next if (0x20 >= unpack($unpack_format,$s));$self->{incr_mode}=INCR_M_JSON;last}}while ($len > $p){my$s=substr($text,$p++,1);if ($s eq '"'){if (substr($text,$p - 2,1)eq '\\'){next}if ($self->{incr_mode}!=INCR_M_STR){$self->{incr_mode}=INCR_M_STR}else {$self->{incr_mode}=INCR_M_JSON;unless ($self->{incr_nest}){last}}}if ($self->{incr_mode}==INCR_M_JSON){if ($s eq '[' or $s eq '{'){if (++$self->{incr_nest}> $coder->get_max_depth){Carp::croak('json text or perl structure exceeds maximum nesting level (max_depth set too low?)')}}elsif ($s eq ']' or $s eq '}'){last if (--$self->{incr_nest}<= 0)}elsif ($s eq '#'){while ($len > $p){last if substr($text,$p++,1)eq "\n"}}}}$self->{incr_p}=$p;return if ($self->{incr_mode}==INCR_M_STR and not $self->{incr_nest});return if ($self->{incr_mode}==INCR_M_JSON and $self->{incr_nest}> 0);return '' unless (length substr($self->{incr_text},0,$p));local$Carp::CarpLevel=2;$self->{incr_p}=$restore;$self->{incr_c}=$p;my ($obj,$tail)=$coder->PP_decode_json(substr($self->{incr_text},0,$p),0x10000001);$self->{incr_text}=substr($self->{incr_text},$p);$self->{incr_p}=0;return$obj || ''}sub incr_text {if ($_[0]->{incr_parsing}){Carp::croak("incr_text can not be called when the incremental parser already started parsing")}$_[0]->{incr_text}}sub incr_skip {my$self=shift;$self->{incr_text}=substr($self->{incr_text},$self->{incr_c});$self->{incr_p}=0}sub incr_reset {my$self=shift;$self->{incr_text}=undef;$self->{incr_p}=0;$self->{incr_mode}=0;$self->{incr_nest}=0;$self->{incr_parsing}=0}1;
JSON_PP

$fatpacked{"JSON/PP/Boolean.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'JSON_PP_BOOLEAN';
  use JSON::PP ();use strict;1;
JSON_PP_BOOLEAN

$fatpacked{"List/MoreUtils.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'LIST_MOREUTILS';
  package List::MoreUtils;use 5.006;use strict;use warnings;BEGIN {our$VERSION='0.413'}use Exporter::Tiny qw();use List::MoreUtils::XS qw();my@junctions=qw(any all none notall);my@v0_22=qw(true false firstidx lastidx insert_after insert_after_string apply indexes after after_incl before before_incl firstval lastval each_array each_arrayref pairwise natatime mesh uniq minmax part);my@v0_24=qw(bsearch);my@v0_33=qw(sort_by nsort_by);my@v0_400=qw(one any_u all_u none_u notall_u one_u firstres onlyidx onlyval onlyres lastres singleton bsearchidx);my@all_functions=(@junctions,@v0_22,@v0_24,@v0_33,@v0_400);my%alias_list=(v0_22=>{first_index=>"firstidx",last_index=>"lastidx",first_value=>"firstval",last_value=>"lastval",zip=>"mesh",},v0_33=>{distinct=>"uniq",},v0_400=>{first_result=>"firstres",only_index=>"onlyidx",only_value=>"onlyval",only_result=>"onlyres",last_result=>"lastres",bsearch_index=>"bsearchidx",},);our@ISA=qw(Exporter::Tiny);our@EXPORT_OK=(@all_functions,map {keys %$_}values%alias_list);our%EXPORT_TAGS=(all=>\@EXPORT_OK,'like_0.22'=>[any_u=>{-as=>'any' },all_u=>{-as=>'all' },none_u=>{-as=>'none' },notall_u=>{-as=>'notall' },@v0_22,keys %{$alias_list{v0_22}},],'like_0.24'=>[any_u=>{-as=>'any' },all_u=>{-as=>'all' },notall_u=>{-as=>'notall' },'none',@v0_22,@v0_24,keys %{$alias_list{v0_22}},],'like_0.33'=>[@junctions,@v0_22,@v0_33,keys %{$alias_list{v0_22}},keys %{$alias_list{v0_33}},],);for my$set (values%alias_list){for my$alias (keys %$set){no strict qw(refs);*$alias=__PACKAGE__->can($set->{$alias})}}1;
LIST_MOREUTILS

$fatpacked{"List/MoreUtils/PP.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'LIST_MOREUTILS_PP';
  package List::MoreUtils::PP;use 5.006;use strict;use warnings;our$VERSION='0.413';sub any (&@) {my$f=shift;for (@_){return 1 if$f->()}return 0}sub all (&@) {my$f=shift;for (@_){return 0 unless$f->()}return 1}sub none (&@) {my$f=shift;for (@_){return 0 if$f->()}return 1}sub notall (&@) {my$f=shift;for (@_){return 1 unless$f->()}return 0}sub one (&@) {my$f=shift;my$found=0;for (@_){$f->()and $found++ and return 0}$found}sub any_u (&@) {my$f=shift;return if!@_;$f->()and return 1 foreach (@_);return 0}sub all_u (&@) {my$f=shift;return if!@_;$f->()or return 0 foreach (@_);return 1}sub none_u (&@) {my$f=shift;return if!@_;$f->()and return 0 foreach (@_);return 1}sub notall_u (&@) {my$f=shift;return if!@_;$f->()or return 1 foreach (@_);return 0}sub one_u (&@) {my$f=shift;return if!@_;my$found=0;for (@_){$f->()and $found++ and return 0}$found}sub true (&@) {my$f=shift;my$count=0;$f->()and ++$count foreach (@_);return$count}sub false (&@) {my$f=shift;my$count=0;$f->()or ++$count foreach (@_);return$count}sub firstidx (&@) {my$f=shift;for my$i (0 .. $#_){local*_=\$_[$i];return$i if$f->()}return -1}sub firstval (&@) {my$test=shift;for (@_){return $_ if$test->()}return undef}sub firstres (&@) {my$test=shift;for (@_){my$testval=$test->();$testval and return$testval}return undef}sub onlyidx (&@) {my$f=shift;my$found;for my$i (0 .. $#_){local*_=\$_[$i];$f->()or next;defined$found and return -1;$found=$i}return defined$found ? $found : -1}sub onlyval (&@) {my$test=shift;my$result=undef;my$found=0;for (@_){$test->()or next;$result=$_;$found++ and return undef}return$result}sub onlyres (&@) {my$test=shift;my$result=undef;my$found=0;for (@_){my$rv=$test->()or next;$result=$rv;$found++ and return undef}return$found ? $result : undef}sub lastidx (&@) {my$f=shift;for my$i (reverse 0 .. $#_){local*_=\$_[$i];return$i if$f->()}return -1}sub lastval (&@) {my$test=shift;my$ix;for ($ix=$#_;$ix >= 0;$ix-- ){local*_=\$_[$ix];my$testval=$test->();$_[$ix]=$_;return $_ if$testval}return undef}sub lastres (&@) {my$test=shift;my$ix;for ($ix=$#_;$ix >= 0;$ix-- ){local*_=\$_[$ix];my$testval=$test->();$_[$ix]=$_;return$testval if$testval}return undef}sub insert_after (&$\@) {my ($f,$val,$list)=@_;my$c=&firstidx($f,@$list);@$list=(@{$list}[0 .. $c ],$val,@{$list}[$c + 1 .. $#$list ],)and return 1 if$c!=-1;return 0}sub insert_after_string ($$\@) {my ($string,$val,$list)=@_;my$c=firstidx {defined $_ and $string eq $_}@$list;@$list=(@{$list}[0 .. $c ],$val,@{$list}[$c + 1 .. $#$list ],)and return 1 if$c!=-1;return 0}sub apply (&@) {my$action=shift;&$action foreach my@values=@_;wantarray ? @values : $values[-1]}sub after (&@) {my$test=shift;my$started;my$lag;grep$started ||= do {my$x=$lag;$lag=$test->();$x},@_}sub after_incl (&@) {my$test=shift;my$started;grep$started ||= $test->(),@_}sub before (&@) {my$test=shift;my$more=1;grep$more &&=!$test->(),@_}sub before_incl (&@) {my$test=shift;my$more=1;my$lag=1;grep$more &&= do {my$x=$lag;$lag=!$test->();$x},@_}sub indexes (&@) {my$test=shift;grep {local*_=\$_[$_];$test->()}0 .. $#_}sub pairwise (&\@\@) {my$op=shift;use vars qw{@A @B};local (*A,*B)=@_;my ($caller_a,$caller_b)=do {my$pkg=caller();no strict 'refs';\*{$pkg .'::a'},\*{$pkg .'::b'}};my$limit=$#A > $#B ? $#A : $#B;local (*$caller_a,*$caller_b);map {(*$caller_a,*$caller_b)=\($A[$_],$B[$_]);$op->()}0 .. $limit}sub each_array (\@;\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@) {return each_arrayref(@_)}sub each_arrayref {my@list=@_;my$index=0;my$max=0;for (@list){unless (ref $_ eq 'ARRAY'){require Carp;Carp::croak("each_arrayref: argument is not an array reference\n")}$max=@$_ if @$_ > $max}return sub {if (@_){my$method=shift;unless ($method eq 'index'){require Carp;Carp::croak("each_array: unknown argument '$method' passed to iterator.")}return undef if$index==0 || $index > $max;return$index - 1}return if$index >= $max;my$i=$index++;return map $_->[$i],@list}}sub natatime ($@) {my$n=shift;my@list=@_;return sub {return splice@list,0,$n}}sub mesh (\@\@;\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@) {my$max=-1;$max < $#$_ && ($max=$#$_)foreach @_;map {my$ix=$_;map $_->[$ix],@_}0 .. $max}sub uniq (@) {my%seen=();my$k;my$seen_undef;grep {defined $_ ? not $seen{$k=$_ }++ : not $seen_undef++}@_}sub singleton (@) {my%seen=();my$k;my$seen_undef;grep {1==(defined $_ ? $seen{$k=$_ }: $seen_undef)}grep {defined $_ ? not $seen{$k=$_ }++ : not $seen_undef++}@_}sub minmax (@) {return unless @_;my$min=my$max=$_[0];for (my$i=1;$i < @_;$i += 2 ){if ($_[$i - 1 ]<= $_[$i]){$min=$_[$i - 1 ]if$min > $_[$i - 1 ];$max=$_[$i]if$max < $_[$i]}else {$min=$_[$i]if$min > $_[$i];$max=$_[$i - 1 ]if$max < $_[$i - 1 ]}}if (@_ & 1){my$i=$#_;if ($_[$i - 1 ]<= $_[$i]){$min=$_[$i - 1 ]if$min > $_[$i - 1 ];$max=$_[$i]if$max < $_[$i]}else {$min=$_[$i]if$min > $_[$i];$max=$_[$i - 1 ]if$max < $_[$i - 1 ]}}return ($min,$max)}sub part (&@) {my ($code,@list)=@_;my@parts;push @{$parts[$code->($_)]},$_ foreach@list;return@parts}sub bsearch(&@) {my$code=shift;my$rc;my$i=0;my$j=@_;do {my$k=int(($i + $j)/ 2);$k >= @_ and return;local*_=\$_[$k];$rc=$code->();$rc==0 and return wantarray ? $_ : 1;if ($rc < 0){$i=$k + 1}else {$j=$k - 1}}until$i > $j;return}sub bsearchidx(&@) {my$code=shift;my$rc;my$i=0;my$j=@_;do {my$k=int(($i + $j)/ 2);$k >= @_ and return -1;local*_=\$_[$k];$rc=$code->();$rc==0 and return$k;if ($rc < 0){$i=$k + 1}else {$j=$k - 1}}until$i > $j;return -1}sub sort_by(&@) {my ($code,@list)=@_;return map {$_->[0]}sort {$a->[1]cmp $b->[1]}map {[$_,scalar($code->())]}@list}sub nsort_by(&@) {my ($code,@list)=@_;return map {$_->[0]}sort {$a->[1]<=> $b->[1]}map {[$_,scalar($code->())]}@list}sub _XScompiled {0}1;
LIST_MOREUTILS_PP

$fatpacked{"List/MoreUtils/XS.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'LIST_MOREUTILS_XS';
  package List::MoreUtils::XS;use 5.006;use strict;use warnings;use vars qw{$VERSION @ISA};BEGIN {$VERSION='0.413';my$ldr=<<EOLDR;eval$ldr unless$ENV{LIST_MOREUTILS_PP};my@pp_imp=map {"List::MoreUtils->can(\"$_\") or *$_ = \\&List::MoreUtils::PP::$_;"}qw(any all none notall one any_u all_u none_u notall_u one_u true false firstidx firstval firstres lastidx lastval lastres onlyidx onlyval onlyres insert_after insert_after_string apply after after_incl before before_incl each_array each_arrayref pairwise natatime mesh uniq singleton minmax part indexes bsearch bsearchidx sort_by nsort_by _XScompiled);my$pp_stuff=join("\n","use List::MoreUtils::PP;","package List::MoreUtils;",@pp_imp);eval$pp_stuff;die $@ if $@}1;
  	package List::MoreUtils;
  
  	# PERL_DL_NONLAZY must be false, or any errors in loading will just
  	# cause the perl code to be tested
  	local \$ENV{PERL_DL_NONLAZY} = 0 if \$ENV{PERL_DL_NONLAZY};
  
  	use XSLoader ();
  	XSLoader::load("List::MoreUtils", "$VERSION");
  
  	1;
  EOLDR
LIST_MOREUTILS_XS

$fatpacked{"Math/Calc/Units.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MATH_CALC_UNITS';
  package Math::Calc::Units;use Math::Calc::Units::Compute qw(compute);use Math::Calc::Units::Rank qw(render render_unit choose_juicy_ones);use Math::Calc::Units::Convert;use base 'Exporter';use vars qw($VERSION @EXPORT_OK);BEGIN {$VERSION='1.07';@EXPORT_OK=qw(calc readable convert equal exact)}use strict;sub calc ($;$) {my ($expr,$exact)=@_;my$v=compute($expr);return$exact ? ($v->[0],render_unit($v->[1])): render($v)}sub readable {my$expr=shift;my%options;if (@_==1){$options{verbose}=shift}else {%options=@_}my$v=compute($expr);return map {render($_,\%options)}choose_juicy_ones($v,\%options)}sub convert ($$;$) {my ($expr,$units,$exact)=@_;my$v=compute($expr);my$u=compute("# $units");my$c=Math::Calc::Units::Convert::convert($v,$u->[1]);return$exact ? ($c->[0],render_unit($c->[1])): render($c)}use constant EPSILON=>1e-12;sub equal {my ($u,$v)=@_;$u=compute($u);$v=compute($v);$v=Math::Calc::Units::Convert::convert($v,$u->[1]);$u=$u->[0];$v=$v->[0];return 1 if ($u==0)&& abs($v)< EPSILON;return abs(($u-$v)/$u)< EPSILON}if (!(caller)){my$verbose;my%options;if ($ARGV[0]eq '-v'){shift;$options{verbose}=1}if ($ARGV[0]eq '-a'){shift;$options{abbreviate}=1}print "$_\n" foreach readable($ARGV[0],%options)}1;
MATH_CALC_UNITS

$fatpacked{"Math/Calc/Units/Compute.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MATH_CALC_UNITS_COMPUTE';
  package Math::Calc::Units::Compute;use base 'Exporter';use vars qw(@EXPORT_OK);@EXPORT_OK=qw(compute plus minus mult divide power unit_mult unit_divide unit_power construct);use strict;use Math::Calc::Units::Convert qw(reduce);use Math::Calc::Units::Rank qw(render_unit);use Math::Calc::Units::Convert::Base;require Math::Calc::Units::Grammar;sub equivalent {my ($u,$v)=@_;return Math::Calc::Units::Convert::Base->same($u,$v)}sub is_unit {my ($x,$unit)=@_;return equivalent($x,{$unit=>1 })}sub plus {my ($u,$v)=@_;$u=reduce($u);$v=reduce($v);if (equivalent($u->[1],$v->[1])){return [$u->[0]+ $v->[0],$u->[1]]}elsif (is_unit($u->[1],'timestamp')&& is_unit($v->[1],'sec')){return [$u->[0]+ $v->[0],$u->[1]]}elsif (is_unit($u->[1],'sec')&& is_unit($v->[1],'timestamp')){return [$u->[0]+ $v->[0],$v->[1]]}die "Unable to add incompatible units `".render_unit($u->[1])."' and `".render_unit($v->[1])."'"}sub minus {my ($u,$v)=@_;$u=reduce($u);$v=reduce($v);if (is_unit($u->[1],'timestamp')&& is_unit($v->[1],'timestamp')){return [$u->[0]- $v->[0],{sec=>1 }]}elsif (equivalent($u->[1],$v->[1])){return [$u->[0]- $v->[0],$u->[1]]}elsif (is_unit($u->[1],'timestamp')&& is_unit($v->[1],'sec')){return [$u->[0]- $v->[0],$u->[1]]}die "Unable to subtract incompatible units `".render_unit($u->[1])."' and `".render_unit($v->[1])."'"}sub mult {my ($u,$v)=@_;return [$u->[0]* $v->[0],unit_mult($u->[1],$v->[1])]}sub divide {my ($u,$v)=@_;return [$u->[0]/ $v->[0],unit_divide($u->[1],$v->[1])]}sub power {my ($u,$v)=@_;die "Can only raise to unit-less powers" if keys %{$v->[1]};$u=reduce($u);if (keys %{$u->[1]}!=0){my$power=$v->[0];die "Can only raise a value with units to an integral power" if abs($power - int($power))> 1e-20;return [$u->[0]** $power,unit_power($u->[1],$power)]}return [$u->[0]** $v->[0],{}]}sub unit_mult {my ($u,$v,$mult)=@_;$mult ||= 1;while (my ($unit,$vp)=each %$v){$u->{$unit}+= $vp * $mult;delete$u->{$unit}if$u->{$unit}==0}return$u}sub unit_divide {my ($u,$v)=@_;return unit_mult($u,$v,-1)}sub unit_power {my ($u,$power)=@_;return {}if$power==0;$u->{$_}*= $power foreach (keys %$u);return$u}sub construct {my$s=shift;my ($constructor,$args)=$s =~ /^(\w+)\((.*)\)/;return Math::Calc::Units::Convert::construct($constructor,$args)}package Math::Calc::Units::Compute;sub tokenize {my$data=shift;my@tokens=$data =~ m{\s*
                             (
                               \w+\([^\(\)]*\) # constructed (eg date(2001...))
                              |[\d.]+       # Numbers
                              |\w+          # Words
                              |\*\*         # Exponentiation (**)
                              |[-+*/()@]    # Operators
                             )}xg;my@types=map {/\w\(/ ? 'CONSTRUCT' :(/\d/ ? 'NUMBER' :(/\w/ ? 'WORD' :($_)))}@tokens;return \@tokens,\@types}sub compute {my$expr=shift;my$canonicalize=$expr !~ /^\#/;my ($vals,$types)=tokenize($expr);my$lexer=sub {return shift(@$types),shift(@$vals)if (@$types);return ('',undef)};my$parser=new Math::Calc::Units::Grammar;my$v=$parser->YYParse(yylex=>$lexer,yyerror=>sub {my$parser=shift;die "Error: expected ".join(" ",$parser->YYExpect)." got `".$parser->YYCurtok."', rest=".join(" ",@$types)."\nfrom ".join(" ",@$vals)."\n"},yydebug=>0);return$canonicalize ? reduce($v): $v};1;
MATH_CALC_UNITS_COMPUTE

$fatpacked{"Math/Calc/Units/Convert.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MATH_CALC_UNITS_CONVERT';
  package Math::Calc::Units::Convert;use base 'Exporter';use strict;use vars qw(@EXPORT_OK);BEGIN {@EXPORT_OK=qw(convert reduce canonical find_top construct)};use Math::Calc::Units::Convert::Multi qw(to_canonical);sub convert {my ($from,$unit)=@_;my$to=[1,$unit ];my$canon_from=canonical($from);my$canon_to=canonical($to);die "conversion between incompatible units" if not same_units($canon_from->[1],$canon_to->[1]);return [$canon_from->[0]/ $canon_to->[0],$unit ]}sub same_units {my ($u1,$u2)=@_;return if keys %$u1!=keys %$u2;while (my ($bu1,$bp1)=each %$u1){return if!exists$u2->{$bu1};return if$bp1!=$u2->{$bu1}}return 1}sub canonical {my ($v)=@_;my$c=to_canonical($v->[1]);my$w=[$v->[0]* $c->[0],$c->[1]];return$w}sub reduce {my ($v)=@_;return canonical($v,'reduce, please')}sub construct {my ($constructor,$args)=@_;return Math::Calc::Units::Convert::Multi::construct($constructor,$args)}1;
MATH_CALC_UNITS_CONVERT

$fatpacked{"Math/Calc/Units/Convert/Base.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MATH_CALC_UNITS_CONVERT_BASE';
  package Math::Calc::Units::Convert::Base;use strict;sub major_pref {return 0}sub major_variants {my ($self,$unit)=@_;return$unit}sub singular {my$self=shift;local $_=shift;return $_ unless /s$/;return $1 if /^(.*[^e])s$/;return $1 if /^(.*(ch|sh))es$/;return $1 if /^(.*[aeiou][^aeiou]e)s$/;chop;return $_}sub unit_map {return {}}sub variants {my ($self,$base)=@_;my$map=$self->unit_map();return ($base,keys %$map)}sub same {my ($self,$u,$v)=@_;return 0 if keys %$u!=keys %$v;while (my ($name,$power)=each %$u){return 0 if!exists$v->{$name};return 0 if$v->{$name}!=$power}return 1}sub simple_convert {my ($self,$from,$to)=@_;return 1 if$from eq $to;my$map=$self->unit_map();my$w=$map->{$from}|| $map->{lc($from)};if (!$w){$from=$self->singular($from);$w=$map->{$from}|| $map->{lc($from)}}return if!$w;if ($w->[1]ne $to){my$submult=$self->simple_convert($w->[1],$to);return if!defined$submult;return$w->[0]* $submult}else {return$w->[0]}}sub to_canonical {my ($self,$unitName)=@_;my$canon=$self->canonical_unit();if ($canon){my$mult=$self->simple_convert($unitName,$canon);return if!defined$mult;return ($mult,$canon)}else {return (1,$self->singular($unitName))}}sub canonical_unit {return}sub abbreviated_canonical_unit {my ($self)=@_;return$self->canonical_unit}my$THRESHOLD=0.01;sub spread {my ($self,$mag,$base,$start,$units)=@_;die if$mag < 0;return [0,$base ]if$mag==0;my$orig=$mag;my@desc;my$started=0;for my$unit (@$units){$started=1 if$unit eq $start;next unless$started;last if ($mag / $orig)< $THRESHOLD;my$mult=$self->simple_convert($unit,$base);my$n=int($mag / $mult);next if$n==0;$mag -= $n * $mult;push@desc,[$n,$unit ]}return@desc}sub range_score {my ($self,$val,$unitName)=@_;my$ranges=$self->get_ranges();my$range=$ranges->{$unitName}|| $ranges->{default};if ($val >= $range->[0]){if (!defined$range->[1]|| ($val <= $range->[1])){return 1}}$val=_sillylog($val);my$r0=_sillylog($range->[0]);my$r1;if (defined$range->[1]){$r1=_sillylog($range->[1])}else {$r1=4}my$width=$r1 - $r0;my$mean=($r0 + $r1)/ 2;my$stddev=$width / 2;my$n=($val - $mean)/ $stddev;our$mulconst;$mulconst ||= 0.999 * exp(1/8);return 0.001 + $mulconst * exp(-$n**2/2)}sub _sillylog {my$x=shift;return log($x)if$x;return log(1e-50)}sub pref_score {my ($self,$unitName)=@_;my$prefs=$self->get_prefs();my$specific=$prefs->{$unitName};return defined($specific)? $specific : $prefs->{default}}sub get_prefs {return {default=>0.1 }}sub get_ranges {return {default=>[1,undef ]}}sub render_unit {my ($self,$name,$power,$options)=@_;if ($power==1){return$name}else {return "$name**$power"}}sub render {my ($self,$val,$name,$power,$options)=@_;return sprintf("%.5g ",$val).$self->render_unit($name,$power,$options)}sub construct {return}1;
MATH_CALC_UNITS_CONVERT_BASE

$fatpacked{"Math/Calc/Units/Convert/Base2Metric.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MATH_CALC_UNITS_CONVERT_BASE2METRIC';
  package Math::Calc::Units::Convert::Base2Metric;use base 'Math::Calc::Units::Convert::Metric';use strict;use vars qw(%metric_base2 %abbrev $metric_prefix_test %pref);%metric_base2=(kilo=>2**10,mega=>2**20,giga=>2**30,tera=>2**40,peta=>2**50,exa=>2**60,);%abbrev=(k=>'kilo',m=>'mega',g=>'giga',t=>'tera',p=>'peta',e=>'exa',);%pref=(unit=>1.0,kilo=>0.8,mega=>0.8,giga=>0.8,tera=>0.7,peta=>0.6,exa=>0.3,);sub get_metric {my ($self,$what)=@_;return$metric_base2{$what}}sub get_abbrev {my ($self,$what)=@_;return$abbrev{$what}|| $abbrev{lc($what)}}$metric_prefix_test=qr/^(${\join("|",keys %metric_base2)})/i;sub get_prefix {my ($self,$what)=@_;if ($what =~ $metric_prefix_test){return $1}else {return}}sub prefix_pref {my ($self,$prefix)=@_;return$pref{lc($prefix)}|| $pref{unit}}sub get_prefixes {return keys%metric_base2}sub expand {my ($self,$char)=@_;return$self->get_abbrev($char)}1;
MATH_CALC_UNITS_CONVERT_BASE2METRIC

$fatpacked{"Math/Calc/Units/Convert/Byte.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MATH_CALC_UNITS_CONVERT_BYTE';
  package Math::Calc::Units::Convert::Byte;use base 'Math::Calc::Units::Convert::Base2Metric';use strict;my%units=(bit=>[1/8,'byte' ]);my%pref=(bit=>0.1,default=>1);my%ranges=(default=>[1,999 ]);my%total_unit_map;sub major_pref {return 1}sub major_variants {my ($self)=@_;return$self->variants('byte')}sub get_ranges {return \%ranges}sub get_prefs {return \%pref}sub unit_map {my ($self)=@_;if (keys%total_unit_map==0){%total_unit_map=(%{$self->SUPER::unit_map()},%units)}return \%total_unit_map}sub canonical_unit {return 'byte'}sub abbreviated_canonical_unit {return 'B'}sub simple_convert {my ($self,$from,$to)=@_;return 1 if$from =~ /^b(yte(s?))?$/i;if (my$easy=$self->SUPER::simple_convert($from,$to)){return$easy}if ($from =~ /^(.)b(yte(s?))?$/i){if (my ($prefix)=$self->expand($1)){return$self->simple_convert($prefix ."byte",$to)}}return}1;
MATH_CALC_UNITS_CONVERT_BYTE

$fatpacked{"Math/Calc/Units/Convert/Combo.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MATH_CALC_UNITS_CONVERT_COMBO';
  package Math::Calc::Units::Convert::Combo;use base 'Math::Calc::Units::Convert::Base2Metric';use strict;use vars qw(%units %metric_units %prefixable_metric_units %total_unit_map);use vars qw(%ranges %pref);%units=();%metric_units=();%prefixable_metric_units=(bps=>[1,{bit=>1,sec=>-1 }]);%ranges=(default=>[1,999 ]);%pref=(default=>1);sub canonical_unit {return}sub unit_map {my ($self)=@_;if (keys%total_unit_map==0){%total_unit_map=(%{$self->SUPER::unit_map()},%units,%metric_units,%prefixable_metric_units)}return \%total_unit_map}sub singular {my ($self,$unit)=@_;return$self->SUPER::singular($unit)unless$unit =~ /bps$/;return$unit}sub demetric {my ($self,$string)=@_;if (my$prefix=$self->get_prefix($string)){my$tail=lc($self->singular(substr($string,length($prefix))));if ($metric_units{$tail}){return ($self->get_metric($prefix),$tail)}}elsif (my$abbrev=$self->get_abbrev_prefix($string)){my$tail=lc($self->singular(substr($string,length($abbrev))));if ($prefixable_metric_units{$tail}){my$prefix=$self->get_abbrev($abbrev);return ($self->get_metric($prefix),$tail)}}return (1,$string)}sub to_canonical {return}sub lookup_compound {my ($self,$unitName)=@_;for (keys%units,keys%metric_units,keys%prefixable_metric_units){if (my$mult=$self->simple_convert($unitName,$_)){my$u=$units{$_}|| $metric_units{$_}|| $prefixable_metric_units{$_};return [$mult * $u->[0],$u->[1]]}}return}sub get_ranges {return \%ranges}sub get_prefs {return \%pref}1;
MATH_CALC_UNITS_CONVERT_COMBO

$fatpacked{"Math/Calc/Units/Convert/Date.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MATH_CALC_UNITS_CONVERT_DATE';
  package Math::Calc::Units::Convert::Date;use base 'Math::Calc::Units::Convert::Base';use Time::Local qw(timegm);use strict;use vars qw(%units %pref %ranges %total_unit_map);my$min_nice_time=timegm(0,0,0,1,0,1975-1900);my$max_nice_time=timegm(0,0,0,1,0,2030-1900);%units=();%pref=(default=>1);%ranges=(timestamp=>[$min_nice_time,$max_nice_time ]);sub major_pref {return 2}sub canonical_unit {return 'timestamp'}sub unit_map {my ($self)=@_;if (keys%total_unit_map==0){%total_unit_map=(%{$self->SUPER::unit_map()},%units)}return \%total_unit_map}sub get_ranges {return \%ranges}sub get_prefs {return \%pref}use vars qw(@MonthNames);BEGIN {@MonthNames=qw(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec)}sub construct {my ($self,$constructor,$args)=@_;if ($constructor eq 'timestamp'){$args=time if$args eq '';return [$args,{'timestamp'=>1 }]}return unless$constructor eq 'date';$args =~ s/\s+GMT\s+$//;my ($Mon,$d,$y,$h,$m,$s,$tz,$M);$tz='GMT';if ($args =~ /^((?:\w\w\w\s+)?)
                     (\w\w\w)\s*
                     (\d+)\s+
                     (\d+):(\d+)[:.](\d+)\s+
                     (\w+)?\s*
                     (\d\d\d\d)$/x){(undef,$Mon,$d,$h,$m,$s,$tz,$y)=($1,$2,$3,$4,$5,$6,$7,$8)}elsif ($args =~ /^(\w\w\w)[\s-]*
                          (\d+)[,\s-]+
                          (\d\d\d\d)$/x){($Mon,$d,$y)=($1,$2,$3)}elsif ($args =~ /^(\d\d\d\d)-(\d+)-(\d+)\s+
                          (\d+):(\d+)[:.](\d+)$/x){($y,$M,$d,$h,$m,$s)=($1,$2,$3,$4,$5,$6);$M--}elsif ($args =~ /^(\d\d\d\d)-(\d+)-(\d+)$/){($y,$M,$d)=($1,$2,$3);$M--}else {die "Unparseable date string '$args'"}$h ||= 0;$m ||= 0;$s ||= 0;if (defined$Mon){$M=0;for (@MonthNames){last if lc($_)eq lc($Mon);$M++}die "Unparseable month '$Mon'" if$M > 11}if (defined($tz)&& $tz ne 'GMT'){warn "Timezones not supported. Assuming GMT.\n"}my$timestamp=timegm($s,$m,$h,$d,$M,$y-1900);die "Date '$args' is out of range" if$timestamp==-1;return [$timestamp,{'timestamp'=>1 }]}sub render {my ($self,$mag,$name,$power)=@_;return "\@$mag" if$power!=1;return "\@$mag" if$mag < $min_nice_time;return "\@$mag" if$mag > $max_nice_time;return gmtime($mag)." (\@$mag)"}1;
MATH_CALC_UNITS_CONVERT_DATE

$fatpacked{"Math/Calc/Units/Convert/Distance.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MATH_CALC_UNITS_CONVERT_DISTANCE';
  package Math::Calc::Units::Convert::Distance;use base 'Math::Calc::Units::Convert::Metric';use strict;my%total_unit_map;my%ranges=(default=>[1,999 ]);my%distance_units=(inch=>[2.54,'centimeter' ],foot=>[12,'inch' ],yard=>[3,'foot' ],mile=>[5280,'foot' ],);my%distance_pref=(meter=>1.1,inch=>0.7,foot=>0.9,yard=>0,mile=>1.0,);my%aliases=('feet'=>'foot',);sub canonical_unit {return 'meter'}sub abbreviated_canonical_unit {return 'm'}sub major_pref {return 1}sub major_variants {my ($self)=@_;return$self->variants('meter')}sub get_ranges {return \%ranges}sub get_prefs {return \%distance_pref}sub singular {my ($self,$unit)=@_;$unit=$self->SUPER::singular($unit);return$aliases{$unit}|| $unit}sub unit_map {my ($self)=@_;if (keys%total_unit_map==0){%total_unit_map=(%{$self->SUPER::unit_map()},%distance_units)}return \%total_unit_map}sub simple_convert {my ($self,$from,$to)=@_;return 1 if$from =~ /^m(eter(s?))?$/i;if (my$easy=$self->SUPER::simple_convert($from,$to)){return$easy}if ($from =~ /^(.)m(eter(s?))?$/i){if (my ($prefix)=$self->expand($1)){return$self->simple_convert($prefix ."meter",$to)}}return}sub variants {my ($self,$base)=@_;my$canon=$self->canonical_unit();return ($base,keys %{$self->unit_map()},map {"$_$canon"}$self->get_prefixes())}1;
MATH_CALC_UNITS_CONVERT_DISTANCE

$fatpacked{"Math/Calc/Units/Convert/Metric.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MATH_CALC_UNITS_CONVERT_METRIC';
  package Math::Calc::Units::Convert::Metric;use base 'Math::Calc::Units::Convert::Base';use strict;use vars qw(%niceSmallMetric %metric %pref %abbrev %reverse_abbrev $metric_prefix_test);%niceSmallMetric=(milli=>1e-3,micro=>1e-6,nano=>1e-9,pico=>1e-12,femto=>1e-15,);%metric=(kilo=>1e3,mega=>1e6,giga=>1e9,tera=>1e12,peta=>1e15,exa=>1e18,centi=>1e-2,%niceSmallMetric,);%pref=(unit=>1.0,kilo=>0.8,mega=>0.8,giga=>0.8,tera=>0.7,peta=>0.6,exa=>0.3,centi=>0.1,milli=>0.8,micro=>0.8,nano=>0.6,pico=>0.4,femto=>0.3,);%abbrev=(k=>'kilo',M=>'mega',G=>'giga',T=>'tera',P=>'peta',E=>'exa',c=>'centi',m=>'milli',u=>'micro',n=>'nano',p=>'pico',f=>'femto',);%reverse_abbrev=reverse%abbrev;sub pref_score {my ($self,$unitName)=@_;my$prefix=$self->get_prefix($unitName);$unitName=substr($unitName,length($prefix || ""));my$prefix_pref=defined($prefix)? $self->prefix_pref($prefix): 1;return$prefix_pref * $self->SUPER::pref_score($unitName)}sub get_metric {my ($self,$what)=@_;return$metric{$what}}sub get_abbrev {my ($self,$what)=@_;return$abbrev{$what}}$metric_prefix_test=qr/^(${\join("|",keys %metric)})/i;sub get_prefix {my ($self,$what)=@_;if ($what =~ $metric_prefix_test){return $1}else {return}}sub get_prefixes {my ($self,$options)=@_;if ($options->{small}){return grep {$metric{$_}< 1}keys%metric}else {return keys%metric}}sub get_abbrev_prefix {my ($self,$what)=@_;my$prefix=substr($what,0,1);if ($abbrev{$prefix}|| $abbrev{lc($prefix)}){return$prefix}else {return}}sub variants {my ($self,$base)=@_;my@main=$self->SUPER::variants($base);my@variants;for my$u (@main){push@variants,$u,map {"$_$u"}$self->get_prefixes()}return@variants}sub prefix_pref {my ($self,$prefix)=@_;return$pref{lc($prefix)}|| $pref{unit}}sub demetric {my ($self,$string)=@_;if (my$prefix=$self->get_prefix($string)){my$base=substr($string,length($prefix));return ($self->get_metric($prefix),$base)}else {return (1,$string)}}sub expand {my ($self,$char)=@_;my@expansions;my ($exact,$lower);if ($exact=$self->get_abbrev($char)){push@expansions,$exact}elsif (($char ne lc($char))&& ($lower=$self->get_abbrev(lc($char)))){push@expansions,$lower}return@expansions}sub simple_convert {my ($self,$from,$to)=@_;my ($mult_from,$base_from)=$self->demetric($from)or return;my ($mult_to,$base_to)=$self->demetric($to)or return;my$submult=$self->SUPER::simple_convert($base_from,$base_to);return if!defined$submult;return$submult * ($mult_from / $mult_to)}sub metric_abbreviation {my ($self,$prefix)=@_;return$reverse_abbrev{$prefix}|| $prefix}sub render {my ($self,$val,$name,$power,$options)=@_;if ($options->{abbreviate}){my$stem=$self->canonical_unit;if ($name =~ /(\w+)\Q$stem\E$/){my$prefix=$reverse_abbrev{$1};if (defined($prefix)){$name=$prefix .$self->abbreviated_canonical_unit}}}return$self->SUPER::render($val,$name,$power,$options)}1;
MATH_CALC_UNITS_CONVERT_METRIC

$fatpacked{"Math/Calc/Units/Convert/Multi.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MATH_CALC_UNITS_CONVERT_MULTI';
  package Math::Calc::Units::Convert::Multi;use base 'Exporter';use vars qw(@EXPORT_OK);BEGIN {@EXPORT_OK=qw(to_canonical simple_convert singular variants major_variants major_pref range_score pref_score get_class construct)};require Math::Calc::Units::Convert::Time;require Math::Calc::Units::Convert::Byte;require Math::Calc::Units::Convert::Date;require Math::Calc::Units::Convert::Distance;require Math::Calc::Units::Convert::Combo;use strict;use vars qw(@UnitClasses);@UnitClasses=qw(Math::Calc::Units::Convert::Time Math::Calc::Units::Convert::Byte Math::Calc::Units::Convert::Date Math::Calc::Units::Convert::Distance Math::Calc::Units::Convert::Combo);sub to_canonical {my ($unit)=@_;my$val=1;my%newUnit;while (my ($unitName,$power)=each %$unit){my ($mult,$canon)=name_to_canonical($unitName);$val *= $mult ** $power;if (ref$canon){my$c=to_canonical($canon);$val *= $c->[0]** $power;while (my ($name,$subPower)=each %{$c->[1]}){if (($newUnit{$name}+= $subPower * $power)==0){delete$newUnit{$name}}}}else {if (($newUnit{$canon}+= $power)==0){delete$newUnit{$canon}}}}return [$val,\%newUnit ]}my%CANON_CACHE;sub name_to_canonical {my$unitName=shift;$CANON_CACHE{$unitName}||= [_name_to_canonical($unitName)];return @{$CANON_CACHE{$unitName}}}sub _name_to_canonical {my ($unitName)=@_;if (my$v=Math::Calc::Units::Convert::Combo->lookup_compound($unitName)){return @$v}for my$uclass (@UnitClasses){if (my ($val,$base)=$uclass->to_canonical($unitName)){return ($val,$base)}}return Math::Calc::Units::Convert::Base->to_canonical($unitName)}sub get_class {my ($unitName)=@_;my (undef,$canon)=name_to_canonical($unitName);for my$uclass (@UnitClasses){my$canon_unit=$uclass->canonical_unit();next if!defined$canon_unit;return$uclass if$canon_unit eq $canon}return 'Math::Calc::Units::Convert::Base'}sub simple_convert {my ($u,$v)=@_;for my$uclass (@UnitClasses){my$c;return$c if$c=$uclass->simple_convert($u,$v)}return}sub singular {my ($unitName)=@_;return get_class($unitName)->singular($unitName)}sub variants {my ($base)=@_;return get_class($base)->variants($base)}sub major_variants {my ($base)=@_;return get_class($base)->major_variants($base)}sub major_pref {my ($base)=@_;return get_class($base)->major_pref($base)}sub range_score {my ($val,$unitName)=@_;die if ref$unitName;return get_class($unitName)->range_score($val,$unitName)}sub pref_score {my ($unitName)=@_;die if ref$unitName;return get_class($unitName)->pref_score($unitName)}sub construct {my ($constructor,$args)=@_;for my$uclass (@UnitClasses){my$c;return$c if$c=$uclass->construct($constructor,$args)}return}1;
MATH_CALC_UNITS_CONVERT_MULTI

$fatpacked{"Math/Calc/Units/Convert/Time.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MATH_CALC_UNITS_CONVERT_TIME';
  package Math::Calc::Units::Convert::Time;use base 'Math::Calc::Units::Convert::Metric';use strict;use vars qw(%units %pref %ranges %total_unit_map);%units=(minute=>[60,'sec' ],hour=>[60,'minute' ],day=>[24,'hour' ],week=>[7,'day' ],year=>[365,'day' ],);%pref=(default=>1,hour=>0.8,day=>0.8,week=>0.4,minute=>0.9,year=>0.9,);%ranges=(default=>[1,300 ],millisec=>[1,999 ],sec=>[1,200 ],minute=>[2,100 ],hour=>[1,80 ],day=>[1,500 ],week=>[1,4 ],year=>[1,undef ],);sub major_pref {return 2}sub major_variants {my ($self)=@_;return grep {($_ ne 'default')&& ($_ ne 'week')}keys%ranges}sub variants {my ($self,$base)=@_;return 'sec',(keys%units),map {"${_}sec"}$self->get_prefixes({small=>1 })}sub unit_map {my ($self)=@_;if (keys%total_unit_map==0){%total_unit_map=(%{$self->SUPER::unit_map()},%units)}return \%total_unit_map}sub canonical_unit {return 'sec'}sub abbreviated_canonical_unit {return 's'}sub demetric {my ($self,$string)=@_;if (my$prefix=$self->get_prefix($string)){my$tail=substr($string,length($prefix));if ($tail =~ /^sec(ond)?s?$/){return ($self->get_metric($prefix),"sec")}return}else {return (1,$string)}}sub simple_convert {my ($self,$from,$to)=@_;$from="sec" if$from =~ /^sec(ond)?s?$/i;$from="minute" if$from =~ /^min(ute)?s?$/i;if (my$easy=$self->SUPER::simple_convert($from,$to)){return$easy}if ($from =~ /^(.)s$/){my ($expansion)=$self->expand($1);return$self->simple_convert($expansion ."sec",$to)}return}sub preference {my ($self,$v)=@_;my ($val,$unit)=@$v;my$base=lc(($self->demetric($unit))[1]);my$pref=$pref{$base}|| $pref{default};return$pref * $self->prefix_pref(substr($unit,0,-length($base)))}sub get_ranges {return \%ranges}sub get_prefs {return \%pref}my@BREAKDOWN=qw(year week day hour minute sec ms us ns ps);sub render {my ($self,$val,$name,$power,$options)=@_;my$full_name=$name;if ($options->{abbreviate}){if ($name =~ /(\w+)sec/){my$prefix=$1;my$mabbrev=$self->metric_abbreviation($prefix);$name=$mabbrev ."s" unless$mabbrev eq $prefix}}my$basic=$self->SUPER::render($val,$name,$power,$options);return$basic if$power!=1;$val *= $self->simple_convert($full_name,'sec');my@spread=$self->spread($val,'sec',$name,\@BREAKDOWN);my$spread=join(" ",map {"$_->[0] $_->[1]"}@spread);return "($basic = $spread)" if@spread > 1;return$basic}1;
MATH_CALC_UNITS_CONVERT_TIME

$fatpacked{"Math/Calc/Units/Grammar.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MATH_CALC_UNITS_GRAMMAR';
  package Math::Calc::Units::Grammar;use vars qw ( @ISA);use strict;@ISA=qw ( Parse::Yapp::Driver);{package Parse::Yapp::Driver;require 5.004;use strict;use vars qw ( $VERSION $COMPATIBLE $FILENAME);$VERSION='1.04';$COMPATIBLE='0.07';$FILENAME=__FILE__;use Carp;my(%params)=(YYLEX=>'CODE','YYERROR'=>'CODE',YYVERSION=>'',YYRULES=>'ARRAY',YYSTATES=>'ARRAY',YYDEBUG=>'');my(@params)=('LEX','RULES','STATES');sub new {my($class)=shift;my($errst,$nberr,$token,$value,$check,$dotpos);my($self)={ERROR=>\&_Error,ERRST=>\$errst,NBERR=>\$nberr,TOKEN=>\$token,VALUE=>\$value,DOTPOS=>\$dotpos,STACK=>[],DEBUG=>0,CHECK=>\$check };_CheckParams([],\%params,\@_,$self);exists($$self{VERSION})and $$self{VERSION}< $COMPATIBLE and croak "Yapp driver version $VERSION "."incompatible with version $$self{VERSION}:\n"."Please recompile parser module.";ref($class)and $class=ref($class);bless($self,$class)}sub YYParse {my($self)=shift;my($retval);_CheckParams(\@params,\%params,\@_,$self);if($$self{DEBUG}){_DBLoad();$retval=eval '$self->_DBParse()';$@ and die $@}else {$retval=$self->_Parse()}$retval}sub YYData {my($self)=shift;exists($$self{USER})or $$self{USER}={};$$self{USER}}sub YYErrok {my($self)=shift;${$$self{ERRST}}=0;undef}sub YYNberr {my($self)=shift;${$$self{NBERR}}}sub YYRecovering {my($self)=shift;${$$self{ERRST}}!=0}sub YYAbort {my($self)=shift;${$$self{CHECK}}='ABORT';undef}sub YYAccept {my($self)=shift;${$$self{CHECK}}='ACCEPT';undef}sub YYError {my($self)=shift;${$$self{CHECK}}='ERROR';undef}sub YYSemval {my($self)=shift;my($index)=$_[0]- ${$$self{DOTPOS}}- 1;$index < 0 and -$index <= @{$$self{STACK}}and return $$self{STACK}[$index][1];undef}sub YYCurtok {my($self)=shift;@_ and ${$$self{TOKEN}}=$_[0];${$$self{TOKEN}}}sub YYCurval {my($self)=shift;@_ and ${$$self{VALUE}}=$_[0];${$$self{VALUE}}}sub YYExpect {my($self)=shift;keys %{$self->{STATES}[$self->{STACK}[-1][0]]{ACTIONS}}}sub YYLexer {my($self)=shift;$$self{LEX}}sub _CheckParams {my($mandatory,$checklist,$inarray,$outhash)=@_;my($prm,$value);my($prmlst)={};while(($prm,$value)=splice(@$inarray,0,2)){$prm=uc($prm);exists($$checklist{$prm})or croak("Unknow parameter '$prm'");ref($value)eq $$checklist{$prm}or croak("Invalid value for parameter '$prm'");$prm=unpack('@2A*',$prm);$$outhash{$prm}=$value}for (@$mandatory){exists($$outhash{$_})or croak("Missing mandatory parameter '".lc($_)."'")}}sub _Error {print "Parse error.\n"}sub _DBLoad {{no strict 'refs';exists(${__PACKAGE__.'::'}{_DBParse})and return}my($fname)=__FILE__;my(@drv);open(DRV,"<$fname")or die "Report this as a BUG: Cannot open $fname";while(<DRV>){/^\s*sub\s+_Parse\s*{\s*$/ .. /^\s*}\s*#\s*_Parse\s*$/ and do {s/^#DBG>//;push(@drv,$_)}}close(DRV);$drv[0]=~s/_P/_DBP/;eval join('',@drv)}sub _Parse {my($self)=shift;my($rules,$states,$lex,$error)=@$self{'RULES','STATES','LEX','ERROR' };my($errstatus,$nberror,$token,$value,$stack,$check,$dotpos)=@$self{'ERRST','NBERR','TOKEN','VALUE','STACK','CHECK','DOTPOS' };$$errstatus=0;$$nberror=0;($$token,$$value)=(undef,undef);@$stack=([0,undef ]);$$check='';while(1){my($actions,$act,$stateno);$stateno=$$stack[-1][0];$actions=$$states[$stateno];if (exists($$actions{ACTIONS})){defined($$token)or do {($$token,$$value)=&$lex($self)};$act=exists($$actions{ACTIONS}{$$token})? $$actions{ACTIONS}{$$token}: exists($$actions{DEFAULT})? $$actions{DEFAULT}: undef}else {$act=$$actions{DEFAULT}}defined($act)and do {$act > 0 and do {$$errstatus and do {--$$errstatus};push(@$stack,[$act,$$value ]);$$token ne '' and $$token=$$value=undef;next};my($lhs,$len,$code,@sempar,$semval);($lhs,$len,$code)=@{$$rules[-$act]};$act or $self->YYAccept();$$dotpos=$len;unpack('A1',$lhs)eq '@' and do {$lhs =~ /^\@[0-9]+\-([0-9]+)$/ or die "In line rule name '$lhs' ill formed: "."report it as a BUG.\n";$$dotpos=$1};@sempar=$$dotpos ? map {$$_[1]}@$stack[-$$dotpos .. -1 ]: ();$semval=$code ? &$code($self,@sempar): @sempar ? $sempar[0]: undef;splice(@$stack,-$len,$len);$$check eq 'ACCEPT' and do {return($semval)};$$check eq 'ABORT' and do {return(undef)};$$check eq 'ERROR' or do {push(@$stack,[$$states[$$stack[-1][0]]{GOTOS}{$lhs},$semval ]);$$check='';next};$$check=''};$$errstatus or do {$$errstatus=1;&$error($self);$$errstatus or next;++$$nberror};$$errstatus==3 and do {$$token eq '' and do {return(undef)};$$token=$$value=undef};$$errstatus=3;while(@$stack and (not exists($$states[$$stack[-1][0]]{ACTIONS})or not exists($$states[$$stack[-1][0]]{ACTIONS}{error})or $$states[$$stack[-1][0]]{ACTIONS}{error}<= 0)){pop(@$stack)}@$stack or do {return(undef)};push(@$stack,[$$states[$$stack[-1][0]]{ACTIONS}{error},undef ])}croak("Error in driver logic. Please, report it as a BUG")}1}use Math::Calc::Units::Compute qw(plus minus mult divide power construct);sub new {my($class)=shift;ref($class)and $class=ref($class);my($self)=$class->SUPER::new(yyversion=>'1.04',yystates=>[{ACTIONS=>{'NUMBER'=>5,"#"=>2,"-"=>6,'WORD'=>7,'CONSTRUCT'=>3,"\@"=>9,"("=>4 },GOTOS=>{'unit'=>1,'value'=>8,'START'=>10,'expr'=>11 }},{DEFAULT=>-12 },{ACTIONS=>{'WORD'=>7 },GOTOS=>{'unit'=>12 }},{DEFAULT=>-16 },{ACTIONS=>{'NUMBER'=>5,"-"=>6,'WORD'=>7,'CONSTRUCT'=>3,"\@"=>9,"("=>4 },GOTOS=>{'unit'=>1,'value'=>8,'expr'=>13 }},{ACTIONS=>{'WORD'=>7 },DEFAULT=>-13,GOTOS=>{'unit'=>14 }},{ACTIONS=>{'NUMBER'=>15 }},{DEFAULT=>-17 },{DEFAULT=>-9 },{ACTIONS=>{'NUMBER'=>17 }},{ACTIONS=>{''=>18 }},{ACTIONS=>{"*"=>21,"+"=>22,"**"=>20,"-"=>23,'WORD'=>7,"/"=>24 },DEFAULT=>-1,GOTOS=>{'unit'=>19 }},{DEFAULT=>-2 },{ACTIONS=>{"*"=>21,"+"=>22,"**"=>20,"-"=>23,'WORD'=>7,"/"=>24,")"=>25 },GOTOS=>{'unit'=>19 }},{DEFAULT=>-11 },{DEFAULT=>-14 },{DEFAULT=>-18 },{DEFAULT=>-15 },{DEFAULT=>-0 },{DEFAULT=>-10 },{ACTIONS=>{'NUMBER'=>5,"-"=>6,'WORD'=>7,'CONSTRUCT'=>3,"\@"=>9,"("=>4 },GOTOS=>{'unit'=>1,'value'=>8,'expr'=>26 }},{ACTIONS=>{'NUMBER'=>5,"-"=>6,'WORD'=>7,'CONSTRUCT'=>3,"\@"=>9,"("=>4 },GOTOS=>{'unit'=>1,'value'=>8,'expr'=>27 }},{ACTIONS=>{'NUMBER'=>5,"-"=>6,'WORD'=>7,'CONSTRUCT'=>3,"\@"=>9,"("=>4 },GOTOS=>{'unit'=>1,'value'=>8,'expr'=>28 }},{ACTIONS=>{'NUMBER'=>5,"-"=>6,'WORD'=>7,'CONSTRUCT'=>3,"\@"=>9,"("=>4 },GOTOS=>{'unit'=>1,'value'=>8,'expr'=>29 }},{ACTIONS=>{'NUMBER'=>5,"-"=>6,'WORD'=>7,'CONSTRUCT'=>3,"\@"=>9,"("=>4 },GOTOS=>{'unit'=>1,'value'=>8,'expr'=>30 }},{DEFAULT=>-8 },{DEFAULT=>-7,GOTOS=>{'unit'=>19 }},{ACTIONS=>{"**"=>20,'WORD'=>7 },DEFAULT=>-5,GOTOS=>{'unit'=>19 }},{ACTIONS=>{"**"=>20,"*"=>21,'WORD'=>7,"/"=>24 },DEFAULT=>-3,GOTOS=>{'unit'=>19 }},{ACTIONS=>{"**"=>20,"*"=>21,'WORD'=>7,"/"=>24 },DEFAULT=>-4,GOTOS=>{'unit'=>19 }},{ACTIONS=>{"**"=>20,'WORD'=>7 },DEFAULT=>-6,GOTOS=>{'unit'=>19 }}],yyrules=>[['$start',2,undef ],['START',1,undef ],['START',2,undef ],['expr',3,sub {return plus($_[1],$_[3])}],['expr',3,sub {return minus($_[1],$_[3])}],['expr',3,sub {return mult($_[1],$_[3])}],['expr',3,sub {return divide($_[1],$_[3])}],['expr',3,sub {return power($_[1],$_[3])}],['expr',3,sub {return $_[2]}],['expr',1,sub {return $_[1]}],['expr',2,sub {return mult($_[1],[1,$_[2]])}],['value',2,sub {return [$_[1]=>$_[2]]}],['value',1,sub {return [1=>$_[1]]}],['value',1,sub {return [$_[1]=>{}]}],['value',2,sub {return [-$_[2]=>{}]}],['value',2,sub {return [$_[2]=>{'timestamp'=>1 }]}],['value',1,sub {return construct($_[1])}],['unit',1,sub {return {$_[1]=>1 }}],['unit',2,sub {my$u={};$u->{$_[1]}++;$u->{$_[2]}++;return$u}]],@_);bless($self,$class)}1;
MATH_CALC_UNITS_GRAMMAR

$fatpacked{"Math/Calc/Units/Rank.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MATH_CALC_UNITS_RANK';
  package Math::Calc::Units::Rank;use base 'Exporter';use vars qw(@EXPORT_OK);BEGIN {@EXPORT_OK=qw(choose_juicy_ones render render_unit)}use Math::Calc::Units::Convert qw(convert canonical);use Math::Calc::Units::Convert::Multi qw(variants major_variants major_pref pref_score range_score get_class);use strict;sub choose_juicy_ones {my ($v,$options)=@_;my@variants=rank_variants($v,$options);my%variants;for my$variant (@variants){my$id=join(";;",values %{$variant->[0]});$variants{$id}=$variant}my@options;for my$variant (values%variants){my ($map,$score)=@$variant;my%copy;my ($magnitude,$units)=@$v;while (my ($unit,$count)=each %$units){$copy{$map->{$unit}}=$count}push@options,[$score,convert($v,\%copy)]}my@juicy;my$first;my$prev;for (sort {$b->[0]<=> $a->[0]}@options){my ($score,$val)=@$_;last if (defined$prev && ($prev / $score)> 8);last if (defined$first && ($first / $score)> 25);push@juicy,$val;$first=$score unless defined$first;$prev=$score;last if@juicy==5}return@juicy}sub rank_variants {my ($v,$options)=@_;$v=canonical($v);my ($mag,$count)=@$v;my@rangeable=grep {$count->{$_}> 0}keys %$count;if (@rangeable==0){@rangeable=keys %$count}return rank_power_variants($mag,\@rangeable,$count,$options)}sub choose_major {my (@possibilities)=@_;my@majors=map {[major_pref($_),$_ ]}@possibilities;return (sort {$a->[0]<=> $b->[0]}@majors)[-1]->[1]}sub rank_power_variants {my ($mag,$top,$power,$options)=@_;if (keys %$power > 1){my$major=choose_major(keys %$power);my$majorClass=get_class($major);my%powerless=%$power;delete$powerless{$major};my@ranked;for my$variant (major_variants($major,$options)){my$mult=$majorClass->simple_convert($variant,$major);my$cval=$mag / $mult ** $power->{$major};print "\n --- for $variant ---\n" if$options->{verbose};my@r=rank_power_variants($cval,$top,\%powerless,$options);next if@r==0;my$best=$r[0];$best->[0]->{$major}=$variant;$best->[1]=pref_score($variant);push@ranked,$best}return@ranked}if (keys %$power==0){return [{},1 ]}my$unit=(keys %$power)[0];$power=$power->{$unit};my$class=get_class($unit);my (undef,$canon)=$class->to_canonical($unit);my$mult=$class->simple_convert($unit,$canon);$mag *= $mult ** $power;my@choices;my@subtop=grep {$_ ne $canon}@$top;my$add_variant=(@subtop==@$top);for my$variant (variants($canon)){my$mult=$class->simple_convert($variant,$canon);my$minimag=$mag / $mult ** $power;my@vtop=@subtop;push@vtop,$variant if$add_variant;my$score=score($minimag,$variant,\@vtop);printf "($mag $unit) score %.6f:\t $minimag $variant\n",$score if$options->{verbose};push@choices,[$score,$variant ]}@choices=sort {$b->[0]<=> $a->[0]}@choices;return ()if@choices==0;return map {[{$unit=>$_->[1]},$_->[0]]}@choices}sub render_unit {my ($units,$options)=@_;my$str='';while (my ($name,$power)=each %$units){if ($power > 0){$str .= get_class($name)->render_unit($name,$power,$options);$str .= " "}}chop($str);my$botstr='';while (my ($name,$power)=each %$units){if ($power < 0){$botstr .= get_class($name)->render_unit($name,-$power,$options);$botstr .= " "}}chop($botstr);if ($botstr eq ''){return$str}elsif ($botstr =~ /\s/){return "$str / ($botstr)"}else {return "$str / $botstr"}}sub render {my ($v,$options)=@_;my ($mag,$units)=@$v;if (keys %$units==0){my$str=sprintf("%.4g",$mag);if (($mag < 1)&& ($mag >= 0.01)){if ($options->{abbreviate}){$str .= sprintf(" = %.4g percent",100 * $mag)}else {$str .= sprintf(" = %.4g%%",100 * $mag)}}return$str}my@top;my@bottom;while (my ($name,$power)=each %$units){if ($power > 0){push@top,$name}else {push@bottom,$name}}my$str;if (@top==1){my ($name)=@top;$str=get_class($name)->render($mag,$name,$units->{$name},$options);$str .= " "}else {$str=sprintf("%.4g ",$mag);for my$name (@top){$str .= get_class($name)->render_unit($name,$units->{$name},$options);$str .= " "}}if (@bottom > 0){my$botstr;for my$name (@bottom){$botstr .= get_class($name)->render_unit($name,-$units->{$name},$options);$botstr .= " "}chop($botstr);if (@bottom > 1){$str .= "/ ($botstr) "}else {$str .= "/ $botstr "}}chop($str);return$str}sub max_range_score {my ($mag,$units)=@_;my$score=0;for my$name (@$units){my$uscore=range_score($mag,$name);$score=$uscore if$score < $uscore}return$score}sub score {my ($mag,$unit,$top)=@_;my@rangeable=@$top ? @$top : ($unit);my$pref=pref_score($unit);my$range_score=max_range_score($mag,\@rangeable);return$pref * $range_score}1;
MATH_CALC_UNITS_RANK

$fatpacked{"Module/Implementation.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MODULE_IMPLEMENTATION';
  package Module::Implementation;$Module::Implementation::VERSION='0.09';use strict;use warnings;use Module::Runtime 0.012 qw(require_module);use Try::Tiny;unless (exists$Module::Implementation::{VERSION}&& ${$Module::Implementation::{VERSION}}){$Module::Implementation::{VERSION}=\42}my%Implementation;sub build_loader_sub {my$caller=caller();return _build_loader($caller,@_)}sub _build_loader {my$package=shift;my%args=@_;my@implementations=@{$args{implementations}};my@symbols=@{$args{symbols}|| []};my$implementation;my$env_var=uc$package;$env_var =~ s/::/_/g;$env_var .= '_IMPLEMENTATION';return sub {my ($implementation,$loaded)=_load_implementation($package,$ENV{$env_var},\@implementations,);$Implementation{$package}=$implementation;_copy_symbols($loaded,$package,\@symbols);return$loaded}}sub implementation_for {my$package=shift;return$Implementation{$package}}sub _load_implementation {my$package=shift;my$env_value=shift;my$implementations=shift;if ($env_value){die "$env_value is not a valid implementation for $package" unless grep {$_ eq $env_value}@{$implementations};my$requested="${package}::$env_value";($requested)=$requested =~ /^(.+)$/;try {require_module($requested)}catch {require Carp;Carp::croak("Could not load $requested: $_")};return ($env_value,$requested)}else {my$err;for my$possible (@{$implementations}){my$try="${package}::$possible";my$ok;try {require_module($try);$ok=1}catch {$err .= $_ if defined $_};return ($possible,$try)if$ok}require Carp;if (defined$err && length$err){Carp::croak("Could not find a suitable $package implementation: $err")}else {Carp::croak('Module::Runtime failed to load a module but did not throw a real error. This should never happen. Something is very broken')}}}sub _copy_symbols {my$from_package=shift;my$to_package=shift;my$symbols=shift;for my$sym (@{$symbols}){my$type=$sym =~ s/^([\$\@\%\&\*])// ? $1 : '&';my$from="${from_package}::$sym";my$to="${to_package}::$sym";{no strict 'refs';no warnings 'once';*{$to}=$type eq '&' ? \&{$from}: $type eq '$' ? \${$from}: $type eq '@' ? \@{$from}: $type eq '%' ? \%{$from}: $type eq '*' ? *{$from}: die "Can't copy symbol from $from_package to $to_package: $type$sym"}}}1;
MODULE_IMPLEMENTATION

$fatpacked{"Module/Pluggable.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MODULE_PLUGGABLE';
  package Module::Pluggable;use strict;use vars qw($VERSION $FORCE_SEARCH_ALL_PATHS);use Module::Pluggable::Object;use if $] > 5.017,'deprecate';$VERSION='5.2';$FORCE_SEARCH_ALL_PATHS=0;sub import {my$class=shift;my%opts=@_;my ($pkg,$file)=caller;my$sub=$opts{'sub_name'}|| 'plugins';my ($package)=$opts{'package'}|| $pkg;$opts{filename}=$file;$opts{package}=$package;$opts{force_search_all_paths}=$FORCE_SEARCH_ALL_PATHS unless exists$opts{force_search_all_paths};my$finder=Module::Pluggable::Object->new(%opts);my$subroutine=sub {my$self=shift;return$finder->plugins(@_)};my$searchsub=sub {my$self=shift;my ($action,@paths)=@_;$finder->{'search_path'}=["${package}::Plugin"]if ($action eq 'add' and not $finder->{'search_path'});push @{$finder->{'search_path'}},@paths if ($action eq 'add');$finder->{'search_path'}=\@paths if ($action eq 'new');return$finder->{'search_path'}};my$onlysub=sub {my ($self,$only)=@_;if (defined$only){$finder->{'only'}=$only};return$finder->{'only'}};my$exceptsub=sub {my ($self,$except)=@_;if (defined$except){$finder->{'except'}=$except};return$finder->{'except'}};no strict 'refs';no warnings qw(redefine prototype);*{"$package\::$sub"}=$subroutine;*{"$package\::search_path"}=$searchsub;*{"$package\::only"}=$onlysub;*{"$package\::except"}=$exceptsub}1;
MODULE_PLUGGABLE

$fatpacked{"Module/Pluggable/Object.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MODULE_PLUGGABLE_OBJECT';
  package Module::Pluggable::Object;use strict;use File::Find ();use File::Basename;use File::Spec::Functions qw(splitdir catdir curdir catfile abs2rel);use Carp qw(croak carp confess);use Devel::InnerPackage;use vars qw($VERSION $MR);use if $] > 5.017,'deprecate';$VERSION='5.2';BEGIN {eval {require Module::Runtime};unless ($@){Module::Runtime->import('require_module')}else {*require_module=sub {my$module=shift;my$path=$module .".pm";$path =~ s{::}{/}g;require$path}}}sub new {my$class=shift;my%opts=@_;return bless \%opts,$class}sub plugins {my$self=shift;my@args=@_;$self->{'require'}=1 if$self->{'inner'};my$filename=$self->{'filename'};my$pkg=$self->{'package'};$self->_setup_exceptions;for (qw(search_path search_dirs)){$self->{$_}=[$self->{$_}]if exists$self->{$_}&&!ref($self->{$_})}$self->{'search_path'}||= ["${pkg}::Plugin"];$self->{'on_require_error'}||= sub {my ($plugin,$err)=@_;carp "Couldn't require $plugin : $err";return 0};$self->{'on_instantiate_error'}||= sub {my ($plugin,$err)=@_;carp "Couldn't instantiate $plugin: $err";return 0};$self->{'follow_symlinks'}=1 unless exists$self->{'follow_symlinks'};my@SEARCHDIR=exists$INC{"blib.pm"}&& defined$filename && $filename =~ m!(^|/)blib/! &&!$self->{'force_search_all_paths'}? grep {/blib/}@INC : @INC;unshift@SEARCHDIR,@{$self->{'search_dirs'}}if defined$self->{'search_dirs'};my@tmp=@INC;unshift@tmp,@{$self->{'search_dirs'}|| []};local@INC=@tmp if defined$self->{'search_dirs'};my@plugins=$self->search_directories(@SEARCHDIR);push(@plugins,$self->handle_inc_hooks($_,@SEARCHDIR))for @{$self->{'search_path'}};push(@plugins,$self->handle_innerpackages($_))for @{$self->{'search_path'}};return ()unless@plugins;my%plugins;for(@plugins){next unless$self->_is_legit($_);$plugins{$_}=1}if (defined$self->{'instantiate'}){my$method=$self->{'instantiate'};my@objs=();for my$package (sort keys%plugins){next unless$package->can($method);my$obj=eval {$package->$method(@_)};$self->{'on_instantiate_error'}->($package,$@)if $@;push@objs,$obj if$obj}return@objs}else {my@objs=sort keys%plugins;return@objs}}sub _setup_exceptions {my$self=shift;my%only;my%except;my$only;my$except;if (defined$self->{'only'}){if (ref($self->{'only'})eq 'ARRAY'){%only=map {$_=>1}@{$self->{'only'}}}elsif (ref($self->{'only'})eq 'Regexp'){$only=$self->{'only'}}elsif (ref($self->{'only'})eq ''){$only{$self->{'only'}}=1}}if (defined$self->{'except'}){if (ref($self->{'except'})eq 'ARRAY'){%except=map {$_=>1}@{$self->{'except'}}}elsif (ref($self->{'except'})eq 'Regexp'){$except=$self->{'except'}}elsif (ref($self->{'except'})eq ''){$except{$self->{'except'}}=1}}$self->{_exceptions}->{only_hash}=\%only;$self->{_exceptions}->{only}=$only;$self->{_exceptions}->{except_hash}=\%except;$self->{_exceptions}->{except}=$except}sub _is_legit {my$self=shift;my$plugin=shift;my%only=%{$self->{_exceptions}->{only_hash}||{}};my%except=%{$self->{_exceptions}->{except_hash}||{}};my$only=$self->{_exceptions}->{only};my$except=$self->{_exceptions}->{except};my$depth=()=split '::',$plugin,-1;return 0 if (keys%only &&!$only{$plugin});return 0 unless (!defined$only || $plugin =~ m!$only!);return 0 if (keys%except && $except{$plugin});return 0 if (defined$except && $plugin =~ m!$except!);return 0 if defined$self->{max_depth}&& $depth>$self->{max_depth};return 0 if defined$self->{min_depth}&& $depth<$self->{min_depth};return 1}sub search_directories {my$self=shift;my@SEARCHDIR=@_;my@plugins;for my$dir (@SEARCHDIR){push@plugins,$self->search_paths($dir)}return@plugins}sub search_paths {my$self=shift;my$dir=shift;my@plugins;my$file_regex=$self->{'file_regex'}|| qr/\.pm$/;for my$searchpath (@{$self->{'search_path'}}){my$sp=catdir($dir,(split /::/,$searchpath));next unless (-e $sp && -d _);my@files=$self->find_files($sp);for my$file (@files){next unless ($file)=($file =~ /(.*$file_regex)$/);my ($name,$directory,$suffix)=fileparse($file,$file_regex);next if (!$self->{include_editor_junk}&& $self->_is_editor_junk($name));$directory=abs2rel($directory,$sp);my@pkg_dirs=();if ($name eq lc($name)|| $name eq uc($name)){my$pkg_file=catfile($sp,$directory,"$name$suffix");open PKGFILE,"<$pkg_file" or die "search_paths: Can't open $pkg_file: $!";my$in_pod=0;while (my$line=<PKGFILE>){$in_pod=1 if$line =~ m/^=\w/;$in_pod=0 if$line =~ /^=cut/;next if ($in_pod || $line =~ /^=cut/);next if$line =~ /^\s*#/;if ($line =~ m/^\s*package\s+(.*::)?($name)\s*;/i){@pkg_dirs=split /::/,$1 if defined $1;;$name=$2;last}}close PKGFILE}$directory =~ s/^[a-z]://i if($^O =~ /MSWin32|dos/);my@dirs=();if ($directory){($directory)=($directory =~ /(.*)/);@dirs=grep(length($_),splitdir($directory))unless$directory eq curdir();for my$d (reverse@dirs){my$pkg_dir=pop@pkg_dirs;last unless defined$pkg_dir;$d =~ s/\Q$pkg_dir\E/$pkg_dir/i}}else {$directory=""}my$plugin=join '::',$searchpath,@dirs,$name;next unless$plugin =~ m!(?:[a-z\d]+)[a-z\d]*!i;$self->handle_finding_plugin($plugin,\@plugins)}push@plugins,$self->handle_innerpackages($searchpath)}return@plugins}sub _is_editor_junk {my$self=shift;my$name=shift;return 1 if$name =~ /~$/;return 1 if$name =~ /^\.#/;return 1 if$name =~ /\.sw[po]$/;return 0}sub handle_finding_plugin {my$self=shift;my$plugin=shift;my$plugins=shift;my$no_req=shift || 0;return unless$self->_is_legit($plugin);unless (defined$self->{'instantiate'}|| $self->{'require'}){push @$plugins,$plugin;return}$self->{before_require}->($plugin)|| return if defined$self->{before_require};unless ($no_req){my$tmp=$@;my$res=eval {require_module($plugin)};my$err=$@;$@=$tmp;if ($err){if (defined$self->{on_require_error}){$self->{on_require_error}->($plugin,$err)|| return}else {return}}}$self->{after_require}->($plugin)|| return if defined$self->{after_require};push @$plugins,$plugin}sub find_files {my$self=shift;my$search_path=shift;my$file_regex=$self->{'file_regex'}|| qr/\.pm$/;my@files=();{local $_;File::Find::find({no_chdir=>1,follow=>$self->{'follow_symlinks'},wanted=>sub {return unless$File::Find::name =~ /$file_regex/;(my$path=$File::Find::name)=~ s#^\\./##;push@files,$path}},$search_path)}return@files}sub handle_inc_hooks {my$self=shift;my$path=shift;my@SEARCHDIR=@_;my@plugins;for my$dir (@SEARCHDIR){next unless ref$dir && eval {$dir->can('files')};for my$plugin ($dir->files){$plugin =~ s/\.pm$//;$plugin =~ s{/}{::}g;next unless$plugin =~ m!^${path}::!;$self->handle_finding_plugin($plugin,\@plugins)}}return@plugins}sub handle_innerpackages {my$self=shift;return ()if (exists$self->{inner}&&!$self->{inner});my$path=shift;my@plugins;for my$plugin (Devel::InnerPackage::list_packages($path)){$self->handle_finding_plugin($plugin,\@plugins,1)}return@plugins}1;
MODULE_PLUGGABLE_OBJECT

$fatpacked{"Module/Runtime.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MODULE_RUNTIME';
  package Module::Runtime;BEGIN {require 5.006}BEGIN {${^WARNING_BITS}=""}our$VERSION="0.014";our@EXPORT_OK=qw($module_name_rx is_module_name is_valid_module_name check_module_name module_notional_filename require_module use_module use_package_optimistically $top_module_spec_rx $sub_module_spec_rx is_module_spec is_valid_module_spec check_module_spec compose_module_name);my%export_ok=map {($_=>undef)}@EXPORT_OK;sub import {my$me=shift;my$callpkg=caller(0);my$errs="";for(@_){if(exists$export_ok{$_}){if(/\A\$(.*)\z/s){*{$callpkg."::".$1}=\$$1}else {*{$callpkg."::".$_}=\&$_}}else {$errs .= "\"$_\" is not exported by the $me module\n"}}if($errs ne ""){die "${errs}Can't continue after import errors "."at @{[(caller(0))[1]]} line @{[(caller(0))[2]]}.\n"}}sub _is_string($) {my($arg)=@_;return defined($arg)&& ref(\$arg)eq "SCALAR"}our$module_name_rx=qr/[A-Z_a-z][0-9A-Z_a-z]*(?:::[0-9A-Z_a-z]+)*/;my$qual_module_spec_rx=qr#(?:/|::)[A-Z_a-z][0-9A-Z_a-z]*(?:(?:/|::)[0-9A-Z_a-z]+)*#;my$unqual_top_module_spec_rx=qr#[A-Z_a-z][0-9A-Z_a-z]*(?:(?:/|::)[0-9A-Z_a-z]+)*#;our$top_module_spec_rx=qr/$qual_module_spec_rx|$unqual_top_module_spec_rx/o;my$unqual_sub_module_spec_rx=qr#[0-9A-Z_a-z]+(?:(?:/|::)[0-9A-Z_a-z]+)*#;our$sub_module_spec_rx=qr/$qual_module_spec_rx|$unqual_sub_module_spec_rx/o;sub is_module_name($) {_is_string($_[0])&& $_[0]=~ /\A$module_name_rx\z/o}*is_valid_module_name=\&is_module_name;sub check_module_name($) {unless(&is_module_name){die +(_is_string($_[0])? "`$_[0]'" : "argument")." is not a module name\n"}}sub module_notional_filename($) {&check_module_name;my($name)=@_;$name =~ s!::!/!g;return$name.".pm"}BEGIN {*_WORK_AROUND_HINT_LEAKAGE="$]" < 5.011 &&!("$]" >= 5.009004 && "$]" < 5.010001)? sub(){1}: sub(){0};*_WORK_AROUND_BROKEN_MODULE_STATE="$]" < 5.009 ? sub(){1}: sub(){0}}BEGIN {if(_WORK_AROUND_BROKEN_MODULE_STATE){eval q{
  	sub Module::Runtime::__GUARD__::DESTROY {
  		delete $INC{$_[0]->[0]} if @{$_[0]};
  	}
  	1;
  };die $@ if $@ ne ""}}sub require_module($) {local %^H if _WORK_AROUND_HINT_LEAKAGE;if(_WORK_AROUND_BROKEN_MODULE_STATE){my$notional_filename=&module_notional_filename;my$guard=bless([$notional_filename ],"Module::Runtime::__GUARD__");my$result=CORE::require($notional_filename);pop @$guard;return$result}else {return scalar(CORE::require(&module_notional_filename))}}sub use_module($;$) {my($name,$version)=@_;require_module($name);$name->VERSION($version)if @_ >= 2;return$name}sub use_package_optimistically($;$) {my($name,$version)=@_;my$fn=module_notional_filename($name);eval {local$SIG{__DIE__};require_module($name)};die $@ if $@ ne "" && ($@ !~ /\ACan't locate \Q$fn\E .+ at \Q@{[__FILE__]}\E line/s || $@ =~ /^Compilation\ failed\ in\ require
  			 \ at\ \Q@{[__FILE__]}\E\ line/xm);$name->VERSION($version)if @_ >= 2;return$name}sub is_module_spec($$) {my($prefix,$spec)=@_;return _is_string($spec)&& $spec =~ ($prefix ? qr/\A$sub_module_spec_rx\z/o : qr/\A$top_module_spec_rx\z/o)}*is_valid_module_spec=\&is_module_spec;sub check_module_spec($$) {unless(&is_module_spec){die +(_is_string($_[1])? "`$_[1]'" : "argument")." is not a module specification\n"}}sub compose_module_name($$) {my($prefix,$spec)=@_;check_module_name($prefix)if defined$prefix;&check_module_spec;if($spec =~ s#\A(?:/|::)##){}else {$spec=$prefix."::".$spec if defined$prefix}$spec =~ s#/#::#g;return$spec}1;
MODULE_RUNTIME

$fatpacked{"Monitoring/Plugin.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MONITORING_PLUGIN';
  package Monitoring::Plugin;use Monitoring::Plugin::Functions qw(:codes %ERRORS %STATUS_TEXT @STATUS_CODES);use Params::Validate qw(:all);use 5.006;use strict;use warnings;use Carp;use base qw(Class::Accessor::Fast);Monitoring::Plugin->mk_accessors(qw(shortname perfdata messages opts threshold));use Exporter;our@ISA=qw(Exporter);our@EXPORT=(@STATUS_CODES);our@EXPORT_OK=qw(%ERRORS %STATUS_TEXT);our$VERSION="0.39";sub new {my$class=shift;my%args=validate(@_,{shortname=>0,usage=>0,version=>0,url=>0,plugin=>0,blurb=>0,extra=>0,license=>0,timeout=>0 },);my$shortname=Monitoring::Plugin::Functions::get_shortname(\%args);delete$args{shortname}if (exists$args{shortname});my$self={shortname=>$shortname,perfdata=>[],messages=>{warning=>[],critical=>[],ok=>[]},opts=>undef,threshold=>undef,};bless$self,$class;if (exists$args{usage}){require Monitoring::Plugin::Getopt;$self->opts(new Monitoring::Plugin::Getopt(%args))}return$self}sub add_perfdata {my ($self,%args)=@_;require Monitoring::Plugin::Performance;my$perf=Monitoring::Plugin::Performance->new(%args);push @{$self->perfdata},$perf}sub all_perfoutput {my$self=shift;return join(" ",map {$_->perfoutput}(@{$self->perfdata}))}sub set_thresholds {my$self=shift;require Monitoring::Plugin::Threshold;return$self->threshold(Monitoring::Plugin::Threshold->set_thresholds(@_))}sub plugin_exit {my$self=shift;Monitoring::Plugin::Functions::plugin_exit(@_,{plugin=>$self })}sub plugin_die {my$self=shift;Monitoring::Plugin::Functions::plugin_die(@_,{plugin=>$self })}sub nagios_exit {my$self=shift;Monitoring::Plugin::Functions::plugin_exit(@_,{plugin=>$self })}sub nagios_die {my$self=shift;Monitoring::Plugin::Functions::plugin_die(@_,{plugin=>$self })}sub die {my$self=shift;Monitoring::Plugin::Functions::plugin_die(@_,{plugin=>$self })}sub max_state {Monitoring::Plugin::Functions::max_state(@_)}sub max_state_alt {Monitoring::Plugin::Functions::max_state_alt(@_)}sub check_threshold {my$self=shift;my%args;if ($#_==0 && (!ref $_[0]|| ref $_[0]eq "ARRAY")){%args=(check=>shift)}else {%args=validate (@_,{check=>1,warning=>0,critical=>0,})}if (exists$args{warning}|| exists$args{critical}){$self->set_thresholds(warning=>$args{warning},critical=>$args{critical},)}elsif (defined$self->threshold){}elsif (defined$self->opts){$self->set_thresholds(warning=>$self->opts->warning,critical=>$self->opts->critical,)}else {return UNKNOWN}return$self->threshold->get_status($args{check})}sub add_arg {my$self=shift;$self->opts->arg(@_)if$self->_check_for_opts}sub getopts {my$self=shift;$self->opts->getopts(@_)if$self->_check_for_opts}sub _check_for_opts {my$self=shift;croak "You have to supply a 'usage' param to Monitoring::Plugin::new() if you want to use Getopts from your Monitoring::Plugin object." unless ref$self->opts()eq 'Monitoring::Plugin::Getopt';return$self}sub add_message {my$self=shift;my ($code,@messages)=@_;croak "Invalid error code '$code'" unless defined($ERRORS{uc$code})|| defined($STATUS_TEXT{$code});$code=$STATUS_TEXT{$code}if$STATUS_TEXT{$code};$code=lc$code;croak "Error code '$code' not supported by add_message" if$code eq 'unknown' || $code eq 'dependent';$self->messages($code,[])unless$self->messages->{$code};push @{$self->messages->{$code}},@messages}sub check_messages {my$self=shift;my%args=@_;for my$code (qw(critical warning ok)){my$messages=$self->messages->{$code}|| [];if ($args{$code}){unless (ref$args{$code}eq 'ARRAY'){if ($code eq 'ok'){$args{$code}=[$args{$code}]}else {croak "Invalid argument '$code'"}}push @{$args{$code}},@$messages}else {$args{$code}=$messages}}Monitoring::Plugin::Functions::check_messages(%args)}1;
MONITORING_PLUGIN

$fatpacked{"Monitoring/Plugin/Config.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MONITORING_PLUGIN_CONFIG';
  package Monitoring::Plugin::Config;use 5.006;use strict;use warnings;use Carp;use File::Spec;use base qw(Config::Tiny);my$FILENAME1='plugins.ini';my$FILENAME2='nagios-plugins.ini';my$FILENAME3='monitoring-plugins.ini';my$CURRENT_FILE=undef;my@MONITORING_CONFIG_PATH=qw(/etc/nagios /usr/local/nagios/etc /usr/local/etc/nagios /etc/opt/nagios);my@CONFIG_PATH=qw(/etc /usr/local/etc /etc/opt);sub read {my$class=shift;unless ($_[0]){SEARCH: {if ($ENV{MONITORING_CONFIG_PATH}|| $ENV{NAGIOS_CONFIG_PATH}){for (split /:/,($ENV{MONITORING_CONFIG_PATH}|| $ENV{NAGIOS_CONFIG_PATH})){my$file=File::Spec->catfile($_,$FILENAME1);unshift(@_,$file),last SEARCH if -f $file;$file=File::Spec->catfile($_,$FILENAME2);unshift(@_,$file),last SEARCH if -f $file;$file=File::Spec->catfile($_,$FILENAME3);unshift(@_,$file),last SEARCH if -f $file}}for (@MONITORING_CONFIG_PATH){my$file=File::Spec->catfile($_,$FILENAME1);unshift(@_,$file),last SEARCH if -f $file}for (@CONFIG_PATH){my$file=File::Spec->catfile($_,$FILENAME2);unshift(@_,$file),last SEARCH if -f $file;$file=File::Spec->catfile($_,$FILENAME3);unshift(@_,$file),last SEARCH if -f $file}}die "Cannot find '$FILENAME1', '$FILENAME2' or '$FILENAME3' in any standard location.\n" unless $_[0]}$CURRENT_FILE=$_[0];$class->SUPER::read(@_)}sub read_string {my$class=ref $_[0]? ref shift : shift;my$self=bless {},$class;return undef unless defined $_[0];my$ns='_';my$counter=0;for (split /(?:\015{1,2}\012|\015|\012)/,shift){$counter++;next if /^\s*(?:\#|\;|$)/;if (/^\s*\[\s*(.+?)\s*\]\s*$/){$self->{$ns=$1}||= {};next}if (/^\s*([^=]+?)\s*=\s*(.*?)\s*$/){push @{$self->{$ns}->{$1}},$2;next}return$self->_error("Syntax error at line $counter: '$_'")}$self}sub write {croak "Write access not permitted"}sub mp_getfile {return$CURRENT_FILE}1;
MONITORING_PLUGIN_CONFIG

$fatpacked{"Monitoring/Plugin/ExitResult.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MONITORING_PLUGIN_EXITRESULT';
  package Monitoring::Plugin::ExitResult;use 5.006;use strict;use warnings;use overload '""'=>sub {shift->{message}};sub new {my$class=shift;return bless {return_code=>$_[0],message=>$_[1]},$class}sub message {shift->{message}}sub return_code {shift->{return_code}}sub code {shift->{return_code}}1;
MONITORING_PLUGIN_EXITRESULT

$fatpacked{"Monitoring/Plugin/Functions.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MONITORING_PLUGIN_FUNCTIONS';
  package Monitoring::Plugin::Functions;use 5.006;use strict;use warnings;use File::Basename;use Params::Validate qw(:types validate);use Math::Calc::Units;our$VERSION="0.39";our@STATUS_CODES=qw(OK WARNING CRITICAL UNKNOWN DEPENDENT);require Exporter;our@ISA=qw(Exporter);our@EXPORT=(@STATUS_CODES,qw(plugin_exit plugin_die check_messages));our@EXPORT_OK=qw(%ERRORS %STATUS_TEXT @STATUS_CODES get_shortname max_state max_state_alt convert $value_re);our%EXPORT_TAGS=(all=>[@EXPORT,@EXPORT_OK ],codes=>[@STATUS_CODES ],functions=>[qw(plugin_exit plugin_die check_messages max_state max_state_alt convert) ],);use constant OK=>0;use constant WARNING=>1;use constant CRITICAL=>2;use constant UNKNOWN=>3;use constant DEPENDENT=>4;our%ERRORS=('OK'=>OK,'WARNING'=>WARNING,'CRITICAL'=>CRITICAL,'UNKNOWN'=>UNKNOWN,'DEPENDENT'=>DEPENDENT,);our%STATUS_TEXT=reverse%ERRORS;my$value=qr/[-+]?[\d\.]+/;our$value_re=qr/$value(?:e$value)?/;my$_fake_exit=0;sub _fake_exit {@_ ? $_fake_exit=shift : $_fake_exit};my$_use_die=0;sub _use_die {@_ ? $_use_die=shift : $_use_die};sub get_shortname {my$arg=shift;my$shortname=undef;return$arg->{shortname}if (defined($arg->{shortname}));$shortname=$arg->{plugin}if (defined($arg->{plugin}));$shortname=uc basename($shortname || $ENV{PLUGIN_NAME}|| $ENV{NAGIOS_PLUGIN}|| $0);$shortname =~ s/^CHECK_(?:BY_)?//;$shortname =~ s/\..*$//;return$shortname}sub max_state {return CRITICAL if grep {$_==CRITICAL}@_;return WARNING if grep {$_==WARNING}@_;return OK if grep {$_==OK}@_;return UNKNOWN if grep {$_==UNKNOWN}@_;return DEPENDENT if grep {$_==DEPENDENT}@_;return UNKNOWN}sub max_state_alt {return CRITICAL if grep {$_==CRITICAL}@_;return WARNING if grep {$_==WARNING}@_;return UNKNOWN if grep {$_==UNKNOWN}@_;return DEPENDENT if grep {$_==DEPENDENT}@_;return OK if grep {$_==OK}@_;return UNKNOWN}sub plugin_exit {my ($code,$message,$arg)=@_;if (defined$code && ($code eq 'return_code' || $code eq 'message')){if (int(@_ / 2)!=@_ / 2 && ref $_[$#_]){$arg=pop @_}else {undef$arg}my%arg=@_;$code=$arg{return_code};$message=$arg{message}}$arg ||= {};$code=$ERRORS{$code}if defined$code && exists$ERRORS{$code};$code=UNKNOWN unless defined$code && exists$STATUS_TEXT{$code};$message='' unless defined$message;if (ref$message && ref$message eq 'ARRAY'){$message=join(' ',map {chomp;$_}@$message)}else {chomp$message}my$output="$STATUS_TEXT{$code}";$output .= " - $message" if defined$message && $message ne '';my$shortname=($arg->{plugin}? $arg->{plugin}->shortname : undef);$shortname ||= get_shortname();$output="$shortname $output" if$shortname;if ($arg->{plugin}){my$plugin=$arg->{plugin};$output .= " | ".$plugin->all_perfoutput if$plugin->perfdata && $plugin->all_perfoutput}$output .= "\n";if ($_fake_exit){require Monitoring::Plugin::ExitResult;return Monitoring::Plugin::ExitResult->new($code,$output)}_plugin_exit($code,$output)}sub _plugin_exit {my ($code,$output)=@_;if ($_use_die){for (my$i=0;;$i++){@_=caller($i);last unless @_;if ($_[3]=~ m/die/){$!=$code;die($output)}}}print$output;exit$code}sub plugin_die {my ($arg1,$arg2,$rest)=@_;if (defined$arg1 && ($arg1 eq 'return_code' || $arg1 eq 'message')){return plugin_exit(@_)}elsif (defined$arg1 && (exists$ERRORS{$arg1}|| exists$STATUS_TEXT{$arg1})){return plugin_exit(@_)}elsif (defined$arg2 && (exists$ERRORS{$arg2}|| exists$STATUS_TEXT{$arg2})){return plugin_exit($arg2,$arg1,$rest)}else {return plugin_exit(UNKNOWN,$arg1,$arg2)}}sub die {plugin_die(@_)}sub convert {my ($value,$from,$to)=@_;my ($newval)=Math::Calc::Units::convert("$value $from",$to,'exact');return$newval}sub check_messages {my%arg=validate(@_,{critical=>{type=>ARRAYREF },warning=>{type=>ARRAYREF },ok=>{type=>ARRAYREF | SCALAR,optional=>1 },'join'=>{default=>' ' },join_all=>0,});$arg{join}=' ' unless defined$arg{join};my$code=OK;$code ||= CRITICAL if @{$arg{critical}};$code ||= WARNING if @{$arg{warning}};return$code unless wantarray;my$message='';if ($arg{join_all}){$message=join($arg{join_all},map {@$_ ? join($arg{'join'},@$_): ()}$arg{critical},$arg{warning},$arg{ok}? (ref$arg{ok}? $arg{ok}: [$arg{ok}]): [])}else {$message ||= join($arg{'join'},@{$arg{critical}})if$code==CRITICAL;$message ||= join($arg{'join'},@{$arg{warning}})if$code==WARNING;$message ||= ref$arg{ok}? join($arg{'join'},@{$arg{ok}}): $arg{ok}if$arg{ok}}return ($code,$message)}1;
MONITORING_PLUGIN_FUNCTIONS

$fatpacked{"Monitoring/Plugin/Getopt.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MONITORING_PLUGIN_GETOPT';
  package Monitoring::Plugin::Getopt;use 5.006;use strict;use warnings;use File::Basename;use Getopt::Long qw(:config no_ignore_case bundling);use Carp;use Params::Validate qw(:all);use base qw(Class::Accessor);use Monitoring::Plugin::Functions;use Monitoring::Plugin::Config;use vars qw($VERSION);$VERSION=$Monitoring::Plugin::Functions::VERSION;my%DEFAULT=(timeout=>15,verbose=>0,license=>"This nagios plugin is free software, and comes with ABSOLUTELY NO WARRANTY.
  It may be used, redistributed and/or modified under the terms of the GNU
  General Public Licence (see http://www.fsf.org/licensing/licenses/gpl.txt).",);my@ARGS=({spec=>'usage|?',help=>"-?, --usage\n   Print usage information",},{spec=>'help|h',help=>"-h, --help\n   Print detailed help screen",},{spec=>'version|V',help=>"-V, --version\n   Print version information",},{spec=>'extra-opts:s@',help=>"--extra-opts=[section][\@file]\n   Read options from an ini file. See https://www.monitoring-plugins.org/doc/extra-opts.html\n   for usage and examples.",},{spec=>'timeout|t=i',help=>"-t, --timeout=INTEGER\n   Seconds before plugin times out (default: %s)",default=>$DEFAULT{timeout},},{spec=>'verbose|v+',help=>"-v, --verbose\n   Show details for command-line debugging (can repeat up to 3 times)",default=>$DEFAULT{verbose},},);my%DEFER_ARGS=map {$_=>1}qw(timeout verbose);sub _die {my$self=shift;my ($msg)=@_;$msg .= "\n" unless substr($msg,-1)eq "\n";Monitoring::Plugin::Functions::_plugin_exit(3,$msg)}sub _attr {my$self=shift;my ($item,$extra)=@_;$extra='' unless defined$extra;return '' unless$self->{_attr}->{$item};$self->{_attr}->{$item}."\n" .$extra}sub _spec_to_help {my ($self,$spec,$label)=@_;my ($opts,$type)=split /=|:/,$spec,2;my$optional=($spec =~ m/:/);my (@short,@long);for (split /\|/,$opts){if (length $_==1){push@short,"-$_"}else {push@long,"--$_"}}my$help=join(', ',@short,@long);if ($type){if (!$label){if ($type eq 'i' || $type eq '+' || $type =~ /\d+/){$label='INTEGER'}else {$label='STRING'}}if ($optional){$help .= '[=' .$label .']'}else {$help .= '=' .$label}}elsif ($label){carp "Label specified, but there's no type in spec '$spec'"}$help .= "\n   ";return$help}sub _options {my$self=shift;my@args=();my@defer=();for (@{$self->{_args}}){if (exists$DEFER_ARGS{$_->{name}}){push@defer,$_}else {push@args,$_}}my@options=();for my$arg (@args,@defer){my$help_array=ref$arg->{help}&& ref$arg->{help}eq 'ARRAY' ? $arg->{help}: [$arg->{help}];my$label_array=$arg->{label}&& ref$arg->{label}&& ref$arg->{label}eq 'ARRAY' ? $arg->{label}: [$arg->{label}];my$help_string='';for (my$i=0;$i <= $#$help_array;$i++){my$help=$help_array->[$i];if ($help =~ m/^\s*-/){$help_string .= $help}else {$help_string .= $self->_spec_to_help($arg->{spec},$label_array->[$i]).$help;$help_string .= "\n " if$i < $#$help_array}}if ($help_string =~ m/%s/){my$default=defined$arg->{default}? $arg->{default}: '';my$replaced=$help_string;$replaced =~ s|%s|$default|gmx;push@options,$replaced}else {push@options,$help_string}}return ' ' .join("\n ",@options)}sub _usage {my$self=shift;my$usage=$self->_attr('usage');$usage =~ s|%s|$self->{_attr}->{plugin}|gmx;return($usage)}sub _revision {my$self=shift;my$revision=sprintf "%s %s",$self->{_attr}->{plugin},$self->{_attr}->{version};$revision .= sprintf " [%s]",$self->{_attr}->{url}if$self->{_attr}->{url};$revision .= "\n";$revision}sub _help {my$self=shift;my$help='';$help .= $self->_revision ."\n";$help .= $self->_attr('license',"\n");$help .= $self->_attr('blurb',"\n");$help .= $self->_usage ? $self->_usage ."\n" : '';$help .= $self->_options ? $self->_options ."\n" : '';$help .= $self->_attr('extra',"\n");return$help}sub _process_specs_getopt_long {my$self=shift;my@opts=();for my$arg (@{$self->{_args}}){push@opts,$arg->{spec};my$spec=$arg->{spec};$spec =~ s/[=:].*$//;my$name=(split /\s*\|\s*/,$spec)[0];$arg->{name}=$name;if (defined$self->{$name}){$arg->{default}=$self->{$name}}else {$self->{$name}=$arg->{default}}}return@opts}sub _check_required_opts {my$self=shift;my@missing=();for my$arg (@{$self->{_args}}){if ($arg->{required}&&!defined$self->{$arg->{name}}){push@missing,$arg->{name}}}if (@missing){$self->_die($self->_usage ."\n" .join("\n",map {sprintf "Missing argument: %s",$_}@missing)."\n")}}sub _process_opts {my$self=shift;$self->_die($self->_usage)if$self->{usage};$self->_die($self->_revision)if$self->{version};$self->_die($self->_help)if$self->{help}}sub _load_config_section {my$self=shift;my ($section,$file,$flags)=@_;$section ||= $self->{_attr}->{plugin};my$Config;eval {$Config=Monitoring::Plugin::Config->read($file)};$self->_die($@)if ($@);$file ||= $Config->mp_getfile();$self->_die("Invalid section '$section' in config file '$file'")unless exists$Config->{$section};return$Config->{$section}}sub _setup_spec_index {my$self=shift;return if defined$self->{_spec};$self->{_spec}={map {$_->{name}=>$_->{spec}}@{$self->{_args}}}}sub _cmdline_value {my$self=shift;local $_=shift;if (m/\s/ && (m/^[^"']/ || m/[^"']$/)){return qq("$_")}elsif ($_ eq ''){return q("")}else {return $_}}sub _cmdline {my$self=shift;my ($hash)=@_;$hash ||= $self;$self->_setup_spec_index;my@args=();for my$key (sort keys %$hash){next if$key =~ m/^_/;next if exists$DEFAULT{$key}&& $hash->{$key}eq $DEFAULT{$key};next if grep {$key eq $_}qw(help usage version extra-opts);next unless defined$hash->{$key};my$spec=$self->{_spec}->{$key}|| '';if ($spec =~ m/[=:].+$/){for my$value (ref$hash->{$key}eq 'ARRAY' ? @{$hash->{$key}}: ($hash->{$key})){$value=$self->_cmdline_value($value);if (length($key)> 1){push@args,sprintf "--%s=%s",$key,$value}else {push@args,"-$key",$value}}}else {push@args,(length($key)> 1 ? '--' : '-').$key}}return wantarray ? @args : join(' ',@args)}sub _process_extra_opts {my$self=shift;my ($args)=@_;my$extopts_list=$args->{'extra-opts'};my@sargs=();for my$extopts (@$extopts_list){$extopts ||= $self->{_attr}->{plugin};my$section=$extopts;my$file='';if ($extopts =~ m/^([^@]*)@(.*?)\s*$/){$section=$1;$file=$2}my$shash=$self->_load_config_section($section,$file);push@sargs,$self->_cmdline($shash)}@ARGV=(@sargs,@{$self->{_attr}->{argv}});printf "[extra-opts] %s %s\n",$self->{_attr}->{plugin},join(' ',@ARGV)if$args->{verbose}&& $args->{verbose}>= 3}sub arg {my$self=shift;my%args;if ($_[0]=~ m/^(spec|help|required|default)$/ && scalar(@_)% 2==0){%args=validate(@_,{spec=>1,help=>1,default=>0,required=>0,label=>0,})}else {my@args=validate_pos(@_,1,1,0,0,0);%args=(spec=>$args[0],help=>$args[1],default=>$args[2],required=>$args[3],label=>$args[4],)}push @{$self->{_args}},\%args}sub getopts {my$self=shift;my@opt_array=$self->_process_specs_getopt_long;$self->{_attr}->{argv}=[@ARGV ];my$args1={};my$ok=GetOptions($args1,@opt_array);$self->_die($self->_usage)unless$ok;$self->_process_extra_opts($args1);$ok=GetOptions($self,@opt_array);$self->_die($self->_usage)unless$ok;$self->_process_opts;$self->_check_required_opts;$self->mk_ro_accessors(grep!/^_/,keys %$self);$SIG{ALRM}=sub {my$plugin=uc$self->{_attr}->{plugin};$plugin =~ s/^check_//;$self->_die(sprintf("%s UNKNOWN - plugin timed out (timeout %ss)",$plugin,$self->timeout))}}sub _init {my$self=shift;my$plugin=basename($ENV{PLUGIN_NAME}|| $ENV{NAGIOS_PLUGIN}|| $0);my%attr=validate(@_,{usage=>1,version=>0,url=>0,plugin=>{default=>$plugin },blurb=>0,extra=>0,'extra-opts'=>0,license=>{default=>$DEFAULT{license}},timeout=>{default=>$DEFAULT{timeout}},});$self->{timeout}=delete$attr{timeout};$self->{_attr}={%attr };chomp foreach values %{$self->{_attr}};$self->{_args}=[@ARGS ];$self}sub new {my$class=shift;my$self=bless {},$class;$self->_init(@_)}1;
MONITORING_PLUGIN_GETOPT

$fatpacked{"Monitoring/Plugin/Performance.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MONITORING_PLUGIN_PERFORMANCE';
  package Monitoring::Plugin::Performance;use 5.006;use strict;use warnings;use Carp;use base qw(Class::Accessor::Fast);__PACKAGE__->mk_ro_accessors(qw(label value uom warning critical min max));use Monitoring::Plugin::Functions;use Monitoring::Plugin::Threshold;use Monitoring::Plugin::Range;our ($VERSION)=$Monitoring::Plugin::Functions::VERSION;sub import {my ($class,%attr)=@_;$_=$attr{use_die}|| 0;Monitoring::Plugin::Functions::_use_die($_)}my$value=qr/[-+]?[\d\.,]+/;my$value_re=qr/$value(?:e$value)?/;my$value_with_negative_infinity=qr/$value_re|~/;sub _parse {my$class=shift;my$string=shift;$string =~ /^'?([^'=]+)'?=($value_re)([\w%]*);?($value_with_negative_infinity\:?$value_re?)?;?($value_with_negative_infinity\:?$value_re?)?;?($value_re)?;?($value_re)?/o;return undef unless ((defined $1 && $1 ne "")&& (defined $2 && $2 ne ""));my@info=($1,$2,$3,$4,$5,$6,$7);map {defined$info[$_]&& $info[$_]=~ s/,/./go}(1,3,4,5,6);my$performance_value;{my$not_value;local$SIG{__WARN__}=sub {$not_value++};$performance_value=$info[1]+0;return undef if$not_value}my$p=$class->new(label=>$info[0],value=>$performance_value,uom=>$info[2],warning=>$info[3],critical=>$info[4],min=>$info[5],max=>$info[6]);return$p}sub _nvl {my ($self,$value)=@_;defined$value ? $value : ''}sub perfoutput {my$self=shift;my$label=$self->label;if ($label =~ / /){$label="'$label'"}my$out=sprintf "%s=%s%s;%s;%s;%s;%s",$label,$self->value,$self->_nvl($self->uom),$self->_nvl($self->warning),$self->_nvl($self->critical),$self->_nvl($self->min),$self->_nvl($self->max);$out =~ s/;;$//;return$out}sub parse_perfstring {my ($class,$perfstring)=@_;my@perfs=();my$obj;while ($perfstring){$perfstring =~ s/^\s*//;if (@{[$perfstring =~ /=/g]}> 1){$perfstring =~ s/^(.*?=.*?)\s//;if (defined $1){$obj=$class->_parse($1)}else {$perfstring="";$obj=$class->_parse($perfstring)}}else {$obj=$class->_parse($perfstring);$perfstring=""}push@perfs,$obj if$obj}return@perfs}sub rrdlabel {my$self=shift;my$name=$self->clean_label;return substr($name,0,19)}sub clean_label {my$self=shift;my$name=$self->label;if ($name eq "/"){$name="root"}elsif ($name =~ s/^\///){$name =~ s/\//_/g}$name =~ s/\W/_/g;return$name}sub threshold {my$self=shift;return Monitoring::Plugin::Threshold->set_thresholds(warning=>$self->warning,critical=>$self->critical)}sub new {my$class=shift;my%arg=@_;if (my$threshold=delete$arg{threshold}){$arg{warning}||= $threshold->warning ."";$arg{critical}||= $threshold->critical .""}$class->SUPER::new(\%arg)}1;
MONITORING_PLUGIN_PERFORMANCE

$fatpacked{"Monitoring/Plugin/Range.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MONITORING_PLUGIN_RANGE';
  package Monitoring::Plugin::Range;use 5.006;use strict;use warnings;use Carp;use base qw(Class::Accessor::Fast);__PACKAGE__->mk_accessors(qw(start end start_infinity end_infinity alert_on));use Monitoring::Plugin::Functions qw(:DEFAULT $value_re);our ($VERSION)=$Monitoring::Plugin::Functions::VERSION;use overload 'eq'=>sub {shift->_stringify},'""'=>sub {shift->_stringify};use constant OUTSIDE=>0;use constant INSIDE=>1;sub _stringify {my$self=shift;return "" unless$self->is_set;return (($self->alert_on)? "@" : "").(($self->start_infinity==1)? "~:" : (($self->start==0)?"":$self->start.":")).(($self->end_infinity==1)? "" : $self->end)}sub is_set {my$self=shift;(!defined$self->alert_on)? 0 : 1}sub _set_range_start {my ($self,$value)=@_;$self->start($value+0);$self->start_infinity(0)}sub _set_range_end {my ($self,$value)=@_;$self->end($value+0);$self->end_infinity(0)}sub parse_range_string {my ($class,$string)=@_;my$valid=0;my$range=$class->new(start=>0,start_infinity=>0,end=>0,end_infinity=>1,alert_on=>OUTSIDE);$string =~ s/\s//g;unless ($string =~ /[\d~]/ && $string =~ m/^\@?($value_re|~)?(:($value_re)?)?$/){carp "invalid range definition '$string'";return undef}if ($string =~ s/^\@//){$range->alert_on(INSIDE)}if ($string =~ s/^~//){$range->start_infinity(1)}if ($string =~ m/^($value_re)?:/){my$start=$1;$range->_set_range_start($start)if defined$start;$range->end_infinity(1);$string =~ s/^($value_re)?://;$valid++}if ($string =~ /^($value_re)$/){$range->_set_range_end($string);$valid++}if ($valid && ($range->start_infinity==1 || $range->end_infinity==1 || $range->start <= $range->end)){return$range}return undef}sub check_range {my ($self,$value)=@_;my$false=0;my$true=1;if ($self->alert_on==INSIDE){$false=1;$true=0}if ($self->end_infinity==0 && $self->start_infinity==0){if ($self->start <= $value && $value <= $self->end){return$false}else {return$true}}elsif ($self->start_infinity==0 && $self->end_infinity==1){if ($value >= $self->start){return$false}else {return$true}}elsif ($self->start_infinity==1 && $self->end_infinity==0){if ($value <= $self->end){return$false}else {return$true}}else {return$false}}sub new {shift->SUPER::new({@_})}1;
MONITORING_PLUGIN_RANGE

$fatpacked{"Monitoring/Plugin/Threshold.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MONITORING_PLUGIN_THRESHOLD';
  package Monitoring::Plugin::Threshold;use 5.006;use strict;use warnings;use base qw(Class::Accessor::Fast);__PACKAGE__->mk_accessors(qw(warning critical));use Monitoring::Plugin::Range;use Monitoring::Plugin::Functions qw(:codes plugin_die);our ($VERSION)=$Monitoring::Plugin::Functions::VERSION;sub get_status {my ($self,$value)=@_;$value=[$value ]if (ref$value eq "");for my$v (@$value){if ($self->critical->is_set){return CRITICAL if$self->critical->check_range($v)}}for my$v (@$value){if ($self->warning->is_set){return WARNING if$self->warning->check_range($v)}}return OK}sub _inflate {my ($self,$value,$key)=@_;return Monitoring::Plugin::Range->new if!defined$value;if (ref$value){plugin_die("Invalid $key object: type " .ref$value)unless$value->isa("Monitoring::Plugin::Range");return$value}return Monitoring::Plugin::Range->new if$value eq "";my$range=Monitoring::Plugin::Range->parse_range_string($value);plugin_die("Cannot parse $key range: '$value'")unless(defined($range));return$range}sub set_thresholds {my ($self,%arg)=@_;return$self->new(%arg)unless ref$self;$self->set($_,$arg{$_})foreach qw(warning critical)}sub set {my$self=shift;my ($key,$value)=@_;$self->SUPER::set($key,$self->_inflate($value,$key))}sub new {my ($self,%arg)=@_;$self->SUPER::new({map {$_=>$self->_inflate($arg{$_},$_)}qw(warning critical)})}1;
MONITORING_PLUGIN_THRESHOLD

$fatpacked{"Params/Validate.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PARAMS_VALIDATE';
  package Params::Validate;use 5.008001;use strict;use warnings;our$VERSION='1.22';use Exporter;use Module::Implementation;use Params::Validate::Constants;use vars qw($NO_VALIDATION %OPTIONS $options);our@ISA='Exporter';my@types=qw(SCALAR ARRAYREF HASHREF CODEREF GLOB GLOBREF SCALARREF HANDLE BOOLEAN UNDEF OBJECT);our%EXPORT_TAGS=('all'=>[qw(validate validate_pos validation_options validate_with),@types ],types=>\@types,);our@EXPORT_OK=(@{$EXPORT_TAGS{all}},'set_options');our@EXPORT=qw(validate validate_pos);$NO_VALIDATION=$ENV{PERL_NO_VALIDATION};{my$loader=Module::Implementation::build_loader_sub(implementations=>['XS','PP' ],symbols=>[qw(validate validate_pos validate_with validation_options set_options),],);$ENV{PARAMS_VALIDATE_IMPLEMENTATION}='PP' if$ENV{PV_TEST_PERL};$loader->()}1;
PARAMS_VALIDATE

$fatpacked{"Params/Validate/Constants.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PARAMS_VALIDATE_CONSTANTS';
  package Params::Validate::Constants;use strict;use warnings;our$VERSION='1.22';our@ISA='Exporter';our@EXPORT=qw(SCALAR ARRAYREF HASHREF CODEREF GLOB GLOBREF SCALARREF HANDLE BOOLEAN UNDEF OBJECT UNKNOWN);sub SCALAR () {1}sub ARRAYREF () {2}sub HASHREF () {4}sub CODEREF () {8}sub GLOB () {16}sub GLOBREF () {32}sub SCALARREF () {64}sub UNKNOWN () {128}sub UNDEF () {256}sub OBJECT () {512}sub HANDLE () {16 | 32}sub BOOLEAN () {1 | 256}1;
PARAMS_VALIDATE_CONSTANTS

$fatpacked{"Params/Validate/PP.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PARAMS_VALIDATE_PP';
  package Params::Validate::PP;use strict;use warnings;our$VERSION='1.22';use Params::Validate::Constants;use Scalar::Util 1.10 ();our$options;sub validate_pos (\@@) {return if$Params::Validate::NO_VALIDATION &&!defined wantarray;my$p=shift;my@specs=@_;my@p=@$p;if ($Params::Validate::NO_VALIDATION){for (my$x=$#p + 1;$x <= $#specs;$x++ ){$p[$x]=$specs[$x]->{default}if ref$specs[$x]&& exists$specs[$x]->{default}}return wantarray ? @p : \@p}local$options ||= _get_options((caller(0))[0])unless defined$options;my$min=0;while (1){last unless (ref$specs[$min]?!(exists$specs[$min]->{default}|| $specs[$min]->{optional}): $specs[$min]);$min++}my$max=scalar@specs;my$actual=scalar@p;unless ($actual >= $min && ($options->{allow_extra}|| $actual <= $max)){my$minmax=($options->{allow_extra}? "at least $min" : ($min!=$max ? "$min - $max" : $max));my$val=$options->{allow_extra}? $min : $max;$minmax .= $val!=1 ? ' were' : ' was';my$called=_get_called();$options->{on_fail}->("$actual parameter" .($actual!=1 ? 's' : '')." " .($actual!=1 ? 'were' : 'was')." passed to $called but $minmax expected\n")}my$bigger=$#p > $#specs ? $#p : $#specs;for (0 .. $bigger){my$spec=$specs[$_];next unless ref$spec;if ($_ <= $#p){_validate_one_param($p[$_],\@p,$spec,'Parameter #' .($_ + 1).' (%s)')}$p[$_]=$spec->{default}if $_ > $#p && exists$spec->{default}}_validate_pos_depends(\@p,\@specs);for (grep {defined$p[$_]&&!ref$p[$_]&& ref$specs[$_]&& $specs[$_]{untaint}}0 .. $bigger){($p[$_])=$p[$_]=~ /(.+)/}return wantarray ? @p : \@p}sub _validate_pos_depends {my ($p,$specs)=@_;for my$p_idx (0 .. $#$p){my$spec=$specs->[$p_idx];next unless$spec && UNIVERSAL::isa($spec,'HASH')&& exists$spec->{depends};my$depends=$spec->{depends};if (ref$depends){require Carp;local$Carp::CarpLevel=2;Carp::croak("Arguments to 'depends' for validate_pos() must be a scalar")}my$p_size=scalar @$p;if ($p_size < $depends - 1){my$error =("Parameter #" .($p_idx + 1)." depends on parameter #" .$depends .", which was not given");$options->{on_fail}->($error)}}return 1}sub _validate_named_depends {my ($p,$specs)=@_;for my$pname (keys %$p){my$spec=$specs->{$pname};next unless$spec && UNIVERSAL::isa($spec,'HASH')&& $spec->{depends};unless (UNIVERSAL::isa($spec->{depends},'ARRAY')||!ref$spec->{depends}){require Carp;local$Carp::CarpLevel=2;Carp::croak("Arguments to 'depends' must be a scalar or arrayref")}for my$depends_name (ref$spec->{depends}? @{$spec->{depends}}: $spec->{depends}){unless (exists$p->{$depends_name}){my$error =("Parameter '$pname' depends on parameter '" .$depends_name ."', which was not given");$options->{on_fail}->($error)}}}}sub validate (\@$) {return if$Params::Validate::NO_VALIDATION &&!defined wantarray;my$p=$_[0];my$specs=$_[1];local$options=_get_options((caller(0))[0])unless defined$options;if (ref$p eq 'ARRAY'){if (ref$p->[0]){$p={%{$p->[0]}}}elsif (@$p % 2){my$called=_get_called();$options->{on_fail}->("Odd number of parameters in call to $called " ."when named parameters were expected\n")}else {$p={@$p}}}if ($options->{normalize_keys}){$specs=_normalize_callback($specs,$options->{normalize_keys});$p=_normalize_callback($p,$options->{normalize_keys})}elsif ($options->{ignore_case}|| $options->{strip_leading}){$specs=_normalize_named($specs);$p=_normalize_named($p)}if ($Params::Validate::NO_VALIDATION){return (wantarray ? ((map {$_=>$specs->{$_}->{default}}grep {ref$specs->{$_}&& exists$specs->{$_}->{default}}keys %$specs),(ref$p eq 'ARRAY' ? (ref$p->[0]? %{$p->[0]}: @$p): %$p)): do {my$ref=(ref$p eq 'ARRAY' ? (ref$p->[0]? $p->[0]: {@$p}): $p);for (grep {ref$specs->{$_}&& exists$specs->{$_}->{default}}keys %$specs){$ref->{$_}=$specs->{$_}->{default}unless exists$ref->{$_}}return$ref})}_validate_named_depends($p,$specs);unless ($options->{allow_extra}){if (my@unmentioned=grep {!exists$specs->{$_}}keys %$p){my$called=_get_called();$options->{on_fail}->("The following parameter" .(@unmentioned > 1 ? 's were' : ' was')." passed in the call to $called but " .(@unmentioned > 1 ? 'were' : 'was')." not listed in the validation options: @unmentioned\n")}}my@missing;keys %$specs;OUTER: while (my ($key,$spec)=each %$specs){if (!exists$p->{$key}&& (ref$spec ?!(do {if (exists$spec->{default}){$p->{$key}=$spec->{default};next OUTER}}|| do {next OUTER if$spec->{optional}}): $spec)){push@missing,$key}elsif (ref$spec){my$value=defined$p->{$key}? qq|"$p->{$key}"| : 'undef';_validate_one_param($p->{$key},$p,$spec,qq{The '$key' parameter (%s)})}}if (@missing){my$called=_get_called();my$missing=join ', ',map {"'$_'"}@missing;$options->{on_fail}->("Mandatory parameter" .(@missing > 1 ? 's' : '')." $missing missing in call to $called\n")}for my$key (grep {defined$p->{$_}&&!ref$p->{$_}&& ref$specs->{$_}&& $specs->{$_}{untaint}}keys %$p){($p->{$key})=$p->{$key}=~ /(.+)/}return wantarray ? %$p : $p}sub validate_with {return if$Params::Validate::NO_VALIDATION &&!defined wantarray;my%p=@_;local$options=_get_options((caller(0))[0],%p);unless ($Params::Validate::NO_VALIDATION){unless (exists$options->{called}){$options->{called}=(caller($options->{stack_skip}))[3]}}if (UNIVERSAL::isa($p{spec},'ARRAY')){return validate_pos(@{$p{params}},@{$p{spec}})}else {return&validate($p{params},$p{spec})}}sub _normalize_callback {my ($p,$func)=@_;my%new;for my$key (keys %$p){my$new_key=$func->($key);unless (defined$new_key){die "The normalize_keys callback did not return a defined value when normalizing the key '$key'"}if (exists$new{$new_key}){die "The normalize_keys callback returned a key that already exists, '$new_key', when normalizing the key '$key'"}$new{$new_key}=$p->{$key}}return \%new}sub _normalize_named {my%h=(ref $_[0])=~ /ARRAY/ ? @{$_[0]}: %{$_[0]};if ($options->{ignore_case}){$h{lc $_ }=delete$h{$_}for keys%h}if ($options->{strip_leading}){for my$key (keys%h){my$new;($new=$key)=~ s/^\Q$options->{strip_leading}\E//;$h{$new}=delete$h{$key}}}return \%h}my%Valid=map {$_=>1}qw(callbacks can default depends isa optional regex type untaint);sub _validate_one_param {my ($value,$params,$spec,$id)=@_;if (exists$spec->{type}){unless (defined$spec->{type}&& Scalar::Util::looks_like_number($spec->{type})&& $spec->{type}> 0){my$msg ="$id has a type specification which is not a number. It is ";if (defined$spec->{type}){$msg .= "a string - $spec->{type}"}else {$msg .= "undef"}$msg .= ".\n Use the constants exported by Params::Validate to declare types.";$options->{on_fail}->(sprintf($msg,_stringify($value)))}unless (_get_type($value)& $spec->{type}){my$type=_get_type($value);my@is=_typemask_to_strings($type);my@allowed=_typemask_to_strings($spec->{type});my$article=$is[0]=~ /^[aeiou]/i ? 'an' : 'a';my$called=_get_called(1);$options->{on_fail}->(sprintf("$id to $called was $article '@is', which " ."is not one of the allowed types: @allowed\n",_stringify($value)))}}return unless ($spec->{isa}|| $spec->{can}|| $spec->{callbacks}|| $spec->{regex});if (exists$spec->{isa}){for (ref$spec->{isa}? @{$spec->{isa}}: $spec->{isa}){unless (do {local $@=q{};eval {$value->isa($_)}}){my$is=ref$value ? ref$value : 'plain scalar';my$article1=$_ =~ /^[aeiou]/i ? 'an' : 'a';my$article2=$is =~ /^[aeiou]/i ? 'an' : 'a';my$called=_get_called(1);$options->{on_fail}->(sprintf("$id to $called was not $article1 '$_' " ."(it is $article2 $is)\n",_stringify($value)))}}}if (exists$spec->{can}){for (ref$spec->{can}? @{$spec->{can}}: $spec->{can}){unless (do {local $@=q{};eval {$value->can($_)}}){my$called=_get_called(1);$options->{on_fail}->(sprintf("$id to $called does not have the method: '$_'\n",_stringify($value)))}}}if ($spec->{callbacks}){unless (UNIVERSAL::isa($spec->{callbacks},'HASH')){my$called=_get_called(1);$options->{on_fail}->("'callbacks' validation parameter for $called must be a hash reference\n")}for (keys %{$spec->{callbacks}}){unless (UNIVERSAL::isa($spec->{callbacks}{$_},'CODE')){my$called=_get_called(1);$options->{on_fail}->("callback '$_' for $called is not a subroutine reference\n")}my$ok;my$e=do {local $@=q{};local$SIG{__DIE__};$ok=eval {$spec->{callbacks}{$_}->($value,$params)};$@};if (!$ok){my$called=_get_called(1);if (ref$e){$options->{on_fail}->($e)}else {my$msg="$id to $called did not pass the '$_' callback";$msg .= ": $e" if length$e;$msg .= "\n";$options->{on_fail}->(sprintf($msg,_stringify($value)))}}}}if (exists$spec->{regex}){unless ((defined$value ? $value : '')=~ /$spec->{regex}/){my$called=_get_called(1);$options->{on_fail}->(sprintf("$id to $called did not pass regex check\n",_stringify($value)))}}}{my%isas=('ARRAY'=>ARRAYREF,'HASH'=>HASHREF,'CODE'=>CODEREF,'GLOB'=>GLOBREF,'SCALAR'=>SCALARREF,'REGEXP'=>SCALARREF,);my%simple_refs=map {$_=>1}keys%isas;sub _get_type {return UNDEF unless defined $_[0];my$ref=ref $_[0];unless ($ref){return GLOB if UNIVERSAL::isa(\$_[0],'GLOB');return SCALAR}return$isas{$ref}if$simple_refs{$ref};for (keys%isas){return$isas{$_}| OBJECT if UNIVERSAL::isa($_[0],$_)}return UNKNOWN}}{my%type_to_string=(SCALAR()=>'scalar',ARRAYREF()=>'arrayref',HASHREF()=>'hashref',CODEREF()=>'coderef',GLOB()=>'glob',GLOBREF()=>'globref',SCALARREF()=>'scalarref',UNDEF()=>'undef',OBJECT()=>'object',UNKNOWN()=>'unknown',);sub _typemask_to_strings {my$mask=shift;my@types;for (SCALAR,ARRAYREF,HASHREF,CODEREF,GLOB,GLOBREF,SCALARREF,UNDEF,OBJECT,UNKNOWN){push@types,$type_to_string{$_}if$mask & $_}return@types ? @types : ('unknown')}}{my%defaults=(ignore_case=>0,strip_leading=>0,allow_extra=>0,on_fail=>sub {require Carp;Carp::croak($_[0])},stack_skip=>1,normalize_keys=>undef,);*set_options=\&validation_options;sub validation_options {my%opts=@_;my$caller=caller;for (keys%defaults){$opts{$_}=$defaults{$_}unless exists$opts{$_}}$Params::Validate::OPTIONS{$caller}=\%opts}sub _get_options {my$caller=shift;if (@_){return ($Params::Validate::OPTIONS{$caller}? {%{$Params::Validate::OPTIONS{$caller}},@_}: {%defaults,@_})}else {return (exists$Params::Validate::OPTIONS{$caller}? $Params::Validate::OPTIONS{$caller}: \%defaults)}}}sub _get_called {my$extra_skip=$_[0]|| 0;$extra_skip++;my$called=(exists$options->{called}? $options->{called}: (caller($options->{stack_skip}+ $extra_skip))[3]);$called='(unknown)' unless defined$called;return$called}sub _stringify {return defined $_[0]? qq{"$_[0]"} : 'undef'}1;
PARAMS_VALIDATE_PP

$fatpacked{"Params/Validate/XS.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PARAMS_VALIDATE_XS';
  package Params::Validate::XS;use strict;use warnings;our$VERSION='1.22';use Carp;my$default_fail=sub {Carp::confess($_[0])};{my%defaults=(ignore_case=>0,strip_leading=>0,allow_extra=>0,on_fail=>$default_fail,stack_skip=>1,normalize_keys=>undef,);*set_options=\&validation_options;sub validation_options {my%opts=@_;my$caller=caller;for (keys%defaults){$opts{$_}=$defaults{$_}unless exists$opts{$_}}$Params::Validate::OPTIONS{$caller}=\%opts}use XSLoader;XSLoader::load(__PACKAGE__,exists$Params::Validate::XS::{VERSION}? ${$Params::Validate::XS::{VERSION}}: (),)}sub _check_regex_from_xs {return (defined $_[0]? $_[0]: '')=~ /$_[1]/ ? 1 : 0}1;
PARAMS_VALIDATE_XS

$fatpacked{"Params/ValidatePP.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PARAMS_VALIDATEPP';
  package Params::Validate;our$VERSION='1.22';BEGIN {$ENV{PARAMS_VALIDATE_IMPLEMENTATION}='PP'}use Params::Validate;1;
PARAMS_VALIDATEPP

$fatpacked{"Params/ValidateXS.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PARAMS_VALIDATEXS';
  package Params::Validate;our$VERSION='1.22';BEGIN {$ENV{PARAMS_VALIDATE_IMPLEMENTATION}='XS'}use Params::Validate;1;
PARAMS_VALIDATEXS

$fatpacked{"Time/Zone.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'TIME_ZONE';
  package Time::Zone;require 5.002;require Exporter;use Carp;use strict;use vars qw(@ISA @EXPORT $VERSION @tz_local);@ISA=qw(Exporter);@EXPORT=qw(tz2zone tz_local_offset tz_offset tz_name);$VERSION="2.24";sub tz2zone (;$$$) {my($TZ,$time,$isdst)=@_;use vars qw(%tzn_cache);$TZ=defined($ENV{'TZ'})? ($ENV{'TZ'}? $ENV{'TZ'}: 'GMT'): '' unless$TZ;if (!defined$isdst){my$j;$time=time()unless$time;($j,$j,$j,$j,$j,$j,$j,$j,$isdst)=localtime($time)}if (defined$tzn_cache{$TZ}->[$isdst]){return$tzn_cache{$TZ}->[$isdst]}if ($TZ =~ /^
  		    ( [^:\d+\-,] {3,} )
  		    ( [+-] ?
  		      \d {1,2}
  		      ( : \d {1,2} ) {0,2} 
  		    )
  		    ( [^\d+\-,] {3,} )?
  		    /x){my$dsttz=defined($4)? $4 : $1;$TZ=$isdst ? $dsttz : $1;$tzn_cache{$TZ}=[$1,$dsttz ]}else {$tzn_cache{$TZ}=[$TZ,$TZ ]}return$TZ}sub tz_local_offset (;$) {my ($time)=@_;$time=time()unless$time;my (@l)=localtime($time);my$isdst=$l[8];if (defined($tz_local[$isdst])){return$tz_local[$isdst]}$tz_local[$isdst]=&calc_off($time);return$tz_local[$isdst]}sub calc_off {my ($time)=@_;my (@l)=localtime($time);my (@g)=gmtime($time);my$off;$off=$l[0]- $g[0]+ ($l[1]- $g[1])* 60 + ($l[2]- $g[2])* 3600;if ($l[7]==$g[7]){}elsif ($l[7]==$g[7]+ 1){$off += 86400}elsif ($l[7]==$g[7]- 1){$off -= 86400}elsif ($l[7]< $g[7]){$off += 86400}else {$off -= 86400}return$off}CONFIG: {use vars qw(%dstZone %zoneOff %dstZoneOff %Zone);my@dstZone=("brst"=>-2*3600,"adt"=>-3*3600,"edt"=>-4*3600,"cdt"=>-5*3600,"mdt"=>-6*3600,"pdt"=>-7*3600,"akdt"=>-8*3600,"ydt"=>-8*3600,"hdt"=>-9*3600,"bst"=>+1*3600,"mest"=>+2*3600,"metdst"=>+2*3600,"sst"=>+2*3600,"fst"=>+2*3600,"cest"=>+2*3600,"eest"=>+3*3600,"msd"=>+4*3600,"wadt"=>+8*3600,"kdt"=>+10*3600,"aedt"=>+11*3600,"eadt"=>+11*3600,"nzd"=>+13*3600,"nzdt"=>+13*3600,);my@Zone=("gmt"=>0,"ut"=>0,"utc"=>0,"wet"=>0,"wat"=>-1*3600,"at"=>-2*3600,"fnt"=>-2*3600,"brt"=>-3*3600,"mnt"=>-4*3600,"ewt"=>-4*3600,"ast"=>-4*3600,"est"=>-5*3600,"act"=>-5*3600,"cst"=>-6*3600,"mst"=>-7*3600,"pst"=>-8*3600,"akst"=>-9*3600,"yst"=>-9*3600,"hst"=>-10*3600,"cat"=>-10*3600,"ahst"=>-10*3600,"nt"=>-11*3600,"idlw"=>-12*3600,"cet"=>+1*3600,"mez"=>+1*3600,"ect"=>+1*3600,"met"=>+1*3600,"mewt"=>+1*3600,"swt"=>+1*3600,"set"=>+1*3600,"fwt"=>+1*3600,"eet"=>+2*3600,"ukr"=>+2*3600,"bt"=>+3*3600,"msk"=>+3*3600,"zp4"=>+4*3600,"zp5"=>+5*3600,"zp6"=>+6*3600,"wst"=>+8*3600,"hkt"=>+8*3600,"cct"=>+8*3600,"jst"=>+9*3600,"kst"=>+9*3600,"aest"=>+10*3600,"east"=>+10*3600,"gst"=>+10*3600,"nzt"=>+12*3600,"nzst"=>+12*3600,"idle"=>+12*3600,);%Zone=@Zone;%dstZone=@dstZone;%zoneOff=reverse(@Zone);%dstZoneOff=reverse(@dstZone)}sub tz_offset (;$$) {my ($zone,$time)=@_;return&tz_local_offset($time)unless($zone);$time=time()unless$time;my(@l)=localtime($time);my$dst=$l[8];$zone=lc$zone;if($zone =~ /^(([\-\+])\d\d?)(\d\d)$/){my$v=$2 .$3;return $1 * 3600 + $v * 60}elsif (exists$dstZone{$zone}&& ($dst ||!exists$Zone{$zone})){return$dstZone{$zone}}elsif(exists$Zone{$zone}){return$Zone{$zone}}undef}sub tz_name (;$$) {my ($off,$dst)=@_;$off=tz_offset()unless(defined$off);$dst=(localtime(time))[8]unless(defined$dst);if (exists$dstZoneOff{$off}&& ($dst ||!exists$zoneOff{$off})){return$dstZoneOff{$off}}elsif (exists$zoneOff{$off}){return$zoneOff{$off}}sprintf("%+05d",int($off / 60)* 100 + $off % 60)}1;
TIME_ZONE

$fatpacked{"Try/Tiny.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'TRY_TINY';
  package Try::Tiny;use 5.006;our$VERSION='0.24';use strict;use warnings;use Exporter 5.57 'import';our@EXPORT=our@EXPORT_OK=qw(try catch finally);use Carp;$Carp::Internal{+__PACKAGE__}++;BEGIN {my$su=$INC{'Sub/Util.pm'}&& defined&Sub::Util::set_subname;my$sn=$INC{'Sub/Name.pm'}&& eval {Sub::Name->VERSION(0.08)};unless ($su || $sn){$su=eval {require Sub::Util}&& defined&Sub::Util::set_subname;unless ($su){$sn=eval {require Sub::Name;Sub::Name->VERSION(0.08)}}}*_subname=$su ? \&Sub::Util::set_subname : $sn ? \&Sub::Name::subname : sub {$_[1]};*_HAS_SUBNAME=($su || $sn)? sub(){1}: sub(){0}}sub try (&;@) {my ($try,@code_refs)=@_;my$wantarray=wantarray;my ($catch,@finally)=();for my$code_ref (@code_refs){if (ref($code_ref)eq 'Try::Tiny::Catch'){croak 'A try() may not be followed by multiple catch() blocks' if$catch;$catch=${$code_ref}}elsif (ref($code_ref)eq 'Try::Tiny::Finally'){push@finally,${$code_ref}}else {croak('try() encountered an unexpected argument (' .(defined$code_ref ? $code_ref : 'undef').') - perhaps a missing semi-colon before or')}}my$caller=caller;_subname("${caller}::try {...} "=>$try)if _HAS_SUBNAME;my$prev_error=$@;my (@ret,$error);my$failed=not eval {$@=$prev_error;if ($wantarray){@ret=$try->()}elsif (defined$wantarray){$ret[0]=$try->()}else {$try->()};return 1};$error=$@;$@=$prev_error;my@guards=map {Try::Tiny::ScopeGuard->_new($_,$failed ? $error : ())}@finally;if ($failed){if ($catch){for ($error){return$catch->($error)}}return}else {return$wantarray ? @ret : $ret[0]}}sub catch (&;@) {my ($block,@rest)=@_;croak 'Useless bare catch()' unless wantarray;my$caller=caller;_subname("${caller}::catch {...} "=>$block)if _HAS_SUBNAME;return (bless(\$block,'Try::Tiny::Catch'),@rest,)}sub finally (&;@) {my ($block,@rest)=@_;croak 'Useless bare finally()' unless wantarray;my$caller=caller;_subname("${caller}::finally {...} "=>$block)if _HAS_SUBNAME;return (bless(\$block,'Try::Tiny::Finally'),@rest,)}{package Try::Tiny::ScopeGuard;use constant UNSTABLE_DOLLARAT=>($] < '5.013002')? 1 : 0;sub _new {shift;bless [@_ ]}sub DESTROY {my ($code,@args)=@{$_[0]};local $@ if UNSTABLE_DOLLARAT;eval {$code->(@args);1}or do {warn "Execution of finally() block $code resulted in an exception, which " .'*CAN NOT BE PROPAGATED* due to fundamental limitations of Perl. ' .'Your program will continue as if this event never took place. ' ."Original exception text follows:\n\n" .(defined $@ ? $@ : '$@ left undefined...')."\n" }}}__PACKAGE__ 
TRY_TINY

s/^  //mg for values %fatpacked;

my $class = 'FatPacked::'.(0+\%fatpacked);
no strict 'refs';
*{"${class}::files"} = sub { keys %{$_[0]} };

if ($] < 5.008) {
  *{"${class}::INC"} = sub {
     if (my $fat = $_[0]{$_[1]}) {
       return sub {
         return 0 unless length $fat;
         $fat =~ s/^([^\n]*\n?)//;
         $_ = $1;
         return 1;
       };
     }
     return;
  };
}

else {
  *{"${class}::INC"} = sub {
    if (my $fat = $_[0]{$_[1]}) {
      open my $fh, '<', \$fat
        or die "FatPacker error loading $_[1] (could be a perl installation issue?)";
      return $fh;
    }
    return;
  };
}

unshift @INC, bless \%fatpacked, $class;
  } # END OF FATPACK CODE

use Monitoring::Plugin 0.37;
use App::Monitoring::Plugin::CheckRaid;
use App::Monitoring::Plugin::CheckRaid::Sudoers;
use App::Monitoring::Plugin::CheckRaid::Plugin;
use App::Monitoring::Plugin::CheckRaid::Utils;
use warnings;
use strict;

my $PROGNAME = 'check_raid';
my $VERSION = q/4.0.0/;

my $mp = Monitoring::Plugin->new(
    usage =>
	"Usage: %s [-h] [-V] [-S] [list of devices to ignore]",

    version => $VERSION,
    blurb => 'This plugin checks all RAID volumes (hardware and software) that can be identified.',

    plugin  => $PROGNAME,
    shortname => $PROGNAME,
);

$mp->add_arg(
	spec => 'sudoers|S',
	help => 'Setup sudo rules',
);
$mp->add_arg(
	spec => 'warnonly|W',
	help => 'Treat CRITICAL errors as WARNING',
);
$mp->add_arg(
	spec => 'debug|d',
	help => 'debug mode, or dry-run for sudoers',
);
$mp->add_arg(
	spec => 'list_plugins|list-plugins|l',
	help => 'Lists active plugins',
);
$mp->add_arg(
	spec => 'plugin|p=s@',
	help => 'Force the use of selected plugins, comma separated',
);
$mp->add_arg(
	spec => 'plugin-option=s@',
	help => "Specify extra option for specific plugin.\n" .
'
Plugin options (key=>value pairs) passed as "options" key to each plugin constructor.
The options are global, not plugin specific, but it\'s recommended to prefix option with plugin name.
The convention is to have PLUGIN_NAME-OPTION_NAME=OPTION_VALUE syntax to namespace each plugin option.

For example "--plugin-option=hp_msa-serial=/dev/ttyS2"
would define option "serial" for "hp_msa" plugin with value "/dev/ttyS2".
'
);
$mp->add_arg(
	spec => 'noraid=s',
	help => 'Return STATE if no RAID controller is found. Defaults to UNKNOWN',
);
$mp->add_arg(
	spec => 'resync=s',
	help => 'Return STATE if RAID is in resync state. Defaults to WARNING',
);
$mp->add_arg(
	spec => 'check=s',
	help => 'Return STATE if RAID is in check state. Defaults to OK',
);
$mp->add_arg(
	spec => 'cache-fail=s',
	help => 'Set status as STATE if Write Cache is present but disabled. Defaults to WARNING',
);
$mp->add_arg(
	spec => 'bbulearn=s',
	help => 'Return STATE if Backup Battery Unit (BBU) learning cycle is in progress. Defaults to WARNING',
);
$mp->add_arg(
	spec => 'bbu-monitoring',
	help => 'Enable experimental monitoring of the BBU status',
);
$mp->add_arg(
	spec => 'warnonly|W',
	help => 'Treat CRITICAL errors as WARNING',
);

$mp->getopts;

if (@ARGV) {
	@App::Monitoring::Plugin::CheckRaid::Utils::ignore = @ARGV;
}

my (%ERRORS) = (OK => 0, WARNING => 1, CRITICAL => 2, UNKNOWN => 3);

my %plugin_options;

if ($mp->opts->warnonly) {
	App::Monitoring::Plugin::CheckRaid::Plugin->set_critical_as_warning;
}
if ($mp->opts->get('bbu-monitoring')) {
	$plugin_options{options}{bbu_monitoring} = 1;
}

# setup state flags
my %state_flags = (
	'resync' => 'resync_status',
	'check' => 'check_status',
	'noraid' => 'noraid_state',
	'bbulearn' => 'bbulearn_status',
	'cache-fail' => 'cache_fail_status',
);
while (my($opt, $key) = each %state_flags) {
	if (my $value = $mp->opts->get($opt)) {
		unless (exists $ERRORS{$value}) {
			print "Invalid value: '$value' for --$opt\n";
			exit $ERRORS{UNKNOWN};
		}
		$plugin_options{options}{$key} = $ERRORS{$value};
	}
}

# enable only specified plugins
if (my $plugins = $mp->opts->plugin) {
	# split, as each value can contain commas
	$plugin_options{enable_plugins} = [ map { split(/,/, $_) } @$plugins ];
}

if (my $opts = $mp->opts->get('plugin-option')) {
	foreach my $o (@$opts) {
		my($k, $v) = split(/=/, $o, 2);
		$plugin_options{$k} = $v;
	}
}

my $mc = App::Monitoring::Plugin::CheckRaid->new(%plugin_options);

$App::Monitoring::Plugin::CheckRaid::Utils::debug = $mp->opts->debug;

my @plugins = $mc->active_plugins;
if (!@plugins) {
	$mp->plugin_exit($plugin_options{options}{noraid_state}, "No active plugins (No RAID found)");
}

if ($mp->opts->sudoers) {
	sudoers($mp->opts->debug, @plugins);
	$mp->plugin_exit(OK, "sudoers updated");
}

# print active plugins
if ($mp->opts->list_plugins) {
	foreach my $p (@plugins) {
		print $p->{name}, "\n";
	}
	my $count = @plugins;
	warn "$count active plugins\n";
	exit $ERRORS{OK};
}

my $message = '';
my $status = $ERRORS{OK};

# perform check of each active plugin
foreach my $plugin (@plugins) {
	# skip if no check method (not standalone checker)
	next unless $plugin->can('check');

	# perform the check
	$plugin->check;
	my $pn = $plugin->{name};

	# collect results
	unless (defined $plugin->status) {
		$status = $ERRORS{UNKNOWN} if $ERRORS{UNKNOWN} > $status;
		$message .= '; ' if $message;
		$message .= "$pn:[Plugin error]";
		next;
	}
	if ($plugin->message or $plugin->{options}{noraid_state} == $ERRORS{UNKNOWN}) {
		$status = $plugin->status if $plugin->status > $status;
	} else {
		$status = $plugin->{options}{noraid_state} if $plugin->{options}{noraid_state} > $status;
	}
	$message .= '; ' if $message;
	$message .= "$pn:[".$plugin->message."]";
	$message .= ' | ' . $plugin->perfdata if $plugin->perfdata;
	$message .= "\n" . $plugin->longoutput if $plugin->longoutput;
}

if ($message) {
	if ($status == $ERRORS{OK}) {
		print "OK: ";
	} elsif ($status == $ERRORS{WARNING}) {
		print "WARNING: ";
	} elsif ($status == $ERRORS{CRITICAL}) {
		print "CRITICAL: ";
	} else {
		print "UNKNOWN: ";
	}
	print "$message\n";
} elsif ($plugin::options{noraid_state} != $ERRORS{UNKNOWN}) {
	$status = $plugin::options{noraid_state};
	print "No RAID configuration found\n";
} else {
	$status = $ERRORS{UNKNOWN};
	print "No RAID configuration found (tried: ", join(', ', @plugins), ")\n";
}
exit $status;
